*, *:before, *:after { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }
:root {
  --serif: "Newsreader", serif;
  --sans-serif: "Inter", sans-serif;
  --font-color: #000000;
  --background: #F9F9F7;
  --alt-background: #F4F4F2;
  --lt-gray: #C6C6C6;
  --alt-gray: #E2E3E1;
  --secondary: #5E5E5E;
  --dark: #1A1C1B;

  --heading-sz: 9.6rem;
  --alt-title: 7.2rem;
  --heading-ln: 1.2;
  --lead: 3rem;
  --body: 2rem;
}

@media ( max-width: 700px ) {
  :root {
    --heading-sz: 3.6rem;
    --alt-title: 3.2rem;
    --lead: 2.4rem;
  }
}
/* Header, Menu */
#site_nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3rem;
  /* background: white; */
}
#site_nav h1 {
  font-family: var(--sans-serif);
  margin:0;
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--font-color);
  mix-blend-mode: difference;
  text-transform: uppercase;
}
#site_nav a:hover h1 {
  text-decoration: underline;
  text-underline-offset: 3px;
}
:not(.home) #site_nav h1 {
  mix-blend-mode: unset;
}

.gallery-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  aspect-ratio: 16 / 9;
}

@media (max-width: 768px ) {
  .gallery-image {
    aspect-ratio: 4 / 3;
  }
}

/* Filters */
.filter-toggle {
  display: flex;
  padding:0;
  background: transparent;
  text-transform: none;
  font-size: 2.4rem;
}
.filter-toggle:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.filter.active {
  color: red;
}
.filter-content-container {
  display: flex;
  gap: 3rem;
}
.filter-container li,
section.list-layout li {
  list-style: none;
  margin:0;
  padding:0;
}
.filter-container li {
  font-size: 16px;
  margin-bottom: 10px;
  line-height: normal;
}
.filter-container li span.type-term {
  font-family: var(--sans-serif);
  cursor: pointer;
  color: #222222;
}
.filter-container li span.type-term.active {
  color: red;
}
section.list-layout li a:hover p.title,
.filter-container li span.type-term:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
  color: #222222;
}
section.list-layout li {
  border-top: 1px solid #eee;
  padding: 1.8rem 0;
}
section.list-layout li p {
  margin: 0;
}
.filter-container li span.type-term.active:hover {
  color: red;
}
.list {
  display: flex;
  gap: 1.8rem;
}
.list p.title {
  max-width: 55ch;
}
.list time {
  color: #CCCCCC;
}
.list .outlet {
  border-left: 1px solid #eeeeee;
  padding: 0 1.8rem;
  color: #999999;
  /* border-radius: 1.8rem; */
}
@media(min-width: 768px) {
  .filter-container {
    flex:0.5;
  }
  .filter-content-container {
    gap: 10rem;
  }
  section.list-layout {
    flex:2;
  }
  .all-fiters {
    position: sticky;
    top:3.5rem;
  }
  .list {
    align-items: flex-start;
  }
  .list p.title {
    font-size: 2.4rem;
  }
  .list time {
    min-width: 175px;
    font-family: var(--sans-serif);
    color: var(--secondary);
    font-size: 1.2rem;
    letter-spacing: 1px;
    text-transform: uppercase;
  }
  /* Show contributions filters on desktop without toggle */
  .filter.contributions .filter-toggle {
    /* Visually hidden but accessible to screen readers */
    position: absolute;
    clip: rect(1px, 1px, 1px, 1px);
    padding: 0;
    border: 0;
    height: 1px;
    width: 1px;
    overflow: hidden;
  }
  .filter.contributions .category-filters {
    display: block !important;
    opacity: 1 !important;
    pointer-events: all !important;
    /* Remove hidden attribute effect for screen readers */
    visibility: visible !important;
  }
}
@media(max-width: 768px) {
  #site_nav {
    padding: 3rem 0 3rem 2rem;
    width: calc(100% - 65px);
  }
  #site-navigation {
    background-color: var(--background);
    padding-bottom: 3rem;
  }
  .filter-content-container {
    flex-direction: column;
  }
  .list {
    flex-direction: column;
  }
  .list .outlet {
    border:0;
    padding: 0;
  }
  section.list-layout li {
    padding: 3.8rem 0;
  }
  section.list-layout li p.title {
    font-size: 3.2rem;
  }
}
/* Footer */
.inside-footer {
  padding: 3rem;
}
.inside-footer p {
  margin:0;
}

.mllr a {
  font-family: var(--sans-serif);
  font-size: 1.4rem;
  padding-left: 1px;
  font-weight: 600;
  letter-spacing: 0.4px;
}

/* Case Studies */
.single-study section {
  display: flex;
  gap: 2rem;
}

.single-study .study-content p.excerpt {
  font-weight: 600;
  font-style: italic;
  margin-bottom: 4rem;
  line-height: 1.45;
  letter-spacing: 0.2px;
}

.single-study aside h3 {
  font-family: var(--sans-serif);
  font-size: 1.12rem;
  line-height: 1.68rem;
  text-transform: uppercase;
  letter-spacing: 2.2px;
  margin: 0 0 2rem 0;
}

.single-study aside .location h3,
.single-study aside .time h3 {
  margin-bottom: 1rem;
}

.single-study aside li {
  font-family: var(--sans-serif);
  list-style: none;
  font-size: 1.2rem;
  color: var(--secondary);
  border-bottom: 1px solid var(--lt-gray);
  margin-left: 0;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

.single-study aside .clients li {
  margin-bottom: 0;
  padding-bottom: 0.25rem;
}

.single-study aside .location p, .single-study aside .time p {
  color: var(--secondary);
  font-style: italic;
}

.single-study aside li:last-child, .single-study aside .location p, .single-study aside .time p {
  margin-bottom: 0;
}

.single-study section.related-studies {
  flex-direction: column;
}

.related-studies {
  h2 {
    flex: 0 0 100%;
    font-size: 3rem;
    font-style: italic;
    margin-top: 10rem;
  }
}

@media (min-width: 700px) {
  .single-study main#content {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  figure.featured-image {
    margin-bottom: 8rem;
  }
  .single-study section {
    flex-direction: row-reverse;
    justify-content: space-between;
  }
  .study-content {
    max-width: 65%;
    padding-right: 4rem;
  }
  .single-study aside {
    width: 215px;
  }
  .single-study .lead {
    margin-bottom: 4rem;
  }
  .single-study .body {
    column-count: 2;
    column-gap: 4rem;
  }
  aside .categories, aside .location {
    margin-bottom: 3.8rem;
  }
  .single-study aside .clients h3 {
    margin-bottom: 1rem;
  }
  .single-study aside .clients ul {margin-bottom: 0;}
  .single-study aside .clients li {
    font-family: var(--serif);
    border-bottom: 0;
    font-size: 2rem;
    font-style: italic;
  }
  .single-study aside .clients li:last-child {
    padding: 0;
  }
}

@media (max-width: 700px) {
  .single-study section {
    flex-direction: column-reverse;
  }
  .single-study .study-content p.excerpt {
    margin-bottom: 2rem;
  }
  /* .single-study aside > div {
    margin-bottom: 0.5rem;
  } */
  .single-study aside h3,
  .single-study aside .location h3, .single-study aside .time h3 {
    text-transform: none;
    letter-spacing: 1px;
    margin-bottom: 0;
  }
  .single-study aside ul.study-types {
    display: inline-block;
    padding-left: 5px;
    margin-bottom: 0;
  }
  .single-study aside h3 {
    font-size: 1.6rem;
    display: inline-block;
    margin: 0;
  }
  .single-study aside h3:after {
    content: ': ';
  }
  .single-study aside li, .single-study aside p {
    font-size: 1.6rem;
    margin: 0;
    border: 0;
    padding-bottom: 0;
    display: inline-block;
  }
  .single-study aside .categories:has(.clients) ul:not(.study-types) li:not(:last-child):after, .single-study aside .categories:has(.clients) p:not(:last-child):after {
    content: ',';
    padding-right: 3px;
  }
  .single-study aside .location p, .single-study aside .time p {
    font-family: var(--sans-serif);
    padding-left: 5px;
    font-style: normal;
  }
  .single-study aside h3 {
    position: absolute !important;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    width: 1px;
    border: 0;
    overflow: hidden;
  }

  .single-study aside .categories:not(.clients) ul.study-types {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
  }
  .single-study aside .categories:not(.clients) .study-types span {
    font-family: var(--sans-serif);
    font-size: 1.04rem;
    color: var(--font-color);
    letter-spacing: 1.5px;
    display: block;
    padding: 4px 8px;
    background-color: var(--alt-gray);
    text-transform: uppercase;
  }

  .single-study aside a {
    display: block;
    min-height: 25px;
  }
}

/* Default Page */

.page-template-default header {
  display: flex;
  flex-direction: column;
}

.page-template-default header figure {
  width: 200px;
  height: 300px;
  overflow: hidden;
}

.page-template-default header figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-template-default main#content {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  max-width: 768px;
}

.page-template-default section.main {
  display: flex;
  gap: 2rem;
}

.inside-header {
  display: flex;
  flex-direction: column-reverse;
}

p.alt-title {
  font-size: var(--alt-title);
  font-style: italic;
  color: var(--dark);
}

p.eyebrow {
  font-family: var(--sans-serif);
  font-size: 1.2rem;
  text-transform: uppercase;
  color: var(--secondary);
  letter-spacing: 1.4px;
  margin-bottom: 1.6rem;
}

p.aside-heading {
  font-family: var(--sans-serif);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1.12px;
  color: var(--font-color);
  margin-bottom: 3.4rem;
}

.page-template-default section.main .page-content {
  max-width: 63ch;
}

.page-template-default section.main .page-content .lead {
  margin-bottom: 4rem;
}

section.service-experience {
  display: flex;
  justify-content: space-between;
  margin-top: 10rem;
}

.service-experience h2 {
  flex: 0 0 100%;
  margin:0;
  font-style: italic;
}

.column p.column-heading {
  font-family: var(--sans-serif);
  font-size: 1rem;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.column p.column-heading:before {
  content: '';
  display: inline-block;
  width: 4.8rem;
  height: 1px;
  background-color: #C6C6C6;
  margin-right: 1rem;
}

section.service-experience .column {
  flex: 1;
}

.home-studies .study-cats, .home-studies .study-cats li, .home-studies p.time {
  font-family: var(--sans-serif);
  font-size: 1.2rem;
  letter-spacing: 1.24px;
  color: var(--secondary);
  margin: 0;
  list-style: none;
  display: inline-block;
}

.home-studies .first {
  margin-bottom: 1.6rem;
}

.home-studies .study-cats li:not(:last-child):after {
  content: ',';
  margin-right: 5px;
}

.home-studies .first:has(.study-cats):has(.time) .time:before {
  content: '/';
  display: inline-block;
  margin: 0 5px;
}

.home-studies .first-title, .home-studies .subtitle {
  font-size: 4.8rem;
}
.home-studies .first-title {
  margin-bottom: 0;
}
.home-studies .subtitle {
  font-style: italic;
}

.home-studies p.excerpt {
  color: var(--secondary);
}

.home-study:not(:last-child) {
  margin-bottom: 9rem;
}

/* .home-study:first-child:before {
  content: '';
  width: 75%;
  height: 0.09rem;
  background-color: var(--lt-gray);
  display: block;
  margin: 9rem auto 7rem;
} */

.page-template-front-page header:after {
  content: '';
  width: 100%;
  height: 0.09rem;
  background-color: var(--lt-gray);
  display: block;
  margin: 3rem auto 1rem;
}

.home-study:not(:last-child):after {
  content: '';
  width: 50%;
  height: 0.09rem;
  background-color: var(--lt-gray);
  display: block;
  margin: 9rem auto 7rem;
}

.single-study .home-study:not(:last-child):after {
  background-color: transparent;
  margin: 3rem auto 0;
}

.page-template-default main#content {
  margin-left: auto;
  margin-right: auto;
}

@media ( min-width: 700px ) {

  .page-template-front-page header {
    margin-bottom: 9.6rem;
  }

  .page-template-default header figure {
    margin-left: auto;
  }

  .page-template-front-page .inside-header {
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    align-items: self-end;
    margin-top: -5rem;
  }

  .home-studies .first-title, .home-studies .subtitle {
    line-height: 1;
  }

  .home-studies .subtitle {
    color: var(--secondary);
  }

  .home-study:not(:has(figure)) a {
    padding: 4rem;
  }

  .home-study:has(figure) .home-study-content {
    padding: 2rem 4rem;
  }

  .page-template-front-page .inside-header p.alt-title {
    font-size: 9.8rem;
    width: calc(100vw / 12 * 8);
    line-height: 1;
    margin-bottom: 0;
  }

  p.home-byline {
    width: calc(100vw / 12 * 3);
    color: var(--secondary);
  }

  .home-study a {
    display: flex;
    gap: 4.8rem;
    align-items: center;
  }

  .home-study:nth-child(even) a {
    flex-direction: row-reverse;
  }

  .home-study a:hover p.first-title, .home-study a:hover p.subtitle {
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 2px;
  }

  .home-study figure {
    width: calc(100vw / 12 * 4.5);
    margin: 0;
  }
  .home-study figure img {
    width: 100%;
    max-width: 100%;
  }

  .home-study-content {
    width: calc(100vw / 12 * 6);
  }

  .page-template-default aside { padding-top: 5px;}

  .page-template-default section.main,
  section.service-experience {
    gap: 4rem 9.6rem;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .column-content {
    max-width: 63ch;
  }

  .column-content li {
    font-size: 1.8rem;
  }

  .column:nth-child(even) {
    padding: 4.8rem;
    background-color: var(--alt-background);
  }

  .column:nth-child(odd) {
    padding-top: 4.8rem;
  }

  .single-study {
    .home-study {
      border-bottom: 1px solid var(--alt-gray);
    }
  }
}
@media ( min-width: 1200px ) {
  .page-template-default main#content {
    max-width: 75%;
    margin-left: auto;
    margin-right: auto;
  }
  .page-template-front-page header {
      margin-bottom: 10.6rem;
  }
  .home-studies {
    .home-study:nth-child(odd) {
      padding-left: 10rem;
    }
    .home-study:nth-child(even) {
      padding-right: 10rem;
    }
  }
}
@media ( max-width: 700px ) {

  .home-study:not(:last-child) {
    margin-bottom: 6rem;
  }
  .home .home-study:not(:last-child):after {
    width: 100%;
    margin: 4rem 0 0;
  }

  .page-template-front-page header {
    margin-bottom: 4.6rem;
    width: calc(100% - 65px);
  }

  .page-template-front-page .inside-header {
    flex-direction: column;
  }

  .page-template-front-page .inside-header p.alt-title {
    font-size: 3.4rem;
    width: 100%;
    line-height: 1;
    margin-bottom: 0;
  }

  .page-template-default section.main {
    flex-direction: column;
  }
  section.service-experience {
    flex-direction: column;
    gap: 3rem;
  }

  .column:nth-child(even) {
    padding: 2rem;
    background-color: var(--alt-background);
  }

  .home-studies .first-title, .home-studies .subtitle {
    font-size: var(--heading-sz);
    line-height: 1;
  }
  .home-studies .subtitle {
    color: var(--secondary);
    font-style: italic;
  }
}

/* Study landing */
.page-template-study-page .filter-content-container {
  flex-direction: column;
  gap: 0rem;
}

.page-template-study-page .filter-content-container button.filter-toggle {
  font-family: var(--sans-serif);
  color: var(--secondary);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 1.04rem;
}

.page-template-study-page .list-layout li {
  max-width: 100% !important;
  width: 100%;
}
.page-template-study-page .category-filters li a {
  font-family: var(--sans-serif);
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--secondary);
}
.page-template-study-page .category-filters li a.active {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 2px;
  color: var(--font-color);
}

.main-header {
  margin-bottom: 4rem;
    h2, p {
      margin:0;
    }
    p {
      color: var(--secondary);
    }
  }
  p.title {
    display: inline;
    flex-direction: column;
  }
  p.title .second {
    font-style: italic;
    color: var(--secondary);
  }
  p.client-cats span:not(:last-child):after {
    content: ', ';
  }
}
/* .page-template-study-page {
  header {
    margin-bottom: 4rem;
    h2, p {
      margin:0;
    }
    p {
      color: var(--secondary);
    }
  }
  p.title {
    display: inline;
    flex-direction: column;
  }
  p.title .second {
    font-style: italic;
    color: var(--secondary);
  }
  p.client-cats span:not(:last-child):after {
    content: ', ';
  }
} */

/* @media ( min-width: 768px ) {
  .page-template-study-page {
    p.client-cats span { display: block; }
  }
} */

.list-layout li p.time {
  font-family: var(--sans-serif);
  font-size: 1.28rem;
  color: var(--font-color);
}
.list-layout li p.client-cats {
  font-size: 2rem;
  font-style: italic;
  color: var(--font-color);
}
.list-layout li p.study-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  span {
    font-family: var(--sans-serif);
    font-size: 1.04rem;
    color: var(--font-color);
    letter-spacing: 1.5px;
    display: block;
    padding: 4px 8px;
    background-color: var(--alt-gray);
    text-transform: uppercase;
  }
}
.list-layout li p.title { grid-area: title;}
.list-layout li p.time { grid-area: time;}

@media ( min-width: 768px ) {
  .main-header {
    margin-bottom: 8rem;
    display: flex;
    align-items: end;
    h2{
      width: calc(100vw / 12 * 8);
    }
    p {
      width: calc(100vw / 12 * 4);
      border-left: 1px solid var(--lt-gray);
      padding-left: 2rem;
    }
  }
  .page-template-study-page {

    ul.category-filters {
      display: flex;
      flex-wrap: wrap;
      gap: 1.6rem;
    }
    .list-layout li .list,
    .section-labels {
      display: grid;
      grid-template-columns: 85px 165px 280px auto;
      grid-template-areas: "time client category title";
    }
    .list-layout li p.time, .section-labels p:nth-child(1) { grid-area: time;}
    .list-layout li p.client-cats, .section-labels p:nth-child(2) { grid-area: client;}
    .list-layout li p.study-cats, .section-labels p:nth-child(3) { grid-area: category;}
    .list-layout li p.title, .section-labels p:nth-child(4) { grid-area: title;}

    .section-labels {
      gap: 1.8rem;
      padding-top: 4.8rem;
      border-top: 1px solid var(--alt-gray);
      margin-top: 1rem;
    }
    .section-labels p {
      font-family: var(--sans-serif);
      font-size: 1.12rem;
      letter-spacing: 2.24px;
      color: var(--secondary);
      text-transform: uppercase;
    }
    .filter-toggle:hover {
      text-decoration: none !important;
      cursor: auto !important;
    }
  }

  .page-template-study-page.no-client-column {
    .list-layout li .list,
    .section-labels {
      grid-template-columns: 85px 280px auto;
      grid-template-areas: "time category title";
    }

    .list-layout li p.study-cats,
    .section-labels p:nth-child(2) {
      grid-area: category;
    }

    .list-layout li p.title,
    .section-labels p:nth-child(3) {
      grid-area: title;
    }

    .list-layout li p.client-cats {
      display: none;
    }
  }
}
@media (max-width: 768px) {
  .page-template-study-page {
    .section-labels {display: none;}
  }
}

/* ***** STRUCTURE ***** */
/* Grid */
.container {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 0 3rem;
    box-sizing: border-box;
}
#content {
  padding: 3rem;
}

/* For devices larger than 400px */
@media (max-width: 768px) {
    .container {
      margin: 50px auto;
    }
    #content {padding: 2rem;}
}

/* Blocks */

.mllr-accordion__panel[aria-hidden=true] {
  display: none;
}

.mllr-accordion__header {
  display: block;
}

/* title opened */
.mllr-accordion__header[aria-expanded="true"]:after {
  content: " - ";
}
/* title closed */
.mllr-accordion__header[aria-expanded="false"]:after {
  content: " + ";
}

.js-accordion h2, button.mllr-accordion__header {
  margin:0;
}

button.mllr-accordion__header {
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
}

button.mllr-accordion__header span {
  pointer-events: none;
}

.js-accordion__panel {
  padding: 10px 20px;
}

.js-accordion h2.mllr-accordion__title {
  border-bottom: 1px solid var(--background);
}

footer span.mllr, footer a, footer p {
  /* font-family: var(--sans-serif); */
  /* letter-spacing: 1px; */
  /* color: var(--secondary); */
  font-size: 1.6rem;
}

/* Base Styles */
/* NOTE ... html is set to 62.5% so that all the REM measurements throughout Skeleton
are based on 10px sizing. So basically 1.5rem = 15px :) */
/* html, body {
  height:100%;
} */
html {
    font-size: 62.5%;
}

body {
    font-family: var(--serif);
    font-optical-sizing: auto;
    font-size: 1.5em;
    line-height: 1.6;
    font-weight: 400;
    color: #000000;
    /* max-width: 1580px; */
    margin: auto;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    background-color: var(--background);
}

/* Home page specific body styles */
body.home {
    position: relative;
    isolation: auto;
    background: transparent;
}

/* Typography */
h1,h2,h3,h4,h5,h6 {
  line-height: 1;
  font-weight: normal;
}

p, li {line-height: 1.35;}

h1, h2, p.heading, p.about-location {
    font-size: var(--heading-sz);
}

h3 {
    font-size: 4.6rem;
}

h4 {
    font-size: 3.8rem;
}

p, li {
    font-size: 2rem;
    margin-top: 0;
    max-width: 65ch;
}

p.lead {
  font-size: var(--lead);
}

header:has(h1):has(h2) h1 {
  margin-bottom: 0;
}

/* header:has(h1):has(h2) h1:after {
  content: ':';
} */

header:has(h1):has(h2) h2 {
  margin-top: 0;
  color: var(--secondary);
  font-style: italic;
}

.body * {
  color: var(--secondary);
}

/* Links */
a {
    color: #000000;
}

a:hover,
.home #site_nav a:hover,
.home #site_nav a:hover h1,
.filter-container li:hover span.type-term,
section.list-layout li:has(a):hover p.title {
    color: #000000;
    background-color: yellow;
    mix-blend-mode: unset !important;
}

.post-content a {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1.5px;
}

/* Buttons */
.button,
button,
input[type="submit"],
input[type="reset"],
input[type="button"],
.woocommerce #respond input#submit.alt, .woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt {
    display: inline-block;
    height: auto;
    padding: 10px 20px;
    text-align: center;
    font-size: 1.8rem;
    line-height: 1.4;
    /* letter-spacing: .1rem; */
    text-transform: uppercase;
    text-decoration: none;
    white-space: pre-wrap;
    border-radius: 2px;
    border: none;
    cursor: pointer;
    box-sizing: border-box;
}

.button:hover,
button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
.woocommerce #respond input#submit.alt:hover, .woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover, .woocommerce input.button.alt:hover,
.button:focus,
button:focus,
input[type="submit"]:focus,
input[type="reset"]:focus,
input[type="button"]:focus,
.woocommerce #respond input#submit.alt:focus, .woocommerce a.button.alt:focus, .woocommerce button.button.alt:focus, .woocommerce input.button.alt:focus {
    outline: 0;
}

.woocommerce #respond input#submit.alt:hover, .woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover, .woocommerce input.button.alt:hover {
    background-color: #c1272d !important;
}

.search-no-results form {
  display: flex;
  gap: 1rem;
}

.search-no-results form input[type="submit"] {
  margin-bottom: 0;
  height: 40px;
}

.swiper-button-next:after, .swiper-button-prev:after {
  color: var(--font-color);
}

/* Forms */
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea,
select {
  height: 38px;
  padding: 6px 10px;
  /* The 6px vertically centers text on FF, ignored by Webkit */
  background-color: #fff;
  border: 1px solid #283179;
  border-radius: 5px;
  box-shadow: none;
  box-sizing: border-box;
}

/* Removes awkward default styles on some inputs for iOS */
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

textarea {
  min-height: 65px;
  padding-top: 6px;
  padding-bottom: 6px;
}

input[type="email"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
  border: 1px solid #283179;
  outline: 0;
}

label,
legend {
  display: block;
  margin-bottom: .5rem;
}

fieldset {
  padding: 0;
  border-width: 0;
}

input[type="checkbox"],
input[type="radio"] {
  display: inline;
}

label>.label-body {
  display: inline-block;
  margin-left: .5rem;
  font-weight: normal;
}

/* Lists */
ul {
  list-style: disc inside;
}

ol {
  list-style: decimal inside;
}

ol,
ul {
  padding-left: 0;
  margin-top: 0;
}

ul ul,
ul ol,
ol ol,
ol ul {
  margin: 1.5rem 0 1.5rem 3rem;
  font-size: 90%;
}

li {
  margin-bottom: 1.8rem;
  margin-left: 20px;
  list-style-position: outside;
}

/* Code */
code {
  padding: .2rem .5rem;
  margin: 0 .2rem;
  font-size: 90%;
  white-space: nowrap;
  background: #F1F1F1;
  border: 1px solid #E1E1E1;
  border-radius: 4px;
}

pre>code {
  display: block;
  padding: 1rem 1.5rem;
  white-space: pre;
}

/* Tables */
th,
td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #E1E1E1;
}

th:first-child,
td:first-child {
  padding-left: 0;
}

th:last-child,
td:last-child {
  padding-right: 0;
}

/* Spacing */
button,
.button { margin-bottom: 1rem; }

input,textarea,select,fieldset { margin-bottom: 1.5rem; }

pre,blockquote,dl,figure,table,p,ul,ol,li,form { margin-bottom: 1.8rem; }

/* Utilities */
.u-full-width {
  width: 100%;
  box-sizing: border-box;
}

.u-max-full-width {
  max-width: 100%;
  box-sizing: border-box;
}

.u-pull-right {
  float: right;
}

.u-pull-left {
  float: left;
}

.wp-block-button__link {border-radius: 2px;}
.additional-content a {text-decoration:underline;}

.sans-serif { font-family: var(--sans-serif) !important; }
.ten { font-size: 1rem !important; }
.sixteen { font-size: 1.6rem !important; }
.twenty-four { font-size: 2.4rem !important; }
.thirty { font-size: 3rem !important; }

/* Accessibility */

.screen-reader-label, .screen-reader-text, .screen-reader-text span, .screen-reader-shortcut {
  position: absolute !important;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  width: 1px;
  border: 0;
  overflow: hidden;
}

.off_screen {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  padding: .5em;
  margin: .5em;
}

/* Misc
–––––––––––––––––––––––––––––––––––––––––––––––––– */
hr { background-color: #333133; }

iframe, img, .wp-caption.aligncenter { max-width: 100%; }

.fa-phone {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

/* Self Clearing */
.container:after,
.row:after,
.u-cf {
  content: "";
  display: table;
  clear: both;
}

.clearfix:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}

* html .clearfix {
  zoom: 1;
}

/* IE6 */
*:first-child+html .clearfix {
  zoom: 1;
}

.row.site-nav, #content, .inside-footer, main.content {
  max-width: 1600px !important;
  margin: auto;
}

@media (min-width: 768px) and ( max-width: 1600px ) {
  .page-template-default main#content {
     header, section.main {
      max-width: 75%;
      margin-left: auto;
      margin-right: auto;
    }
  }
  .single-study main#content {
      max-width: 90% !important;
      margin-left: auto;
      margin-right: auto;
  }
}