/*
Theme Name: 	wake-forest-theme
Theme URI: 		http://allcampus.com
Description: 	Base theme for Master's and Certificate programs
Version: 		1.0.0
Author: 		AllCampus Design Team
Author URI: 	http://allcampus.com
Tags: 			starkers, bootstrap
*/

@import url('css/reset.css');
@import url('css/defaults.css');

/*******************************************
:--- General ---:
*******************************************/

html {
    scroll-behavior: auto !important;
}

body {
	background: #fff;
	font-size: 1.1rem;
	line-height: 1.6;
	font-weight: 400;
	color: var(--primary-text-black);
}

h1, h2, h3, h4, h5, h6 {
	margin: 4px 0 8px;
}

h1 {
	font-size: 3rem;
	color: var(--primary-text-black);
    font-family: var(--cormorant);
    font-weight: 600;
    line-height: 1.1;
}

h2 {
	color: var(--primary-text-black);
    font-family: var(--cormorant);
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.1;
}

h2.heavy-line-header::after {
	content: "";
    display: block;
    height: 0;
    margin: 0.7rem 0 1rem;
    width: 2.5rem;
    border-bottom: 0.3rem solid;
    border-color: var(--primary-old-gold);
}

h3 {
	color: var(--primary-old-gold);
    font-family: var(--cormorant);
    font-size: 2.125rem;
    font-weight: 600;
    line-height: 1.1;
}

h4 {
	color: var(--primary-text-black);
    font-family: var(--cormorant);
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.1;
}

h5 {
	color: var(--primary-text-black);
    font-family: var(--open-sans);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.1;
}

h6 {
	color: var(--primary-text-black);
    font-family: var(--open-sans);
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.1;
}

p {
	margin: 0 0 1.25rem;
	font-size: 1.1rem;
	line-height: 1.6;
	font-weight: 400;
	color: var(--primary-text-black);
}

a, a:active {
	color: var(--primary-text-gold);
	text-decoration: underline;
}

a:hover {
	text-decoration: none
}

ul.content-list  {
	margin: 0 0 2rem;
	padding-left: 2rem;
}

ul.content-list li {
	list-style: disc;
}

.two-column {
	column-count: 2;
}

.three-column {
	column-count: 3;
}

.wfu-gray-pattern-bg {
	padding: 1.25rem;
	overflow: auto;
	background: #f2f2f2 url(images/ironwork-bg-panel.png) repeat-y right;
    border-style: solid;
    border-width: 1px;
    border-color: var(--neutral-gray);
}

hr.wfu-shields {
    border: none;
    background: url(images/shield-divider-transparent.png) no-repeat top center;
    height: 27px;
    margin: 27px auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
	opacity: 1;
}

hr.wfu-shields::before {
    height: 1px;
    background: var(--neutral-gray);
    display: block;
    content: " ";
    width: calc((100% - 156px) / 2);
    outline: 0 !important;
    position: relative !important;
    box-shadow: none !important;
}

hr.wfu-shields::after {
    height: 1px;
    background: var(--neutral-gray);
    display: block;
    content: " ";
    width: calc((100% - 156px) / 2);
    outline: 0 !important;
    position: relative !important;
    box-shadow: none !important;
}

.wfu-top-gold-line-bg {
	background: #fff;
    border-top: 5px solid var(--primary-text-gold);
    box-shadow: inset 0 -1px 0 1px var(--neutral-gray);
    -webkit-box-shadow: inset 0 -1px 0 1px var(--neutral-gray);
    padding: 1.25rem;
}

/*******************************************
:--- Alert ---:
*******************************************/

.alert-primary {
	background-color: #cad9a9;
	color: var(--primary-black);
	font-size: 1rem;
}

.btn-close-white {
	filter: none !important;
}

.alert-message a {
	font-weight: bold;
	color: var(--primary-black);
	text-decoration: underline;
}

.alert-message a:hover,
.alert-message a:focus,
.alert-message a:active {
	color: var(--primary-black);
	text-decoration: none;
}

/*******************************************
:--- Buttons ---:
*******************************************/

.btn,
.btn-primary {
	box-shadow: none !important;
    text-align: center;
    text-decoration: none !important;
    transition: all 300ms ease 0ms;
    position: relative;
    white-space: nowrap;
	font-size: 1.063rem;
	color: #fff;
	line-height: 1.1;
	background-color: var(--primary-text-gold);
    border: 1px solid var(--primary-text-gold);
    border-radius: 6px;
    font-size: 1rem;
    padding: 10px 16px;
	font-weight: 500;
}

.btn:hover,
.btn:focus,
.btn:active,
.btn:focus-visible,
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
	background-color: #755a23;
	border: 1px solid #755a23;
	color: #fff;
}

/* buttons scss override */
.btn-check:checked+.btn, 
.btn.active, 
.btn.show, 
.btn:first-child:active, 
:not(.btn-check)+.btn:active {
	background-color: #755a23;
	border: 1px solid #755a23;
}

.btn-black-outline {
	background-color: transparent;
    border-color: #2b2b2b;
    color: #2b2b2b !important;
}

.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline:active {
	background-color: #2b2b2b;
    border-color: #2b2b2b;
    color: #fff !important;
}

.btn-black {
	background-color: #565656;
    border-color: #565656;
    color: #fff !important;
}

.btn-black:hover,
.btn-black:focus,
.btn-black:active {
	background-color: #353535;
    border-color: #353535;
    color: #fff !important;
}

.btn-arrow {
	background-color: transparent;
    background-image: url(images/right-arrow.svg);
    background-repeat: no-repeat;
    background-position: right .2rem bottom 45%;
    background-size: auto 20px;
    font-weight: 700;
    line-height: 1.5;
    padding: 0 1.9rem 3px 0 !important;
    transition: background ease .2s;
    border-color: transparent;
    border-radius: 0;
    border-bottom: 1.5px dotted var(--primary-text-gold) !important;
    color: var(--primary-text-gold) !important;
    text-align: left;
	text-decoration: none !important;
}

.btn-arrow:hover,
.btn-arrow:focus,
.btn-arrow:active {
	background-color: transparent !important;
    background-position: right 0 bottom 45%;
    border-color: transparent !important;
}

/*******************************************
:--- Header ---:
*******************************************/

header.page-header {
	background: #1a1a1a;
	padding: 28px 0 0;
	position: relative;
	font-size: 1.125rem;
	text-align: center;
}

header.page-header .site-logo {
	display: block;
	max-width: 220px;
}

header.page-header .site-logo img {
	width: 100%;
}

/*******************************************
:--- Navigation ---:
*******************************************/

.page-nav .btn-primary {
	border-radius: 0;
	text-transform: uppercase;
	font-size: 0.9rem;
	padding: 8px 14px;
}

.nav-wrap {
	text-align: right;
}

/* Desktop Menu & Hover States */

nav.site-nav {
	padding: 10px 0;
}

nav.site-nav .menu-item {
	float: left;
	margin: 0 0.6em;
    position: relative;
}

nav.site-nav .menu-item a {
	color: #fff;
	display: block; 
	text-decoration: none;
	white-space: nowrap;
	font-family: var(--cormorant);
	font-weight: 700;
    font-size: 1.5rem;
    padding: 0.3em 0;
	margin-bottom: 0;
	line-height: 1;
	border-bottom: 1px solid transparent;
}

nav.site-nav .menu-item a:hover,
nav.site-nav .menu-item a:focus {
	border-bottom: 1px solid var(--primary-old-gold);
}

nav.site-nav ul.sub-menu {
	background: #1a1a1a;
	border: 0;
	border-radius: 0;
	position: absolute;
	left: -999em;
    padding: 0.5em;
	min-width: 140px;
    margin: 0;
}

nav.site-nav ul.sub-menu .menu-item {
	float: none;
	list-style: none;
    margin: 0.5em 0.65em;
}

nav.site-nav ul.sub-menu .menu-item a {
    display: table;
    color: #fff;
    font-family: var(--open-sans);
	font-size: .9rem;
	font-weight: 600;
}

/* Mobile Nav Customization */

.nav-open span {
	background: #fff;
}

/*******************************************
:--- Homepage ---:
*******************************************/

.hero-section.hero-home {
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    margin: 0;
    position: relative;
}

.hero-section.hero-home:before {
	background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.hero-section.hero-home .hero-content {
    justify-content: end;
    display: flex;
    flex-flow: column;
    height: 550px;
    padding: 0;
	text-shadow: 2px 2px 9px #222, -2px -2px 9px #222;
}

.hero-section.hero-home .hero-content h1 {
	font-family: var(--cormorant);
    font-size: 3.625rem;
    line-height: 1.2;
	font-weight: 900;
	margin-bottom: 0;
	color: #fff;
	border-bottom: none !important;
}

.hero-section.hero-home .hero-content h2 {
	font-family: var(--open-sans);
    color: #fff;
    font-size: 1.188rem;
    line-height: 1.25;
    margin-bottom: 20px;
	font-weight: 500;
}

.hero-section.hero-home .hero-content a.btn-primary {
	text-shadow: none !important;
	width: fit-content;
	margin: 0 auto;
	display: block;
    padding: 10px 50px;
}

/* Testimonial */

.background-image {
    background-color: #eee;
	background-position: top center;
	background-size: cover;
    margin: 0;
	position: relative;
    padding: 60px 0;
}

.parallax {
    min-height: 400px; 
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.parallax:before {
	background: rgba(0, 0, 0, 0.75);
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.parallax.testimonial-section {
	text-shadow: 2px 2px 9px #222, -2px -2px 9px #222;
}

.parallax.testimonial-section blockquote {
	background-color: transparent;
}

.parallax.testimonial-section blockquote p {
	color: #fff;
	font-family: var(--cormorant);
	font-style: italic;
	font-size: 34px;
	line-height: 1.3;
	font-weight: 900;
}

.parallax.testimonial-section blockquote p.testimonial-name {
	font-family: var(--open-sans);
	font-weight: 900;
	font-size: 24px;
	line-height: 1.4;
	margin-bottom: 0;
}

.parallax.testimonial-section blockquote::before {
	background: none;
}

blockquote {
	background-color: #1a1a1a;
	padding: 50px 40px 40px;
	text-align: center;
	position: relative;
}

blockquote::before {
	content: "";
    background: url(images/quotes.png) no-repeat 50%;
    position: absolute;
    width: 120px;
    height: 80px;
    top: 15px;
    left: 10px;
}

blockquote p {
	color: #fff;
	font-family: var(--cormorant);
	font-size: 30px;
	line-height: 1.3;
	font-weight: 900;
}

blockquote p.testimonial-name {
	font-family: var(--cormorant);
	font-style: italic;
	font-weight: 900;
	font-size: 32px;
	line-height: 1.3;
	margin-bottom: 10px;
}

blockquote p.testimonial-title {
	font-family: var(--open-sans);
	font-weight: 900;
	font-size: 18px;
	line-height: 1.4;
	margin-bottom: 0;
}

/*******************************************
:--- Hero and Page Title ---:
*******************************************/

.hero-section {
	min-height: 500px;
}

.hero-section.hero-image {
	background-position: top center;
	background-size: cover;
}

.hero-content h1 {
    color: var(--primary-text-black);
    font-family: var(--cormorant);
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 10px;
    margin-top: 0;
    padding-bottom: 7px;
    padding-left: 5px;
}

.hero-section-alt .hero-content h1 {
	border-bottom: none !important;
}

.hero-section-alt h1 {
	margin: 0;
}

.hero-section-alt.hero-image {
	max-height: 500px;
	background-position: center center;
	background-size: cover;
	padding-bottom: 12rem;
	padding-top: 12rem;
}

.hero-section-alt::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, .35);
}

.hero-section-alt .hero-content {
	text-shadow: 2px 2px 9px #222, -2px -2px 9px #222;
	text-align: center;
}

.hero-section-alt .hero-content h1 {
	color: #fff;
	font-family: var(--cormorant);
    font-size: 4rem;
    line-height: 1.2;
	font-weight: 900;
}


/*******************************************
:--- Structure ---:
*******************************************/

#breadcrumbs {
	margin: 0 0 1rem 0;
    list-style: none;
}

#breadcrumbs a {
	color: var(--primary-text-black);
	text-decoration: underline;
}

#breadcrumbs a:hover,
#breadcrumbs a:focus,
#breadcrumbs a:active {
	text-decoration: none;
}

#breadcrumbs li {
	display: inline;
	margin: 0 0.5rem 0 0;
	color: #0a0a0a;
	font-size: 0.75rem;
	line-height: 1.6;
}


/*******************************************
:--- Content Section ---:
*******************************************/

.main-content p a:focus-visible,
.main-content ul li a:focus-visible {
	background: var(--primary-dark);
	color: var(--white);
	outline: 0;
}

.main-content ul {
	margin: 0 0 2rem;
}

.main-content  ul li {
	list-style: disc;
	margin: 0 0 0 1.5rem;
}

.main-content ol li {
	list-style: auto;
	margin: 0 0 0 1.5rem;
}

.main-content .table-wrap {
	overflow-x: auto;
}

.main-content table {
	margin: 0 0 1.5em;
	width: 100%;
    border: 1px solid var(--neutral-gray);
    border-radius: 6px;
	border-collapse: separate;
}

.main-content table td {
	--bs-table-bg-type: var(--light-grey);
	color: #000;
	padding: 1rem;
}

.table-striped>tbody>tr:nth-of-type(even)>* {
    --bs-table-bg-type: #fff;
}

.main-content table caption {
	font-size: 0.8rem;
	margin: 1rem 0 0;
}

/*******************************************
:--- Sidebar ---:
*******************************************/

.sidebar-block {
	padding: 1.25rem;
}

.sidebar h2 {
	color: var(--primary-text-black);
	font-family: var(--cormorant);
    font-size: 2.125rem;
    font-weight: 600;
    line-height: 1.1;
}

.sidebar li {
	margin: 0 0 1rem 0;
}

.sidebar li a {
	color: var(--primary-text-gold);
}

.sidebar .contact:before {
	font-family: "Font Awesome 6 Pro";
    font-weight: 300;
	display: inline-block;
	margin-right: 12px;
	font-weight: 900;
	color: var(--primary-text-gold);
}

.sidebar .contact-email:before {
    content: "\f0e0";
}

.sidebar .contact-phone:before {
    content: "\f095";
}

.sidebar hr {
	border-color: var(--neutral-gray);
	opacity: 1;
    margin: 0.5rem 0 1rem;
}

.sidebar-nav li a {
	background-color: transparent;
    background-image: url(images/right-arrow.svg);
    background-repeat: no-repeat;
    background-position: right .2rem bottom 45%;
    background-size: auto 20px;
    font-weight: 700;
    line-height: 1.4;
    padding: 0 1.9rem 3px 0 !important;
    transition: background ease .2s;
    border-color: transparent;
    border-radius: 0;
    border-bottom: 1.5px dotted var(--primary-text-gold) !important;
    color: var(--primary-text-gold) !important;
    text-align: left;
	text-decoration: none !important;
	font-size: 1rem;
}

.sidebar-nav li a:hover,
.sidebar-nav li a:focus,
.sidebar-nav li a:active {
	background-color: transparent !important;
    background-position: right 0 bottom 45%;
    border-color: transparent !important;
}

/*******************************************
:--- Form ---:
*******************************************/

/* Archa Form Styles */

.form-section {
	background-color: var(--secondary-cream);
	padding: 40px;
}

.form-section h2 {
    color: var(--primary-text-black);
}

.form-section a {
	color: var(--primary-text-gold) !important;
}

.form-section p.form-blurb {
	margin-bottom: 30px;
}

.form.one-step #one-step-fields .input-wrap {
	margin: auto !important;
}

.form.one-step .input-wrap label,
.form.one-step .select-wrap label {
	color: #000 !important;
    font-size: 1rem !important;
    line-height: 1.3 !important;
    margin: 0 0 10px !important;
	text-transform: none !important;
	letter-spacing: normal !important;
}

.form.one-step .input-wrap input {
	background: #fff !important;
    border: 1px solid #ccc !important;
    border-radius: 7px !important;
	padding: 12px 15px !important;
}

.form.one-step .input-wrap input:hover,
.form.one-step .input-wrap input:focus,
.form.one-step .input-wrap input:active,
.form.one-step .select-wrap select:hover,
.form.one-step .select-wrap select:focus,
.form.one-step .select-wrap select:active {
	outline: var(--primary-old-gold) solid 1px !important;
}

.form.one-step .select-wrap select {
	padding: 12px 60px 12px 15px !important;
    font-size: 1rem !important;
    display: block;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid #ccc !important;
    border-radius: 7px !important;
    position: relative;
    z-index: 4;
    cursor: pointer;
}

.form.one-step .select-wrap::before {
    content: "\25BE";
    font-size: 17px;
    font-weight: 900;
    color: var(--primary-text-black);
    font-family: "Font Awesome 6 Pro";
    text-align: center;
    line-height: 48px;
    height: 50px;
    width: 48px;
    position: absolute;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.form.one-step .form-controls {
    float: left;
    display: block;
    width: 100%;
}

.form.one-step .form-controls input {
	box-shadow: none !important;
    text-align: center !important;
    text-decoration: none !important;
    transition: all 300ms ease 0ms;
    position: relative;
    white-space: nowrap;
	font-size: 1rem !important;
	color: #fff !important;
	line-height: 1.1;
	background-color: var(--primary-text-gold) !important;
    border: 1px solid var(--primary-text-gold) !important;
    border-radius: 6px !important;
    padding: 10px 16px;
	font-weight: 500 !important;
	float: none !important;
	width: auto !important;
}

.form.one-step .form-controls input:hover,
.form.one-step .form-controls input:focus,
.form.one-step .form-controls input:active {
	background-color: #755a23 !important;
	border: 1px solid #755a23 !important;
}

.form.one-step .privacy,
.form.one-step .international-link,
.form.one-step .tcpa {
    font-weight: 400;
    font-size: 10px;
    float: none;
}

.focus-step1:hover {
    text-decoration: underline;
}

.form.one-step .privacy {
	margin-bottom: 0.938rem;
}

.form.one-step .international-link {
	margin-bottom: 0.938rem;
    padding-top: 8px !important;
	display: none !important;
}

.form.one-step .tcpa {
    line-height: 1.5;
	margin-bottom: 10px;
}

.form.one-step .privacy span {
    color: var(--primary-text-gold) !important;
}

.form.one-step span.asterisk {
	color: var(--primary-text-gold) !important;
}

.form.one-step #programs-error.error,
.form.one-step #first_name-error.error,
.form.one-step #last_name-error.error,
.form.one-step #email-error.error,
.form.one-step #phone-error.error {
    color: red !important;
	text-transform: uppercase !important;
	font-size: 12px !important;
    font-weight: 500 !important;
    position: absolute !important;
    padding: 5px 0 0 !important;
}

.confirm-info .form.one-step .input-wrap::after,
.confirm-info .form.one-step .select-wrap::after,
.form.one-step .input-wrap::after,
.form.one-step .select-wrap::after {
	display: none !important;
}

/* International Phone */

.form.one-step .input-wrap .iti {
    display: block;
}

.form.one-step ul.iti__country-list li {
    margin: 0;
}

.form.one-step ul.iti__country-list li:before {
    display: none;
}

/* Popover */

.popover .popover-arrow::after, 
.popover .popover-arrow::before {
	border-bottom-color: var(--secondary-yellow);
	border-top-color: var(--secondary-yellow);
}

.popover {
    background: var(--secondary-yellow);
    border: 1px solid var(--secondary-yellow) !important;
    color: var(--primary-black);
    padding: 6px;
    text-align: center;
    box-shadow: 2px 1px 5px rgba(0, 0, 0, 0.2);
}

.popover-body {
    font-size: 16px;
    font-weight: bold;
    color: var(--primary-black);
	padding: 6px !important;
}

.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::after,
.bs-popover-bottom>.popover-arrow::after,
.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::after,
.bs-popover-top>.popover-arrow::after {
    border-bottom-color: var(--secondary-yellow);
    border-top-color: var(--secondary-yellow);
}

/*******************************************
:--- Blog and Articles ---:
*******************************************/

/* Article Date and Share Links */

.article-info {
	
}

.article-info i,
.article-list i {
    font-size: 1.25rem;
	color: var(--primary-old-gold);
}

.article-date {
	font-size: 15px;
}

.article-share a {
	color: var(--primary-old-gold);
	transition: color .15s ease-in-out;
}
.article-share a:hover {
	color: var(--primary-text-gold);
}

/* Article List */

article.article-list h2 {
	font-size: 2rem;
}

.article-pagination .previous:before {
	content: '\f104';
	font-family: "Font Awesome 6 Pro";
	margin-right: 0.5rem;
}

.article-pagination .next:after {
	content: '\f105';
	font-family: "Font Awesome 6 Pro";
	margin-left: 0.5rem;
}

/*******************************************
:--- Accordion ---:
*******************************************/

.accordion-item {
    background-color: #eee;
    border-top-right-radius: 0 !important;
    border-top-left-radius: 0 !important;
    border: 0px solid transparent !important;
}

.accordion-item h2.accordion-header {
    font-size: 1.1rem;
    margin: 0;
	border-bottom: solid 1px #ddd;
}

.accordion-item h3.accordion-button {
	border-bottom: solid 1px #ddd;
    color: var(--primary-text-black);
    cursor: pointer;
    font-family: var(--open-sans);
    line-height: 1.6;
    outline: none;
    padding: 1.15rem 1rem;
    position: relative;
    text-align: left;
    width: 100%;
	background: #efefef;
	font-size: 1.1rem;
	font-weight: 500;
	margin: 0;
	box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    color: var(--primary-text-black);
}

.accordion-item h3.accordion-button:hover,
.accordion-item h3.accordion-button:focus,
.accordion-item h3.accordion-button:active {
    background: #ddd;
    border-bottom-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
    border-top-left-radius: 0 !important;
}

.accordion-item .accordion-body {
    padding: 20px;
    background-color: #fff;
    border: none !important;
	font-size: 1.1rem;
	line-height: 28px;
}

.accordion-button:focus {
    border-color: transparent !important;
}

.accordion-button.collapsed::after {
    content: "\f078";
    background-image: none !important;
    color: #000;
    font-size: 14px;
    font-weight: 700;
    font-family: "Font Awesome 6 Pro";
    transform: none !important;
}

.accordion-button:not(.collapsed)::after {
    content: "\f077";
    background-image: none !important;
    color: #000;
    font-size: 14px;
    font-weight: 700;
    font-family: "Font Awesome 6 Pro";
    transform: none !important;
}

.accordion-item:last-of-type .accordion-button.collapsed,
.accordion-item:last-of-type,
.accordion-item:first-of-type {
    border-bottom-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
    border-top-left-radius: 0 !important;
}

/*******************************************
:--- Cards ---:
*******************************************/

.single-card a {
	text-decoration: none;
}

.single-card h3 {
	margin-top: 10px;
	color: var(--primary-old-gold);
	font-size: 1.688rem;
}

.single-card {
	flex: 1;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    padding: 1.25rem 1.25rem 0;
    width: 100%;
    position: relative;
    transition: all .2s linear;
	box-shadow: 0 0 2px rgba(0, 0, 0, .1), 0 0 4px rgba(0, 0, 0, .1), 0 0 8px rgba(0, 0, 0, .07);
}

.single-card:hover {
    transform: translateY(-.2rem);
    box-shadow: 0 0 2px rgba(0, 0, 0, .1), 0 0 4px rgba(0, 0, 0, .1), 0 0 8px rgba(0, 0, 0, .07), 0 0 16px rgba(0, 0, 0, .07);
}

.single-card::after {
    background-color: var(--primary-text-black);
    content: '';
    display: block;
    height: 6px;
    transition: background-color .5s ease, transform .5s ease;
    transform: scaleX(.2);
    transform-origin: left;
    margin: 20px 0;
}

.single-card:hover::after {
    background-color: var(--primary-old-gold);
    transform: scaleX(1);
}

.single-card .single-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.single-card .single-card-content p {
    font-size: 1rem;
}

.shadow-box {
	box-shadow: 0 0 2px rgba(0, 0, 0, .1), 0 0 4px rgba(0, 0, 0, .1), 0 0 8px rgba(0, 0, 0, .07);
	padding: 1.25rem;
}

.industry-market-insights-box {
	background-image: linear-gradient(#131313, #333) !important;
	padding: 25px 30px;
	color: #fff;
	text-align: center;
}

.industry-market-insights-box h2,
.industry-market-insights-box p,
.industry-market-insights-box a {
	color: #fff;
	text-align: center;
}

.industry-market-insights-box p {
	font-size: 1rem;
}

.industry-market-insights-box img {
	width: 65px;
	margin-bottom: 15px;
}


/*******************************************
:--- Faculty Page ---:
*******************************************/

.faculty-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
}

.faculty-member-card {
	border-radius: 0;
    border: 1px solid #d8d8d8;
    background-color: #f2f2f2;
    background-repeat: repeat-y;
    background-position-x: right;
	position: relative;
    padding: 1rem;
}

.faculty-image {
	margin-right: 1rem;
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    overflow: hidden;
    display: inline-block;
    background-color: #dcdcdc;
    color: #fff;
}

.faculty-image img {
    display: block;
    transition: all .25s ease-in-out;
}

.faculty-name {
	font-size: 1.25rem;
	overflow: hidden;
	text-overflow: ellipsis;
	font-family: var(--cormorant);
	font-weight: 700;
	line-height: 1.1;
}

.faculty-title {	
	overflow: hidden;
	text-overflow: ellipsis;
	font-family: var(--cormorant);
	font-weight: 700;
	line-height: 1.1;
}

#background_404 {
	background-color: #2b2b2b;
	margin: 0;
    padding: 30px 0;
}

#background_404 #inner_background_404 {
	background: #fff url(images/deacon-shadow.png) no-repeat 97% bottom;
	background-size: 180px;
    border-radius: 15px;
    margin: 80px 20px 90px;
    overflow: auto;
    padding: 20px 30px 190px;
}

#background_404 #inner_background_404 h1 {
	font-size: 7rem;
	font-family: var(--cormorant);
	font-weight: 700;
}

#background_404 #inner_background_404 h2 {
	font-family: var(--cormorant);
	color: var(--primary-old-gold);
	font-size: 2.5rem;
	font-weight: 700;
    line-height: 1.2;
	margin-top: 4px;
    margin-bottom: 8px;
}

/*******************************************
:--- Footer ---:
*******************************************/

footer.page-footer {
	font-size: 0.85rem;
	color: #efefef;
	background-color: #353535;
	padding-bottom: 20px;
}

.upper-footer {
	background-color: #1a1a1a;
	padding-top: 30px;
	padding-bottom: 30px;
}

.lower-footer {
	padding-top: 30px;
	padding-bottom: 20px;
}

footer.page-footer .footer-logo-col .footer-logo {
    max-width: 210px;
	display: block;
}

footer.page-footer ul#menu-footer li.menu-item {
	margin-bottom: 8px;
}

footer.page-footer p {
	padding-bottom: 0 !important;
	font-size: .85rem;
    color: #efefef;
    margin-right: 20px;
    margin-bottom: 3px;
}

footer.page-footer a {
    color: #efefef;
	font-size: .825rem;
	transition: all .2s ease-in-out;
	border-bottom: 1px dotted #efefef;
	text-decoration: none !important;
}

footer.page-footer a:hover,
footer.page-footer a:focus,
footer.page-footer a:active {
    color: #ccc;
}

footer.page-footer .social-icons {
	display: flex;
	justify-content: end;
}

footer.page-footer .social-icons a {
	transition: all .2s ease-in-out;
    font-size: 1.5rem;
    display: inline-block;
    line-height: 1;
    text-align: center;
    color: #efefef;
    border-bottom: none;
}

footer.page-footer .social-icons a:hover,
footer.page-footer .social-icons a:focus,
footer.page-footer .social-icons a:active {
    color: #ccc;
}

footer.page-footer .social-icons a i {
    padding: 3px 10px 4px;
}

footer.page-footer .btn-footer {
	font-family: var(--pathway-gothic-one);
	color: #fff;
	font-size: 1.375rem;
	background-color: #353535;
	border: none !important;
	display: block;
    padding: 5px 0;
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.5;
    text-transform: uppercase;
    text-align: center;
    border-radius: 4px;
}

footer.page-footer .btn-footer:hover,
footer.page-footer .btn-footer:focus,
footer.page-footer .btn-footer:active {
	background-color: var(--primary-text-gold);
	color: #fff;
}

/*******************************************
:--- Media Queries ---:
*******************************************/

@media (max-width: 1440px) {
	article.article-list img {
		height: auto;
	}
}

@media (max-width: 1200px) {

}

@media (max-width: 991px) {

	header.page-header .site-logo {
		max-width: 180px;
	}

	nav.site-nav .menu-item {
		margin: 0 1rem;
	}

	header.page-header {
		padding: 28px 0;
	}

	.program-grid {
		grid-template-columns: repeat(1, 1fr);
	}
	
	article.article-list img {
		height: 300px;
		width: 100%;
	}
	
	footer.site-footer .site-logo {
		max-width: 200px;
	}

	footer.site-footer #menu-footer {
		columns: 1;
		-webkit-columns: 1;
		-moz-columns: 1;
	}
	
}

@media (min-width: 991px) {
	
	/* Desktop Navigation */

	nav.site-nav .menu-item.menu-item-has-children:hover ul.sub-menu {
		display: block;
		left: auto;
		min-width: 140px;
	}

	nav.site-nav .menu-item.menu-item-has-children:hover ul.sub-menu li ul.sub-menu {
		position: absolute;
		left: -999em;
	}

	nav.site-nav .menu-item.menu-item-has-children:hover ul.sub-menu .menu-item.menu-item-has-children:hover ul.sub-menu {
		display: block;
		left: auto;
	}
	
	nav.site-nav .menu-item.menu-item-has-children.open ul.sub-menu.dropdown-menu {
		border-radius: 0;
		display: block;
		float: none;
		left: 0;
	}

	nav.site-nav .menu-item.menu-item-has-children:last-child:hover ul.sub-menu {
        left: auto;
        right: 0;
    }
	
}

@media (max-width: 767px) {

	h1 {
		font-size: 2.25rem;
	}

	h2 {
		font-size: 2rem;
	}
	
	h2.heavy-line-header::after {
		width: 2rem;
	}

	.sidebar h2 {
		font-size: 2rem;
	}

	h3 {
		font-size: 1.75rem;
	}

	header.site-header .site-logo {
		max-width: 200px;
	}
	
	.hero-section.hero-home .hero-content {
		height: 350px;
	}

	.hero-content h1,
	.hero-section.hero-home .hero-content h1,
	.hero-section-alt .hero-content h1 {
		font-size: 2.25rem;
	}
	
	.hero-section.hero-home .hero-content h2 {
		font-size: 1rem;
	}

	.form-section {
		padding: 20px;
	}

	.background-image {
		padding: 0;
	}

	.parallax {
        background-attachment: initial;
    }

	.parallax.testimonial-section blockquote p,
	.testimonial-section blockquote p {
		font-size: 28px;
		line-height: 1.3;
	}
	
	.parallax.testimonial-section blockquote p.testimonial-name,
	.testimonial-section blockquote p.testimonial-name {
		font-size: 18px;
		line-height: 1.5;
	}

	blockquote {
		background-color: #1a1a1a;
		padding: 40px 30px 30px;
		text-align: center;
		position: relative;
	}

	blockquote::before {
		background-size: 50px;
		top: 15px;
		left: -10px;
	}
	
	blockquote p {
		font-size: 24px;
	}
	
	blockquote p.testimonial-name {
		font-size: 24px;
	}
	
	blockquote p.testimonial-title {
		font-size: 15px;
	}

	.faculty-grid {
		grid-template-columns: repeat(1, 1fr);
	}

	.two-column {
		column-count: 1;
	}

	.three-column {
		column-count: 1;
	}

	.upper-footer {
		padding-top: 10px;
		padding-bottom: 0;
	}

	footer.page-footer .footer-logo-col .footer-logo {
		margin: auto;
		padding-bottom: 20px;
	}

	footer.page-footer .footer-logo-col {
		border-bottom: 1px solid #bdbdbd;
        padding: 0 20px;
	}

	footer.page-footer .social-icons {
		justify-content: start;
	}
}

@media (max-width: 640px) {

	.row > * {
		padding-left: 25px;
		padding-right: 25px;
	}

	.hero-section-alt.hero-image,
	.hero-section-alt.hero-home {
		padding-bottom: 3rem !important;
		padding-top: 3rem !important;
	}

	.hero-section {
		min-height: 375px;
	}

	.form.one-step .form-controls input {
		width: 100% !important;
	}

	.main-content table td {
		font-size: 0.9rem;
	}
}

@media (max-width: 480px) { 

}

@media (max-width: 320px) { 

}

/* Sticky sidebar */

@media(min-width:991px) {
    .sticky-sidebar {
        position: -webkit-sticky;
        position: sticky;
        top: 20px;
        margin-bottom: 40px;
    }

    .overlap {
        margin-top: 0
    }
}

@media all and (-ms-high-contrast:none),
(-ms-high-contrast:active) {
    .sticky-sidebar {
        top: 0
    }

    .accordion ul.nav-pills li {
        flex: none;
    }

    img {
        max-width: 100%;
        flex-shrink: 0;
    }
}