:root {
  --ink: #1b1b1a;
  --cotton: #ede7da;
  --paper: #fff;
  --evergreen: #0b3a2a;
  --soft-blue: #d8efef;
  --ochre: #f4a931;
  --tangerine: #ff5d31;
}

.text-tangerine {
  color: var(--tangerine);
}

.nav-bar,
.nav-bar > ul:after {
  background: #d8efef;
}

h1 em,
h2 em,
h3 em,
h4 em,
h5 em,
h1 i,
h2 i,
h3 i,
h4 i,
h5 i {
  color: var(--tangerine);
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a {
  color: var(--tangerine);
  border-bottom: 1px solid var(--tangerine);
}

.centered-block h3 a span {
  color: #000;
}
.centered-block__item h3 a {
  border-bottom: 1px solid #ccc;
}


h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover {
  color: var(--tangerine);
  border-bottom: 1px solid transparent;
}

.beige-section .list-articles-card h1,
.beige-section .list-articles-card h2,
.beige-section .list-articles-card h3,
.beige-section .list-articles-card h4,
.beige-section .list-articles-card h5,
.beige-section .list-articles-card h6 {
  margin-top: 3rem;
  margin-bottom: 1rem;
  border-top: 1px solid #a96;
  padding-top: 1rem;
}

.beige-section .list-articles-card li:first-of-type h1,
.beige-section .list-articles-card li:first-of-type h2,
.beige-section .list-articles-card li:first-of-type h3,
.beige-section .list-articles-card li:first-of-type h4,
.beige-section .list-articles-card li:first-of-type h5,
.beige-section .list-articles-card li:first-of-type h6 {
  margin-top: 0;
  border-top: 0px;
  padding-top: 0;
}

body {
  cursor: default;
}
a:hover {
  cursor: pointer;
}

#brand {
  font-size: 18px;
  font-family: "Ivar", serif;
  font-weight: 600;
  text-align: center;
  padding: 10px;
  width: 100%;
  transition: 0.3s color, 0.3s background;
  color: var(--ink);
  text-decoration: none;
}

@media (min-width: 768px) {
  #brand {
    font-size: 24px;
  }
}

/* hero */

#tagline {
  padding-top: 5vh;
  text-align: center;
  margin-left: 0;
  margin-right: 0;
}

#tagline i,
#tagline em {
  color: var(--tangerine);
}
@media (min-width: 768px) {
  #tagline {
    padding-top: 15vh;
  }
}

#tagline .container {
  position: relative;
  padding: 0;
}
@keyframes rise {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes fall {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}

#tagline .container:after {
  content: "";
  left: 0;
  top: calc(45px * -0.16);
  width: 100%;
  height: 110%;
  position: absolute;
  background: repeating-linear-gradient(
    180deg,
    transparent 0px,
    transparent calc(45px * 1.04),
    #000 calc(45px * 1.064)
  );
}

#tagline-container,
#shadow-container {
  padding: 0 1rem;
  margin: 0;
  width: 100%;
}
#tagline-container div,
#shadow-container div {
  font-family: "Ivar", serif;
  font-size: 45px;
  line-height: 48px;
  text-align: center;
  font-weight: 400;
  width: 100%;
}

#shadow-container {
  position: absolute;
  top: 0px;
  left: 0px;
}

.char_container {
  position: relative;
  display: inline-block;
  overflow: hidden;
  height: calc(45px / 1.14);
  white-space: nowrap;
}
#shadow-container .char_container {
  top: calc(45px / 1.14);
}

#tagline-container .char {
  position: relative;
  display: inline-block;
  animation: rise 1s;
  animation-iteration-count: 1;
}
#shadow-container .char {
  top: calc(45px / -1.14);
  position: relative;
  display: inline-block;
  animation: fall 1s;
  animation-iteration-count: 1;
}

.char_container,
.char {
  padding-right: 8px;
  padding-left: 8px;
  margin-left: -8px;
  margin-right: -8px;
}

@media (min-width: 576px) {
  #tagline .container:after {
    top: calc(60px * -0.2);
    background: repeating-linear-gradient(
      180deg,
      transparent 0px,
      transparent calc(60px * 1.053),
      #000 calc(60px * 1.067)
    );
  }
  #tagline-container div,
  #shadow-container div {
    font-size: 60px;
    line-height: 63px;
  }
  .char_container {
    height: calc(60px / 1.14);
  }
  #shadow-container .char {
    top: calc(60px / -1.14);
  }
  #shadow-container .char_container {
    top: calc(60px / 1.14);
  }
  .char_container,
  .char {
    padding-right: 10px;
    padding-left: 10px;
    margin-left: -9px;
    margin-right: -9px;
  }
}

@media (min-width: 768px) {
  #tagline .container:after {
    top: calc(75px * -0.2);
    background: repeating-linear-gradient(
      180deg,
      transparent 0px,
      transparent calc(75px * 1.053),
      #000 calc(75px * 1.067)
    );
  }
  #tagline-container div,
  #shadow-container div {
    font-size: 75px;
    line-height: 79px;
  }
  .char_container {
    height: calc(75px / 1.14);
  }
  #shadow-container .char {
    top: calc(75px / -1.14);
  }
  #shadow-container .char_container {
    top: calc(75px / 1.14);
  }
}

@media (min-width: 1200px) {
  #tagline .container:after {
    top: calc(110px * -0.2);
    background: repeating-linear-gradient(
      180deg,
      transparent 0px,
      transparent calc(110px * 1.053),
      #000 calc(110px * 1.063)
    );
  }
  #tagline-container div,
  #shadow-container div {
    font-size: 110px;
    line-height: 115px;
  }
  .char_container {
    height: calc(110px / 1.14);
  }
  #shadow-container .char {
    top: calc(110px / -1.14);
  }
  #shadow-container .char_container {
    top: calc(110px / 1.14);
  }

  .char_container,
  .char {
    padding-right: 12px;
    padding-left: 12px;
    margin-left: -10px;
    margin-right: -10px;
  }
}

/* end hero */

/* carousel */
:root {
  --slide-width: 125px;
  --slide-height: 75px;
}
.slide {
  font-size: 1.2rem;
}
.slide p {
  margin: 0;
}

@media (min-width: 786px) {
  :root {
    --slide-width: 200px;
  }
  .slide {
    font-size: 1.35rem;
  }
}
@media (min-width: 992px) {
  :root {
    --slide-width: 250px;
  }
  .slide {
    font-size: 1.5rem;
  }
}


.supporters {
    justify-content: space-around 
}
.supporter {
    max-width: 220px;
    margin: 2rem 50px;
    font-size: 1.3rem;
    font-weight: bold;
    display: flex;
    align-items: center;
}
.supporter img {
   max-height: 80px;   
}



.slider-container {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-bottom: 120px;
}

@-webkit-keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(var(--slide-width) * var(--no-of-slides) * -1));
  }
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(var(--slide-width) * var(--no-of-slides) * -1));
  }
}
.slider {
  height: 100px;
  margin: auto;
  overflow: hidden;
  position: relative;
}
.slider .slide-track {
  -webkit-animation: scroll 40s linear infinite;
  animation: scroll 40s linear infinite;
  display: flex;
  width: calc(var(--slide-width) * var(--no-of-slides) * 2);
}

.slider .slide {
  height: 100px;
  width: var(--slide-width);
  font-weight: bold;
  line-height: 1.2;
  padding: 0 10px;
  display: flex;
  align-items: center;
  text-align: center;
}

@media (min-width: 786px) {
  .slider .slide {
    padding: 0 50px;
  }
}

.slider .slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-width: 100%;
  max-height: 100%;
  mix-blend-mode: multiply;
}

.two-columns__remark-box {
  background: #ffa991b2;
}
.two-columns__remark-box.two-columns__remark-box--top {
  top: 0px;
}

.row.two-columns__wrapper ul li {
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .two-columns__wrapper {
    display: flex;
    flex-wrap: wrap-reverse;
  }
  .two-columns__wrapper .two-columns__remark-box {
    margin-top: 1rem;
  }
}

.centered-block__item a {
  transition: color 0.3s linear, border 0.3s linear;
  color: var(--tangerine);
  border-bottom: 1px solid;
}

.experts-section.experts-section--no-pd {
  padding: 0px;
  margin-bottom: -1px;
  margin-top: 0px;
}

.section-hed {
  margin-top: 120px;
}

/** table **/

.centered-block__item table {
  background-color: #f9f9f9;
  border-color: #999;
  width: 100%;
  margin-bottom: 0.5rem;
}
.centered-block__item table a {
  color: #000;
}
.centered-block__item table tr {
  border-bottom: 0.5px solid #999;
}

.centered-block__item table {
  font-size: 0.9375rem;
  line-height: 160%;
}
.centered-block__item table td {
  font-weight: 400;
  padding: 16px;
  color: #555;
  max-width: 0px;
}

.centered-block__item table tr:first-of-type td {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.7rem;
  line-height: 160%;
  color: #888;
  padding: 16px 16px 19px 16px;
  max-width: 0px;
  width: 25%;
}
.centered-block__item table thead tr th:first-of-type {
  padding-left: 19px;
}

.blue-video {
  background: #B6D4DA;
  position: relative;
}

.orange-video,
.orange-image {
  background: var(--tangerine);
  position: relative;
}
.blue-video img,
.orange-image img {
  mix-blend-mode: screen;
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.blue-video,
.orange-video {
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
}

.blue-video .support-media,
.orange-video .support-media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: screen;
}

.advisers {
  padding: 3rem 0 0;
}
.advisers h2 {
  margin-bottom: 3rem;
}
.team .img {
  background: none;
}

.border-top {
  border-top: 1px solid #000 !important;
}
.border-bottom {
  border-bottom: 1px solid #000 !important;
}

.advisers--accordion .accordion-item .accordion-button .img {
  width: 75px;
}

@media (min-width: 992px) {
  .advisers--accordion .accordion-item .accordion-body {
    max-width: 825px;
    padding: 1rem 1rem 1rem 135px;
  }
}

.footer-nav {
  margin-bottom: 0px;
}
@media (min-width: 768px) {
  .footer-nav {
    margin-bottom: 48px;
  }
}

.copied {
  transform: scaleY(1);
  transform-origin: top;
  transition: transform 0.26s ease;
  font-size: 1rem;
}
.v-0 {
  transform: scaleY(0);
}

.bg-ink {
  background-color: var(--ink);
}
.bg-cotton {
  background-color: var(--cotton);
}
.bg-paper {
  background-color: var(--paper);
}
.bg-evergreen {
  background-color: var(--evergreen);
}
.bg-soft-blue {
  background-color: var(--soft-blue);
}
.bg-ochre {
  background-color: var(--ochre);
}
.bg-tangerine {
  background-color: var(--tangerine);
}

.bg-evergreen h1:after {
  display: none;
}

.accordion-introduction .accordion-button {
  font-size: 1.25rem;
  line-height: 1.4;
  background-color: #0b3a2a;
  color: #fff;
  padding: 1rem 3rem 0.9375rem 1rem;
}
.accordion-introduction .accordion-button:after {
  width: 12px;
  height: 12px;
  transform: translateY(-50%);
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%) rotate(-45deg);
  background-image: none;
  border: solid #fff;
  border-width: 0 0 2px 2px;
  opacity: 0.8;
  margin-top: -2px;
}
.accordion-introduction .accordion-button[aria-expanded="true"]:after {
  transform: translateY(-45%) rotate(135deg);
}
.accordion-introduction .accordion-item {
  margin: 0 0 0.5rem;
  background-color: #0b3a2a;
  color: #fff;
}
.accordion-introduction .accordion-body {
  padding-top: 0.625rem;
}

.accordion-item .list-quotes__block:last-child blockquote,
.accordion-item .list-quotes__block:last-child p:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .accordion-introduction .accordion-button {
    font-size: 1.375rem;
  }
}
@media (min-width: 992px) {
  .accordion-introduction .accordion-item {
    margin-bottom: 1rem;
  }
}
@media (min-width: 1140px) {
  .accordion-introduction .accordion-button {
    font-size: 1.5rem;
  }
}
@media (min-width: 1400px) {
  .accordion-introduction .accordion-button {
    padding-bottom: 1rem;
  }
  .accordion-introduction .accordion-button:after {
    right: 26px;
  }
  .accordion-introduction .accordion-body,
  .accordion-introduction .accordion-button {
    padding-left: 24px;
  }
  .accordion-introduction .accordion-body {
    padding-right: 24px;
  }
}

a.accordion-button:hover {
  border-bottom: none;
}

.card.text-bg-deep-orange {
  background-color: #d65c3b;
  color: #fff;
}
.card hr {
  border-top-color: #999;
  opacity: 1;
}
.card.card-practices hr {
  border-top-color: #fff;
}
.card .card-header {
  position: relative;
}
.card .card-header hr {
  margin-top: 0.5rem;
  margin-bottom: -0.5rem;
}
.card .card-header {
  padding-top: 1rem;
  padding-bottom: 0.8125rem;
}
.card-practices .card-header > * {
  color: inherit;
}
.card-story a {
  color: var(--tangerine);
}
.card-story a:hover {
  color: var(--tangerine);
  opacity: 1;
}
.card-story a:hover,
.card-story p a {
  text-decoration: none;
}
.card-story .experts-section__wrapper {
  margin-bottom: 0.75rem;
  margin-left: 2px;
}
.card-story .experts-section__images {
  margin-right: 10px;
  margin-bottom: 0;
  display: block !important;
}
.card-story .experts-section__img {
  width: 35px;
  height: 35px;
  margin-left: 0;
  margin-right: 0;
}
.card-story .experts-section__img:before {
  top: -3px;
  left: -3px;
}
.card-story .experts-section__text {
  color: #1b1b1a;
  margin-bottom: 0;
}
.card-story .centered-block__list li {
  margin-bottom: 0;
}
.card-title p:last-of-type {
  margin-bottom: 0;
}

.card-story ol ul {
  list-style-type: none;
}
.row.two-columns__wrapper .card-story ol ul li {
  margin-bottom: 0;
}

@media (min-width: 992px) {
  .card.card-practices .card-body {
    padding-top: 0.75rem;
  }
}
@media (min-width: 1140px) {
  .card-body,
  .card-footer,
  .card-header {
    padding-left: 20px;
    padding-right: 20px;
  }
  .card-story .card-body,
  .card-story .card-footer,
  .card-story .card-header {
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (min-width: 1400px) {
  .card .card-header hr {
    margin-top: 0.75rem;
    margin-bottom: -0.75rem;
  }
  .card .card-header {
    padding-top: 1.5rem;
    padding-bottom: 0.8125rem;
  }
  .card .card-body {
    padding-top: 1.25rem;
    padding-bottom: 1.125rem;
  }
  .card-body,
  .card-footer,
  .card-header {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (max-width: 991px) {
  .card-practices .card-body {
    padding-top: 0.1875rem;
    padding-bottom: 0.875rem;
  }
}

.swiper-articles {
  overflow: hidden;
  margin: 0 -1.25rem;
  padding: 1.25rem;
}
.swiper-articles .swiper-slide {
  height: auto;
}
.swiper-articles .swiper-slide hr {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}
.swiper-articles .article-slide {
  padding: 0.5rem;
}
.swiper-articles .card {
  height: 100%;
}
.swiper-nav-container .swiper-pagination {
  position: relative;
  bottom: 0;
  font-size: 0.875rem;
  font-weight: 500;
  color: #464644;
}
.swiper-nav-container .swiper-button-next,
.swiper-nav-container .swiper-button-prev {
  width: 20px;
  height: 20px;
  font-weight: 700;
  color: #464644;
  margin-top: 0;
  transform: translateY(-50%);
}
.swiper-nav-container .swiper-button-next:focus,
.swiper-nav-container .swiper-button-next:hover,
.swiper-nav-container .swiper-button-prev:focus,
.swiper-nav-container .swiper-button-prev:hover {
  color: var(--tangerine);
}
.swiper-nav-container .swiper-button-next:focus:after,
.swiper-nav-container .swiper-button-next:hover:after,
.swiper-nav-container .swiper-button-prev:focus:after,
.swiper-nav-container .swiper-button-prev:hover:after {
  border-color: var(--tangerine);
}
.swiper-nav-container .swiper-button-next:after,
.swiper-nav-container .swiper-button-prev:after {
  width: 10px;
  height: 10px;
  content: "";
  border: solid #464644;
  font-size: 0.875rem;
}
.swiper-nav-container .swiper-button-prev:after {
  border-width: 0 0 3px 3px;
  transform: rotate(45deg);
}
.swiper-nav-container .swiper-button-next:after {
  border-width: 0 3px 3px 0;
  transform: rotate(-45deg);
}
.swiper-nav-holder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 1.5625rem 2.75rem;
}
.swiper-articles .swiper-nav-holder {
  margin-bottom: -1.5625rem;
}
.article-slide .article-subtitle {
  font-size: 0.875rem;
  color: #464644;
}
.article-slide .h3,
.article-slide .h4,
.article-slide h3,
.article-slide h4 {
  margin-bottom: -3px;
}

@media (min-width: 768px) {
  .swiper-articles .article-slide {
    padding: 0.25rem 0;
  }
  .article-slide .article-subtitle {
    font-size: 1rem;
    font-weight: 500;
  }
}
@media (min-width: 993px) {
  .swiper-nav-container .swiper-pagination {
    font-size: 1rem;
  }
}

@media (min-width: 992px) {
  .team .row {
    margin-bottom: 7rem;
  }
}

/* beige section */

.heading-arrow-bottom {
  position: relative;
  padding: 0 0 6.375rem;
}
.heading-arrow-bottom .two-columns__heading {
  margin-bottom: 0;
}
.heading-arrow-bottom .heading-arrow-left {
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translate(30%, -46%);
}
.heading-arrow-bottom .heading-arrow-left.centered-block__arrow-left {
  display: block;
}

@media (max-width: 575px) {
  .card-story .experts-section__wrapper {
    display: flex;
    align-items: center;
  }
}
@media (min-width: 768px) {
  .heading-arrow-bottom .heading-arrow-left {
    left: 5vw;
    transform: translate(100%, -46%);
  }

  .card-story .experts-section__images {
    margin-right: 16px;
  }
  .card-story .experts-section__img {
    width: 48px;
    height: 48px;
  }
}
@media (min-width: 1400px) {
  .heading-arrow-bottom {
    padding-bottom: 2.6875rem;
  }
  .heading-arrow-bottom .heading-arrow-left {
    left: 9.5vw;
    transform: translate(100%, 59%);
  }
  .list-articles-card > li {
    padding-top: 2rem;
  }
  .list-articles > li {
    padding: 1.5rem 0.5rem 1.5rem 1rem;
  }
  .list-articles .h4,
  .list-articles h4 {
    font-size: 1.5rem;
  }

  .card-body,
  .card-footer,
  .card-header {
    padding-left: 20px;
    padding-right: 20px;
  }
  .card-story .card-body,
  .card-story .card-footer,
  .card-story .card-header {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* pretty list */

.list-articles ul {
  list-style: none;
  padding-left: 0;
}
.list-articles li {
  padding: 1rem 0.5rem;
  border-top: 1px solid #bbb;
}
.list-articles li:first-child {
  border-top: none;
  padding-top: 1rem;
}
.list-articles li {
  font-family: ivar display, serif;
  font-size: 1.2rem;
}
.list-articles .subtitle {
  font-size: 1.1rem;
}
.list-articles a {
  margin: 0.25rem 0 0.25rem;
  display: block;
  font-family: sans-serif;
  font-size: 1.05rem;
  border: none;
  text-decoration: underline;
}
@media (min-width: 992px) {
  .list-articles li {
    padding: 1.25rem 0.5rem 1.25rem 0.75rem;
  }
}
@media (min-width: 1400px) {
  .list-articles li {
    font-size: 1.5rem;
    padding: 1.5rem 0.5rem 1.5rem 1rem;
  }
}

/* slidey pane */

.modal-backdrop {
  background-color: rgba(0, 0, 0, 0.15);
}
.modal--rightside.modal .modal-dialog {
  transform: translate(50%);
}
.modal--rightside.modal.show .modal-dialog {
  transform: none;
}
.modal--rightside .h3,
.modal--rightside h3 {
  font-size: 1.875rem;
  margin-bottom: 1rem;
}
.modal--rightside .modal-content,
.modal--rightside .modal-dialog {
  min-height: 100vh;
}
.modal--rightside .modal-dialog {
  margin: 0 0 0 auto;
  box-shadow: -4px 4px 17px rgba(0, 0, 0, 0.15);
}
.modal--rightside .modal-content {
  height: 100%;
}
.modal--rightside .modal-lg {
  max-width: 703px;
}
.modal--rightside .modal-header {
  position: relative;
  padding-right: 3rem;
  min-height: 3.25rem;
}
.modal--rightside .modal-header .btn-close {
  position: absolute;
  top: 12px;
  right: 12px;
  opacity: 1;
  background-size: 14px 14px;
  margin: 0;
}
.modal--rightside .modal-header .btn-close:focus,
.modal--rightside .modal-header .btn-close:hover {
  opacity: 0.75;
}
.modal--rightside .source-info {
  font-size: 1.0625rem;
  line-height: 1.4444444444;
}
.modal--rightside .modal-subtitle {
  margin-bottom: 1.25rem;
}
.modal-content .heading-block {
  border-bottom-color: #464644 !important;
}
.heading-block p .source-info {
  margin: 0 0 -0.125rem;
}
.shadow {
  box-shadow: 2px 2px 16px rgba(0, 0, 0, 0.15) !important;
}

@media (min-width: 576px) {
  .modal--rightside .h3,
  .modal--rightside h3 {
    font-size: 2.25rem;
  }
}
@media (min-width: 768px) {
  .modal--rightside .h3,
  .modal--rightside h3 {
    font-size: 2.625rem;
  }
}
@media (min-width: 992px) {
  .modal--rightside .h3,
  .modal--rightside h3 {
    font-size: 3rem;
  }
  .modal--rightside .modal-body {
    padding: 0.75rem 2.5rem 2rem;
  }
}

@media (min-width: 1400px) {
  .modal--rightside .modal-header {
    padding-top: 1.25rem;
  }
  .modal--rightside .modal-header .btn-close {
    top: 20px;
    right: 20px;
  }
  .modal--rightside .modal-body {
    padding: 0.75rem 3.125rem 2.5rem;
  }
  .modal--rightside .source-info {
    font-size: 1.125rem;
  }
}

@media (min-width: 1500px) {
  .modal--rightside .modal-body {
    padding: 1rem 4.875rem 3rem;
  }
  .modal--rightside .heading-block {
    margin-bottom: 2rem !important;
  }
}

/* curricula */

.curricula #cursor.link:not(.switch) .cursor-frame {
  width: 1rem;
  height: 1rem;
}

#tags ul {
  list-style: none;
  padding-left: 0;
}
.resource-card {
  background: #fff;
  border: 1px solid #464644;
  height: 100%;
  transition: 0.3s border;
}

.fifth {
  cursor: pointer;
}
@media (min-width: 1200px) {
  .fifth {
    width: 20%;
    padding-right: 2px;
  }
}
.fifth .resource-card-label {
  padding: 3px 18px;
  font-size: 0.75rem;
}
.fifth .resource-card:hover {
  border-color: var(--tangerine);
}
.fifth .resource-card-title {
  font-size: 1rem;
}

.resource-card a {
  color: var(--ink);
  border: none;
}

.resource-card-title {
  padding: 15px 15px 0px 15px;
  font-size: 1.25rem;
  line-height: 1.3;
}
.resource-card-title .bookmark-icon {
  width: 45px;
  text-align: left;
  padding-left: 15px;
}
.resource-card-title .bookmark-icon:hover path {
  fill: var(--tangerine);
}

.saved path {
  fill: var(--ink);
}
.resource-card-label {
  display: inline-block;
  text-transform: uppercase;
  color: var(--ink);
  font-size: 0.8rem;
  letter-spacing: 1px;
}
.resource-card-label {
  padding: 6px 28px;
}

.resource-card-meta {
  padding: 15px 15px 0px 60px;
  font-size: 0.9rem;
  color: #464644;
  line-height: 1.3;
  display: inline-block;
}
.resource-card-meta span {
  padding-right: 0.75rem;
  border-right: 1px solid #464644;
}
.resource-card-meta span + span {
  padding-left: 0.75rem;
}
.resource-card-meta span:last-of-type {
  padding-right: 0;
  border-right: none;
}

.topic-grouper {
  color: #464644;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.1px;
}

#tags a {
  color: var(--ink);
}
#tags a:hover {
  color: var(--tangerine);
}

.tag-list ul li {
  break-inside: avoid-column;
  display: inline-block;
  width: 100%;
}

@media (min-width: 576px) {
  .tag-list {
    column-count: 2;
    column-gap: 20px;
  }
}
@media (min-width: 992px) {
  .tag-list {
    column-count: 3;
    column-gap: 20px;
  }
}
@media (min-width: 1500px) {
  .tag-list {
    column-count: 4;
    column-gap: 20px;
  }
}

.modal-tag-list ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1rem;
}
.modal-tag-list ul li {
  break-inside: avoid-column;
  display: inline-block;
  width: 100%;
}

@media (min-width: 992px) {
  .modal-tag-list {
    column-count: 2;
    column-gap: 20px;
  }
}
@media (min-width: 1500px) {
  .modal-tag-list {
    column-count: 3;
    column-gap: 20px;
  }
}

h3.underlined {
  position: relative;
  margin-bottom: 2rem;
  margin-top: 4rem;
}
h3.underlined:after {
  transform: translateX(-50%);
  position: absolute;
  left: 50%;
  bottom: 5px;
  width: 110vw;
  height: 1px;
  content: "";
  background: #999;
}

@media (min-width: 992px) {
  h3.underlined:after {
    bottom: 7px;
  }
}
@media (min-width: 1200px) {
  h3.underlined:after {
    bottom: 8px;
  }
}

.btn {
  border-radius: 0;
}

/* bookmark */

.resources-link {
  font-family: "Ivar", serif;
  font-size: 1.25rem;
  border: none;
}
.resources-link svg {
  margin-right: 6px;
}
p a.resources-link {
  transition: 0s color;
}
.resources-link:hover {
  color: var(--tangerine) !important;
}
.resources-link:hover svg path {
  stroke: var(--ink);
}
.resources-link:hover svg path {
  stroke: var(--tangerine) !important;
}
#saved-hed .resources-link {
  font-size: 1.75rem;
}

#savedModal {
  z-index: 9999;
}
.pdf-actions a {
  border: none;
}

.form-search input:focus {
  border: 1px solid var(--tangerine);
}

#search-clear,
#search-button {
  appearance: none;
  border: 0;
  background: 0;
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 10px;
  transform: translate(0, -50%);
}
#search-clear {
  left: auto;
  right: 10px;
  opacity: 0;
  transition: 1s opacity;
}
#search-clear.show {
  opacity: 1;
}

#q {
  padding-left: 3rem;
}

.list-style-none {
  list-style: none;
  padding-left: 0;
}

/* mobile filter nav on list view */

@media (max-width: 767.8px) {
  body.modal-open {
    overflow: hidden;
    padding-right: 15px;
  }

  #filter-nav {
    position: fixed;
    z-index: 100;
    top: 50px;
    left: -175vw;
    transition: 0.3s left;
    background: #fff;
    height: 100vh;
    outline: 1px solid #999;
    overflow-y: auto;
    color: var(--ink);
  }

  #filter-nav.shown {
    width: 100%;
    left: 0.5px;
    transition: 0.3s left;
  }
  .curricula .modal {
    margin-top: 56px;
  }
  #filter-nav.shown .sticky-footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 0 1rem 1rem 1rem;
    background: #fff;
  }
}

#filter-nav {
  width: 500px;
  padding: 2rem;
  border-right: 1px solid #999;
}
#filter-nav input[type="text"] {
  padding: 0.5rem 1rem 0.5rem 3em;
  border-color: var(--ink);
  border-radius: 2px;
}
input[type="checkbox"] {
  border-radius: 0;
  cursor: pointer;
}
#filter-nav a,
#filter-nav label {
  color: var(--ink);
  font-size: 0.95rem;
  border: none;
}
#filter-nav a:hover {
  color: var(--tangerine);
}

#filtered-container {
  padding: 0 0 2rem 2rem;
  max-width: 800px;
}
@media (max-width: 768px) {
  #filtered-container {
    padding: 0;
  }
  .resource-card-title .bookmark-icon {
    padding-left: 5px;
  }
  .learn-more {
    padding-right: 2rem;
  }
  .resource-title {
    font-size: 1.2rem;
  }
}

.resource-tags {
  margin-bottom: 0.5rem;
}
.resource-list li,
.resource-tags li {
  display: inline-block;
  padding-right: 0.5rem;
}
.resource-list a {
  color: var(--ink);
  border: none;
}

.resource-tags a {
  color: var(--ink);
  border: none;
  font-size: 0.8rem;
  letter-spacing: 0.1px;
}
.resource-list li:after,
.resource-tags li:after {
  content: ", ";
}
.resource-list li:last-of-type:after,
.resource-tags li:last-of-type:after {
  content: "";
}
.resource-list a:hover,
.resource-tags a:hover {
  color: var(--tangerine);
}
.resource-card {
  position: relative;
}
.resource-title {
  width: 100%;
  color: var(--ink);
}
.resource-title a:hover {
  color: var(--tangerine);
}

.learn-more {
  font-weight: bold;
  font-size: 1rem;
  float: right;
  text-align: right;
  padding-bottom: 24px;
  margin-top: 12px;
}

.curricula .modal-content {
  border-radius: 0;
  padding-left: 56px;
  padding-right: 56px;
}

.curricula .modal-backdrop.show {
  opacity: 0.5;
  background: var(--ink);
}

.curricula .modal-title {
  text-align: center;
  width: 100%;
  font-size: 2rem;
}
.curricula .btn-primary {
  margin: 1rem auto;
  background: var(--ink);
  color: #fff;
  border: none;
}
.curricula .modal-header,
.curricula .modal-footer {
  border: none;
}
.curricula .btn-primary:hover {
  background: var(--tangerine);
}

/* checkbox style */

.curricula .form-check-input:checked[type="checkbox"] {
  background-image: none;
}
.curricula .form-check-input:checked {
  background-color: var(--ink);
  position: relative;
}
.curricula .form-check-input:checked:before {
  content: "";
  border: 1px solid #fff;
  width: 100%;
  height: 100%;
  position: absolute;
}
.curricula .form-check-input[type="checkbox"] {
  border-radius: 0;
  border-color: var(--ink);
}

#email-form {
  max-height: 0px;
  overflow: hidden;
  padding: 0;
  opacity: 0;
  transition: 0.3s max-height, 0.3s opacity;
}
#email-form.shown {
  opacity: 1;
  max-height: 100%;
}
#email-form label {
  color: var(--ink);
  max-height: 0px;
  font-size: 0.9rem;
}
#email-form #email {
  background: #ffffff99;
}
#pdf_email_form .form-check {
  margin-left: 0px;
}
#pdf_email_form .button {
  margin-right: 0px;
}

a.btn-outline-dark {
  color: var(--ink);
  border-color: var(--ink);
}
a.btn-outline-dark:hover path {
  fill: #fff;
}
a.btn-outline-dark:hover {
  color: #fff !important;
}

/* glossary term */

.glossary-term {
  background: #fce5c2;
  transition: 0.2s color;
}
.glossary-term:hover {
  color: var(--tangerine);
}
.tooltip-inner {
  text-align: left;
  padding: 0.75rem 1.25rem;
  border-radius: 0px;
}

/* resource page */

.resource-meta div {
  padding-bottom: 1rem;
}
.resource-meta .resource-skills {
  border-bottom: 1px solid var(--ink);
}
.resource-meta strong {
  font-weight: 500;
}

@media (min-width: 768px) {
  .resource-meta {
    display: flex;
  }
  .resource-meta div {
    padding-bottom: 0;
  }
  .resource-meta .resource-skills {
    border-bottom: 0;
  }
  .resource-meta .resource-time {
    padding-right: 1rem;
    margin-right: 1rem;
    border-right: 1px solid var(--ink);
  }
}

@media (min-width: 1140px) {
  .resource .h2,
  .resource h2 {
    font-size: 3rem;
  }
  .resource .h3,
  .resource h3 {
    font-size: 1.5rem;
  }
}

.resource .accordion-button::after {
  background: none;
  content: "+";
  font-size: 3rem;
  position: absolute;
  right: 0;
  top: 0;
}
.accordion-button:not(.collapsed)::after {
  transform: none;
  content: "";
  border-bottom: 1px solid var(--ink);
  top: 10px;
  right: -2px;
}
.resource h3.accordion-header {
  margin-bottom: 0;
}
.resource .accordion {
  margin-bottom: 2rem;
}
.resource .accordion-button:not(.collapsed) {
  background: none;
  color: var(--ink);
}
.resource .accordion-item {
  border-top: 1px solid var(--ink) !important;
}
.resource .resource-text a span {
  color: var(--tangerine) !important;
  text-decoration: none !important;
}

.resource-text h3 {
  margin-bottom: 1rem;
}
.resource-text li[aria-level="1"],
.accordion li[aria-level="1"] {
  margin-top: 1rem;
}

#accordion .accordion-body {
  padding: 0;
}

/* resource page tags at the bottom */

.resource-themes-type {
  padding-right: 0.75rem;
  margin-right: 0.75rem;
  border-right: 1px solid #464644;
}
.resource-themes-type:last-of-type {
  border-right: none;
}
.resource-themes {
  font-size: 0.9rem;
  color: #464644;
}
.resource-themes a {
  font-size: 0.9rem;
  color: #464644;
  border-color: #fff;
  font-style: italic;
}
.resource-themes a:hover {
  color: var(--tangerine);
  border-color: var(--tangerine);
}
.resource-themes a:after {
  content: ",";
}
.resource-themes a:last-of-type:after {
  content: "";
}
.pills {
  margin-bottom: 2rem;
  font-size: 0.9rem;
  display: inline-block;
}
.pills a {
  color: var(--ink);
}
.pills a:hover {
  background: var(--ink);
  color: #fff;
}
.pills a:hover i {
  color: #fff;
}
.pills i {
  padding-left: 4px;
  font-style: normal;
  color: #464644;
  transition: 0.3s color, 0.3s background;
}

.pill {
  border: 1px solid var(--ink);
  padding: 5px 15px;
  border-radius: 20px;
  margin-right: 0.5rem;
}



