/* --- Body Styles --- */
:root {
    --black: #000;
    --white: #fff;
    --chapman-orange: #EC6828;
    --chapman-tan: #FBFAF3;
    --chapman-dark-gray: #231F20;
    --chapman-teal: #00AC8C;
    --chapman-green: #CDDE68;
    --chapman-yellow: #F9C46E;
    --chapman-blue: #2671B4;
    --baskerville: baskerville-display-pt, serif;
    --bs-body-font-family: merel, sans-serif;
    --bs-body-font-size: 1.8rem;
    --bs-body-font-weight: 400;
}
*,
*:after,
*:before {
	box-sizing: border-box;
    -moz-box-sizing: border-box;
    font-smooth: antialiased;
    -moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}
html {
	font-size: 62.5%;
    scroll-behavior: smooth;
}
:not(:defined) {
    visibility: hidden;
}
body.sfPageEditor :not(:defined) {
    visibility: unset !important;
}
body {
    color: var(--chapman-dark-gray);
    font-family: var(--bs-body-font-family);
    line-height: normal;
    font-size: var(--bs-body-font-size);
    font-weight: var(--bs-body-font-weight);
}
.col-lg-12, .row {
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0;
}
.main > .row {
    margin-top: 15rem;
    margin-bottom: 15rem;
}
body p {
    margin-bottom: 2rem;
}
a {
    color: var(--chapman-blue);
}
.breadcrumb {
    margin-bottom: 2rem;
}
.breadcrumb-item a {
    font-size: 1.6rem;
}
a:hover {
    text-decoration: underline;
}
.anchor-link {
    scroll-margin-top: 200px;
}
sup small {
    font-size: 0.5em;
}
.center-header {
    margin-bottom: 8rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    width: 75%;
}
.orange-bg {
    padding-top: 8rem;
    padding-bottom: 8rem;
    background-color: var(--chapman-orange);
    color: var(--white);
    background-image: url('/images/bobchapmannewlibraries/default-album/orange-banner.png');
    background-repeat: no-repeat;
    background-position: right;
    background-size: 30% 100%;
}
.blue-bg {
    padding-top: 8rem;
    padding-bottom: 8rem;
    background-color: var(--chapman-blue);
    color: var(--white);
}
.tan-bg {
    padding-top: 8rem;
    padding-bottom: 8rem;
    background-color: var(--chapman-tan);
}


/* --- Button Styles --- */
.button {
    display: inline-block;
    padding: 1rem 6rem;
    border-radius: 1.2rem;
    background-color: var(--chapman-orange);
    color: var(--white);
    cursor: pointer;
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: ease-in-out 0.3s;
}
.orange-bg .button {
    background-color: var(--white);
    color: var(--chapman-orange);
}
.button:hover {
    background-color: var(--chapman-blue);
    color: var(--white);
    text-decoration: none;
    transition: ease-in-out 0.3s;
}
p.button {
    cursor: pointer;
}


/* --- Heading Styles --- */
h1 {
    margin-bottom: 2rem;
    font-family: var(--baskerville);
    font-size: 6.4rem;
    font-weight: 700;
}
h2 {
    margin-bottom: 2rem;
    font-family: var(--baskerville);
    font-size: 4.8rem;
}
h3 {
    margin-bottom: 2rem;
    font-family: var(--baskerville);
    text-align: center;
    font-size: 4rem;
    font-weight: 700;
    line-height: 150%;
}
h4 {
    margin-bottom: 2rem;
    font-size: 3.2rem;
    font-weight: 500;
}
h5 {
    margin-bottom: 2rem;
    font-size: 2.4rem;
    font-weight: 700;
}
h6 {
    margin-bottom: 1rem;
    font-family: var(--baskerville);
    font-size: 2rem;
    font-weight: 700;
    font-style: italic;
}


/* --- Hero Styles --- */
.main > .row.hero {
    margin-top: 0;
    margin-bottom: 15rem;
}
.tan-bg.hero {
    background-image: url('/images/bobchapmannewlibraries/default-album/tan-bg.png');
    background-repeat: no-repeat;
    background-position: right;
    background-size: 40% 100%;
}
.hero .row {
    gap: 10rem;
    align-items: center;
}
.hero .row .col-lg-6 {
    width: calc(50% - 5rem);
}
h1 span.hero-quote {
    margin-bottom: 2rem;
    display: block;
}
h1 span.hero-byline {
    margin-bottom: 1rem;
    display: block;
    font-size: 2.8rem;
    font-style: italic;
    line-height: normal;
}


/* --- Quote --- */
.quote .container > div {
    margin-left: auto;
    margin-right: auto;
    width: 70%;
    text-align: center;
}
.quote .container > div::before {
    content: '';
    margin-bottom: 3rem;
    display: inline-block;
    height: 4rem;
    width: 4rem;
    background-image: url(/images/bobchapmannewlibraries/default-album/placeholder.png);
    background-size: contain;
    background-repeat: no-repeat;
}
.quote img {
    display: block;
    margin-left: auto;
    margin-right: auto;
}


/* --- Form Styles --- */
.contact-form .row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
}
.contact-form .col-lg-6 {
    padding-left: 0;
    padding-right: 0;
    width: calc(50% - 1rem);
}
label.form-label {
    margin-bottom: 1rem;
    font-weight: 500;
    text-transform: uppercase;
}
.my-3:has(.form-control[required="required"]) .form-label::after {
    content: '*';
    color: var(--bs-form-invalid-color);
}
.my-3[data-sf-role="field-captcha-container"] {
    margin-top: 2rem !important
}
.my-3[data-sf-role="field-captcha-container"] .row {
    justify-content: center;
}
.my-3[data-sf-role="field-captcha-container"] .d-flex {
    justify-content: center;
    text-align: center;
}
.link-secondary {
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.form-control {
    padding: .8rem 1rem;
    border: 1px solid rgba(35, 31, 32, 0.20);
    border-radius: 0.8rem;
    font-size: 1.8rem;
    color: var(--chapman-dark-gray);
    font-family: 'merel';
    resize: none;
}
.btn-primary {
    display: block;
    margin-top: 4rem;
    margin-left: auto;
    margin-right: auto;
    padding: 1rem 6rem;
    border-radius: 1.2rem;
    background-color: var(--chapman-orange);
    color: var(--white);
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    transition: ease-in-out 0.3s;
}
.btn-primary:hover {
    background-color: var(--chapman-blue);
    color: var(--white);
    text-decoration: none;
    transition: ease-in-out 0.3s;
}


/* --- Video Embed --- */
.video-embed a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}
.video-embed img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.video-embed .black-overlay {
    display: block;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}
.video-embed i {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 8rem;
    color: var(--white);
    transform: translate(-50%, -50%);
}


/* --- Blog Posts --- */
.THL-blog-posts {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2rem;
}
.blog-post {
    width: calc(33.333% - 1.333rem);
}
.blog-post img {
    object-fit: cover;
    height: 30rem;
}
.blog-post a {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    color: var(--chapman-dark-gray);
}
.media-mentions .blog-post img {
    padding: 4rem;
    object-fit: contain;
    background-color: rgba(35, 31, 32, 0.1);
}


/* --- Superheader Custom Styling --- */
#super-header.scrolldown {
    top: -46px;
    transition: all 150ms ease-in-out;
}
#super-header.scrollup {
    top: 0;
    transition: all 150ms ease-in-out;
}
#super-header img {
    height: 26px;
    width: auto;
}


/* --- Header --- */
.header {
    position: fixed;
    top: 46px;
    height: 80px;
    width: 100%;
    background-color: var(--white);
    border-bottom: 1px solid rgba(35, 31, 32, 0.1);
    z-index: 999;
}
.header.fixed {
    top: 0;
    background: var(--white);
    box-shadow: 0px .4rem 1rem .4rem rgba(0, 0, 0, 0.1);
    transition: all 150ms ease-in-out;
}
.header.scrollup {
    top: 46px;
    z-index: 98;
    box-shadow: 0px .4rem 1rem .4rem rgba(0, 0, 0, 0.1);
    transition: all 150ms ease-in-out;
}
.header .container {
    height: 100%;
}
.header .row {
    height: 100%;
    align-items: center;
    align-content: center;
}
.header .desktop .nav-logo, .header .desktop .main-nav, .header .desktop .nav-socials {
    width: fit-content;
    flex: 1 0 auto;
}
.mobile {
    display: none;
}
.main {
    padding-top: 126px;
}


/* --- Header -> Logo --- */
.header .container .nav-logo a {
    display: block;
    width: fit-content;
    max-width: 20rem;
    height: 100%;
}
.header .logo {
    width: 100%;
    max-width: 20rem;
    height: auto;
}


/* --- Header -> Main Nav Menu --- */
.header .navbar {
    justify-content: center;
}
.header .navbar .navbar-nav {
    flex-direction: row;
    flex-wrap: nowrap !important;
}
.header a.nav-link {
    padding: 0.8rem 1.6rem !important;
    border-radius: 0.4rem;
    text-align: center;
    font-size: 1.6rem;
    font-weight: 600;
    background-color: var(--white);
    color: var(--chapman-dark-gray);
    transition: ease-in-out 0.3s;
}
.header a.nav-link:hover {
    text-decoration: none;
    background-color: rgba(35, 31, 32, 0.1);
    transition: ease-in-out 0.3s;
}


/* --- Header -> Socials --- */
.header .desktop .nav-socials {
    display: flex;
    justify-content: flex-end;
}
.header .nav-socials > div:first-of-type {
    display: flex;
    gap: 1rem;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}
.header .nav-socials > div:first-of-type a {
    font-family: 'Font Awesome 6 Brands';
    color: var(--chapman-dark-gray);
    font-size: 2rem;
    text-align: right;
}


/* --- Home -> Hero --- */
.Home-hero.tan-bg {
    padding-bottom: 12rem;
    padding-top: 12rem;
    position: relative;
    background-image: url('/images/bobchapmannewlibraries/default-album/asset-14xca090e44-77ef-4079-8280-359378ba318a.png');
    background-repeat: no-repeat;
    background-position: right;
    background-size: 30% 100%;
}
.Home-hero .row {
    align-items: center;
    gap: 0;
}
.Home-hero .row .col-lg-6:first-of-type {
    width: 60%;
}
.Home-hero .row .col-lg-6:last-of-type {
    width: 40%;
}
.Home-hero .col-lg-6 div:has(.breadcrumb) {
    display: none;
}
.Home-hero h1 span.hero-quote::after {
    content: url('/images/bobchapmannewlibraries/default-album/squigglex.png');
    display: block;
    width: fit-content;
    line-height: 0;
}
.Home-hero p {
    display: flex;
    gap: 2rem;
    cursor: pointer;
}
.Home-hero img {
    max-width: 40rem;
    width: 100% !important;
    height: auto !important;
    position: absolute;
    bottom: 0;
}


/* --- Home -> Logos --- */
.main > .home-logos {
    margin-top: 4rem;
}
.home-logos .row {
    gap: 4rem;
}
.home-logos .col-lg-4 {
    width: calc(33.333% - 2.7rem);
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}
.home-logos img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}
.home-logos a {
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 2rem;
    border-bottom: 2px solid var(--chapman-orange);
    transition: ease-in-out 0.3s;
}
.home-logos a:hover {
    text-decoration: none;
    color: var(--chapman-orange);
    transition: ease-in-out 0.3s;
}


/* --- Home -> Video Section --- */
.home-video .row {
    justify-content: space-between;
}
.home-video .home-video-logos-col {
    margin-top: 2rem;
    width: 30%;
    display: flex;
    flex-direction: column;
    gap: 6rem;
}
.home-video .home-video-logos-col img {
    max-height: 4rem;
    width: fit-content;
}
.home-video .video-embed {
    height: 100%;
}


/* --- Home -> Bob's Vision (Orange Section) --- */
.home-vision .container > div {
    width: 70%;
}


/* --- Home -> Book Section --- */
.home-book .row {
    gap: 4rem;
}
.home-book .col-lg-6 {
    width: calc(50% - 2rem);
}


/* --- Home -> Blog --- */
.home-blog .home-blog-header {
    margin-bottom: 4rem;
}


/* --- About Page -> Hero --- */
.About-hero img {
    object-fit: cover;
}


/* --- About Page -> About Bob --- */
.about-bob .partner-carousel {
    padding-top: 2rem;
    padding-bottom: 2rem;
    position: relative;
    background-color: var(--chapman-orange);
    overflow: hidden;
    white-space: nowrap;
}
.about-bob .partner-carousel::before,
.about-bob .partner-carousel::after {
    position: absolute;
    top: 0;
    width: 10rem;
    height: 100%;
    content: '';
    z-index: 2;
}
.about-bob .partner-carousel::before {
    left: 0;
	background: linear-gradient(to left, rgba(236, 104, 40, 0), var(--chapman-orange));
}
.about-bob .partner-carousel::after {
    right: 0;
	background: linear-gradient(to right, rgba(236, 104, 40, 0), var(--chapman-orange));
}
.about-bob .partner-carousel ul {
    margin-bottom: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 8rem;
    list-style-type: none;
	animation: 100s slideEffect infinite linear;
}
.about-bob .partner-carousel ul li img {
    margin: 0;
    padding: 0;
    max-width: 15rem;
    max-height: 10rem;
    height: auto;
    object-fit: contain;
}
.about-bob .image-banner img {
    max-height: 50rem;
    object-fit: cover;
}
.about-bob .about-bob-copy .container > div {
    margin-left: auto;
    margin-right: auto;
    width: 70%;
}
.about-bob .about-bob-copy p:has(.button) {
    display: flex;
    flex-direction: row;
    gap: 2rem;
}
@keyframes slideEffect {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}


/* --- About Page -> Book --- */
.about-book .row {
    gap: 4rem;
}
.about-book .col-lg-6 {
    width: calc(50% - 2rem);
}
.about-book .button {
    margin-top: 4rem;
}


/* --- About Page -> THL --- */
.about-thl .container > div {
    width: 70%;
}


/* --- About Page -> Bob's Influence --- */
.bob-influence .row {
    gap: 4rem;
}
.bob-influence .col-lg-4 {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: calc(33.33% - 2.666rem);
}
.bob-influence .col-lg-4 > div {
    display: flex;
    height: 100%;
}
.bob-influence .col-lg-4 > div div {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
}


/* --- Book Page -> Hero --- */
.Book-hero .row {
    gap: 4rem;
    justify-content: space-between;
}
.Book-hero .row .col-lg-6 {
    width: calc(50% - 2rem);
}
.button.buy-book-button {
    display: none;
    /*padding-left: 4rem;
    padding-right: 4rem;
    width: fit-content;
    display: flex;
    align-items: center;
    text-align: left;
    cursor: pointer;*/
}
.button.buy-book-button span {
    padding-right: 5rem;
    border-right: 1px solid var(--white);
}
.button.buy-book-button em {
    padding-left: 2rem;
}
.buy-book-menu {
    margin-top: 1rem;
    padding: 1rem;
    position: absolute;
    width: fit-content;
    opacity: 0;
    background-color: var(--chapman-dark-gray);
    border-radius: 1.2rem;
    transition: ease-in-out 0.2s;
}
.buy-book-menu ul {
    padding-left: 0;
    list-style-type: none;
    display: flex;
    flex-direction: column;
}
.buy-book-menu a {
    padding: 1rem;
    border-radius: 0.4rem;
    display: flex;
    flex-direction: row;
    gap: 8rem;
    justify-content: space-between;
    color: var(--white);
    font-size: 2rem;
    transition: ease-in-out 0.3s;
}
.buy-book-menu a:hover {
    text-decoration: none;
    background: rgba(255, 255, 255, 0.2);
    transition: ease-in-out 0.3s;
}
.buy-book-menu.open {
    opacity: 1;
    transition: ease-in-out 0.2s;
}
.Book-hero img {
    height: auto !important;
}
.modal-content {
    padding: 2rem;
}


/* --- Book Page -> Book Highlights --- */
.book-highlights .center-header {
    margin-bottom: 4rem;
}
.book-highlights .book-highlights-img {
    padding-left: 10rem;
    padding-right: 10rem;
}
.book-highlights .tan-bg {
    margin-top: -25rem;
    padding-top: 25rem;
}
.book-highlights .book-stats {
    text-align: center;
    text-transform: uppercase;
    align-items: center;
    gap: 3rem;
}
.book-highlights .col-lg-4 {
    width: calc(33.333% - 2rem);
}
.book-highlights .book-stats p {
    font-size: 2.4rem;
    font-weight: 500;
}
.book-highlights .book-stats p span {
    font-size: 4rem;
    font-weight: 700;
}
.book-highlights .col-lg-4 img {
    margin-bottom: 1rem;
}


/* --- Book Page -> Book Description --- */
.book-description {
    position: relative;
    min-height: 60rem;
}
.book-description .book-copy-col > div {
    margin-top: 2rem;
}
.book-description .open-book-img-col img {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(0, -50%);
    height: auto;
    max-height: 60rem;
    object-fit: contain;
}


/* --- Book Page -> Buy Online CTA --- */
.buy-online-cta {
    display: none;
}
.buy-online-cta h2 {
    margin-bottom: 4rem;
}
.buy-online-cta .button.buy-book-button {
    margin-left: auto;
    margin-right: auto;
}
.buy-online-cta .buy-book-menu {
    left: 50%;
    transform: translate(-50%, 0);
}


/* --- Book Page -> Book Praise Carousel --- */
.book-praise.orange-bg {
    background-size: 50% 100%;
}
.book-praise h2 {
    margin-bottom: 4rem;
}
.book-praise sl-carousel::part(base) {
    position: relative;
    --aspect-ratio: auto !important;
}
.book-praise sl-carousel::part(scroll-container) {
    align-items: flex-start;
}
.book-praise img[slot="previous-icon"],
.book-praise img[slot="next-icon"] {
    padding: 10px;
    position: absolute;
    background-color: #FFF;
    color: #EC6828;
    clip-path: circle();
    width: 40px;
    height: 40px;
}
.book-praise img[slot="previous-icon"] {
    left: -40px;
}
.book-praise img[slot="next-icon"] {
    right: -40px;
}
.book-praise sl-carousel-item {
    padding: 30px;
    justify-content: flex-start;
    background-color: #FFF;
    height: 100%;
}
.book-praise .quote {
    color: #231F20;
    margin-bottom: 20px;
    text-align: center;
    font-family: Merel;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
}
.book-praise .quote p {
    margin-bottom: 0;
}
.book-praise .quote::before {
    content: '';
    margin-bottom: 40px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    height: 40px;
    width: 40px;
    background-image: url(/images/bobchapmannewlibraries/default-album/placeholder.png);
    background-size: contain;
    background-repeat: no-repeat;
}
.book-praise .byline {
    color: #231F20;
    text-align: center;
    font-family: "Baskerville Display PT";
    font-size: 18px;
    font-weight: 700;
    line-height: normal;
    font-style: italic;
}


/* --- Book Page -> Authors --- */
.meet-author .row {
    gap: 4rem;
}
.meet-author .col-lg-6 {
    width: calc(50% - 2rem);
}
.meet-author p:has(.button) {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    flex-wrap: wrap;
}


/* --- Book Page -> Featured Books --- */
.featured-books h2 {
    margin-bottom: 4rem;
}
.featured-books sl-carousel::part(base) {
    --aspect-ratio: auto !important;
}
.featured-books sl-carousel::part(scroll-container) {
    align-items: flex-start;
}
.featured-books img[slot="previous-icon"],
.featured-books img[slot="next-icon"] {
    padding: 10px;
    position: absolute;
    color: #2671B4;
    width: 40px;
    height: 40px;
}
.featured-books img[slot="previous-icon"] {
    left: -40px;
}
.featured-books img[slot="next-icon"] {
    right: -40px;
}
.featured-books sl-carousel-item {
    justify-content: flex-start;
    height: 100%;
}
.featured-books .featured-book-cover {
    width: 100%;
    margin-bottom: 20px;
    border: 1px solid rgba(35, 31, 32, 0.2);
}
.featured-books h5 {
    margin-bottom: 10px;
    text-align: center;
}
.featured-books p {
    color: #231F20;
    text-align: center;
    font-family: "Baskerville Display PT";
    font-size: 20px;
    font-weight: 500;
    line-height: normal;
}


/* --- Speaking Page -> Hero --- */
.Speaking-hero img {
    object-fit: cover;
}


/* --- Speaking Page -> Partner Logos --- */
.speaking-partners .image-banner img {
    max-height: 50rem;
    object-fit: cover;
    object-position: top;
}
.speaking-partners .center-header {
    margin-bottom: 4rem;
}
.speaking-partners .center-header h6 {
    margin-bottom: 2rem;
}
.speaking-partners .sf-Gallery-thumbs {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.speaking-partners .sf-Gallery-thumbs img {
    max-width: 15rem;
    width: 100%;
    max-height: 10rem;
    height: auto;
    object-fit: contain;
}


/* --- Speaking Page -> BW Speakers CTA --- */
.bw-speakers-cta .container > div {
    width: 70%;
}


/* --- Speaking Page -> CCO CTA --- */
.speaking-cco-cta .row {
    gap: 4rem;
}
.speaking-cco-cta .col-lg-6 {
    width: calc(50% - 2rem);
}


/* --- Book Testimonial Page --- */
.win-em-body {
    margin: 0;
    min-height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    background-color: var(--chapman-tan);
}
body::before,
body::after {
    content: "";
    position: fixed;
    top: 0;
    width: 8rem;
    height: 100vh;
    background-size: auto 50%;
    background-position: center;
    background-repeat: repeat-y;
    z-index: -1;
}
.win-em-body::before {
    left: 0;
    background-image: url('/images/bobchapmannewlibraries/default-album/left-bg.png');
}
.win-em-body::after {
    right: 0;
    background-image: url('/images/bobchapmannewlibraries/default-album/right-bg.png');
}
.win-em-body .main > .row {
    margin-top: 8rem;
    margin-bottom: 8rem;
}
.book-testimonial-form .row {
    gap: 4rem;
}
.book-testimonial-form .col-lg-6 {
    padding-left: 0;
    padding-right: 0;
    width: calc(50% - 2rem);
}


/* --- Footer --- */
.footer .navbar {
    justify-content: center;
}
.footer .socials {
    margin-bottom: 4rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}
.footer .socials a {
    font-family: 'Font Awesome 6 Brands';
    color: var(--white);
    font-size: 3rem;
    text-align: center;
}
.footer .navbar .navbar-nav {
    flex-direction: row;
}
.footer a.nav-link {
    padding: 0.8rem 1.6rem;
    border-radius: 1.2rem;
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    color: var(--white);
    transition: ease-in-out 0.3s;
}
.footer a.nav-link:hover {
    text-decoration: none;
    background-color: rgba(35, 31, 32, 0.2);
    transition: ease-in-out 0.3s;
}


/* --- Sub Footer --- */
.sub-footer {
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
    background-color: var(--chapman-dark-gray);
    color: var(--white);
}
.sub-footer p {
    margin-bottom: 0;
    font-size: 1.2rem;
}
