html {
  zoom: 85%;
}

:root {
  background-color: #fff;
  font-family: "Inter", "SF Display Pro";
  font-size: 1rem;
  font-style: normal;
  line-height: normal;
  text-decoration-skip-ink: none;
  --primary-color: #5b2caa;
  --text-color: rgba(32, 32, 32, 0.8);
  --bold-text-color: #202020;
  --accent-color: #fff;
  --blue-underline: #1f87fe;
  --highlight: #8b6fff;
  --border-color: #c8c8c8;
}

.alternate-font-family {
  font-family: "Plus Jakarta Sans";
}

.primary-background {
  background-color: var(--primary-color);
  color: var(--accent-color);
}

.alternate-background {
  background-color: #fefbfa;
}

.alternate-secondary-background {
  background-color: #f0f0f0;
}

.details-background {
  background-color: #f5f1fc;
}

.bold-text-color {
  font-weight: 700;
  color: var(--bold-text-color);
}

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

.font-primary {
  color: var(--primary-color);
}

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

.light-text {
  color: var(--accent-color);
}

.font-blue {
  color: #1f87fe;
}

.break-word {
  word-wrap: break-word;
}

.mt-4-6 {
  margin-top: 4.6rem;
}

.mt-2-5 {
  margin-top: 2.5rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mt-1-37 {
  margin-top: 1.37rem;
}

.mt-1 {
  margin-top: 1rem;
}

.mt-0-5 {
  margin-top: 0.5rem;
}

.mr-1 {
  margin-right: 1rem;
}

.mr-2 {
  margin-right: 2rem;
}

.ml-1 {
  margin-left: 1rem;
}

.ml-2 {
  margin-left: 2rem;
}

.ml-3 {
  margin-left: 3rem;
}

.mb-1 {
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.m-auto {
  margin: auto;
}

.pt-0 {
  padding-top: 0;
}

.pt-1 {
  padding-top: 1rem;
}

.pt-2 {
  padding-top: 2rem;
}

.pb-0 {
  padding-bottom: 0;
}

.pb-1 {
  padding-bottom: 1rem;
}

.pl-3 {
  padding-left: 3rem;
}

.pl-1 {
  padding-left: 1rem;
}

.pl-0 {
  padding-left: 0;
}

.pl-0-7 {
  padding-left: 0.7rem;
}

.p-all-1-3 {
  padding: 1rem 3rem !important;
}

.max-height-half {
  max-height: 50vw;
}

.height-30 {
  height: 30vh;
}

.height-40 {
  height: 40vh;
}

.height-70 {
  height: 70vh;
}

.max-width-half {
  max-width: 40vw;
}

.min-height-10 {
  min-height: 10vh;
}

.min-height-30 {
  min-height: 30vh;
}

.min-height-40 {
  min-height: 40vh;
}

.min-height-50 {
  min-height: 50vh;
}

.min-height-70 {
  min-height: 70vh;
}

.width-12 {
  width: 12vw !important;
}

.width-30 {
  width: 30vw !important;
}

.width-40 {
  width: 40vw !important;
}

.width-50 {
  width: 50vw !important;
}

.width-60 {
  width: 60vw !important;
}

.width-70 {
  width: 70vw !important;
}

.width-80 {
  width: 80vw !important;
}

.width-half {
  width: 50%;
}

.width-full {
  width: 100%;
}

.width-unset {
  width: unset;
}

.responsive-width-30 {
  width: 30vw !important;
}

.responsive-width-40 {
  width: 40vw !important;
}

.responsive-width-60 {
  width: 60vw !important;
}

.responsive-width-70 {
  width: 70vw !important;
}

.clamp-width-55 {
  width: clamp(50vw, 80vw - 12.5rem, 60vw) !important;
}

.font-size-4 {
  /* font-size: 4rem; */
  font-size: clamp(2.5rem, 2.4vw + 1.5rem, 4rem);
}

.font-size-3 {
  /* font-size: 3rem; */
  font-size: clamp(1.75rem, 1.2vw + 1.2rem, 3rem);
}

.font-size-2-5 {
  font-size: 2.5rem;
}

.font-size-2-25 {
  /* font-size: 2.25rem; */
  font-size: clamp(1.75rem, 1.4vw + 0.9rem, 2.25rem);
}

.font-size-2 {
  font-size: clamp(1.5rem, 5.3vw - 1.3rem, 2rem);
}

.font-size-1-75 {
  font-size: clamp(1.25rem, 5.3vw - 1.6rem, 1.75rem);
}

.font-size-1-5 {
  font-size: 1.5rem;
}

.font-size-1-25 {
  font-size: clamp(1rem, 1.3vw + 0.4rem, 1.25rem);
}

.font-size-1-125 {
  font-size: 1.125rem !important;
}

.font-size-1 {
  font-size: clamp(1rem, 0.9vw + 0.6rem, 2rem);
}

.font-weight-700 {
  font-weight: 700;
}

.font-weight-400 {
  font-weight: 400;
}

.line-height-2-25 {
  line-height: 2.25rem;
}

.line-height-1-4 {
  line-height: 1.4;
}

.border-1-3 {
  border-radius: 1.3125rem;
}

.flex {
  display: flex;
}

.flex-column {
  flex-direction: column;
}

.flex-row {
  flex-direction: row;
}

.flex-row-reverse {
  flex-direction: row-reverse;
}

.flex-1 {
  flex: 1;
  min-width: 0;
}

.align-center {
  align-items: center;
}

.align-start {
  align-items: start !important;
}

.align-end {
  align-items: end !important;
}

.responsive-align-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-normal {
  justify-content: normal;
}

.gap {
  gap: 1rem !important;
}

.gap-1-5 {
  gap: 1.5rem;
}

.gap-2 {
  gap: 2rem;
}

.gap-2-5 {
  gap: 2.5rem;
}

.gap-4 {
  gap: 3rem !important;
}

.gap-5 {
  gap: 5rem !important;
}

.inline-flex {
  display: inline-flex;
}

.text-end {
  text-align: end;
}

.text-center {
  text-align: center;
}

.underline-blue {
  text-decoration: underline var(--blue-underline) 0.5rem;
}

.underline {
  text-decoration: underline var(--primary-color) 0.5rem;
}

.bottom-highlight {
  margin-top: 10px;
  border-top: 5px solid var(--highlight);
  width: 5.5rem;
}

.separator {
  border-bottom: 1px solid rgba(32, 32, 32, 0.08);
  width: 100%;
}

body {
  margin: 0;
  padding: 0;
  color: #202020;
}

footer {
  padding: 1.38rem 4.87rem;
  color: var(--text-color);
  font-weight: 400;
  border-top: 1px solid rgba(32, 32, 32, 0.08);
}

h1.title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3rem;
}

h1.subtitle {
  font-size: 1.5rem;
}

a.hyperlink {
  text-decoration: none;
  color: var(--primary-color);
}

a.hyperlink-dark {
  text-decoration: none;
  color: var(--text-color);
}

nav {
  width: 100%;
  white-space: nowrap;
  overflow-x: auto;
}

/* Hide scrollbar for Chrome, Safari and Opera */
nav::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
nav {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}

nav a.tabs {
  display: inline-block;
  margin-top: 0.3rem;
  margin-right: 1.5rem;
  padding: 1.4rem 3rem;
  border: 1px solid var(--border-color);
  border-radius: 1.5rem;
  text-decoration: none;
  color: var(--bold-text-color);
  font-weight: 700;
  cursor: pointer;
}

nav a.tabs.selected {
  background-color: var(--primary-color);
  color: var(--accent-color);
}

nav a.tabs:first-child {
  margin-left: 3rem;
}

section .list-container {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.25rem 1rem;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}

section .list-container.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

section .list-container.horizontal-scroll {
  overflow-x: auto;
  max-width: unset;
  grid-template-columns: initial !important;
  grid-auto-flow: column;
  grid-auto-columns: auto;
}

section .list-container.horizontal-scroll .list-item {
  min-width: 17.5rem;
}

/* width */
section .list-container.horizontal-scroll::-webkit-scrollbar {
  height: 6px;
  border-radius: 4px;
}

/* Track */
section .list-container.horizontal-scroll::-webkit-scrollbar-track {
  background: transparent;
}

/* Handle */
section .list-container.horizontal-scroll::-webkit-scrollbar-thumb {
  background: #888;
}

/* Handle on hover */
section .list-container.horizontal-scroll::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.list-header {
  grid-column: 1/-1;
}

.list-item {
  display: flex;
  flex-direction: column;
  position: relative;
  align-items: center;
  max-width: 17.5rem;
  margin: 0 auto;
}

.list-item.enlarge {
  max-width: 25rem;
}

.list-item.pointer {
  cursor: pointer;
}

.list-item .item-image {
  max-height: 17.5rem;
  border: 1px solid var(--border-color);
  border-radius: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
}

.list-item .item-image.aspect-video {
  aspect-ratio: 16/9;
}

.list-item .item-image img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 1/1;
  overflow: hidden;
}

.list-item .item-image.products-image img {
  object-fit: contain;
}

.list-item .item-image .thumbnail {
  height: 100%;
  width: 100%;
  aspect-ratio: 16/9;
}

.list-item .item-details {
  margin-top: 1rem;
}

.list-item .item-text {
  font-size: 1.25rem;
  margin: 0.75rem auto;
}

.item-text.set-overflow {
  height: calc(1.2 * 2.5rem);
  overflow: hidden;
}

.list-item .item-description {
  font-size: 1.25rem;
  color: var(--text-color);
  font-weight: 400;
  line-height: 1.75rem;
}

.item-description.set-overflow-2 {
  height: 5.1rem;
  overflow: hidden;
}

.item-description.set-overflow-5 {
  height: 7.25rem;
  overflow: hidden;
}

.resource-articles-header,
.resource-videos-header {
  font-size: 2rem;
  margin-left: clamp(0rem, 16vw - 7rem, 3rem);
  margin-bottom: 2rem;
}

.resource-videos-header {
  margin-top: 3rem;
}

img {
  border-radius: 1.5rem;
}

img.acs {
  width: 48rem;
}

img.object-fill {
  object-fit: fill !important;
}

img.object-contain {
  object-fit: contain !important;
}

#mcf-illustration {
  margin: auto;
}

.resource-media {
  width: 80vw;
  height: 65vh;
  border: 0 none;
}

/* #about-image:before {
    content: "";
    position: absolute;
    border-radius: 1.5rem;
    overflow: hidden;
    background: #f0ecff;
    transform: rotate(3deg);
    transform-origin: bottom left;
    width: inherit;
    height: inherit;
    z-index: -1;
} */

.topbar {
  display: flex;
  flex-direction: row;
  position: fixed;
  width: -moz-available;
  width: -webkit-fill-available;
  width: fill-available;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 3rem;
  background-color: var(--accent-color);
  color: var(--text-color);
  overflow: hidden;
  top: 0;
  z-index: 1;
}

.topbar .pages {
  display: inherit;
  width: 70%;
  gap: 3.75rem;
}

.topbar a {
  text-decoration: none;
  color: var(--bold-text-color);
  font-family: Inter;
  font-weight: 400;
}

.topbar .sign-up-btn {
  font-family: Plus Jakarta Sans;
  background-color: #5b2caa;
  color: var(--accent-color);
  padding: 0.75rem 2.5rem;
  border-radius: 21rem;
  text-align: center;
  min-width: 5rem;
}

.topbar a.current {
  color: var(--primary-color);
  font-weight: 700;
}

.topbar .hamburger {
  display: none;
  border-radius: 21px;
}

.topbar .hamburger:hover {
  background-color: #f1f1f1;
}

section {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 95dvh;
  padding: 1rem 3rem 3rem;
}

section.top {
  margin-top: 91px;
}

section.align-left {
  place-items: baseline;
}

section.vertical {
  flex-direction: column;
  align-items: baseline;
  justify-content: flex-start;
}

section.responsive-fit {
  padding: 0;
}

.content-header {
  min-height: 20vh;
}

.content-description {
  min-height: 70vh !important;
}

.back-link {
  font-size: 1.25rem;
  cursor: pointer;
}

.text-container {
  width: 40vw;
  font-size: clamp(1rem, 2.7vw - 0.2rem, 1.5rem);
}

.image-container {
  width: 30vw;
}

.description-container {
  display: flex;
  flex-direction: row;
  gap: 2rem;
}

iframe {
  width: 60vw;
  height: 60vh;
  border: 0 none;
  outline: none;
}

.button-container {
  display: flex;
  flex-direction: row;
  gap: 1.05rem;
}

.button-container.vertical {
  flex-direction: column;
}

button {
  font-family: "Plus Jakarta Sans";
  background-color: #5b2caa;
  padding: 1rem;
  width: 12rem;
  text-align: center;
  border: none;
  border-radius: 21rem;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}

button.outline-blackwhite {
  background-color: var(--accent-color);
  color: var(--bold-text-color);
  border: 1px solid var(--bold-text-color);
  width: 8.9rem;
}

button.outline-blackwhite.grey {
  border: 1px solid var(--border-color);
}

button.outline-blackwhite.border-none {
  border: 0 none;
}

button.details-button {
  width: 17rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 3.75rem;
  border-radius: 1.3125rem;
}

button.details-button.share {
  width: 12rem;
  padding: 1.125rem 1rem;
}

div {
  width: 100%;
}

div.title {
  font-size: 1.5rem;
}

input,
select {
  border-radius: 1rem;
  border: 0 none;
  background-color: #f4f6fa;
  width: 30vw;
  height: 3rem;
  outline: none;
  padding: 0 1.25rem;
}

input:focus,
select:focus {
  outline: none;
}

input::placeholder,
input::-moz-placeholder {
  color: #777;
  font-family: SF Pro Display, Inter;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.03rem;
}

select {
  width: 15vw;
  font-family: SF Pro Display, Inter;
}

footer div.list-container {
  width: 60vw;
  display: flex;
  flex-direction: row;
}

footer ul li {
  width: 15rem;
}

footer #page-list {
  width: 5rem;
}

.footer-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.footer-text {
  width: 30vw;
}

.footer-title {
  font-size: clamp(1.5rem, 5.3vw - 1.3rem, 2rem);
  width: 95%;
}

.footer-subtitle {
  color: #777;
  font-size: clamp(0.875rem, 5.3vw - 1.3rem, 1.125rem);
  font-weight: 400;
  line-height: 1.6875rem;
  margin-top: 0.62rem;
}

.footer-links {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  width: 15rem;
}

.modal-button {
  width: 80%;
}

.modal-image {
  object-fit: fill;
  margin: auto;
  max-width: 40vw;
  max-height: 40vh;
}

footer .socials {
  text-align: end;
}

footer .socials svg {
  cursor: pointer;
  margin-right: 1rem;
}

ul {
  list-style: none;
  padding-left: 0;
  color: var(--text-color);
}

ul li {
  margin-top: 0.5rem;
}

.responsive-center {
  padding: 1rem 3rem;
}

#toast-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  width: unset !important;
}

.toast {
  background-color: #333;
  color: #fff;
  padding: 10px 20px;
  width: fit-content;
  border-radius: 4px;
  margin-bottom: 10px;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
  opacity: 0.9;
  transition: opacity 0.3s;
}

.toast:hover {
  opacity: 1;
}

/* resources description content */
.entry-content {
  display: grid;
  gap: 1.5rem;
}

.entry-content figure {
  height: auto;
  max-width: 1000px;
}

.entry-content figure img {
  height: auto;
  max-width: 1000px;
}