/*
	TOC

*/
/*
	TOC
		What we do
		We help
		Researchers
		Regional contacts
*/
@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap");
/*
	TOC
		Padding variables
		Body
		Main
		In-line anchor scroll margin

		TODO
			Main
*/
body {
  padding-top: calc(var(--wmt-navbar-height) + 1rem);
}

body.account {
  padding-top: 0;
}

body.website {
  padding-top: var(--wmt-navbar-height);
}

body.share {
  padding-top: calc(var(--wmt-navbar-height) + 1rem);
}

body.app.client {
  padding-top: calc(var(--wmt-navbar-height) + 1rem + 3.5rem);
}

main {
  min-height: 60vh;
}

.section-anchor {
  scroll-margin-top: calc(var(--wmt-navbar-height) + 1rem);
}

.app.client .section-anchor {
  scroll-margin-top: calc(var(--wmt-navbar-height) + 1rem + 3.5rem);
}

/*
	TOC
		Badges
		Website footer
*/
footer {
  background-color: hsl(217, 67%, 13%);
  color: #FFF;
  padding-block: 2rem;
  margin-top: 1rem;
}
footer li {
  margin-bottom: 1rem;
}
footer a {
  text-decoration: none;
}
footer a:hover, footer a:focus, footer a:active {
  text-decoration: underline;
}
footer .badges-block img {
  height: 3.5rem;
}
footer .logo-block .logo {
  height: 12rem;
}

.website footer {
  margin-top: 0;
}

:root {
  --wmt-navbar-height: calc(62px + 0.625rem + 1rem);
}

.navbar-brand img {
  height: 62px;
}

.navbar .nav-item.dropdown.active > .nav-link {
  color: var(--bs-navbar-active-color);
}

/*
	TOC

*/
.app .search-bar {
  left: 0;
  position: fixed;
  right: 0;
  top: var(--wmt-navbar-height);
  z-index: 3;
}

/*
    TOC
        Bootstrap customizations
        Global notifications
            Loading alerts
*/
.alert-danger {
  --bs-alert-color: hsl(0, 80%, 50%);
  --bs-alert-bg: hsl(0, 80%, 92%);
}

.alert-info {
  --bs-alert-bg: hsl(216, 67%, 93%);
}

.global-notifications-block {
  bottom: 1rem;
  max-width: 30rem;
  position: fixed;
  right: 1rem;
  width: calc(100% - 2rem);
  z-index: 10000;
}
.global-notifications-block .alert-loading {
  align-items: center;
  border-radius: 100%;
  display: flex;
  height: 3rem;
  justify-content: center;
  margin-left: auto;
  width: 3rem;
}

/*
	TOC
		User avatar
		Company logo


	Resizing policy
		Old
			User avatars get stretched or squeezed disproportionately to fit a 150x150 box.
			Company avatars get sized to 150 height, and the width is proportional.
		New
			All avatars and logos get sized to 150px, and the width is scaled per the original ratio.
			Images that are less than 150px height are left unaltered.
*/
.avatar {
  aspect-ratio: 1/1;
  background-color: hsl(213, 9%, 95%);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border: 1px solid hsl(213, 9%, 80%);
  border-radius: 50%;
  height: 150px;
  width: 150px;
}

.company-logo {
  background-color: #fff;
  background-origin: content-box;
  background-size: contain;
  border-radius: var(--bs-border-radius-lg);
  padding: 1%;
}
.company-logo.empty {
  background-color: hsl(213, 9%, 95%);
}

/*
    TOC

*/
.bg-motif-blue {
  background-color: hsl(216, 67%, 39%) !important;
  background-image: url("/wmtapp/wmt/img/shared/wmt-motif_blue-162519c20995ec5130bdb565d99f32a84a680203.jpg") !important;
}

.bg-motif-blue-dark {
  background-color: hsl(217, 67%, 13%) !important;
  background-image: url("/wmtapp/wmt/img/shared/wmt-motif_blue_dark-b203a6e582c3b7441c11b6da5cbe79ef316662df.jpg") !important;
}

.btn-wmt-secondary {
  --bs-btn-color: hsl(216, 67%, 39%);
  --bs-btn-bg: hsl(217, 50%, 97%);
  --bs-btn-border-color: hsl(212, 63%, 77%);
  --bs-btn-hover-color: hsl(216, 67%, 39%);
  --bs-btn-hover-bg: hsl(217, 50%, 87%);
  --bs-btn-hover-border-color: hsl(212, 63%, 67%);
  --bs-btn-focus-shadow-rgb: 140, 178, 223;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: rgb(245.82, 248.166, 251.94);
  --bs-btn-active-border-color: rgb(168.96045, 199.99803, 235.46955);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: hsl(217, 67%, 43%);
  --bs-btn-disabled-bg: hsl(217, 50%, 97%);
  --bs-btn-disabled-border-color: hsl(212, 63%, 77%);
}

.btn-wmt-danger {
  --bs-btn-color: hsl(0, 80%, 50%);
  --bs-btn-bg: hsl(0, 80%, 95%);
  --bs-btn-border-color: hsl(0, 80%, 80%);
  --bs-btn-hover-color: hsl(0, 80%, 50%);
  --bs-btn-hover-bg: hsl(0, 80%, 85%);
  --bs-btn-hover-border-color: hsl(0, 80%, 70%);
  --bs-btn-focus-shadow-rgb: 243, 143, 143;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: rgb(252.96, 236.64, 236.64);
  --bs-btn-active-border-color: rgb(245.82, 172.38, 172.38);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: hsl(0, 80%, 60%);
  --bs-btn-disabled-bg: hsl(0, 80%, 95%);
  --bs-btn-disabled-border-color: hsl(0, 80%, 80%);
}

.btn-wmt-warning {
  --bs-btn-color: hsl(30, 100%, 50%);
  --bs-btn-bg: hsl(30, 100%, 95%);
  --bs-btn-border-color: hsl(30, 100%, 80%);
  --bs-btn-hover-color: hsl(30, 100%, 50%);
  --bs-btn-hover-bg: hsl(30, 100%, 85%);
  --bs-btn-hover-border-color: hsl(30, 100%, 70%);
  --bs-btn-focus-shadow-rgb: 255, 193, 130;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: rgb(255, 244.8, 234.6);
  --bs-btn-active-border-color: rgb(255, 209.1, 163.2);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: hsl(0, 80%, 60%);
  --bs-btn-disabled-bg: hsl(30, 100%, 95%);
  --bs-btn-disabled-border-color: hsl(30, 100%, 80%);
}

.btn-wmt-white-blue {
  --bs-btn-color: hsl(216, 67%, 39%);
  --bs-btn-bg: #FFF;
  --bs-btn-border-color: #FFF;
  --bs-btn-hover-color: #FFF;
  --bs-btn-hover-bg: hsl(216, 67%, 39%);
  --bs-btn-hover-border-color: hsl(216, 67%, 39%);
  --bs-btn-focus-shadow-rgb: 222, 230, 242;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: white;
  --bs-btn-active-border-color: white;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: hsl(216, 67%, 49%);
  --bs-btn-disabled-bg: #FFF;
  --bs-btn-disabled-border-color: #FFF;
}

.btn-wmt-white-blue-dark {
  --bs-btn-color: hsl(216, 67%, 39%);
  --bs-btn-bg: #FFF;
  --bs-btn-border-color: #FFF;
  --bs-btn-hover-color: #FFF;
  --bs-btn-hover-bg: hsl(217, 67%, 13%);
  --bs-btn-hover-border-color: hsl(217, 67%, 13%);
  --bs-btn-focus-shadow-rgb: 222, 230, 242;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: white;
  --bs-btn-active-border-color: white;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: hsl(216, 67%, 49%);
  --bs-btn-disabled-bg: #FFF;
  --bs-btn-disabled-border-color: #FFF;
}

/*
	TOC
		Card
		Linked card
*/
.card {
  overflow: hidden;
}
.card .card-divider {
  border-top: 1px solid hsl(212, 63%, 77%);
  margin: 1rem 0;
}

a.card {
  color: var(--bs-body-color);
  text-decoration: none;
}
a.card:hover, a.card:focus, a.card:active {
  border-color: hsl(212, 63%, 77%);
  outline: 1px solid hsl(212, 63%, 77%);
}
a.card:hover .card-footer, a.card:focus .card-footer, a.card:active .card-footer {
  background-color: hsl(217, 50%, 97%);
}

/*
	Table of contents
		Form group
		Label
		Form control help
		Form errors
		Sticky footer
*/
.form-group {
  max-width: 35rem;
  margin-bottom: 1rem;
}

.form-label.required:after {
  content: "*";
  color: var(--bs-danger);
  margin-left: 0.25em;
}

.form-control-help {
  color: var(--bs-secondary-color);
  font-size: 0.91rem;
}

.form-label + .form-control-help {
  margin-bottom: 0.5rem;
  margin-top: -0.25rem;
}

.form-error {
  color: var(--bs-danger);
  margin-bottom: 1rem;
  margin-top: 1rem;
}

.form-control-error {
  color: var(--bs-danger);
  margin-top: 0.25rem;
}

.form-sticky-footer {
  background-color: #FFF;
  border-top: 2px solid hsl(213, 9%, 80%);
  bottom: 0;
  padding: 1rem 0;
  position: sticky;
  z-index: 10;
}

/*
	TOC

*/
.horizontal-filters {
  border: 1px solid hsl(213, 9%, 80%);
  border-radius: var(--bs-border-radius-sm);
  display: flex;
  font-size: 0.91rem;
  margin-bottom: 1rem;
}
.horizontal-filters .filter-block {
  padding: 1rem;
}
.horizontal-filters .filter-block:not(:last-child) {
  border-right: 1px solid hsl(213, 9%, 80%);
}

/*
	TOC
		Filter block
		Facets block with max height
		Filter with collapsible panel
		Filter header
*/
.vertical-filters {
  border: 1px solid hsl(213, 9%, 80%);
  border-radius: var(--bs-border-radius-sm);
  margin-bottom: 1rem;
}
.vertical-filters .filter-block {
  padding: 1rem;
}
.vertical-filters .filter-block:not(:last-child) {
  border-bottom: 1px solid hsl(213, 9%, 80%);
}
.vertical-filters .filter-collapsible-block .btn {
  background-color: hsl(213, 9%, 95%);
  border-bottom: 1px solid hsl(213, 9%, 80%);
  border-radius: 0;
  color: var(--bs-body-color);
  padding: 1rem !important;
  text-align: left;
  text-decoration: none;
  width: 100%;
}
.vertical-filters .filter-header {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
}
.vertical-filters .facets-block-max-height {
  max-height: 7lh;
  overflow-y: auto;
}
.vertical-filters .facets-block-inset {
  margin-left: 1rem;
}

/*
	TOC
		Icon mixin

*/
/*
	TOC
		Base styles
		Thinker nav
		Video nav
*/
.nav-prev-next {
  border: 1px solid hsl(213, 9%, 80%);
  border-radius: var(--bs-border-radius-sm);
  display: grid;
  margin-bottom: 1rem;
}
.nav-prev-next > * {
  display: flex;
}
.nav-prev-next > *:not(:last-child) {
  border-bottom: 1px solid hsl(213, 9%, 80%);
}
.nav-prev-next a {
  text-decoration: none;
}
.nav-prev-next a:hover, .nav-prev-next a:focus, .nav-prev-next a:active {
  background-color: hsl(217, 50%, 97%);
}
.nav-prev-next .link-label {
  padding: 0.25rem;
}
@media (min-width: 768px) {
  .nav-prev-next {
    grid-template-columns: 1fr auto 1fr;
  }
  .nav-prev-next > *:not(:last-child) {
    border: none;
    border-right: 1px solid hsl(213, 9%, 80%);
  }
}
.nav-prev-next .prev-link::before, .nav-prev-next .prev-link::after {
  display: inline-block;
  font-family: "FontAwesome";
}
.nav-prev-next .prev-link::before {
  content: "\f104";
  margin-right: 0.5em;
}
.nav-prev-next .prev-link::before {
  align-items: center;
  border-right: 1px solid hsl(213, 9%, 80%);
  color: var(--bs-body-color);
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  width: 3ch;
}
.nav-prev-next .list-link {
  align-items: center;
  display: flex;
  justify-content: center;
  padding-inline: 1.5rem;
}
.nav-prev-next .next-link {
  justify-content: end;
}
.nav-prev-next .next-link::before, .nav-prev-next .next-link::after {
  display: inline-block;
  font-family: "FontAwesome";
}
.nav-prev-next .next-link::after {
  content: "\f105";
  margin-left: 0.5em;
}
.nav-prev-next .next-link::after {
  align-items: center;
  border-left: 1px solid hsl(213, 9%, 80%);
  color: var(--bs-body-color);
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  width: 3ch;
}

.nav-prev-next.nav-thinker-prev-next .link-label {
  display: flex;
  gap: 1em;
}
.nav-prev-next.nav-thinker-prev-next .sup-info {
  color: var(--bs-body-color);
  display: block;
  font-size: 0.91rem;
}

.nav-prev-next.nav-video-prev-next .link-label {
  align-items: center;
  display: flex;
  gap: 1em;
}
.nav-prev-next.nav-video-prev-next .thumbnail-wrapper {
  flex: 0 0 6rem;
  width: 6rem;
}
.nav-prev-next.nav-video-prev-next .video-thumbnail-label {
  display: none;
}
.nav-prev-next.nav-video-prev-next .video-author {
  display: block;
  margin-top: 0.25rem;
  color: var(--bs-body-color);
  font-size: 0.91rem;
}

/*
	TOC
		Bootstrap customizations
        Unbordered table
		Blue table

*/
.table th {
  background-color: hsl(213, 9%, 95%);
}

.table-hover tr:hover {
  cursor: pointer;
}

.table-unbordered thead,
.table-unbordered tbody,
.table-unbordered tr,
.table-unbordered th,
.table-unbordered td {
  border: none !important;
}

.table-blue thead th,
.table-blue tbody tr:first-child th {
  background-color: hsl(216, 67%, 39%);
  color: #FFF;
}
.table-blue tbody th {
  background-color: hsl(217, 50%, 97%);
}

/*
	TOC


*/
.wmt-tooltip {
  display: inline-block;
  position: relative;
  text-decoration: none;
}
.wmt-tooltip .tooltip-text {
  background-color: var(--bs-body-color);
  border-radius: var(--bs-border-radius-sm);
  color: #FFF;
  padding: 0.3em 0.5em;
  visibility: hidden;
  white-space: nowrap;
  /* Position the tooltip text */
  left: 50%;
  position: absolute;
  top: 0;
  transform: translateX(-50%) translateY(-110%);
  z-index: 1;
}
.wmt-tooltip .tooltip-text:after {
  content: " ";
  position: absolute;
  top: 100%;
  /* At the bottom of the tooltip */
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: var(--bs-body-color) transparent transparent transparent;
}
.wmt-tooltip:hover .tooltip-text {
  visibility: visible;
}

/*
	TOC
		Headings
			Underlined heading
			Heading with 'All x >' link
		Lists
		Text utility classes

*/
.h1-xl {
  font-size: 3.8974342rem;
  font-weight: bold;
}

.heading-underlined {
  border-bottom: 1px solid hsl(213, 9%, 80%);
  padding-bottom: 0.25em;
}

.heading-w-link {
  border-bottom: 1px solid hsl(213, 9%, 80%);
  padding-bottom: 0.25em;
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  justify-content: space-between;
}
.heading-w-link .link {
  font-size: initial;
  text-decoration: none;
  white-space: nowrap;
}
.heading-w-link .link::before, .heading-w-link .link::after {
  display: inline-block;
  font-family: "FontAwesome";
}
.heading-w-link .link::after {
  content: "\f105";
  margin-left: 0.5em;
}
.heading-w-link .link:hover {
  text-decoration: underline;
}

.list ul,
.list ol {
  margin-top: 0.5rem;
}
.list li {
  margin-bottom: 0.5rem;
}

.text-sm {
  font-size: 0.91rem !important;
}

.text-xs {
  font-size: 0.83rem !important;
}

/*
	TOC

*/
.hs-embed-form .hs-form-field {
  margin-bottom: 1rem;
}
.hs-embed-form label {
  font-weight: bold;
}
.hs-embed-form legend {
  border: none;
  color: var(--bs-secondary-color);
  font-size: inherit;
  margin-bottom: 0.5rem;
}
.hs-embed-form .hs-form-required {
  color: var(--bs-danger);
  margin-left: 0.5em;
}
.hs-embed-form .hs-input {
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
  max-width: 40ch;
  padding: 0.33em 0.5em;
  width: 100%;
}
.hs-embed-form select {
  background-color: #FFF;
}
.hs-embed-form .hs-button.primary {
  border: none;
  border-radius: 2em;
  background-color: var(--bs-primary);
  color: #FFF;
  font-family: inherit;
  font-size: inherit;
  font-weight: bold;
  padding: 0.5em 1em;
  text-align: center;
}
.hs-embed-form .hs-error-msgs {
  color: var(--bs-danger);
  margin-top: 0.5em;
}
.hs-embed-form label.hs-error-msg {
  display: initial;
}
.hs-embed-form .hs_error_rollup {
  display: none;
}

.hs-report-form h4 {
  color: var(--bs-primary);
  margin-bottom: 0.5rem;
  margin-top: 0;
}
.hs-report-form .hs-button.primary {
  margin-bottom: 1rem;
}

/*
	http://kenwheeler.github.io/slick/
*/
.js-slick-slider {
  margin-left: 2rem;
  margin-right: 2rem;
  position: relative;
}
.js-slick-slider .slick-list {
  overflow: hidden;
}
.js-slick-slider .slick-slide {
  float: left;
}
.js-slick-slider .slick-arrow {
  background: none;
  border: none;
  color: var(--bs-body-color) -blue-dark;
  cursor: pointer;
  font-size: 0;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}
.js-slick-slider .slick-arrow::before {
  font-size: 1.21rem !important;
  font-weight: 700;
}
.js-slick-slider .slick-disabled {
  color: hsl(213, 9%, 95%);
}
.js-slick-slider .slick-prev {
  left: -2rem;
}
.js-slick-slider .slick-prev::before, .js-slick-slider .slick-prev::after {
  display: inline-block;
  font-family: "FontAwesome";
}
.js-slick-slider .slick-prev::before {
  content: "\f053";
  margin-right: 0.5em;
}
.js-slick-slider .slick-next {
  right: -2rem;
}
.js-slick-slider .slick-next::before, .js-slick-slider .slick-next::after {
  display: inline-block;
  font-family: "FontAwesome";
}
.js-slick-slider .slick-next::before {
  content: "\f054";
  margin-right: 0.5em;
}
.js-slick-slider .slick-dots {
  bottom: -2rem;
  display: flex;
  gap: 0.5rem;
  list-style: none;
  justify-content: center;
  margin: 0;
  padding: 0;
  position: relative;
  width: 100%;
}
.js-slick-slider .slick-dots li button {
  background: none;
  border: none;
  color: var(--bs-primary);
  cursor: pointer;
  font-size: 0;
}
.js-slick-slider .slick-dots li button::before, .js-slick-slider .slick-dots li button::after {
  display: inline-block;
  font-family: "FontAwesome";
}
.js-slick-slider .slick-dots li button::before {
  content: "\f10c";
  margin-right: 0.5em;
}
.js-slick-slider .slick-dots li button::before {
  font-size: 0.91rem !important;
}
.js-slick-slider .slick-dots li.slick-active button::before {
  content: "\f111";
}

/*
	TOC
		Typography
		Quote section
		Addresses section
*/
.fs-ce-32 {
  font-size: 2rem !important;
}

.fs-ce-22 {
  font-size: 1.375rem !important;
}

.back-to-top-btn {
  background-image: url("/wmtapp/wmt/img/shared/back-to-top-icon-b9bbe5eaa85234bf502340e24ba6c44653f1f47d.svg");
  background-repeat: no-repeat;
  background-position: center center;
  bottom: 1rem;
  float: right;
  height: 36px;
  line-height: 36px;
  margin-right: 1rem;
  margin-top: -3rem;
  position: sticky;
  width: 36px;
  z-index: 1;
}

.quote-section {
  padding-top: 2rem;
  padding-bottom: 2rem;
  text-align: center;
}
.quote-section .quote-block {
  margin-left: auto;
  margin-right: auto;
  max-width: 60ch;
}
.quote-section .quote-block_speechmarks {
  height: 3.5rem;
}
.quote-section .quote-block_logo {
  height: 2.937rem;
}
.quote-section .quote-block_quote {
  font-style: italic;
}
.quote-section .quote-block_attribution {
  display: inline-flex;
  font-size: 0.875rem;
  font-weight: 700;
  gap: 1rem;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  white-space: nowrap;
}

.quote-section-blue {
  background-color: hsl(217, 50%, 97%);
}

#addresses-section {
  background-color: hsl(217, 50%, 97%);
  padding-bottom: 4rem;
}
#addresses-section h2 {
  color: var(--bs-primary);
  font-size: 1.375rem;
  margin-bottom: 2rem;
  text-align: center;
}
@media (min-width: 768px) {
  #addresses-section h2 {
    font-size: 2rem;
  }
}

.address-block .address-block_map {
  border-radius: var(--bs-radius-lg);
  filter: grayscale(1);
  overflow: hidden;
  position: relative;
  padding-bottom: 69%;
  height: 0;
}
.address-block .address-block_map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.address-block .address-block_heading {
  font-size: 1.375rem;
  margin-bottom: 0.5rem;
  margin-top: 1.5rem;
}
.address-block .address-block_address {
  margin-top: 0;
}
@media (max-width: 575.98px) {
  .address-block:not(.last) {
    border-bottom: 2px solid hsl(216, 67%, 39%);
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
  }
}
.contact-card {
  align-items: center;
  background-color: #FFF;
  border-radius: var(--bs-radius-lg);
  display: flex;
  gap: 0.5rem;
  padding: 0.5rem;
}
.contact-card > div:nth-child(2) {
  flex-grow: 1;
  text-align: center;
}
.contact-card img {
  height: 6rem;
}
.contact-card .contact-card_region {
  font-size: 1.375rem;
  margin-bottom: 0.5rem;
  margin-top: 0;
}
.contact-card .contact-card_phone {
  margin-bottom: 0.5rem;
}

.contact-modal h4 {
  align-items: center;
  color: var(--bs-primary);
  display: flex;
  font-size: 1.61051rem;
  margin: 0.5rem 0 1.5rem 0;
}
.contact-modal img {
  height: 3.5rem;
  margin-right: 0.5em;
}

.newsletter-block .newsletter-block_wordmark img {
  height: 5.5rem;
}

/*
	TOC
		Contact Forms
*/
.website.contact-page #contact-forms-section {
  margin-bottom: 3rem;
}
.website.contact-page #contact-forms-section h1 {
  color: var(--bs-primary);
  font-size: 2.125rem;
  margin-bottom: 2rem;
  text-align: center;
}
@media (min-width: 768px) {
  .website.contact-page #contact-forms-section h1 {
    font-size: 4.5rem;
  }
}
.website.contact-page #contact-forms-section .contact-forms {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 64.75rem;
  margin-inline: auto;
}
@media (min-width: 576px) {
  .website.contact-page #contact-forms-section .contact-forms {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}
.website.contact-page #contact-forms-section .contact-form {
  border: 3px solid hsl(216, 67%, 39%);
  border-radius: var(--bs-border-radius-xxl);
  padding: 1rem;
  text-align: center;
}
.website.contact-page #contact-forms-section .contact-form h2 {
  color: var(--bs-primary);
  font-size: 1.375rem;
  margin-top: 0;
}
@media (min-width: 768px) {
  .website.contact-page #contact-forms-section .contact-form h2 {
    font-size: 2rem;
  }
}
.website.contact-page #contact-forms-section .contact-form p {
  font-weight: 700;
}

/*
	TOC

*/
.website.legal-page {
  padding-top: calc(var(--wmt-navbar-height) + 1rem);
}
.website.legal-page .toc-block {
  border-bottom: 1px solid hsl(213, 9%, 80%);
  margin-bottom: 3rem;
  padding-bottom: 1rem;
}
.website.legal-page .toc-block h2 {
  color: var(--bs-secondary-color);
  font-size: 1rem;
  margin-top: 0;
}
.website.legal-page .toc-block nav a {
  text-decoration: none;
}
@media (min-width: 576px) {
  .website.legal-page .toc-block nav {
    -moz-column-count: 2;
         column-count: 2;
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }
}
@media (min-width: 768px) {
  .website.legal-page .toc-block nav {
    -moz-column-count: 3;
         column-count: 3;
  }
}
.website.legal-page .toc-block li {
  margin-bottom: 0.5rem;
}
.website.legal-page .toc-block ul ul {
  margin-left: 1rem;
}
.website.legal-page .list-lower-alpha {
  list-style-type: lower-alpha;
}
.website.legal-page .list-upper-alpha {
  list-style-type: upper-alpha;
}
.website.legal-page .list-lower-roman {
  list-style-type: lower-roman;
}
.website.legal-page .list-decimal {
  list-style-type: decimal;
}
.website.legal-page .simplese-block {
  border: 1px solid hsl(216, 67%, 39%);
  border-radius: var(--bs-border-radius-sm);
  padding: 0 1rem;
  margin-bottom: 1rem;
}
@media (min-width: 576px) {
  .website.legal-page .simplese-block {
    float: right;
    margin-left: 2rem;
    width: 30ch;
  }
}
.website.legal-page .simplese-block h4 {
  color: var(--bs-secondary-color);
  font-size: 0.91rem;
  margin-bottom: 0.5rem;
  margin-top: 1rem;
}
.website.legal-page .simplese-block p:first-of-type {
  margin-top: 0.5rem;
}
.website.legal-page .gdpr-block {
  border: 1px solid hsl(216, 67%, 39%);
  border-radius: var(--bs-border-radius-sm);
  padding: 1rem;
}
@media (min-width: 576px) {
  .website.legal-page .gdpr-block {
    float: right;
    margin-bottom: 1rem;
    margin-left: 2rem;
    width: 30ch;
  }
}
.website.legal-page .thinkers-acknowledgement-block {
  border: 1px solid hsl(213, 9%, 80%);
  border-radius: var(--bs-border-radius-sm);
  padding: 1rem 2rem;
  margin-bottom: 2rem;
}
.website.legal-page .other-terms-link {
  border: 1px solid hsl(216, 67%, 39%);
  border-radius: var(--bs-border-radius-sm);
  margin-bottom: 2rem;
  margin-top: -1rem;
  padding: 1rem;
}

#what-we-do-section {
  padding-bottom: 1rem;
  text-align: center;
}
#what-we-do-section .solutions {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  #what-we-do-section .solutions {
    grid-template-columns: repeat(4, 1fr);
  }
}
#what-we-do-section .solutions > div {
  align-items: center;
  display: flex;
  flex-direction: column;
}
#what-we-do-section .solutions > div p {
  flex-grow: 1;
}
@media (min-width: 768px) {
  #what-we-do-section .solutions.three-solutions {
    grid-template-columns: repeat(3, 1fr);
  }
}
#what-we-do-section h2.imagine {
  color: var(--bs-primary);
  margin-left: auto;
  margin-right: auto;
  margin-top: 3rem;
  max-width: 50ch;
}
@media (min-width: 768px) {
  #what-we-do-section h2.imagine {
    font-size: 2rem;
  }
}
#what-we-do-section h2 {
  font-size: 1.375rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  #what-we-do-section h2 {
    font-size: 2rem;
  }
}
#what-we-do-section img {
  max-width: 8.687rem;
  width: 100%;
}
#what-we-do-section h3 {
  font-size: 1.375rem;
  margin-bottom: 0.5rem;
  margin-top: 1rem;
}
#what-we-do-section p {
  margin-top: 0;
}
#what-we-do-section .btn {
  margin-bottom: 2rem;
}

#we-help-section {
  background-color: hsl(216, 67%, 39%);
  color: #FFF;
  font-size: 1.375rem;
  font-weight: 700;
  padding-bottom: 2rem;
  padding-top: 2rem;
  text-align: center;
}
#we-help-section p {
  margin-inline: auto;
  max-width: 59ch;
}
@media (min-width: 768px) {
  #we-help-section {
    font-size: 2rem;
  }
}

#researchers-section {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
#researchers-section h2 {
  color: var(--bs-primary);
  font-size: 1.375rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  #researchers-section h2 {
    font-size: 2rem;
  }
}
#researchers-section .researcher {
  padding-left: 1rem;
  padding-right: 1rem;
}
#researchers-section h3 {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}
#researchers-section p {
  margin-top: 0;
}

#regional-contacts-section {
  background-color: hsl(217, 50%, 97%);
  padding-bottom: 4rem;
  padding-top: 4rem;
  scroll-margin-top: var(--wmt-navbar-height);
}
@media (max-width: 575.98px) {
  #regional-contacts-section .contact-card {
    margin-bottom: 1rem;
  }
}

/*
	TOC
		Hero
		Fluff
		Users
		Clients
		Blog
*/
.website.homepage #hero-section {
  background-color: hsl(216, 67%, 39%);
  background-image: url(/wmtapp/wmt/img/shared/wmt-motif_blue-162519c20995ec5130bdb565d99f32a84a680203.jpg);
  color: #FFF;
}
.website.homepage #hero-section h1 {
  font-size: 2.5rem;
}
.website.homepage #hero-section p {
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .website.homepage #hero-section h1 {
    font-size: 4.5rem;
    margin-top: 3rem;
  }
}
.website.homepage #hero-section img {
  max-width: 100%;
}
.website.homepage #fluff-section {
  background-color: hsl(217, 50%, 97%);
  margin-bottom: 3rem;
  padding-top: 1rem;
  padding-bottom: 2rem;
}
.website.homepage #fluff-section h2 {
  color: var(--bs-primary);
  font-size: 1.375rem;
  margin-bottom: 1.5rem;
}
.website.homepage #fluff-section h3 {
  font-size: 1.375rem;
  margin: 0;
}
.website.homepage #fluff-section p {
  margin-top: 0.5rem;
}
@media (min-width: 768px) {
  .website.homepage #fluff-section h2 {
    font-size: 2rem;
  }
}
.website.homepage #fluff-section img {
  max-width: 100%;
}
.website.homepage #users-section {
  background-color: hsl(217, 50%, 97%);
  border-radius: var(--bs-radius-lg);
  margin-bottom: 3rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 57.312rem;
  padding: 2rem;
}
@media (max-width: 767.98px) {
  .website.homepage #users-section {
    margin-left: 1rem;
    margin-right: 1rem;
    padding: 2rem 1rem;
  }
}
.website.homepage #users-section h2 {
  color: var(--bs-primary);
  font-size: 2rem;
  margin-top: 0;
}
@media (max-width: 767.98px) {
  .website.homepage #users-section h2 {
    display: none;
  }
}
.website.homepage #users-section .slideshow {
  display: flex;
  gap: 4rem;
}
.website.homepage #users-section nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.website.homepage #users-section nav a {
  color: var(--bs-body-color);
  display: block;
  font-size: 1.375rem;
  font-weight: 700;
  padding-bottom: 0.5em;
  padding-top: 0.5em;
  white-space: nowrap;
  text-decoration: none;
}
.website.homepage #users-section nav a:hover, .website.homepage #users-section nav a:focus {
  color: hsl(216, 67%, 39%);
  text-decoration: none;
}
.website.homepage #users-section nav li.active a {
  color: hsl(216, 67%, 39%);
}
.website.homepage #users-section .pane {
  padding-bottom: 2rem;
}
@media (min-width: 768px) {
  .website.homepage #users-section .pane {
    display: none;
    padding-bottom: 0;
  }
}
.website.homepage #users-section h3 {
  font-size: 1.375rem;
  margin-bottom: 0.5rem;
  margin-top: 1rem;
}
.website.homepage #users-section p {
  margin-top: 0;
}
.website.homepage #users-section .details {
  text-align: center;
}
@media (max-width: 767.98px) {
  .website.homepage #users-section nav {
    display: none;
  }
}
.website.homepage #clients-section h2 {
  color: var(--bs-primary);
  font-size: 1.375rem;
  margin-bottom: 1.5rem;
  text-align: center;
}
@media (min-width: 768px) {
  .website.homepage #clients-section h2 {
    font-size: 2rem;
  }
}
.website.homepage #clients-section .client-logos-block {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .website.homepage #clients-section .client-logos-block {
    gap: 2rem;
  }
}
.website.homepage #quotes-section {
  padding-bottom: 6rem;
}
.website.homepage #quotes-section .quotes {
  max-width: 50ch;
  margin-inline: auto;
}
.website.homepage #blog-section {
  background-color: hsl(216, 67%, 39%);
  background-image: url("/wmtapp/wmt/img/shared/wmt-motif_blue-162519c20995ec5130bdb565d99f32a84a680203.jpg");
  color: #FFF;
  padding-top: 2rem;
}
@media (max-width: 991.98px) {
  .website.homepage #blog-section .decaffe {
    display: none;
  }
}
.website.homepage #blog-section .blog-posts-block a.post {
  color: #FFF;
  display: block;
  text-decoration: none;
}
@media (max-width: 991.98px) {
  .website.homepage #blog-section .blog-posts-block a.post {
    margin-bottom: 2rem;
  }
}
.website.homepage #blog-section .blog-posts-block a.post .image {
  background-position: center center;
  background-size: cover;
  border-radius: var(--bs-border-radius-xl);
  filter: grayscale(1);
  height: 11.68rem;
  margin-bottom: 1rem;
}
.website.homepage #blog-section .blog-posts-block a.post h5 {
  font-size: 1.375rem;
  margin-bottom: 0.5rem;
  margin-top: 0;
}
.website.homepage #blog-section .blog-posts-block a.post .date {
  font-size: 0.75rem;
  font-weight: 700;
}
.website.homepage #blog-section .blog-posts-block a.post .desc {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.website.homepage #blog-section .blog-posts-block a.post:hover, .website.homepage #blog-section .blog-posts-block a.post:focus, .website.homepage #blog-section .blog-posts-block a.post:active {
  text-decoration: none;
}
.website.homepage #blog-section .blog-posts-block a.post:hover h5, .website.homepage #blog-section .blog-posts-block a.post:focus h5, .website.homepage #blog-section .blog-posts-block a.post:active h5 {
  text-decoration: underline;
}

/*
	TOC
		Hero
		Applications
		Sample report
		Quote
		How it works
		Explore more
*/
.website.solutions-page #hero-section {
  background-color: hsl(216, 67%, 39%);
  background-image: url(/wmtapp/wmt/img/shared/wmt-motif_blue-162519c20995ec5130bdb565d99f32a84a680203.jpg);
  color: #FFF;
  padding-top: 1rem;
  scroll-margin-top: var(--wmt-navbar-height);
}
@media (max-width: 767.98px) {
  .website.solutions-page #hero-section {
    text-align: center;
  }
}
.website.solutions-page #hero-section h1 {
  font-size: 2.5rem;
}
.website.solutions-page #hero-section p {
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .website.solutions-page #hero-section h1 {
    font-size: 4.5rem;
  }
}
.website.solutions-page #hero-section img {
  max-width: 100%;
}
.website.solutions-page #in-page-nav {
  background-color: hsl(217, 50%, 97%);
  font-weight: 700;
}
@media (max-width: 767.98px) {
  .website.solutions-page #in-page-nav {
    padding-bottom: 0.5em;
    padding-top: 0.5em;
  }
}
.website.solutions-page #in-page-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 768px) {
  .website.solutions-page #in-page-nav ul {
    display: flex;
    justify-content: space-around;
  }
}
.website.solutions-page #in-page-nav li {
  display: inline;
}
.website.solutions-page #in-page-nav a {
  display: block;
  padding: 0.5em 1em;
  text-decoration: underline;
}
@media (min-width: 768px) {
  .website.solutions-page #in-page-nav a {
    padding: 1em;
  }
}
.website.solutions-page .solution-subsection {
  padding-bottom: 2rem;
  padding-top: 2rem;
  scroll-margin-top: calc(var(--wmt-navbar-height) + 2.5rem);
}
@media (min-width: 768px) {
  .website.solutions-page .solution-subsection {
    padding-bottom: 3rem;
    padding-top: 3rem;
  }
}
.website.solutions-page .solution-subsection h2 {
  color: var(--bs-primary);
  font-size: 1.375rem;
  margin-top: 0;
}
.website.solutions-page .solution-subsection p {
  font-weight: 700;
}
@media (min-width: 768px) {
  .website.solutions-page .solution-subsection h2 {
    font-size: 2rem;
  }
  .website.solutions-page .solution-subsection p {
    font-size: 1.437rem;
  }
}
.website.solutions-page .solution-subsection ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 768px) {
  .website.solutions-page .solution-subsection ul {
    margin-left: 2em;
  }
}
.website.solutions-page .solution-subsection ul li {
  background: url("/wmtapp/wmt/img/website/list-icon-2cf46dc8fc43c8dcc5cb416bb7c4fd3533ab50ac.png") no-repeat 0 0;
  padding-left: 4em;
  margin-bottom: 0.5rem;
  min-height: 1.5rem;
}
.website.solutions-page .solution-subsection img {
  max-width: 100%;
}
@media (max-width: 767.98px) {
  .website.solutions-page .solution-subsection img {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
}
.website.solutions-page .solution-subsection .video-wrapper {
  margin-left: auto;
  max-width: 510px;
}
.website.solutions-page .solution-subsection-blue {
  background-color: hsl(217, 50%, 97%);
}
.website.solutions-page .sample-report-btn {
  border: none;
  background: none;
  margin: 0;
  padding: 0;
}
.website.solutions-page #what-we-do-section {
  padding-bottom: 3rem;
}

/*
	TOC
		Header
		Uses
		Cheatsheet
		What we do
*/
.website.users-page header {
  background-color: hsl(217, 67%, 13%);
  background-image: url(/wmtapp/wmt/img/shared/wmt-motif_blue_dark-b203a6e582c3b7441c11b6da5cbe79ef316662df.jpg);
  color: #FFF;
  margin-bottom: 2rem;
  padding-top: 1rem;
}
@media (max-width: 767.98px) {
  .website.users-page header {
    text-align: center;
  }
}
.website.users-page header .prefix {
  display: block;
  font-size: 1.375rem;
}
.website.users-page header h1 {
  font-size: 2.5rem;
}
.website.users-page header p {
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .website.users-page header .prefix {
    font-size: 2rem;
  }
  .website.users-page header h1 {
    font-size: 4.5rem;
  }
}
.website.users-page header img {
  max-width: 100%;
}
.website.users-page #uses-section {
  margin-bottom: 2rem;
}
.website.users-page #uses-section .uses-desc h2 {
  color: var(--bs-primary);
  font-size: 1.375rem;
}
.website.users-page #uses-section .uses-desc p:last-child {
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .website.users-page #uses-section .uses-desc h2 {
    font-size: 2rem;
  }
}
.website.users-page #cheatsheet-block {
  background-color: hsl(216, 67%, 39%);
  border-radius: var(--bs-border-radius-xxl);
  color: #FFF;
  max-width: 32.125rem;
  margin-inline: auto;
  padding: 1.5rem 1rem;
}
.website.users-page #cheatsheet-block h2 {
  font-size: 1.375rem;
  margin-top: 0;
}
.website.users-page #cheatsheet-block h2 span {
  font-size: 1rem;
  display: block;
  margin-top: 1rem;
}
@media (min-width: 768px) {
  .website.users-page #cheatsheet-block h2 {
    font-size: 2rem;
  }
  .website.users-page #cheatsheet-block h2 span {
    font-size: 1.437rem;
  }
}
.website.users-page #cheatsheet-block .applications-table {
  width: 100%;
}
.website.users-page #cheatsheet-block .applications-table td {
  padding: 0.3em;
  vertical-align: top;
}
.website.users-page #cheatsheet-block .applications-table td:first-child {
  padding-left: 0;
  padding-right: 1.5em;
}
@media (min-width: 768px) {
  .website.users-page #cheatsheet-block .applications-table td:first-child {
    padding-left: 1.5em;
  }
}
.website.users-page #cheatsheet-block .applications-table img {
  height: 1.125em;
}
.website.users-page #cheatsheet-block .applications-table .no-row {
  color: var(--bs-body-color) -blue-dark;
  text-decoration: line-through;
}
.website.users-page #what-we-do-section {
  padding-top: 2rem;
}

/*
	TOC

*/
.website.casestudies-page header {
  background-color: hsl(217, 67%, 13%);
  background-image: url(/wmtapp/wmt/img/shared/wmt-motif_blue_dark-b203a6e582c3b7441c11b6da5cbe79ef316662df.jpg);
  color: #FFF;
  padding-top: 1rem;
}
@media (max-width: 767.98px) {
  .website.casestudies-page header {
    text-align: center;
  }
}
.website.casestudies-page header .prefix {
  display: block;
  font-size: 1.375rem;
}
.website.casestudies-page header h1 {
  font-size: 2.5rem;
}
@media (min-width: 768px) {
  .website.casestudies-page header .prefix {
    font-size: 2rem;
  }
  .website.casestudies-page header h1 {
    font-size: 4.5rem;
  }
}
.website.casestudies-page header img {
  max-width: 100%;
}
.website.casestudies-page #in-page-nav {
  font-weight: 700;
}
@media (max-width: 767.98px) {
  .website.casestudies-page #in-page-nav {
    padding-bottom: 0.5em;
    padding-top: 0.5em;
  }
}
.website.casestudies-page #in-page-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 768px) {
  .website.casestudies-page #in-page-nav ul {
    display: flex;
    justify-content: space-around;
  }
}
.website.casestudies-page #in-page-nav li {
  display: inline;
}
.website.casestudies-page #in-page-nav a {
  display: block;
  padding: 0.5em 1em;
  text-decoration: underline;
}
@media (min-width: 768px) {
  .website.casestudies-page #in-page-nav a {
    padding: 1em;
  }
}
.website.casestudies-page #hero-section,
.website.casestudies-page #bayer,
.website.casestudies-page #danone,
.website.casestudies-page #msc {
  scroll-margin-top: var(--wmt-navbar-height);
}
.website.casestudies-page .casestudy-heading {
  font-size: 1.437rem;
  color: var(--bs-primary);
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .website.casestudies-page .casestudy-heading {
    font-size: 2rem;
    margin-inline: auto;
    max-width: 40ch;
    text-align: center;
  }
}
.website.casestudies-page .casestudy-subheading {
  font-size: 1rem;
}
@media (min-width: 768px) {
  .website.casestudies-page .casestudy-subheading {
    font-size: 1.375rem;
  }
}
.website.casestudies-page .results-block {
  background-color: hsl(217, 67%, 13%);
  border-radius: var(--bs-border-radius-xxl);
  color: #FFF;
  padding: 1rem 2rem;
  margin-top: 2rem;
}
.website.casestudies-page .quote-block {
  margin-top: 1rem;
}
.website.casestudies-page .quote-block_speechmarks {
  height: 3.5rem;
  margin-bottom: 0.5rem;
}
.website.casestudies-page .quote-block_logo {
  height: 2.937rem;
}
.website.casestudies-page .quote-block_quote {
  font-style: italic;
}
.website.casestudies-page .quote-block_attribution {
  display: inline-flex;
  font-size: 0.875rem;
  font-weight: 700;
  gap: 1rem;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  white-space: nowrap;
}
.website.casestudies-page .service-block {
  background-color: #FFF;
  border-radius: var(--bs-border-radius-xxl);
  padding: 1rem 2rem 2rem;
  margin-top: 3rem;
  text-align: center;
}
@media (min-width: 768px) {
  .website.casestudies-page .service-block {
    text-align: left;
  }
}
.website.casestudies-page .service-block h3 {
  font-size: 1rem;
  color: var(--bs-primary);
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .website.casestudies-page .service-block h3 {
    font-size: 1.375rem;
  }
}
.website.casestudies-page .service-block .service {
  color: var(--bs-primary);
  font-size: 1rem;
  font-weight: bold;
}
@media (min-width: 768px) {
  .website.casestudies-page .service-block .service {
    font-size: 1.437rem;
  }
}
.website.casestudies-page .service-block img {
  margin-inline: auto;
  margin-bottom: 1rem;
  max-width: 139px;
  width: 100%;
}
.website.casestudies-page .service-block p {
  margin-bottom: 1rem;
}
.website.casestudies-page #bayer,
.website.casestudies-page #danone {
  background-color: hsl(217, 50%, 97%);
  padding-block: 2rem;
}
.website.casestudies-page #msc {
  background-color: hsl(216, 67%, 39%);
  color: #FFF;
  padding-block: 2rem;
}
.website.casestudies-page #msc h2 {
  color: #FFF;
}
.website.casestudies-page #msc ul {
  list-style: none;
  margin: 0;
  margin-bottom: 2rem;
  padding: 0;
}
.website.casestudies-page #msc ul li {
  background: url("/wmtapp/wmt/img/website/list-icon_play-73ffd320101c822331457e133e4cc978f9535f32.png") no-repeat 0 0;
  padding-left: 4em;
  margin-bottom: 0.5rem;
  min-height: 1.5rem;
}
.website.casestudies-page #msc .quote-block_speechmarks {
  filter: brightness(10);
}
.website.casestudies-page #msc .fishing {
  margin-bottom: 1rem;
  max-width: 387px;
  width: 100%;
}
.website.casestudies-page #msc .service-block {
  color: var(--bs-body-color);
}
.website.casestudies-page #what-we-do-section {
  padding-top: 2rem;
}

/*
		Header
		Origins
		Culture
		Photos
		Quotes
*/
.website.about-page header h1 {
  color: var(--bs-primary);
  font-size: 2.125rem;
  text-align: center;
}
@media (min-width: 768px) {
  .website.about-page header h1 {
    font-size: 4.5rem;
  }
}
.website.about-page header .header-subtext {
  font-size: 1.375rem;
  font-weight: bold;
  margin-inline: auto;
  max-width: 60ch;
}
.website.about-page #origins-section {
  background-color: hsl(217, 50%, 97%);
  padding-bottom: 2rem;
  padding-top: 2rem;
}
.website.about-page #origins-section h2 {
  color: var(--bs-primary);
  font-size: 1.375rem;
  margin-top: 0;
}
@media (min-width: 768px) {
  .website.about-page #origins-section h2 {
    font-size: 2rem;
  }
}
@media (min-width: 576px) {
  .website.about-page #origins-section .letter {
    -moz-column-count: 2;
         column-count: 2;
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }
}
.website.about-page #origins-section .signature-block .signature-block_avatar {
  height: 6rem;
  border-radius: 50%;
}
.website.about-page #origins-section .signature-block .signature-block_signature {
  display: block;
  height: 4rem;
  margin-bottom: 0.5rem;
}
.website.about-page #culture-section {
  background-color: hsl(217, 50%, 97%);
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.website.about-page #culture-section .subtext {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .website.about-page #culture-section .subtext {
    font-size: 1.375rem;
  }
}
.website.about-page #culture-section h2 {
  color: var(--bs-primary);
  font-size: 1.375rem;
  font-weight: 700;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .website.about-page #culture-section h2 {
    font-size: 2rem;
  }
}
.website.about-page #culture-section img {
  margin-bottom: 1rem;
  max-width: 100%;
}
@media (max-width: 767.98px) {
  .website.about-page #culture-section img {
    height: 21rem;
  }
}
.website.about-page #photos-section {
  margin-bottom: 2rem;
  margin-top: 3rem;
}
.website.about-page #photos-section img {
  width: 100%;
}
.website.about-page #about-quotes-section {
  padding-bottom: 3rem;
}
@media (max-width: 767.98px) {
  .website.about-page #about-quotes-section .quotes {
    max-width: 50ch;
    margin-inline: auto;
  }
}
.website.about-page #about-quotes-section .quote-block {
  padding-left: 1rem;
  padding-right: 1rem;
}
.website.about-page #about-quotes-section .quote-block_attribution img {
  height: 4.5rem;
}