@charset "UTF-8";
/*
Theme Name: Design Everything
Version: 1.0
*/
@font-face {
  font-family: "Roobert-Regular";
  src: url("assets/fonts/Roobert-Regular.woff2") format("woff2"), url("assets/fonts/Roobert-Regular.woff") format("woff"), url("assets/fonts/Roobert-Regular.ttf") format("truetype"), url("assets/fonts/Roobert-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
.carousel {
  position: absolute;
  top: 53.5px;
  left: 0;
  right: 0;
  bottom: 53.5px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 600px) {
  .carousel {
    top: 66.875px;
    bottom: 66.875px;
  }
}

.carousel__track {
  display: flex;
  gap: 53.5px;
  align-items: center;
  transition: transform 0.5s ease-in-out;
  height: 100%;
}
@media (max-width: 600px) {
  .carousel__track {
    gap: 13.375px;
  }
}

.carousel__item {
  flex-shrink: 0;
  width: calc(100vw - 214px);
  height: 100%;
  position: relative;
}
@media (max-width: 600px) {
  .carousel__item {
    width: calc(100vw - 53.5px);
  }
}
.carousel__item.active {
  cursor: pointer;
}
.carousel__item.active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: var(--yellow-paper);
  background-size: cover;
  background-position: center;
  opacity: 0;
  pointer-events: none;
  z-index: 2;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  padding: 4px 4px 0;
}
.carousel__item.active:hover::before {
  opacity: 1;
}
.carousel__item.active:hover .carousel__info {
  opacity: 1;
  pointer-events: all;
}
@media (max-width: 600px) {
  .carousel__item.active::before {
    opacity: 1;
  }
  .carousel__item.active .carousel__info {
    opacity: 1;
    pointer-events: all;
  }
}

.carousel__item-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.carousel__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-image: var(--yellow-paper);
  background-size: cover;
  background-position: center;
  padding: 0.5rem;
  opacity: 0;
  pointer-events: none;
  z-index: 6;
  display: flex;
  justify-content: space-between;
}
.carousel__info__title {
  font-size: 0.875rem;
  font-weight: 400;
  margin: 0;
}
.carousel__info__caption {
  font-size: 0.875rem;
  margin: 0;
}

.carousel__overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 53.5px;
  opacity: 0.7 !important;
  pointer-events: all;
  z-index: 5;
}
@media (max-width: 600px) {
  .carousel__overlay {
    width: 13.375px;
  }
}
.carousel__overlay--left {
  left: 0;
}
.carousel__overlay--right {
  right: 0;
}

.carousel__nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 3rem;
  color: #111827;
  cursor: pointer;
  z-index: 10;
  padding: 2.25rem;
  transition: opacity 0.2s ease-in-out;
}
@media (max-width: 600px) {
  .carousel__nav {
    font-size: 2rem;
    padding: 0.85rem;
  }
}
.carousel__nav:hover {
  opacity: 0.7;
}
.carousel__nav--prev {
  left: 26.75px;
}
@media (max-width: 600px) {
  .carousel__nav--prev {
    left: 0;
  }
}
.carousel__nav--next {
  right: 26.75px;
}
@media (max-width: 600px) {
  .carousel__nav--next {
    right: 0;
  }
}

.carousel__item-intro {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: var(--yellow-paper);
  background-size: cover;
  background-position: center;
  padding: 1rem;
  overflow-y: auto;
  z-index: 0;
}
@media (min-width: 601px) {
  .carousel__item-intro {
    display: none;
  }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  text-transform: uppercase;
  text-align: center;
}
.site-header .nav {
  padding: 1rem 0;
}
.site-header .nav ul {
  justify-content: center;
  padding: 0 1rem;
}

.site-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
}
.site-footer .nav {
  padding: 1rem 0;
}
.site-footer .nav ul li a {
  padding: 0 1rem;
}
.site-footer .current-menu-item a {
  text-transform: uppercase;
}

.nav {
  padding: 1rem;
  background: #e6e6e6;
  display: flex;
  align-items: center;
  font-size: 1.125rem;
  position: relative;
  overflow: hidden;
}
.nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  width: 100%;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}
.nav li {
  flex: 1;
  position: relative;
}
.nav li a {
  display: block;
  position: relative;
  z-index: 2;
}
.nav li a:hover {
  text-decoration: none;
  text-transform: uppercase;
}
.nav li a::before {
  content: "";
  position: absolute;
  top: -1rem;
  bottom: -1rem;
  background-size: cover;
  background-position: center;
  background-image: var(--hover-bg);
  pointer-events: none;
  z-index: -1;
  opacity: 0;
}
.nav li a:hover::before {
  opacity: 0.9;
}
.nav li a[data-position=top-center]::before {
  left: 50%;
  transform: translateX(-50%);
  width: 75vw;
}
@media (max-width: 600px) {
  .nav li a[data-position=top-center]::before {
    width: 50vw !important;
  }
}
@media (max-width: 810px) {
  .nav li a[data-position=top-center]::before {
    width: 60vw !important;
  }
}
.nav li a[data-position=bottom-left]::before {
  left: 0;
  width: 25vw;
}
@media (max-width: 810px) {
  .nav li a[data-position=bottom-left]::before {
    width: 33.33vw !important;
  }
}
.nav li a[data-position=bottom-center] {
  text-align: center;
}
.nav li a[data-position=bottom-center]::before {
  left: 50%;
  transform: translateX(-50%);
  width: 25vw;
}
@media (max-width: 810px) {
  .nav li a[data-position=bottom-center]::before {
    width: 33.33vw !important;
  }
}
.nav li a[data-position=bottom-right] {
  text-align: right;
}
.nav li a[data-position=bottom-right]::before {
  right: 0;
  width: 25vw;
}
@media (max-width: 810px) {
  .nav li a[data-position=bottom-right]::before {
    width: 33.33vw !important;
  }
}

.current-menu-item > a::before,
.current-menu-ancestor > a::before,
.current-menu-parent > a::before {
  opacity: 1 !important;
}

.nav-center {
  margin: 0 auto;
}
@media (max-width: 600px) {
  .nav-center {
    margin: 0 !important;
  }
}

.nav-left,
.nav-right {
  position: absolute;
  font-size: 0.875rem;
  text-transform: none;
}
@media (max-width: 600px) {
  .nav-left,
  .nav-right {
    left: auto !important;
    right: 0 !important;
  }
  .nav-left li,
  .nav-right li {
    margin-left: 0.5rem !important;
    margin-right: 0 !important;
  }
}
.nav-left li:hover,
.nav-right li:hover {
  text-decoration: underline;
}

.nav-left {
  left: 0;
}
.nav-left li {
  margin-right: 0.5rem;
}
.nav-left.animate-in {
  animation: slideInFromLeft 0.3s ease-out;
}

.nav-right {
  right: 0;
}
.nav-right li {
  margin-left: 0.5rem;
}
.nav-right.animate-in {
  animation: slideInFromRight 0.3s ease-out;
}

@keyframes slideInFromLeft {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideInFromRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
.text-box-slide {
  position: fixed;
  width: 25vw;
  background-size: cover;
  background-position: center;
  z-index: 100;
  overflow: hidden;
}
@media (max-width: 810px) {
  .text-box-slide {
    width: 33.33vw !important;
  }
}
@media (max-width: 600px) {
  .text-box-slide {
    position: static;
    width: auto !important;
    height: auto !important;
    max-height: 100% !important;
    transform: none !important;
    margin: 1rem;
    margin-top: calc(53.5px + 1rem);
  }
}
.text-box-slide[data-origin=top-center] {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 75vw;
  max-height: 75vh;
  height: auto;
  transition: max-height 0.3s ease;
}
@media (max-width: 600px) {
  .text-box-slide[data-origin=top-center] {
    width: 50vw !important;
  }
}
@media (max-width: 810px) {
  .text-box-slide[data-origin=top-center] {
    width: 60vw !important;
  }
}
.text-box-slide[data-origin=top-center] h2 {
  text-align: center;
}
.text-box-slide[data-origin=bottom-left] {
  top: 0;
  left: 0;
  height: 100%;
}
.text-box-slide[data-origin=bottom-center] {
  top: 53.5px;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
}
.text-box-slide[data-origin=bottom-center] h2 {
  text-align: center;
}
.text-box-slide[data-origin=bottom-right] {
  top: 0;
  right: 0;
  height: 100%;
}

.text-box-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
}
.text-box-toggle .chevron {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
  display: inline-block;
}

@media (max-width: 600px) {
  .text-box-slide--home {
    display: none;
  }
}
.text-box-slide--home .text-box-content {
  max-height: calc(75vh - 2rem);
}

.text-box-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  max-height: 100%;
}
@media (max-width: 600px) {
  .text-box-content {
    max-height: 100% !important;
  }
}
.text-box-content h2 {
  font-family: "Roobert-Regular", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  font-size: 1.125rem;
  text-transform: uppercase;
  flex-shrink: 0;
  height: 53.5px;
  display: flex;
  align-items: center;
  padding: 0 1rem;
}
@media (max-width: 600px) {
  .text-box-content h2 {
    height: auto !important;
    padding: 1rem;
    text-align: left !important;
  }
}

.text-box-post {
  overflow-y: auto;
  overflow-x: hidden;
  transition: max-height 1s ease, opacity 0.3s ease, padding 0.3s ease;
  opacity: 1;
  flex: 1;
  min-height: 0;
  padding: 0 1rem 1rem;
  max-height: 1000px;
}

.text-box-slide--toggleable.closed .text-box-post {
  max-height: 0;
  opacity: 0;
  margin: 0;
  overflow: hidden;
  padding: 0;
  transition: max-height 0.4s ease, opacity 0.2s ease, padding 0.2s ease;
}
.text-box-slide--toggleable.closed .chevron {
  transform: rotate(-180deg);
}

.people {
  display: grid;
  grid-template-columns: 25vw 1fr;
}
@media (max-width: 810px) {
  .people {
    grid-template-columns: 33.33vw 1fr;
  }
}
@media (max-width: 600px) {
  .people {
    display: flex;
    flex-direction: column;
  }
}
.people__grid {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 1rem;
}
@media (max-width: 600px) {
  .people__grid {
    display: flex;
    flex-direction: column;
    padding-top: 0;
  }
}
@media (max-width: 810px) {
  .people__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.people-list {
  column-count: 2;
  column-gap: 2rem;
  column-fill: auto;
  list-style: none;
  margin-top: 1rem;
}
@media (max-width: 1024px) {
  .people-list {
    column-count: 1;
  }
}
.people-list a:hover {
  text-transform: uppercase;
}

.person {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  position: relative;
}
.person__photo {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.person__photo::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}
.person__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.person__name {
  font-size: 1.125rem;
  font-weight: 400;
  margin: 0.5rem 0;
  text-align: center;
  color: #111827;
}
.person:hover {
  text-transform: uppercase;
  text-decoration: none;
  background-image: var(--page-bg-image);
  background-size: cover;
  background-position: center;
}
.person:hover .person__photo::before {
  opacity: 1;
  background-image: var(--page-bg-image);
  background-size: cover;
  background-position: center;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  padding: 4px 4px 0;
}
@media (max-width: 600px) {
  .person {
    text-decoration: none;
    background-image: var(--page-bg-image);
    background-size: cover;
    background-position: center;
  }
  .person .person__photo::before {
    opacity: 1;
    background-image: var(--page-bg-image);
    background-size: cover;
    background-position: center;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    padding: 4px 4px 0;
  }
}

@media (max-width: 810px) {
  .person-profile__link {
    display: none !important;
  }
}
.person-profile__link {
  display: block;
}
.person-profile__photo {
  width: 100%;
  overflow: hidden;
}
.person-profile__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.person-profile__contact {
  margin-top: 1rem;
}
.person-profile__contact a {
  display: block;
}
.person-profile__description {
  margin-top: 1rem;
  padding-bottom: 1rem;
}

.person-post {
  display: grid;
  grid-template-columns: 25vw 1fr;
}
@media (max-width: 600px) {
  .person-post {
    display: flex;
    width: 100%;
  }
}
@media (max-width: 810px) {
  .person-post {
    grid-template-columns: 33.33vw 1fr;
  }
}
.person-post__content {
  grid-column: 2;
  padding: 1rem;
}
@media (max-width: 600px) {
  .person-post__content {
    padding-top: 0 !important;
    width: 100%;
  }
}

.platforms__grid {
  display: grid;
  grid-template-columns: 1fr 25vw 1fr;
  gap: 1rem;
  padding: 1rem;
}
@media (max-width: 600px) {
  .platforms__grid {
    display: flex;
    flex-direction: column;
    padding-top: 0;
  }
}
@media (max-width: 810px) {
  .platforms__grid {
    grid-template-columns: 1fr 33.33vw 1fr;
  }
}
.platforms__grid .platform {
  grid-column: 1;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  position: relative;
}
.platforms__grid .platform__photo {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.platforms__grid .platform__photo::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}
.platforms__grid .platform__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.platforms__grid .platform__name {
  font-size: 1.125rem;
  font-weight: 400;
  margin: 0.5rem 0;
  text-align: center;
  color: #111827;
}
.platforms__grid .platform:hover {
  text-transform: uppercase;
  text-decoration: none;
  background-image: var(--page-bg-image);
  background-size: cover;
  background-position: center;
}
.platforms__grid .platform:hover .platform__photo::before {
  opacity: 1;
  background-image: var(--page-bg-image);
  background-size: cover;
  background-position: center;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  padding: 4px 4px 0;
}
@media (max-width: 600px) {
  .platforms__grid .platform {
    text-decoration: none;
    background-image: var(--page-bg-image);
    background-size: cover;
    background-position: center;
  }
  .platforms__grid .platform .platform__photo::before {
    opacity: 1;
    background-image: var(--page-bg-image);
    background-size: cover;
    background-position: center;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    padding: 4px 4px 0;
  }
}
.platforms__grid .platform:nth-child(even) {
  grid-column: 3;
}

.platform-single {
  margin-top: 0;
}
@media (max-width: 600px) {
  .platform-single {
    margin-top: 53.5px !important;
  }
}

.progresses {
  display: grid;
  grid-template-columns: 1fr 25vw;
}
@media (max-width: 600px) {
  .progresses {
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 810px) {
  .progresses {
    grid-template-columns: 1fr 33.33vw;
  }
}
.progresses__grid {
  grid-column: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
}
@media (max-width: 600px) {
  .progresses__grid {
    display: flex;
    flex-direction: column;
    padding-top: 0;
  }
}

.progress {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
  position: relative;
}
@media (max-width: 810px) {
  .progress {
    display: flex;
    flex-direction: column-reverse;
  }
}
.progress::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 4px solid transparent;
  pointer-events: none;
  opacity: 0;
}
.progress__content {
  display: flex;
  flex-direction: column;
  padding: calc(4px + 1rem);
}
@media (max-width: 810px) {
  .progress__content {
    padding-top: 0;
  }
}
.progress__name {
  font-size: 1.125rem;
  font-weight: 400;
  margin: 0 0 0.5rem 0;
}
.progress__description {
  margin: 0 0 0.5rem 0;
}
.progress__date {
  margin: 0;
  font-size: 0.875rem;
}
.progress__photo {
  width: 100%;
  overflow: hidden;
}
.progress__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.progress:hover {
  text-decoration: none;
}
.progress:hover::before {
  opacity: 1;
  background-image: var(--page-bg-image);
  background-size: cover;
  background-position: center;
  border: 4px solid transparent;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  padding: 0;
}
@media (max-width: 600px) {
  .progress {
    text-decoration: none;
  }
  .progress::before {
    opacity: 1;
    background-image: var(--page-bg-image);
    background-size: cover;
    background-position: center;
    border: 4px solid transparent;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    padding: 4px;
  }
}

.progress-single {
  margin-top: 0;
}
@media (max-width: 600px) {
  .progress-single {
    margin-top: 53.5px !important;
  }
}

body[data-home-loading=true] .site-header.home-loading {
  transform: translateY(-100%);
  transition: transform 0.6s ease;
}
body[data-home-loading=true] .site-footer.home-loading {
  transform: translateY(100%);
  transition: transform 0.6s ease;
}
body[data-home-loading=true] .text-box-slide--home-loading {
  transform: translateX(-50%) translateY(-100%) !important;
  transition: transform 0.6s ease 0.6s;
}
body[data-home-loading=true] .text-box-slide--home-loading .text-box-post {
  opacity: 0;
  transition: opacity 0.6s ease 0.9s;
}
body[data-home-loading=true] .text-box-slide--home-loading h2 {
  opacity: 0;
  transition: opacity 0.6s ease 0.9s;
}
body[data-home-loading=true] .home-loading-carousel .carousel__item:not(.active),
body[data-home-loading=true] .home-loading-carousel .carousel__overlay,
body[data-home-loading=true] .home-loading-carousel .carousel__nav {
  opacity: 0;
  transition: opacity 0.4s ease 0.3s;
}
body[data-home-loading=true] .home-loading-carousel .carousel__item-intro > * {
  opacity: 0;
  transition: opacity 0.6s ease 0.9s;
}
body[data-home-loading=true].home-loaded .site-header.home-loading {
  transform: translateY(0);
}
body[data-home-loading=true].home-loaded .site-footer.home-loading {
  transform: translateY(0);
}
body[data-home-loading=true].home-loaded .home-hero__logo {
  opacity: 0;
  transition: opacity 0.4s ease;
}
body[data-home-loading=true].home-loaded .text-box-slide--home-loading {
  transform: translateX(-50%) translateY(0) !important;
}
body[data-home-loading=true].home-loaded .text-box-slide--home-loading .text-box-post {
  opacity: 1;
}
body[data-home-loading=true].home-loaded .text-box-slide--home-loading h2 {
  opacity: 1;
}
body[data-home-loading=true].home-loaded .home-loading-carousel .carousel__item:not(.active),
body[data-home-loading=true].home-loaded .home-loading-carousel .carousel__overlay,
body[data-home-loading=true].home-loaded .home-loading-carousel .carousel__nav {
  opacity: 1;
}
body[data-home-loading=true].home-loaded .home-loading-carousel .carousel__item-intro > * {
  opacity: 1;
}

.home .text-box-post {
  padding: 1rem;
}

.home-hero {
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.home-hero__overlay {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  pointer-events: none;
}

.home-hero__logo {
  max-width: 200px;
  width: 40%;
}

:root {
  --nav-height: 53.5px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

*::-webkit-scrollbar {
  width: 0px;
}

body {
  font-family: "Roobert-Regular", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #111827;
  background-color: #f2f2f2;
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
}
body h1 {
  font-size: 2.25rem;
}
body h2 {
  font-size: 1.5rem;
}
body h3 {
  font-size: 1.125rem;
}
body a {
  text-decoration: none;
  color: #111827;
}
body a:hover {
  text-decoration: underline;
}

.page-content {
  min-height: 100vh;
}

main:not(.home-hero) {
  padding-top: 53.5px;
  padding-bottom: 53.5px;
  height: 100%;
}
@media (max-width: 600px) {
  main:not(.home-hero) {
    padding-top: 0 !important;
    height: auto;
  }
}

button {
  font-family: "Roobert-Regular", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

.container {
  width: 100%;
  height: 100%;
}
.container--narrow {
  width: 50%;
  margin: 0 auto;
  padding: 1rem 0;
}
@media (max-width: 600px) {
  .container--narrow {
    width: 100% !important;
    padding: 1rem;
  }
}
@media (max-width: 810px) {
  .container--narrow {
    width: 75% !important;
  }
}
.container p:not(:last-child) {
  margin-bottom: 1rem;
}

.shortcode-list {
  margin-top: 1rem;
}
.shortcode-list h4 {
  text-transform: uppercase;
  font-weight: 400;
}
.shortcode-list ul {
  list-style: none;
  padding-left: 14px;
}
.shortcode-list ul li {
  padding-left: 2px;
}
.shortcode-list ul li::marker {
  content: "→";
}

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

/*# sourceMappingURL=style.css.map */
