@charset "UTF-8";
/*
colors
white: #fff
hillsdale blue: #002855, (0, 40, 85)
liberty blue: #0070b8, (0, 112, 185)
wheat: #d7c59c, (215, 197, 156)
wheat text on white bg: #AE9147 (wcag)
linen: #e8e3d2, (232, 227, 210)
sky blue: #bad3e3, (186, 211, 227)
*/
@font-face {
  font-family: "Zallman Caps";
  src: url(../css/webfonts/ZallmanCaps.TTF) format("truetype");
}
:root {
  --hc-blue: #002855;
  --hc-blue-rgb: 0, 40, 85;
  --hc-blue-liberty: #0070b8;
  --hc-linen: #e8e3d2;
  --hc-linen-rgb: 232, 227, 210;
  --hc-wheat: #d7c59c;
  --hc-wheat-rgb: 215, 197, 156;
  --hc-wheat-text: #8a7338; /*#ae9147;*/
  --bs-body-color: var(--hc-linen);
  --bs-body-bg: var(--hc-blue);
  --bs-primary-rgb: var(--hc-blue-rgb);
  --bs-secondary-rgb: var(--hc-wheat-rgb);
  --bs-body-font-family: "freight-display-pro", serif;
}

main {
  color: var(--hc-blue);
  background-color: var(--bs-white);
}

.bg-body-tertiary {
  color: var(--hc-blue);
  background-color: rgba(var(--hc-linen-rgb), var(--bs-bg-opacity)) !important;
}

.bg-body-white {
  color: var(--hc-blue);
  background-color: rgba(255, 255, 255, var(--bs-bg-opacity)) !important;
}

@media (min-width: 768px) {
  .bg-body-white-rounded {
    border-radius: 5rem;
  }
}
h1,
.h1,
h2,
.h2,
h3,
.h3 {
  font-family: "freight-display-pro", serif;
  font-weight: 600;
}

h2 {
  font-size: 1.75rem;
  color: var(--hc-blue-liberty);
}

h3 {
  font-size: 1.0625rem;
  text-transform: uppercase;
  color: var(--hc-blue-liberty);
}

p,
p.lead,
ul {
  font-size: 1.125rem;
  line-height: 1.4;
}

p.lead {
  color: var(--hc-wheat);
  color: var(--hc-wheat-text);
  font-weight: 800;
}

a {
  color: var(--hc-blue-liberty);
}

a:hover {
  color: var(--hc-blue);
}

.zallmanCap {
  font-family: "Zallman Caps";
  font-size: 250%;
  font-weight: normal;
  color: var(--hc-wheat-text);
  line-height: 1;
}

.text-liberty {
  color: red !important;
}

/* buttons */
.btn {
  --bs-btn-font-family: "freight-sans-pro", sans-serif;
  --bs-btn-font-size: 0.75rem;
  --bs-btn-font-weight: bold;
  --bs-btn-border-radius: 0.125rem;
  padding: 0.3125rem 1.5rem 0.3125rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-shadow: none;
}

.btn-lg {
  font-size: 1rem;
  border-radius: 1.25rem;
}

.btn-rounded {
  --bs-btn-border-radius: 2rem;
}

.btn-primary {
  --bs-btn-color: var(--hc-blue);
  --bs-btn-bg: var(--hc-wheat);
  --bs-btn-border-color: var(--hc-wheat);
  --bs-btn-disabled-bg: var(--hc-wheat);
  --bs-btn-disabled-border-color: var(--hc-wheat);
  --bs-btn-hover-color: var(--hc-blue);
  --bs-btn-hover-bg: #e0d2b3;
  --bs-btn-hover-border-color: #e0d2b3;
  --bs-btn-active-color: var(--hc-blue);
  --bs-btn-active-bg: #e4d8be;
  --bs-btn-active-border-color: #e4d8be;
  --bs-btn-focus-shadow-rgb: var(--hc-wheat-rgb);
}

/* additions */
@media (min-width: 992px) {
  .position-absolute-lg {
    position: absolute;
  }
}
.bg-opacity-70 {
  --bs-bg-opacity: 0.7;
}

.bg-opacity-90 {
  --bs-bg-opacity: 0.9;
}

/* header */
/* logos */
.logo-hillsdale {
  height: 1.875rem;
}

.logo-core-virtues {
  height: 2.5rem;
}

/* navbar */
.bg-primary .navbar-nav {
  --bs-nav-link-color: var(--hc-wheat);
  --bs-nav-link-hover-color: var(--hc-linen);
  --bs-nav-link-font-size: 0.875rem;
  font-family: "freight-sans-pro", sans-serif;
  font-weight: 500;
}

.navbar {
  --bs-navbar-color: var(--hc-wheat);
  --bs-navbar-active-color: var(--bs-white);
  --bs-navbar-toggler-border-color: var(--hc-wheat);
}

.navbar-toggler {
  background-color: var(--hc-wheat);
}

.btn-close {
  --bs-btn-close-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23d7c59c'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");
  --bs-btn-close-opacity: 0.75;
  --bs-btn-close-hover-opacity: 1;
  filter: none !important;
}

[data-bs-theme=dark] .navbar-toggler-icon {
  --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 40, 88, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.bg-primary .offcanvas {
  --bs-offcanvas-bg: var(--hc-blue);
  --bs-offcanvas-border-color: var(--hc-blue);
}

.nav-link {
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* dropdown-menu */
.dropdown-menu {
  --bs-dropdown-padding-x: 0;
  --bs-dropdown-border-color: var(--hc-linen);
  --bs-dropdown-link-color: var(--hc-blue);
  --bs-dropdown-link-hover-color: var(--hc-blue);
  --bs-dropdown-color: var(--hc-blue);
  --bs-dropdown-bg: var(--hc-linen);
  --bs-dropdown-link-hover-bg: rgba(255, 255, 255, 0.6);
}
.dropdown-menu strong {
  font-weight: 500;
}

@media (min-width: 992px) {
  .dropdown-menu {
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.6);
  }
}
.dropdown-item.active,
.dropdown-item:active {
  color: var(--hc-blue);
  background-color: var(--bs-white);
}

/* optional: dark on desktop
@media(min-width: 992px) {
	.dropdown-menu {
		--bs-dropdown-color: var(--hc-wheat);
		--bs-dropdown-bg: var(--hc-blue);
		--bs-dropdown-link-color: var(--hc-linen);
		--bs-dropdown-link-hover-color: var(--hc-linen);
		--bs-dropdown-link-hover-bg: rgba(0, 0, 0, .2);
	}
}
*/
/* custom */
body.home .navbar-brand {
  display: none;
}

.container .container-sm {
  max-width: 1140px;
  position: relative;
  z-index: 1;
}

.container-xs {
  max-width: 700px;
}

@media (min-width: 567px) {
  .border-sm {
    border: 1px solid transparent;
  }
}
@media (min-width: 768px) {
  .border-md-start {
    border-left: 1px solid transparent;
  }
  .border-md-end {
    border-right: 1px solid transparent;
  }
}
@media (min-width: 992px) {
  .border-lg-end {
    border-right: 1px solid transparent;
  }
}
.has-fluorish {
  position: relative;
}
.has-fluorish:before, .has-fluorish:after {
  position: absolute;
  content: "";
}

.has-lines:before,
.has-lines:after {
  content: "—";
  margin: 0 0.25rem;
}

/* footer */
footer {
  font-family: "freight-sans-pro", sans-serif;
}

@media (min-width: 576px) {
  .has-diagonal-fluorish:before, .has-diagonal-fluorish:after {
    background-color: var(--hc-blue);
    background-image: url(/img/fluorish-diagonal.svg);
    height: 70px;
    width: 70px;
    top: auto;
    bottom: -1rem;
    left: -1rem;
    border: 0.25rem var(--hc-blue) solid;
    box-sizing: content-box;
  }
  .has-diagonal-fluorish:after {
    left: auto;
    right: -1rem;
    transform: scale(-1, 1);
  }
}
.border-light {
  border-color: rgba(var(--hc-wheat-rgb), 0.7) !important;
}

.text-bg-primary a,
.text-bg-primary .nav-link {
  color: var(--hc-linen);
}
.text-bg-primary a:hover,
.text-bg-primary .nav-link:hover {
  color: rgb(255, 255, 255);
  text-decoration: none;
}
.text-bg-primary .border-light,
.text-bg-primary hr {
  border-color: var(--hc-blue-liberty) !important;
  opacity: 1;
}

.footer-cv-bug .logo-cv-v {
  width: 4rem;
}
.footer-cv-bug div {
  color: var(--hc-linen);
  font-size: 0.875rem;
  line-height: 1;
  font-family: "freignt-display-pro", serif;
}
.footer-cv-bug div span {
  text-transform: uppercase;
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: 0.05em;
  color: var(--bs-white);
  font-weight: 500;
}

@media (min-width: 768px) and (max-width: 991px) {
  .footer-cv-bug .logo-cv-v {
    width: 6rem;
  }
  .footer-cv-bug div {
    color: var(--hc-linen);
    font-size: 1.0625rem;
    line-height: 1;
    font-family: "freignt-display-pro", serif;
  }
  .footer-cv-bug div span {
    text-transform: uppercase;
    font-size: 1.625rem;
    line-height: 1.5;
    letter-spacing: 0.05em;
    color: var(--bs-white);
    font-weight: 500;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .footer-cv-bug div {
    font-size: 0.75rem;
  }
}
@media (min-width: 1200px) {
  .footer-cv-bug .logo-cv-v {
    width: 6rem;
  }
  .footer-cv-bug div {
    color: var(--hc-linen);
    font-size: 1.0625rem;
    line-height: 1;
    font-family: "freignt-display-pro", serif;
  }
  .footer-cv-bug div span {
    text-transform: uppercase;
    font-size: 1.625rem;
    line-height: 1.5;
    letter-spacing: 0.05em;
    color: var(--bs-white);
    font-weight: 500;
  }
}
/* content */
.text-the {
  width: 55px;
}

.bug-view-artwork a,
.bug-view-artwork button.btn-plain {
  font-family: "freight-sans-compressed-pro", sans-serif;
  color: var(--hc-linen);
  text-decoration: none;
  font-weight: 500;
  text-transform: uppercase;
  text-shadow: 1px 1px 15px black;
}

.bug-view-artwork a i.fa-images,
.bug-view-artwork button.btn-plain i.fa-images {
  display: block;
  font-size: 1.25rem;
}

.bug-view-artwork a i.fa-chevron-right,
.bug-view-artwork button.btn-plain i.fa-chevron-right {
  font-size: 0.65rem;
}

.bug-view-artwork.text-primary a,
.bug-view-artwork.text-primary .btn-plain {
  color: var(--hc-blue);
  text-shadow: none !important;
}

/* home */
.hero {
  position: relative;
  color: var(--bs-white);
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}
.hero .hero-content {
  padding-top: 100px;
}
.hero .hero-content .logo-core-virtues-lg {
  max-width: 520px;
}
.hero .hero-content .subtitle,
.hero .hero-content .subtitle p {
  font-family: "Freight Display Pro Medium", georgia, serif;
  font-size: 1.625rem;
  line-height: 1.2;
  font-style: italic;
  letter-spacing: 0.01em;
}
.hero .hero-content h2 {
  color: var(--hc-linen);
  font-size: 3rem;
}
.hero .hero-content p.lead {
  font-size: 2rem;
  color: var(--hc-wheat);
}
.hero .hero-content h2,
.hero .hero-content p.lead {
  text-shadow: 1px 1px 15px black;
}
.hero .hero-content .hero-caption h2 {
  font-size: 1.75rem;
}
.hero .hero-content .hero-caption h2,
.hero .hero-content .hero-caption p.lead {
  text-shadow: none;
}
.hero .hero-content .virtues-bug {
  text-transform: uppercase;
  font-size: 3rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.01em;
  color: var(--hc-linen-light);
  text-shadow: 0 0 5px 15px black;
}
.hero .hero-content .virtues-bug h2 {
  font-size: 3.875rem;
  line-height: 1;
  color: var(--hc-linen);
}
.hero .hero-content .virtues-bug p.lead {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1;
  text-transform: none;
  color: var(--bs-white);
}
.hero .hero-content .virtues-bug .fluorish-bottom {
  display: block;
  width: 110px;
}
.hero .hero-content .has-fluorish:before,
.hero .hero-content .has-fluorish:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  height: 50%;
  width: 40%;
  background-image: url("/img/fluorish.svg");
  background-repeat: no-repeat;
}
.hero .hero-content .has-fluorish:after {
  right: 0;
  left: auto;
  transform: scale(-1, 1);
}
.hero .has-blue-box-shadow {
  box-shadow: inset 0 -75px 100px 100px var(--hc-blue);
}
.hero .has-blue-box-shadow .virtues-bug h2,
.hero .has-headline-fluorish .virtues-bug h2 {
  font-size: 2rem;
}
.hero .has-blue-box-shadow .virtues-bug h2:before, .hero .has-blue-box-shadow .virtues-bug h2:after,
.hero .has-headline-fluorish .virtues-bug h2:before,
.hero .has-headline-fluorish .virtues-bug h2:after {
  content: "";
  display: inline-block;
  height: 26px;
  width: 25px;
  margin: 0 0.25rem;
  background-image: url(/img/fluorish-side.svg);
  background-size: cover;
}
.hero .has-blue-box-shadow .virtues-bug h2:after,
.hero .has-headline-fluorish .virtues-bug h2:after {
  transform: scale(-1, 1);
}
.hero .has-gradient {
  background: linear-gradient(transparent 50%, var(--hc-linen));
}
.hero .has-gradient .bug-view-artwork a {
  color: var(--hc-blue);
}

.background-position-start {
  background-position: center left;
}

@media (min-width: 576px) {
  .hero .hero-content h2 {
    color: var(--hc-linen);
    font-size: 3.875rem;
  }
  .hero .hero-content p.lead {
    font-size: 2.5rem;
  }
  .hero .has-blue-box-shadow {
    box-shadow: inset 0 -100px 150px 150px var(--hc-blue);
  }
  .hero .has-blue-box-shadow .virtues-bug h2,
  .hero .has-headline-fluorish .virtues-bug h2 {
    font-size: 3.785rem;
  }
  .hero .has-blue-box-shadow .virtues-bug h2:before, .hero .has-blue-box-shadow .virtues-bug h2:after,
  .hero .has-headline-fluorish .virtues-bug h2:before,
  .hero .has-headline-fluorish .virtues-bug h2:after {
    height: 46px;
    width: 45px;
  }
  .hero .has-blue-box-shadow .virtues-bug p.lead,
  .hero .has-headline-fluorish .virtues-bug p.lead {
    font-size: 1.625rem;
  }
}
.has-hr-fluorish {
  position: relative;
}
.has-hr-fluorish hr {
  border-color: var(--hc-wheat);
  opacity: 1;
  border-width: 2px;
}
.has-hr-fluorish hr:before,
.has-hr-fluorish hr:after {
  content: "";
  display: block;
  position: absolute;
  top: calc(-1rem + 3px);
  left: 0.333rem;
  width: 2rem;
  height: 1rem;
  background-image: url("/img/fluorish-curl.svg");
  background-repeat: no-repeat;
}
.has-hr-fluorish hr:after {
  right: 0.333rem;
  left: auto;
  transform: scale(-1, 1);
}

.has-hr-fluorish-flipped hr:before,
.has-hr-fluorish-flipped hr:after {
  top: -1px;
  transform: scale(1, -1);
}
.has-hr-fluorish-flipped hr:after {
  transform: scale(-1, -1);
}

/* virtues */
.card {
  --bs-card-spacer-y: 3rem;
  --bs-card-spacer-x: 1rem;
  border-color: var(--hc-linen);
  background-size: cover;
  background-blend-mode: screen;
  --bs-card-color: var(--bs-white);
  --bs-card-bg: var(--hc-blue);
  text-decoration: none;
}
.card .card-body {
  box-shadow: inset 0 -80px 300px 100px var(--hc-blue);
}
.card .card-body .card-title {
  font-size: 2rem;
  color: var(--hc-linen);
}
.card .card-body .card-title:before, .card .card-body .card-title:after {
  display: inline-block;
  content: "";
  height: 25px;
  width: 24px;
  margin: 0 0.25rem;
  background-image: url(/img/fluorish-side.svg);
  background-size: cover;
}
.card .card-body .card-title:after {
  transform: scale(-1, 1);
}
.card .card-body p {
  font-size: 1.125rem;
  color: var(--bs-white);
  font-weight: bold;
  letter-spacing: 0.02em;
}
.card .card-body ul {
  font-size: 1.25rem;
  line-height: 1.2;
  color: var(--hc-linen);
  font-weight: bold;
  letter-spacing: 0.02em;
}
.card hr {
  border: 0;
  opacity: 1;
}
.card hr:before {
  content: "";
  display: block;
  width: 252px;
  height: 16px;
  margin: 0 auto;
  background: url(/img/fluorish-divider.svg);
}

@media (min-width: 768px) {
  .card {
    --bs-card-spacer-x: 2rem;
  }
  .card .card-body .card-title {
    font-size: 3rem;
  }
  .card .card-body .card-title:before, .card .card-body .card-title:after {
    height: 36px;
    width: 35px;
  }
  .card .card-body p {
    font-size: 1.25rem;
  }
  .card .card-body ul {
    font-size: 1.5rem;
  }
}
.card-sm {
  --bs-card-spacer-x: 1rem;
}

.card-sm .card-body {
  box-shadow: inset 0 -20px 50px 20px var(--hc-blue);
}

.card-sm .card-body .card-title {
  font-size: 1.25rem;
  text-transform: none;
  text-shadow: 1px 1px 15px black;
}

.card-sm .card-body .card-title:before,
.card-sm .card-body .card-title:after {
  background: url(/img/fluorish-divider.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 50%;
  height: 1rem;
  display: block;
  margin: 0 auto;
  margin-bottom: 0.5rem;
}

.card-sm .card-body .card-title:after {
  margin-top: 1rem;
  margin-bottom: 0;
  transform: scale(1, -1);
}

@media (min-width: 768px) {
  .card-sm .card-body .card-title {
    font-size: 1.75rem;
  }
}
@media (min-width: 992px) {
  .card-sm .card-body .card-title {
    font-size: 1.875rem;
  }
}
@media (min-width: 1200px) {
  .card-sm .card-body .card-title {
    font-size: 2rem;
  }
}
/* virtue */
.related-virtues h3 {
  font-family: "freight-sans-pro", sans-serif;
  font-weight: 500;
  color: var(--hc-wheat);
}

.related-virtues h4 {
  font-size: 2.5rem;
}

.related-virtues h4:before,
.related-virtues h4:after {
  content: "";
  display: block;
  width: 75px;
  height: 12px;
  background: url(/img/fluorish-bottom.svg);
  background-repeat: no-repeat;
  background-size: cover;
  margin: 0 auto;
  transform: scale(1, -1);
}

.related-virtues h4:after {
  margin-top: 0.75rem;
  transform: none;
}

.related-virtues .col-virtue-text {
  margin-bottom: 1rem;
}

@media (max-width: 767px) {
  .related-virtues .col-virtue-text {
    margin-top: 0;
    margin-bottom: 0;
  }
  .related-virtues .col-virtue-text:not(:last-child) h4:after,
  .related-virtues > .row > .col:not(:last-child) .col-virtue-text:last-child h4:after {
    display: none;
  }
}
@media (min-width: 576px) {
  .related-virtues h4:before,
  .related-virtues h4:after {
    width: 100px;
    height: 16px;
  }
}
/* books */
h2.list-heading {
  font-size: 2rem;
  color: var(--hc-blue);
}

@media (min-width: 567px) {
  h2.list-heading {
    font-size: 2.375rem;
  }
}
h2.list-heading .zallmanCap {
  font-size: 150%;
}

h2.list-heading em {
  font-size: 1.4375rem;
  color: var(--hc-wheat-text);
}

h2.list-heading span {
  color: var(--hc-wheat-text);
}

.col-resource {
  font-size: 1.25rem;
  line-height: 1.2;
  font-family: "Freight Display Pro Black", georgia, serif;
}

.col-resource a {
  color: var(--hc-blue);
  text-decoration: none;
}

.col-resource small {
  color: var(--hc-wheat-text);
  font-size: 0.9375rem;
}

/* people */
.col-life {
  font-size: 1.25rem;
  line-height: 1.2;
}

.col-life a {
  color: var(--hc-blue-liberty);
  font-family: "Freight Display Pro Black", georgia, serif;
}

.col-life small {
  font-size: 0.9357rem;
  font-weight: 600;
}

/* carousel */
.carousel-item {
  height: 450px;
}
.carousel-item img {
  min-height: 450px;
  -o-object-fit: cover;
     object-fit: cover;
}
.carousel-item .carousel-caption {
  text-shadow: 1px 1px 5px black;
  bottom: 0;
  padding: 0;
}
.carousel-item .carousel-caption blockquote p {
  line-height: 1.2;
  font-style: italic;
  font-weight: 800;
}
.carousel-item .carousel-caption figcaption {
  font-weight: 800;
  color: var(--hc-wheat);
}
.carousel-item .carousel-caption figcaption cite {
  font-style: normal;
  color: var(--hc-linen);
  line-height: 1;
}
.carousel-item .carousel-caption figcaption:before {
  display: block;
  background-image: url(/img/fluorish-centered.svg);
  content: "";
  height: 12px;
  width: 100px;
  margin: 0 auto;
  background-size: cover;
}

@media (min-width: 992px) {
  .carousel-item {
    height: 510px;
  }
  .carousel-item img {
    min-height: 510px;
  }
}
@media (min-width: 1200px) {
  .carousel-item {
    height: 610px;
  }
  .carousel-item img {
    min-height: 610px;
  }
}
.carousel-overlay {
  text-align: center;
  position: absolute;
  top: 0;
  z-index: 1000;
  width: 100%;
  margin-top: 0.5rem;
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--hc-linen);
}

.carousel-control-next,
.carousel-control-prev {
  opacity: 1;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23f2e8dc'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23f2e8dc'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.carousel .bug-view-artwork {
  text-align: left;
}

@media (min-width: 768px) {
  .carousel-item .carousel-caption figcaption:before {
    margin: 0 auto 1rem;
  }
  .carousel-caption {
    text-shadow: 1px 1px 15px black;
  }
  .carousel-caption span {
    font-size: 1.5rem;
    color: var(--hc-linen);
  }
  .carousel-caption blockquote p {
    font-size: 1.5rem;
  }
  .carousel-caption figcaption {
    margin-top: 1.25rem;
    font-size: 1.25rem;
  }
  .carousel-caption figcaption cite {
    font-size: 1.5rem;
  }
  .carousel-overlay {
    margin-top: 1.5rem;
  }
  .carousel-control-next-icon,
  .carousel-control-prev-icon {
    width: 5rem;
    height: 5rem;
  }
}
@media (min-width: 992px) {
  .carousel-caption span,
  .carousel-caption blockquote p,
  .carousel-caption figcaption cite {
    font-size: 2rem;
  }
  .carousel-overlay {
    margin-top: 2rem;
  }
}
@media (min-width: 1200px) {
  .carousel-caption span {
    font-size: 2.75rem;
  }
  .carousel-caption blockquote p {
    font-size: 2.75rem;
  }
  .carousel-caption figcaption {
    font-size: 1.25rem;
  }
  .carousel-overlay {
    margin-top: 3rem;
  }
}
/* four corner fluorish */
@media (min-width: 567px) {
  .has-corner-fluorish:before, .has-corner-fluorish:after,
  .has-corner-fluorish .fluorish-top:before,
  .has-corner-fluorish .fluorish-top:after {
    background-color: var(--hc-blue);
    background-image: url(/img/fluorish-diagonal.svg);
    height: 70px;
    width: 70px;
    top: auto;
    bottom: -1rem;
    left: -1rem;
    border: 0.25rem var(--hc-blue) solid;
    box-sizing: content-box;
  }
  .has-corner-fluorish .fluorish-top:before,
  .has-corner-fluorish .fluorish-top:after {
    position: absolute;
    top: -1rem;
    bottom: auto;
    content: "";
    transform: scale(1, -1);
    z-index: -1;
  }
  .has-corner-fluorish:after,
  .has-corner-fluorish .fluorish-top:after {
    left: auto;
    right: -1rem;
    transform: scale(-1, 1);
  }
  .has-corner-fluorish .fluorish-top:after {
    transform: scale(-1, -1);
  }
  .bg-body-tertiary .has-corner-fluorish:before, .bg-body-tertiary .has-corner-fluorish:after,
  .bg-body-tertiary .has-corner-fluorish .fluorish-top:before,
  .bg-body-tertiary .has-corner-fluorish .fluorish-top:after,
  .bg-body-white .has-corner-fluorish:before,
  .bg-body-white .has-corner-fluorish:after,
  .bg-body-white .has-corner-fluorish .fluorish-top:before,
  .bg-body-white .has-corner-fluorish .fluorish-top:after {
    background-color: var(--hc-linen);
    border-color: var(--hc-linen);
    background-image: url(/img/fluorish-diagonal-linen.svg);
    background-repeat: no-repeat;
  }
  .bg-body-white .has-corner-fluorish:before, .bg-body-white .has-corner-fluorish:after,
  .bg-body-white .has-corner-fluorish .fluorish-top:before,
  .bg-body-white .has-corner-fluorish .fluorish-top:after {
    z-index: 1000;
    background-color: transparent;
    border-color: transparent;
    height: 140px;
    width: 140px;
    bottom: -3rem;
    left: -3rem;
  }
  .bg-body-white .has-corner-fluorish .fluorish-top:before,
  .bg-body-white .has-corner-fluorish .fluorish-top:after {
    top: -3rem;
    bottom: auto;
  }
  .bg-body-white .has-corner-fluorish:after,
  .bg-body-white .has-corner-fluorish .fluorish-top:after {
    left: auto;
    right: -3rem;
  }
}
/* pagination */
.pagination {
  --bs-pagination-border-width: 0;
  --bs-pagination-color: var(--hc-blue);
  --bs-pagination-bg: transparent;
  --bs-pagination-hover-color: var(--bs-white);
  --bs-pagination-hover-bg: var(--hc-blue-liberty);
  --bs-pagination-active-bg: var(--hc-blue);
  --bs-pagination-disabled-color: var(--hc-wheat);
  --bs-pagination-disabled-bg: transparent;
  font-family: "freight-sans-pro", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.page-link-next,
.page-link-prev {
  margin-right: 1rem;
  background: var(--hc-wheat);
  border-radius: 2rem !important;
  font-size: 0.75rem;
  --bs-pagination-padding-x: 1.5rem;
  --bs-pagination-padding-y: 0.4375rem;
}

.page-link-next:hover,
.page-link-prev:hover {
  color: var(--hc-blue);
  background-color: #e0d2b3;
  border-color: #e0d2b3;
}

.page-link-next {
  margin-right: 0;
  margin-left: 1rem !important;
}

/* book */
.hero-book h2 {
  color: var(--hc-blue);
  font-size: 2rem;
  line-height: 1.1;
}

.hero-book p.lead {
  font-size: 1.5rem;
}

.hero-book dl {
  font-family: "freight-sans-pro", sans-seif;
}

.hero-book dl dd {
  font-weight: 500;
}

.hero-book {
  position: relative;
}

@media (max-width: 767px) {
  .hero:not(.hero-the-virtues) {
    background-size: auto 440px;
    background-position: center 102px;
  }
  .hero .hero-content .logo-core-virtues-lg {
    width: 100%;
  }
  .hero-book img {
    display: block;
    margin: 0 auto;
    max-width: 50%;
  }
}
@media (min-width: 768px) {
  .hero-book h2 {
    font-size: 2.875rem;
  }
  .hero-book p.lead {
    font-size: 1.625rem;
  }
  .hero-book .has-fluorish:before,
  .hero-book .has-fluorish:after {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    height: 50%;
    width: 40%;
    background-image: url("/img/fluorish.svg");
    background-repeat: no-repeat;
  }
  .hero-book .has-fluorish:after {
    right: 0;
    left: auto;
    transform: scale(-1, 1);
  }
  .hero-book h2:before {
    display: inline-block;
    content: "";
    height: 36px;
    width: 35px;
    margin: 0 0.25rem 0 calc(-35px - 0.25rem);
    background-image: url(/img/fluorish-side.svg);
    background-size: cover;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .hero-book .has-fluorish:before {
    left: -2rem;
  }
  .hero-book .has-fluorish:after {
    right: -2rem;
  }
}
/* scroller */
@media (max-width: 768px) {
  .flex-wrap-none {
    flex-wrap: nowrap;
    width: -moz-fit-content;
    width: fit-content;
    padding: 0.5rem 1rem 1rem 0.5rem;
  }
  .scroller {
    width: 100%;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .scroller .col {
    scroll-snap-align: start;
  }
}
button,
input,
optgroup,
select,
textarea,
.text-sans {
  font-family: "freight-sans-pro", sans-serif;
}

.text-sans strong {
  font-weight: 600;
}

.anchor {
  display: block;
  position: relative;
  top: -140px;
  visibility: hidden;
}

.list-spaced li {
  margin-bottom: 0.5rem;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .border-lg-end-0 {
    border-right: 0;
  }
}
.form-control,
.form-select,
.form-control:focus {
  color: var(--hc-blue);
  background-color: var(--bs-white);
}

.col-virtue-text a {
  color: var(--hc-linen);
  text-decoration: none;
}
.col-virtue-text a:hover {
  color: var(--bs-white);
}

.ratio-book {
  --bs-aspect-ratio: 133%;
}
.ratio-book .img-cover {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: bottom;
     object-position: bottom;
}

.bg-body-tertiary h2 {
  color: var(--bg-body-text) !important;
}

.text-bg-wheat {
  background-color: var(--hc-wheat);
}

.text-bg-wheat-dark {
  background-color: var(--hc-wheat-text);
}

button.btn-plain {
  margin: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  border: 0;
  text-align: left;
}

.mb-0 > p {
  margin-bottom: 0 !important;
}

.modal-content {
  color: var(--hc-blue);
  background-color: var(--bs-white);
}

.bg-primary .invalid-feedback {
  color: #fff;
  background-color: var(--bs-form-invalid-color);
  font-size: 1rem;
  font-family: "freight-sans-pro", sans-serif;
  border-radius: 2px;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

/* blog */
.reading-width {
  max-width: 680px;
}
.reading-width h1 + .payload-richtext {
  margin-top: 1rem;
}
.reading-width p,
.reading-width ul {
  margin-bottom: 2rem;
  font-size: 1.3125rem;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  line-height: 2rem;
  letter-spacing: -0.003em;
}
.reading-width figure,
.reading-width .payload-richtext > img {
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}
.reading-width figure.float-start,
.reading-width .payload-richtext > img.float-start {
  margin-right: 1rem;
}
.reading-width figure.float-end,
.reading-width .payload-richtext > img.float-end {
  margin-left: 1rem;
}
.reading-width .figure-caption p {
  margin: 0;
  font-size: 1rem;
  font-family: "freight-sans-pro", sans-serif;
  letter-spacing: normal;
}

.badge {
  font-family: "freight-sans-pro", sans-serif;
  letter-spacing: 0.05em;
}

.breadcrumb {
  font-family: "freight-sans-pro", sans-serif;
}

.col-post-listing-large p.lead {
  font-weight: normal;
  color: inherit;
  font-size: 1.25rem;
}

.post-listing-image img {
  -o-object-fit: cover;
     object-fit: cover;
}

.hero-spacer {
  height: 100px;
}

.content-header {
  margin-top: -1rem;
  margin-bottom: 1rem;
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-size: cover;
}
.content-header h1 {
  font-size: 3.875rem;
  color: var(--hc-linen);
  text-shadow: 1px 1px 15px black;
}
.content-header .payload-richtext {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.object-position-top {
  -o-object-position: top center;
     object-position: top center;
}

.bg-body-tertiary mark {
  background-color: #fff;
}/*# sourceMappingURL=style.css.map */