/*
Theme Name: 	AC Base 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/defaults.css");

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

body {
    font-family: "Theinhardt", "Helvetica Neue", Helvetica, Arial, sans-serif;
    background: #fff;
    font-size: 1rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 1.2rem;
}

h1,
div.page-title {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin: 0 0 1.5rem;
}

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

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

blockquote {}

blockquote p {}

.btn {
    border-radius: 0;
}

section.block {
    padding: 4rem 0;
}

section.block.alternate-bg {
    background: var(--main-background);
}


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

.alert-message {}

.alert-message a {
    color: #fff;
    font-weight: bold;
}


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

header.site-header {
    position: relative;
}

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

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

header a {
    color: #fff;
}

header a.btn-ghost {
    color: var(--primary-blue);
    border: 1px solid var(--primary-blue);
    border-radius: 0;
}

header a.btn-ghost:hover {
    color: var(--primary-blue);
    background: #fff;
}


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


/* Desktop Menu & Hover States */

nav.site-nav .menu-item {
    float: left;
    /* overflow: hidden; */
    margin: 0 1rem;
}

nav.site-nav .menu-item a {
    color: var(--primary-blue);
    text-transform: uppercase;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: .5px;
    display: block;
    padding: .5rem 0;
    text-decoration: none;
    white-space: nowrap;
}

nav.site-nav .menu-item a:hover,
nav.site-nav .menu-item a:focus,
nav.site-nav .menu-item a:active {
    background: unset;
}

nav.site-nav .menu-item a::after {
    background-color: var(--primary-red);
    bottom: 1px;
    content: '';
    height: 4px;
    transition: all .3s cubic-bezier(.7, .3, .75, 1.4);
    left: 0;
    position: absolute;
    opacity: 0;
    right: 0;
    width: 100%;
}

nav.site-nav .menu-item.current-menu-item a::after,
nav.site-nav .menu-item a:focus::after,
nav.site-nav .menu-item a:hover::after {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
}

nav.site-nav ul.sub-menu {
    background: var(--white);
    border: 0;
    border-radius: 0;
    position: absolute;
    left: -999em;
    padding: 0;
}

nav.site-nav ul.sub-menu .menu-item {
    float: none;
}


/* Mobile Nav Customization */

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

nav.site-nav ul.mobile-only-nav {
    background: var(--primary-red);
    font-weight: 700;
}


/* Buttons */

.btn {
    border-radius: 3rem;
    font-weight: 700;
    padding: 10px 30px;
}

.btn-primary {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: #fff;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background: var(--primary-red);
    border-color: var(--primary-red);
    color: #fff;
}

.btn-secondary {
    background: var(--primary-red);
    border-color: var(--primary-red);
    color: #fff;
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active {
    background: var(--primary-red-dark);
    border-color: var(--primary-red-dark);
    color: #fff;
}

.btn-trans {
    background: transparent;
    border: none;
}

.btn-trans:hover,
.btn-trans:focus,
.btn-trans:active {
    background: transparent;
    border: none;
}

.btn-icon {
    display: flex;
    align-items: center;
}

.btn-icon .cta-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex: 0 0 36px;
    height: 36px;
    margin-right: 10px;
    overflow: visible;
    position: relative;
    width: 36px;
    font-size: 20px;
    background: var(--primary-red);
}

.btn-icon .cta-icon:before {
    display: block;
    content: '';
    border: 2px solid var(--primary-red);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    opacity: 0;
}

.btn-icon:hover .cta-icon {
    background: var(--primary-red);
}

.btn-icon:hover .cta-icon:before {
    -webkit-animation-name: ripple-out;
    animation-name: ripple-out;
}


/* Blue Variant */

.btn-icon .cta-icon.icon-blue {
    background: var(--primary-blue);
}

.btn-icon .cta-icon.icon-blue:before {
    border: 2px solid var(--primary-blue);
}

.btn-icon:hover .cta-icon.icon-blue {
    background: var(--primary-blue);
}

@keyframes ripple-out {
    0% {
        opacity: 1;
    }
    100% {
        top: -12px;
        right: -12px;
        bottom: -12px;
        left: -12px;
        opacity: 0;
    }
}

.btn-icon .cta-text {
    text-align: left;
    line-height: 1.2;
}


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


/* Hero Section */

.hero-section.hero-home {
    background-position: center center;
    background-size: cover;
    height: 50vh;
}


/* Benefits & Quick Facts */

.benefits-section .benefit-bullet {
    list-style: none;
}

.benefits-section .benefit,
.facts-section .benefit {
    flex: 1 1 100%;
}

.benefits-section .benefit-icon,
.facts-section .benefit-icon {
    font-size: 2.25rem;
}

.benefits-list {
    margin: 0;
}

.benefits-list .benefit-icon {
    font-size: 1.25rem;
}

.facts-section table tr td,
.facts-section table tr th {
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

p.intro-text {
    font-size: 1.625rem;
    line-height: 1.3;
}


/* Best Fit Section */

.best-fit a {
    text-decoration: none;
    opacity: 1;
    transition: all 0.15s ease-in-out;
}

.best-fit a:hover,
.best-fit a:active {
    text-decoration: none;
    opacity: .8;
}

.best-fit .big-cta .icon {
    font-size: 2.75rem;
}

.best-fit .big-cta .text {
    text-transform: unset;
    font-weight: bold;
    font-size: 1.125rem;
}

.ranking-section .ranking {
    border: 4px solid var(--primary-red);
}

.ranking-section .ranking .rank {
    font-weight: 900;
    word-wrap: break-word;
    line-height: .95;
}

.ranking-section hr.red-line {
    border-top: 4px solid var(--primary-red);
    opacity: 1;
    width: 3.75rem;
}

.ranking-section .ranking .source {
    font-size: 1.25rem;
}


/* Cards for multi-program site */

.program-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}


/* Testimonial */

.testimonial-section blockquote {
    font-size: 1.4rem;
}


/* About Section */

.about-section {
    background-position: center;
    background-size: cover;
}


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

.hero-section h1 {
    margin: 0;
}

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

.single-post .hero-section.hero-image {
    background-position: top 20% center;
    z-index: 1;
    position: relative;
}

.single-post .hero-section.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, .8), rgba(0, 0, 0, 0));
    z-index: -1;
}


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

.breadcrumb-section {
    background: var(--light-grey);
}

#breadcrumbs {
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    align-content: center;
    margin: 0;
}

#breadcrumbs li.home a {
    color: var(--primary-red);
}

#breadcrumbs li a {
    color: var(--text-primary);
    text-decoration: none;
}

#breadcrumbs li.current {
    color: var(--primary-red);
    text-decoration: none;
}

#breadcrumbs li.home a:hover,
#breadcrumbs li.home a:focus {
    color: var(--primary-red-dark);
}

#breadcrumbs li {
    list-style: none;
    margin: 0 .8rem 0 0;
}

#breadcrumbs li.separator {
    color: var(--light-gray);
    font-size: .5rem;
}

#breadcrumbs li.separator i {
    display: flex;
    align-items: center;
    align-content: center;
}


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

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

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

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

.main-content hr {}

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

.main-content table {
    margin: 0 0 1.5em;
    width: 100%;
}

.main-content table th {
    background-color: var(--main-background);
    border-bottom: 1px solid var(--text);
    padding: .75rem;
}

.main-content table td {
    border: unset;
    color: #000;
    padding: .75rem;
}

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

ul.bullet-list {
    margin: 0 0 2rem;
}

ul.bullet-list li {
    list-style: disc;
    margin: 0 0 .75rem 1.5rem;
}


/* Quick Facts */

.quick-facts {
    border-top: 4px solid #d50032;
    box-shadow: 0 0 13px 0 rgba(166, 166, 166, 0.5);
    background: var(--white);
}

.quick-facts.border-red {
    border-top: 4px solid var(--primary-red);
}

.quick-facts.border-blue {
    border-top: 4px solid var(--secondary-teal);
}

.quick-facts .card-item {
    margin: 0;
    border: none;
    border-bottom: 1px solid var(--light-gray);
    padding: 15px 0 10px;
}

.quick-facts .card-item.no-border-lg {
    border-bottom: none;
}

.quick-facts .card-item p {
    margin-bottom: 3px;
}

.quick-facts .card-item p.desc {
    font-size: 0.875rem;
    text-transform: uppercase;
}

.quick-facts .card-item p.value {
    font-weight: 700;
}


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

.custom-accordion .accordion,
.accordion-item:first-of-type .accordion-button,
.accordion-item:last-of-type .accordion-button.collapsed {
    border-radius: 0;
}

.custom-accordion .accordion-item {
    margin-bottom: 10px;
    border: 0;
    border-radius: 0;
}

.custom-accordion button.accordion-button {
    background-color: var(--primary-blue);
    color: var(--white) !important;
    font-weight: bold;
    padding: 20px 30px;
    font-size: 1.125rem;
}

.custom-accordion .accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(0, 133, 173, 0.5);
}

.custom-accordion button.accordion-button.collapsed {
    background-color: var(--secondary-navy);
}

.custom-accordion .accordion-button::after {
    font-family: "Font Awesome 6 Pro";
    content: '\f078';
    font-weight: 300;
    font-size: 1.3rem;
    line-height: 1;
    background-image: none;
}

.custom-accordion .accordion-body {
    background: var(--main-background);
    /* border: 1px solid var(--primary-blue); */
    margin-top: -2px;
    box-shadow: inset 0 0 0 1px var(--primary-blue);
}

.custom-accordion ul.bullet-list {
    margin: 0 0 2rem;
}

.custom-accordion ul.bullet-list li {
    list-style: disc;
    margin: 0 0 .75rem 1.5rem;
}


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

.sidebar a {
    color: var(--text-primary);
    text-decoration: none;
    padding-bottom: 0.5rem;
}

.sidebar a:hover,
.sidebar a:focus {
    color: var(--primary-red);
    text-decoration: none;
}

.sidebar .contact:before {
    font-family: "Font Awesome 5 Pro";
    font-weight: 300;
    display: inline-block;
    margin-right: 10px;
}

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

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

.sidebar .contact-chat:before {
    content: "\f4ad";
}

.sidebar ul.on-this-page li a.chain-icon::after {
    padding-left: 0.5rem;
    content: "\f0c1";
    font-family: "Font Awesome 6 Pro";
    font-weight: 300;
    margin-right: 0.5rem;
}


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

.form-section h2 {
    font-weight: 700;
}

.form-section p {
    font-size: 1.125rem;
}

.form-section a {
    color: var(--white);
    font-weight: 700 !important;
    background-color: none !important;
}

.form-section a:hover,
.form-section a:focus,
.form-section a:active {
    font-weight: 700 !important;
    color: var(--secondary-yellow) !important;
}

.form-section.light-form a {
    color: var(--primary-blue);
    font-weight: 700 !important;
    background-color: none !important;
}

.form.one-step .select-wrap {
    margin-bottom: 1.5rem !important;
}

.form.one-step #one-step-fields {
    gap: 1.5rem !important;
    margin-bottom: 1.5rem !important;
}

.form.one-step .select-wrap select {
    background-color: var(--white) !important;
    background-image: linear-gradient(45deg, transparent 50%, #58595b 50%), linear-gradient(135deg, #58595b 50%, transparent 50%), linear-gradient(to right, #fff, #fff) !important;
}

.form.one-step .select-wrap label,
.form.one-step .input-wrap label {
    color: var(--white) !important;
    text-transform: unset !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    letter-spacing: unset !important;
}

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

.form.one-step .form-controls input {
    background: var(--primary-red) !important;
    width: unset !important;
    float: unset !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    padding: 15px 40px !important;
    border: none !important;
}

.form.one-step .form-controls input:hover,
.form.one-step .form-controls input:focus,
.form.one-step .form-controls input:active {
    background: var(--primary-red-dark) !important;
    color: var(--white) !important;
    border: none !important;
}

.form.one-step span.asterisk {
    color: var(--secondary-yellow) !important;
}

.form.one-step #programs_select-error.error,
.form.one-step #program_concentration-error.error,
.form.one-step #program-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: var(--white) !important;
    background-color: var(--primary-red) !important;
    padding: 2px 5px !important;
}

.form.one-step .select-wrap select[aria-invalid="true"],
.form.one-step .input-wrap textarea[aria-invalid="true"],
.form.one-step .input-wrap input[aria-invalid="true"] {
    border: 1px solid var(--primary-red) !important;
}

.form.one-step .iti__country-list {
    color: var(--text);
}

.form-section.light-form a:hover,
.form-section.light-form a:focus,
.form-section.light-form a:active {
    font-weight: 700 !important;
    color: var(--primary-red) !important;
}

.form-section.light-form .form.one-step .select-wrap label,
.form-section.light-form .form.one-step .input-wrap label {
    color: var(--text-primary) !important;
}

.form-section.light-form .form.one-step .select-wrap select,
.form-section.light-form .form.one-step .input-wrap textarea,
.form-section.light-form .form.one-step .input-wrap input {
    border: 1px solid var(--text);
}

.form.one-step .select-wrap select:hover,
.form.one-step .select-wrap select:focus,
.form.one-step .select-wrap select:active,
.form.one-step .input-wrap textarea:hover,
.form.one-step .input-wrap textarea:focus,
.form.one-step .input-wrap textarea:active,
.form.one-step .input-wrap input:hover,
.form.one-step .input-wrap input:focus,
.form.one-step .input-wrap input:active {
    border: 1px solid var(--secondary-teal) !important;
}

.bg-blue .form.one-step .select-wrap select:hover,
.bg-blue .form.one-step .select-wrap select:focus,
.bg-blue .form.one-step .select-wrap select:active,
.bg-blue .form.one-step .input-wrap textarea:hover,
.bg-blue .form.one-step .input-wrap textarea:focus,
.bg-blue .form.one-step .input-wrap textarea:active,
.bg-blue .form.one-step .input-wrap input:hover,
.bg-blue .form.one-step .input-wrap input:focus,
.bg-blue .form.one-step .input-wrap input:active {
    border: 1px solid var(--secondary-yellow) !important;
}

.form.one-step .privacy span {
    color: var(--secondary-yellow) !important;
}


/* Popover */

.popover {
    background-color: var(--secondary-yellow);
    border: 1px solid var(--secondary-yellow);
    color: var(--text-primary);
    padding: 6px;
    text-align: center;
}

.popover-body {
    color: var(--text-primary);
}

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


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


/* Article Date and Share Links */

.article-info {}

.article-info i {
    font-size: 1.75rem;
}

.article-date {}

.article-share a {
    color: var(--primary-blue);
    transition: color 0.15s ease-in-out;
}

.article-share a:hover {
    color: var(--primary-trans);
}


/* Article List */

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

article.article-list img {
    height: 100%;
}


/* Article Buttons */

.btn.read-more {
    background: var(--primary-blue);
    border: 0;
    border-radius: 0;
}

.btn.read-more:hover {
    background: #222;
    background: var(--primary-trans);
}

.article-pagination .btn {
    border: 1px solid var(--primary-blue);
    border-radius: 0;
}


/* Article Pagination */

.article-pagination .btn:hover {
    background: var(--primary-blue);
    color: #fff;
}

.article-pagination .previous:before {
    content: "\f13a";
    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;
}


/*******************************************
:--- Curriculum Page ---:
*******************************************/

.curriculum-intro {}

.curriculum-courses {}

.curriculum-accordion-intro {}

.curriculum-accordion {
    margin: 20px 0 40px 0;
}

.curriculum-accordion .accordion-item {
    margin: 5px 0;
    border: 1px solid #eee;
}


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

.accordion .card,
.accordion .card .card-header {
    border-radius: 0;
}

.accordion .card .card-header .btn {
    display: block;
    text-align: left;
    width: 100%;
    padding: 0.375rem 0;
}


/*******************************************
:--- Upcoming Date Box ---:
*******************************************/

.app-deadlines .date-value {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 1px solid var(--secondary-blue);
    color: var(--primary-blue);
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1;
    font-size: 1.2rem;
}

.app-deadlines .date-value .day {
    font-size: 2rem;
}


/*******************************************
:--- Credential Box ---:
*******************************************/

.cred-box {
    background-color: #666666;
    color: #fff;
    margin: 40px 0;
    padding: 30px 50px;
}


/* // UNCOMMENT FOR QUOTE ICON ON TOP LEFT CORNER
.cred-box:before {
	background: #4ba9cc;
	border-radius: 50%;
	content: "\f10d";
	font-family: "Font Awesome 5 Pro";
	font-size: 30px;
	font-weight: bold;
	left: -20px;
	line-height: 30px;
	padding: 18px;
	position: absolute;
	top: -20px;
}
*/

.cred-content {
    font-size: 30px;
    line-height: 35px;
    margin: 0 0 0 55px;
    opacity: 0.5;
}

.cred-box .fas {
    color: #4ba9cc;
    font-size: 40px;
    margin: 0 15px 0 0;
    float: left;
}

.cred-source {
    font-size: 12px;
    text-align: right;
    margin: 0;
}


/*******************************************
:--- Webinar Page ---:
*******************************************/


/* Webinar Icons */

.page-template-page-webinar .detail {
    padding: 30px;
    text-align: center;
}

.page-template-page-webinar .detail i {
    color: #4ba9cc;
    /* opacity: .25; */
}

.page-template-page-webinar .detail .title {
    font-size: 20px;
    font-weight: bold;
    margin: 10px 0 0;
}


/* Webinar Form */

.page-template-page-webinar .form-container {
    background: #eee;
    padding: 80px;
}

.page-template-page-webinar .form-container h2 {
    font-size: 50px;
    font-weight: bold;
    margin-bottom: 25px;
}

.page-template-page-webinar .form-container .form-text {
    font-size: 20px;
}

.page-template-page-webinar img.webinar-about-img {
    background: #eee;
    display: block;
    width: 100%;
    min-height: 300px;
}

.page-template-page-webinar img.webinar-presenter-img {
    background: #eee;
    display: block;
    width: 100%;
    min-height: 200px;
}

.page-template-page-webinar .form-fields ._form ._form-title,
.page-template-page-webinar .form-fields ._form ._html-code {
    display: none;
}

.page-template-page-webinar .form-fields ._form ._form_element ._form-label {
    display: block !important;
    color: #757575;
    font-size: 12px;
    font-weight: normal;
    margin-bottom: 0.25em;
    text-transform: uppercase;
}

.page-template-page-webinar .form-fields .input-field-program {
    display: block;
    margin-bottom: 15px;
    width: 100%;
}

.page-template-page-webinar .form-fields .input-field-program select {
    background-image: linear-gradient(45deg, transparent 50%, #000 50%), linear-gradient(135deg, #000 50%, transparent 50%), linear-gradient(to right, #fff, #fff);
    background-position: calc(100% - 20px) calc(1rem + 1px), calc(100% - 15px) calc(1rem + 1px), 100% 0;
    background-size: 5px 5px, 5px 5px, 2.5rem 3rem;
    background-repeat: no-repeat;
    background-color: #fff;
    border: 1px solid #000;
    font-weight: 300;
    margin: 0;
    padding: 8px 15px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
}

.page-template-page-webinar .form-fields .input-field-firstname,
.page-template-page-webinar .form-fields .input-field-lastname,
.page-template-page-webinar .form-fields .input-field-phone,
.page-template-page-webinar .form-fields .input-field-email {
    display: inline-block;
    margin-bottom: 15px;
    width: 49%;
    float: left;
}

.page-template-page-webinar .form-fields .input-field-firstname,
.page-template-page-webinar .form-fields .input-field-email {
    margin-right: 2%;
}

.page-template-page-webinar .form-fields input[type="text"] {
    background-color: #fff;
    border: 1px solid #000;
    border-radius: 0;
    color: #000;
    font-weight: 300;
    line-height: 24px;
    padding: 8px 15px;
    width: 100%;
}

.page-template-page-webinar .form-fields ._error ._error-inner {
    color: #ff4637;
    display: inline-block;
    font-size: 11px;
    line-height: 15px;
}

.page-template-page-webinar .form-fields ._button-wrapper {
    display: block;
    clear: both;
}

.page-template-page-webinar .form-fields ._button-wrapper button {
    background-color: #4ba9cc;
    border: 1px solid #4ba9cc;
    color: #fff;
    padding: 16px 20px;
    width: 100%;
    font-size: 14px;
    font-weight: normal;
    text-transform: uppercase;
    transition: all 0.2s;
    border-radius: 0;
    margin-top: 10px;
}

.page-template-page-webinar .form-fields ._button-wrapper button:hover,
.page-template-page-webinar .form-fields ._button-wrapper button:focus,
.page-template-page-webinar .form-fields ._button-wrapper button:active {
    color: #fff;
    background-color: #333;
    border: 1px solid #333;
    outline: 0;
}

.page-template-page-webinar .popover {
    background: #4ba9cc;
    border: 1px solid #000;
    padding: 1px;
}

.page-template-page-webinar .popover-body {
    padding: 0.5rem 0.75rem;
    background: #4ba9cc;
    color: #fff;
    font-size: 11px;
    text-transform: uppercase;
}

.page-template-page-webinar .bs-popover-auto[x-placement^="bottom"]>.popover-arrow::after,
.page-template-page-webinar .bs-popover-bottom>.arrow::after {
    border-bottom-color: #000;
}

.page-template-page-webinar .bs-popover-auto[x-placement^="bottom"]>.popover-arrow::before,
.page-template-page-webinar .bs-popover-bottom>.arrow::before {
    border-bottom-color: #000;
}

@media (max-width: 640px) {
    .page-template-page-webinar .form-fields .input-field-firstname,
    .page-template-page-webinar .form-fields .input-field-lastname,
    .page-template-page-webinar .form-fields .input-field-phone,
    .page-template-page-webinar .form-fields .input-field-email {
        display: inline-block;
        margin-bottom: 15px;
        width: 100%;
        float: none;
    }
    .page-template-page-webinar .detail {
        padding: 10px 30px;
    }
}


/* Webinar Presenter */

.page-template-page-webinar .presenter-name {
    font-weight: bold;
    margin-bottom: 0;
}

.page-template-page-webinar .presenter-title {
    font-size: 12px;
    font-style: italic;
}


/* Webinar Bio Collapse */

#module #collapseExample.collapse:not(.show),
#module #collapseExample2.collapse:not(.show),
#module #collapseExample3.collapse:not(.show) {
    display: block;
    height: 115px;
    overflow: hidden;
}

#module #collapseExample.collapsing,
#module #collapseExample2.collapsing,
#module #collapseExample3.collapsing {
    height: 115px;
}

#module a.collapsed,
#module a:not(.collapsed) {
    font-size: 11px !important;
    font-weight: normal;
    text-transform: uppercase;
}

#module a.collapsed::after {
    content: "+ Show More";
}

#module a:not(.collapsed)::after {
    content: "- Show Less";
}


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

.blue-blockquote blockquote p {
    position: relative;
}

.blue-blockquote blockquote p::before {
    font-family: "Font Awesome 6 Pro";
    content: "\f10d";
    font-weight: 700;
    font-size: 2rem;
    display: inline-block;
    position: absolute;
    left: -45px;
    top: -10px;
}

.blue-blockquote blockquote p::after {
    font-family: "Font Awesome 6 Pro";
    content: "\f10e";
    font-weight: 700;
    font-size: 2rem;
    display: inline-block;
    position: absolute;
    right: -35px;
    bottom: -10px;
}

.blue-blockquote blockquote footer {
    margin-top: 1rem;
}


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

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

.faculty-member-card {}

.faculty-member-card .btn {}

.faculty-image {}

.faculty-image img {
    background: var(--secondary-light);
    display: block;
    transition: all 0.25s ease-in-out;
}

.faculty-name {
    font-size: 1.25rem;
    overflow: hidden;
    text-overflow: ellipsis;
}

.faculty-title,
.faculty-department {
    overflow: hidden;
    text-overflow: ellipsis;
}


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

footer.site-footer {
    padding: 0 0 2rem 0;
    font-size: 0.875rem;
}

footer.site-footer p {
    margin-bottom: 0 !important;
}

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

footer.site-footer .social-links li {
    font-size: 1.4rem;
    margin-right: .5rem;
}

footer.site-footer .social-links li a {
    font-size: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 2rem;
    width: 2rem;
    text-decoration: none;
    color: var(--white);
    background-color: var(--gray);
    opacity: .5;
    border-radius: 50%;
    transition: all 0.25s ease-in-out;
}

footer.site-footer .social-links li a:hover,
footer.site-footer .social-links li a:focus {
    opacity: 1;
}

footer.site-footer .connect p.connect-title {
    letter-spacing: .5px;
}

footer.site-footer .connect ul.connect-list {
    font-size: 1rem;
}

footer.site-footer .connect ul.connect-list li .link a {
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.25s ease-in-out;
}

footer.site-footer .connect ul.connect-list li .link a:hover {
    text-decoration: none;
    color: var(--primary-red);
}

footer.site-footer .footer-nav ul li {
    margin-bottom: 10px;
}

footer.site-footer .footer-nav ul li a {
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 0.875rem;
    transition: all 0.25s ease-in-out;
    opacity: 1;
}

footer.site-footer .footer-nav ul li a:hover,
footer.site-footer .footer-nav ul li a:focus {
    color: var(--text-primary);
    opacity: .6;
}


/* Sticky header-bar */


/* Normal .header-bar stays in flow */

.header-bar {
    transition: transform 0.3s ease, opacity 0.3s ease;
}


/* When fixed after scroll */

.fixed-to-top {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    transform: translateY(0);
    opacity: 1;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    z-index: 9999;
}


/* Optional: slide in from top initially */

.header-bar:not(.fixed-to-top) {
    transform: translateY(0);
}

@media (max-width: 767px) {
    .header-bar.fixed-to-top {
        animation: slideDown 0.3s ease;
    }
    .single-post .hero-section.hero-image {
        background-position: center center;
        padding-bottom: 5rem !important;
        padding-top: 5rem !important;
    }
    .single-post .hero-section.hero-image::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, .5);
        z-index: -1;
    }
    @keyframes slideDown {
        from {
            transform: translateY(-100%);
            opacity: 0;
        }
        to {
            transform: translateY(0);
            opacity: 1;
        }
    }
}


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

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

@media (max-width: 1200px) {}

@media (max-width: 992px) {
    header.site-header .site-logo {
        max-width: 200px;
    }
    .mobile-only-nav li {
        border-top: 1px solid #ccc;
        float: none;
        padding-right: 0;
    }
    .mobile-only-nav li a {
        display: block;
        padding: 1em 2em;
        text-decoration: none;
    }
    .article-content .w-50 {
        width: 100% !important;
    }
    .faculty-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-section.hero-home {
        height: 40vh;
    }
    .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 {
        box-shadow: 0 0 5px 0 rgba(166, 166, 166, 0.1);
        display: block;
        left: auto;
        right: auto;
    }
    /* Target the last menu item to switch direction */
    nav.site-nav .menu-item.menu-item-has-children:last-child:hover ul.sub-menu {
        left: auto;
        right: 0;
    }
    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;
    }
    /* Desktop Sub-Navigation rules START */
    nav.site-nav ul.sub-menu .menu-item {
        position: relative;
        margin: 0;
        padding: .5rem 1rem;
        overflow: hidden;
        background-color: #fff;
        /* initial state */
        z-index: 0;
        transition: background-color 0.4s ease;
    }
    nav.site-nav ul.sub-menu .menu-item::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        /* FIXED: ends in #e1e1e1, not #fff */
        background: linear-gradient(to right, #e1e1e1, #e1e1e1);
        transform: translateX(-100%);
        transition: transform 0.4s ease, opacity 0.1s ease 0.4s;
        z-index: 1;
        opacity: 1;
        pointer-events: none;
    }
    nav.site-nav ul.sub-menu .menu-item:hover {
        background-color: #e1e1e1;
        /* final background matches gradient */
    }
    nav.site-nav ul.sub-menu .menu-item:hover::before {
        transform: translateX(0);
        opacity: 0;
        /* fade out after slide in */
    }
    nav.site-nav ul.sub-menu .menu-item>* {
        position: relative;
        z-index: 2;
    }
    /* Desktop Sub-Navigation rules END */
    nav.site-nav ul.sub-menu .menu-item a::after {
        display: none;
    }
    nav.site-nav ul.sub-menu .menu-item a {
        color: #363636;
        letter-spacing: .04em;
        text-decoration: none;
        text-transform: unset;
        font-weight: unset;
        font-size: 1rem;
    }
}

@media (max-width: 991px) {
    nav.site-nav .menu-item {
        margin: 0;
    }
    nav.site-nav .menu-item a::after {
        display: none;
    }
    nav.site-nav ul .menu-item .sub-menu .menu-item a {
        color: #363636;
        letter-spacing: .04em;
        text-decoration: none;
        text-transform: unset;
        font-weight: unset;
        font-size: 1rem;
        font-weight: 500;
    }
    nav.site-nav .menu-item .sub-menu .menu-item a:hover,
    nav.site-nav .menu-item .sub-menu .menu-item a:focus,
    nav.site-nav .menu-item .sub-menu .menu-item a:active {
        background: var(--secondary-gray);
    }
}

@media (max-width: 767px) {
    section.block {
        padding: 2rem 0;
    }
    h1,
    div.page-title {
        font-size: 2rem;
    }
    h2 {
        font-size: 1.5rem;
    }
    h3 {
        font-size: 1.3rem;
    }
    h4 {
        font-size: 1.1rem;
    }
    p.intro-text {
        font-size: 1.2rem;
    }
    footer.site-footer .top-footer #menu-footer {
        columns: 1;
        -webkit-columns: 1;
        -moz-columns: 1;
    }
}

@media (max-width: 640px) {}

@media (max-width: 480px) {
    .faculty-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (max-width: 320px) {}