/* Variables */
body {
  border-right: 11px solid light-dark(#E60000, #FFB319);
}
@media only screen and (max-width : 500px) {
  body {
    border-right: none;
  }
}

#tfr {
  position: fixed;
  right: 10px;
  top: 0;
  height: 100%;
  z-index: 3;
  background: light-dark(rgba(238, 238, 238, 0.05), rgba(26, 26, 26, 0.2));
  backdrop-filter: blur(20px) saturate(130%);
  padding: 20px;
}
@media only screen and (max-width : 500px) {
  #tfr {
    display: none;
  }
}
#tfr span {
  display: block;
  z-index: -1;
}
#tfr span svg {
  width: 25px;
  height: auto;
}
#tfr span svg path {
  fill: light-dark(#E60000, #FFB319);
}

#dsgnrts {
  background: light-dark(rgba(26, 26, 26, 0.05), rgba(238, 238, 238, 0.05));
  backdrop-filter: blur(15px) brightness(110%) saturate(130%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 110vw;
  background-size: cover;
  mask-repeat: no-repeat;
  mask-size: 60vw auto;
}

#logo {
  background: light-dark(#1a1a1a, #fff);
  width: 40px;
  height: auto;
  display: inline-block;
  background-size: cover;
  mask-repeat: no-repeat;
  mask-size: 40px auto;
}
@media only screen and (max-width : 500px) {
  #logo {
    width: 80px;
    mask-size: 80px auto;
    margin-bottom: 20px;
  }
}
#logo svg path {
  fill: light-dark(#1a1a1a, #fff);
}

header {
  position: relative;
  height: 100%;
  z-index: 1;
  padding-left: 60px;
  padding-top: 20px;
}
@media only screen and (max-width : 800px) {
  header {
    padding-left: 30px;
  }
}
@media only screen and (max-width : 500px) {
  header {
    padding-left: 0;
    padding-top: 40px;
  }
}
header #primary-nav {
  display: flex;
  align-items: center;
  width: 100%;
}
@media only screen and (max-width : 500px) {
  header #primary-nav {
    flex-direction: column;
  }
}
header #primary-nav nav {
  font-family: "veneer-three", sans-serif;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 1.33em;
  font-style: italic;
  text-align: left;
}
header #primary-nav nav ul {
  margin-left: 20px;
}
@media only screen and (max-width : 500px) {
  header #primary-nav nav ul {
    margin-bottom: 20px;
    margin-left: 0;
  }
}
header #primary-nav nav ul li {
  margin-left: 2vw;
  display: inline-block;
  line-height: 1.5em;
}
@media only screen and (max-width : 500px) {
  header #primary-nav nav ul li {
    margin: 0 10px;
  }
}
header #primary-nav nav ul li a {
  text-decoration: none;
  text-rendering: geometricPrecision;
  transition: all 0.1s ease-in-out;
  display: inline-block;
  color: light-dark(rgba(26, 26, 26, 0.5), rgba(238, 238, 238, 0.5));
}
header #primary-nav nav ul li a .icon {
  background-color: light-dark(rgba(26, 26, 26, 0.5), rgba(238, 238, 238, 0.5));
  width: 30px;
  margin-right: 5px;
  height: auto;
  display: inline-block;
  -webkit-mask-image: url(/assets/svg/nav_works.svg);
  mask-image: url(/assets/svg/nav_works.svg);
  mask-repeat: no-repeat;
  mask-size: 35px;
  mask-position: 50% 50%;
  transition: all 0.1s ease-in-out;
}
header #primary-nav nav ul li a .icon.shop {
  -webkit-mask-image: url(/assets/svg/nav_shop.svg);
  mask-image: url(/assets/svg/nav_shop.svg);
}
header #primary-nav nav ul li a .icon.works {
  -webkit-mask-image: url(/assets/svg/nav_works.svg);
  mask-image: url(/assets/svg/nav_works.svg);
}
header #primary-nav nav ul li a .icon.blog {
  -webkit-mask-image: url(/assets/svg/nav_blog.svg);
  mask-image: url(/assets/svg/nav_blog.svg);
}
header #primary-nav nav ul li a .icon.about {
  -webkit-mask-image: url(/assets/svg/nav_about.svg);
  mask-image: url(/assets/svg/nav_about.svg);
}
header #primary-nav nav ul li a .icon.member {
  -webkit-mask-image: url(/assets/svg/nav_member.svg);
  mask-image: url(/assets/svg/nav_member.svg);
}
header #primary-nav nav ul li a .icon.error {
  -webkit-mask-image: url(/assets/svg/nav_error.svg);
  mask-image: url(/assets/svg/nav_error.svg);
}
header #primary-nav nav ul li a .icon.contact {
  -webkit-mask-image: url(/assets/svg/nav_contact.svg);
  mask-image: url(/assets/svg/nav_contact.svg);
}
header #primary-nav nav ul li a:hover {
  color: light-dark(#E60000, #FFB319);
  transform: scale(1.1);
}
header #primary-nav nav ul li a:hover .icon {
  background-color: light-dark(#E60000, #FFB319);
}
header #primary-nav nav ul li.active a {
  color: light-dark(#1a1a1a, #fff);
}
header #primary-nav nav ul li.active a .icon {
  background-color: light-dark(#1a1a1a, #fff);
}

main {
  min-height: 100vw;
  position: relative;
  z-index: 0;
  color: light-dark(#333, #e5e5e5);
}
main h1 {
  font-family: "veneer-three", sans-serif;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 2em;
  font-style: italic;
  color: light-dark(#fff, #1a1a1a);
  background: linear-gradient(90deg, light-dark(#E60000, #FFB319), light-dark(#FF3333, #FFCC33));
  clip-path: polygon(0% 0%, 100% 0%, 90% 100%, 0% 100%);
  display: inline-block;
  padding: 5px 30px 5px 60px;
  margin: 20px 0;
}
@media only screen and (max-width : 800px) {
  main h1 {
    padding-left: 30px;
  }
}
@media only screen and (max-width : 500px) {
  main h1 {
    padding-left: 20px;
  }
}
main h1 a {
  text-decoration: none;
  color: light-dark(#fff, #1a1a1a);
}
main h1 a:hover {
  color: light-dark(#fff, #1a1a1a);
}
main h1 .icon {
  background-color: light-dark(#fff, #1a1a1a);
  width: 1.3em;
  height: auto;
  display: inline-block;
  -webkit-mask-image: url(/assets/svg/nav_works.svg);
  mask-image: url(/assets/svg/nav_works.svg);
  mask-repeat: no-repeat;
  mask-size: 1.3em;
  mask-position: 0 50%;
}
main h1 .icon.shop {
  -webkit-mask-image: url(/assets/svg/nav_shop.svg);
  mask-image: url(/assets/svg/nav_shop.svg);
}
main h1 .icon.works {
  -webkit-mask-image: url(/assets/svg/nav_works.svg);
  mask-image: url(/assets/svg/nav_works.svg);
}
main h1 .icon.blog {
  -webkit-mask-image: url(/assets/svg/nav_blog.svg);
  mask-image: url(/assets/svg/nav_blog.svg);
}
main h1 .icon.about {
  -webkit-mask-image: url(/assets/svg/nav_about.svg);
  mask-image: url(/assets/svg/nav_about.svg);
}
main h1 .icon.member {
  -webkit-mask-image: url(/assets/svg/nav_member.svg);
  mask-image: url(/assets/svg/nav_member.svg);
}
main h1 .icon.error {
  -webkit-mask-image: url(/assets/svg/nav_error.svg);
  mask-image: url(/assets/svg/nav_error.svg);
}
main h1 .icon.contact {
  -webkit-mask-image: url(/assets/svg/nav_contact.svg);
  mask-image: url(/assets/svg/nav_contact.svg);
}
main .container {
  width: calc(100% - 140px);
  margin-left: 60px;
  padding-bottom: 60px;
}
@media only screen and (max-width : 800px) {
  main .container {
    margin-left: 30px;
    width: calc(100% - 120px);
  }
}
@media only screen and (max-width : 500px) {
  main .container {
    margin-left: 20px;
    width: calc(100% - 40px);
  }
}
main .not_found {
  width: 100%;
  margin: 0 0 20px 0;
  background: url(/assets/img/404_dark.png) no-repeat 50% 100%;
  background-size: 110%;
  height: 40vw;
}
@media only screen and (max-width : 800px) {
  main .not_found {
    background-size: 150%;
    height: 55vw;
  }
}
@media only screen and (max-width : 500px) {
  main .not_found {
    background-size: 170%;
    height: 90vw;
  }
}
main .not_found h2 {
  text-align: center;
  margin: 80px auto 0 auto;
  font-family: "veneer-three", sans-serif;
  font-style: italic;
  text-transform: uppercase;
  font-size: 2em;
  color: light-dark(#FF3333, #FFCC33);
  font-weight: 400;
}
@media only screen and (max-width : 500px) {
  main .not_found h2 {
    font-size: 1.167em;
    margin-top: 20px;
  }
}
main .not_found p {
  text-align: center;
  margin: 0 auto 0 auto;
  width: 40vw;
  font-size: 1em;
  color: light-dark(#1a1a1a, #fff);
  font-weight: 400;
}
@media only screen and (max-width : 500px) {
  main .not_found p {
    font-size: 1em;
  }
}
main .not_found img {
  width: 100%;
  height: auto;
}
main .store {
  font-size: 1em;
  font-weight: 800;
}
main .store a {
  display: inline-block;
  color: light-dark(#fff, #1a1a1a);
  text-decoration: none;
  padding: 5px 15px;
  border-radius: 30px;
  background: light-dark(#FF3333, #FFCC33);
  transition: all 0.2s ease-in-out;
}
main .store a:hover {
  background: light-dark(#1a1a1a, #fff);
}
main .pending {
  background: url(/assets/svg/bg_diagonals_dark.svg), light-dark(#e5e5e5, #333);
  padding: 15px 20px 1px 20px;
  margin-bottom: 20px;
  border-radius: 15px;
}
main .pending svg {
  float: left;
  width: 75px;
  height: auto;
  margin-bottom: 50px;
}
main .pending h3 {
  font-size: 1em;
  font-weight: 800;
  margin-left: 90px;
}
main .pending p {
  font-size: 0.833em;
  font-weight: 400;
  color: light-dark(#7f7f7f, #999);
  margin-left: 90px;
}
main #shop_notice {
  background: light-dark(rgba(26, 26, 26, 0.3), rgba(238, 238, 238, 0.3));
  backdrop-filter: blur(15px);
  color: light-dark(#1a1a1a, #fff);
  font-weight: 600;
  font-size: 1em;
  font-family: "articulat-cf", "helvetica neue", helvetica, sans-serif;
  line-height: 1.5em;
  padding: 10px 20px;
  border-radius: 10px;
  margin-bottom: 30px;
  text-align: center;
}
@media only screen and (max-width : 500px) {
  main #shop_notice {
    font-size: 0.833em;
  }
}
main #shop_notice svg {
  width: 24px;
  margin-right: 5px;
  height: auto;
  display: inline-block;
  vertical-align: middle;
}
main #shop_notice svg path {
  fill: light-dark(#1a1a1a, #fff);
}
main #products {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  column-gap: 20px;
}
@media only screen and (max-width : 800px) {
  main #products {
    flex-direction: column;
  }
}
main #products #pitch {
  max-width: 50vw;
  min-width: 20vw;
  flex-grow: 1;
  padding: 20px 30px 5px 30px;
  border-radius: 10px;
  background: light-dark(rgba(26, 26, 26, 0.05), rgba(238, 238, 238, 0.05));
  backdrop-filter: blur(15px) saturate(130%);
}
@media only screen and (max-width : 800px) {
  main #products #pitch {
    max-width: none;
  }
}
main #products #pitch figure {
  margin: 0;
}
main #products #pitch img {
  width: calc(100% + 60px);
  margin: 0 -30px 20px -30px;
  padding: 0;
  display: block;
  height: auto;
}
main #products #pitch h2 {
  font-size: 1.167em;
  font-weight: 800;
  color: light-dark(#1a1a1a, #fff);
  margin-bottom: 0.7em;
}
main #products #pitch p {
  font-size: 1em;
  font-weight: 400;
  color: light-dark(#4c4c4c, #ccc);
  margin-bottom: 1.5em;
}
main #products #product-list {
  flex-grow: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
main #products #product-list li {
  margin: 0 0 40px 0;
  width: calc(50% - 10px);
}
@media only screen and (max-width : 500px) {
  main #products #product-list li {
    width: 100%;
  }
}
main #products #product-list li a {
  text-decoration: none;
  color: light-dark(rgba(26, 26, 26, 0.6), rgba(238, 238, 238, 0.6));
  display: block;
}
main #products #product-list li a span {
  display: inline-block;
  overflow: hidden;
  border-radius: 10px;
}
main #products #product-list li a img {
  width: 100%;
  height: auto;
  display: block;
  transition: all 1s ease-out;
  filter: saturate(90%);
}
main #products #product-list li a div {
  margin-top: 10px;
  width: 100%;
}
main #products #product-list li a p {
  line-height: 1em;
  font-size: 1em;
}
main #products #product-list li a h3 {
  font-family: "veneer-three", sans-serif;
  text-transform: uppercase;
  font-weight: 400;
  color: light-dark(#1a1a1a, #fff);
  font-size: 1.5em;
  font-style: italic;
  line-height: 1em;
}
main #products #product-list li a .category {
  color: light-dark(#E60000, #FFB319);
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.833em;
}
main #products #product-list li a:hover img {
  transform: scale(1.1);
  filter: saturate(100%);
}
main #product-detail .head {
  width: calc(100% - 140px);
  margin: 0 0 20px 60px;
}
@media only screen and (max-width : 800px) {
  main #product-detail .head {
    width: calc(100% - 110px);
    margin-left: 30px;
  }
}
@media only screen and (max-width : 500px) {
  main #product-detail .head {
    margin-left: 20px;
    width: calc(100% - 40px);
  }
}
main #product-detail .head h2 {
  font-family: "veneer-three", sans-serif;
  text-transform: uppercase;
  font-style: italic;
  font-weight: 400;
  color: light-dark(#1a1a1a, #fff);
  font-size: 1.833em;
  line-height: 1.1em;
}
main #product-detail .head .category {
  color: light-dark(#E60000, #FFB319);
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.833em;
  line-height: 1em;
}
main #product-detail .head .category a {
  text-decoration: none;
}
main #product-detail .head .desc {
  font-size: 1em;
  line-height: 1em;
  color: light-dark(#666, #b2b2b2);
}
main #product-detail .head .store {
  float: right;
  margin-top: 1.2em;
}
main #product-detail section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: calc(100% - 80px);
}
@media only screen and (max-width : 500px) {
  main #product-detail section {
    width: calc(100% - 40px);
    align-items: center;
    margin: 0 auto;
  }
}
main #product-detail section img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 20px;
}
main #product-detail .story {
  width: calc(50% - 10px);
}
@media only screen and (max-width : 500px) {
  main #product-detail .story {
    width: 100%;
  }
}
main #product-detail .story article {
  margin-left: 60px;
  padding: 20px 0 30px 0;
}
@media only screen and (max-width : 800px) {
  main #product-detail .story article {
    margin-left: 30px;
  }
}
@media only screen and (max-width : 500px) {
  main #product-detail .story article {
    margin-left: 0;
  }
}
main #product-detail .story article p {
  margin-bottom: 1.5em;
}
main #product-detail .story > img {
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
}
@media only screen and (max-width : 500px) {
  main #product-detail .story > img {
    border-radius: 15px;
  }
}
main #product-detail .media {
  width: calc(50% - 10px);
  text-align: right;
}
@media only screen and (max-width : 500px) {
  main #product-detail .media {
    width: 100%;
  }
}
main #product-detail .media ul {
  margin-bottom: 80px;
}
main #product-detail .media ul li img {
  display: block;
  border-radius: 15px;
}
main #work-list {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% + 30px);
}
@media only screen and (max-width : 500px) {
  main #work-list {
    width: calc(100% + 20px);
  }
}
main #work-list li {
  margin: 0 20px 20px 0;
  width: calc(33% - 20px);
  aspect-ratio: 1/1;
  position: relative;
  overflow: hidden;
  display: block;
  border-radius: 10px;
}
@media only screen and (max-width : 800px) {
  main #work-list li {
    width: calc(50% - 20px);
  }
}
@media only screen and (max-width : 500px) {
  main #work-list li {
    width: 100%;
  }
}
main #work-list li a img {
  width: 100%;
  height: auto;
  display: inline-block;
}
main #work-list li a {
  display: block;
}
main #work-list li a img {
  display: block;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  transition: all 1s ease-out;
  filter: saturate(90%);
}
main #work-list li a div {
  position: absolute;
  top: 15px;
  display: inline-block;
  padding: 10px 30px 10px 10px;
  margin-right: 20px;
  background: light-dark(rgba(238, 238, 238, 0.8), rgba(26, 26, 26, 0.8));
  backdrop-filter: blur(20px) brightness(110%) saturate(130%);
  mask-image: url(/assets/img/mask_angle.png), linear-gradient(to right, black, black);
  -webkit-mask-image: url(/assets/img/mask_angle.png), linear-gradient(to right, black, black);
  mask-repeat: no-repeat;
  mask-position: bottom right;
  mask-size: contain;
  mask-composite: exclude;
}
main #work-list li a div h3 {
  font-family: "articulat-cf", "helvetica neue", helvetica, sans-serif;
  font-size: 0.833em;
  font-weight: 800;
  color: light-dark(#1a1a1a, #fff);
  line-height: 1.1em;
}
main #work-list li a div .category {
  color: light-dark(#E60000, #FFB319);
  font-weight: 600;
  font-size: 0.667em;
  line-height: 1em;
  text-transform: uppercase;
}
main #work-list li a:hover img {
  transform: scale(1.1);
  filter: saturate(100%);
}
main #work-detail {
  padding-bottom: 40px;
}
main #work-detail .head {
  width: calc(100% - 140px);
  margin: 0 0 20px 60px;
}
@media only screen and (max-width : 800px) {
  main #work-detail .head {
    margin-left: 30px;
    width: calc(100% - 110px);
  }
}
@media only screen and (max-width : 500px) {
  main #work-detail .head {
    margin-left: 20px;
    width: calc(100% - 40px);
  }
}
main #work-detail .head h2 {
  font-family: "veneer-three", sans-serif;
  text-transform: uppercase;
  font-weight: 400;
  color: light-dark(#1a1a1a, #fff);
  font-size: 2em;
  line-height: 1.1em;
}
main #work-detail .head .category {
  color: light-dark(#E60000, #FFB319);
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.833em;
  line-height: 1em;
}
main #work-detail .head .category a {
  text-decoration: none;
}
main #work-detail section {
  width: calc(100% - 80px);
  display: flex;
}
@media only screen and (max-width : 800px) {
  main #work-detail section {
    flex-direction: column;
  }
}
@media only screen and (max-width : 500px) {
  main #work-detail section {
    width: calc(100% - 20px);
  }
}
main #work-detail section .works {
  margin: 0 0 20px 60px;
}
@media only screen and (max-width : 800px) {
  main #work-detail section .works {
    margin-left: 30px;
  }
}
@media only screen and (max-width : 500px) {
  main #work-detail section .works {
    margin-left: 20px;
  }
}
main #work-detail section .works > a img {
  width: 100%;
  min-width: 400px;
  height: auto;
  display: block;
  margin-bottom: 20px;
  border-radius: 15px;
}
main #work-detail section .works .media {
  width: 100%;
}
main #work-detail section .works .media ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
main #work-detail section .works .media ul li {
  width: calc(50% - 10px);
  height: auto;
  margin-bottom: 20px;
}
main #work-detail section .works .media ul li img {
  width: 100%;
  aspect-ratio: 1/1;
  display: block;
  border-radius: 15px;
}
main #work-detail section article {
  width: 600px;
  min-width: 200px;
  margin: 0 0 20px 40px;
}
@media only screen and (max-width : 800px) {
  main #work-detail section article {
    margin-left: 30px;
    display: flex;
    justify-content: space-between;
    width: calc(100% - 30px);
  }
}
@media only screen and (max-width : 500px) {
  main #work-detail section article {
    flex-direction: column;
  }
}
main #work-detail section article p {
  margin-bottom: 1.5em;
  font-size: 1em;
  line-height: 1.5em;
}
@media only screen and (max-width : 800px) {
  main #work-detail section article p {
    width: calc(50% - 10px);
  }
}
@media only screen and (max-width : 500px) {
  main #work-detail section article p {
    width: 100%;
  }
}
main #work-detail section article dl {
  background: url(/assets/svg/border_diagonals_dark.svg) repeat-x 0 0;
  padding: 40px 0 0 0;
  line-height: 1em;
}
@media only screen and (max-width : 800px) {
  main #work-detail section article dl {
    width: calc(50% - 10px);
    background: none;
    padding-top: 0;
  }
}
@media only screen and (max-width : 500px) {
  main #work-detail section article dl {
    width: 100%;
    background: url(/assets/svg/border_diagonals_dark.svg) repeat-x 0 0;
    padding: 40px 0 0 0;
  }
}
main #work-detail section article dl dt {
  text-transform: uppercase;
  font-weight: 800;
  font-size: 0.667em;
  color: light-dark(#E60000, #FFB319);
}
main #work-detail section article dl dd {
  margin-bottom: 1em;
  color: light-dark(#1a1a1a, #fff);
  font-size: 0.833em;
}
main .blog-title h2 {
  font-family: "veneer-three", sans-serif;
  font-weight: 400;
  font-style: italic;
  text-transform: capitalize;
  color: light-dark(#1a1a1a, #fff);
  font-size: 2.22em;
  line-height: 1.1em;
}
main .blog-title h2 a {
  text-decoration: none;
  color: light-dark(#1a1a1a, #fff);
}
main .blog-title .category {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.833em;
  line-height: 1em;
}
main .blog-title .category a {
  text-decoration: none;
}
main .blog-title .author {
  font-size: 1em;
  color: light-dark(#7f7f7f, #999);
  margin-bottom: 1em;
}
main .blog-title summary {
  font-size: 1.167em;
  line-height: 1.5em;
  margin-bottom: 1em;
  color: light-dark(#333, #e5e5e5);
}
main .blog-title .more {
  font-weight: 600;
  font-style: italic;
}
main .blog-title .more a {
  text-decoration: none;
}
main .blog-title .more svg {
  display: inline-block;
  vertical-align: middle;
  height: 1em;
  margin-bottom: 0.2em;
}
main .blog-title .more svg path {
  fill: light-dark(#E60000, #FFB319);
}
main .blog-title .more:hover svg path {
  fill: light-dark(#FF3333, #FFCC33);
}
main .blog-list {
  width: 100%;
  max-width: 900px;
}
main .blog-list li {
  clear: both;
  margin-bottom: 40px;
  background: url(/assets/svg/border_diagonals_dark.svg) repeat-x 0 0;
  padding-top: 40px;
}
main .blog-list li a.image {
  float: left;
  display: inline-block;
  overflow: hidden;
  border-radius: 10px;
}
@media only screen and (max-width : 500px) {
  main .blog-list li a.image {
    float: none;
    display: block;
    margin-bottom: 20px;
  }
}
main .blog-list li a.image img {
  display: block;
  width: 200px;
  transition: all 1s ease-out;
  filter: saturate(90%);
}
@media only screen and (max-width : 500px) {
  main .blog-list li a.image img {
    width: 100%;
  }
}
main .blog-list li a.image:hover img {
  transform: scale(1.1);
  filter: saturate(100%);
}
main .blog-list li div.blog-title {
  margin-left: 220px;
}
@media only screen and (max-width : 500px) {
  main .blog-list li div.blog-title {
    margin-left: 0;
  }
}
main .blog-detail {
  width: calc(100% - 80px);
  margin-top: 20px;
}
@media only screen and (max-width : 500px) {
  main .blog-detail {
    width: calc(100% - 20px);
  }
}
main .blog-detail .header-image {
  float: left;
}
@media only screen and (max-width : 500px) {
  main .blog-detail .header-image {
    float: none;
    margin: 0 0 20px 20px;
  }
}
main .blog-detail .header-image img {
  width: 300px;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
}
@media only screen and (max-width : 500px) {
  main .blog-detail .header-image img {
    width: 100%;
    border-radius: 15px;
  }
}
main .blog-detail .blog-title {
  margin-left: 320px;
  margin-bottom: 20px;
}
@media only screen and (max-width : 500px) {
  main .blog-detail .blog-title {
    margin-left: 20px;
  }
}
main .blog-detail .blog-title .intro {
  color: light-dark(#1a1a1a, #fff);
  font-size: 1.167em;
  line-height: 1.5em;
  max-width: 900px;
}
main .blog-detail article {
  background: url(/assets/svg/border_diagonals_dark.svg) repeat-x 0 0;
  padding-top: 40px;
  margin-left: 320px;
  margin-bottom: 80px;
  max-width: 900px;
  color: light-dark(#4c4c4c, #ccc);
}
@media only screen and (max-width : 500px) {
  main .blog-detail article {
    margin-left: 20px;
  }
}
main .blog-detail article h3 {
  font-size: 1.5em;
  font-weight: 800;
  color: light-dark(#FF3333, #FFCC33);
  margin-bottom: 1em;
}
main .blog-detail article h4 {
  font-size: 1.33em;
  font-weight: 600;
  color: light-dark(#1a1a1a, #fff);
  margin-bottom: 1em;
}
main .blog-detail article p {
  font-size: 1.167em;
  line-height: 1.5em;
  margin-bottom: 1em;
}
main .blog-detail article figure {
  margin: 0 0 20px 0;
  padding: 0;
}
main .blog-detail article figure img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 15px;
}
main .blog-detail article figure figcaption {
  text-align: center;
  font-style: italic;
  padding: 10px 0 0 0;
  font-size: 0.833em;
  font-weight: 600;
  color: light-dark(#999, #7f7f7f);
}
main .blog-detail article #action {
  background: light-dark(rgba(26, 26, 26, 0.1), rgba(238, 238, 238, 0.1));
  border-radius: 15px;
  margin: 50px 0 20px 0;
  padding: 15px;
  font-size: 0.833em;
}
main .blog-detail article #action p {
  margin-bottom: 0;
}
main .blog-detail article #read-more {
  font-size: 1em;
  font-weight: 600;
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
  width: 100%;
}
main .blog-detail article #read-more li {
  margin: 0;
  padding: 0;
  flex-grow: 1;
}
main .blog-detail article #read-more li a img {
  border-radius: 10px;
  vertical-align: middle;
  margin-bottom: 10px;
}
main .blog-detail article #read-more li a span {
  display: block;
}
main .blog-detail article #read-more li.prev {
  text-align: left;
}
main .blog-detail article #read-more li.next {
  text-align: right;
}
main .blog-detail article strong {
  color: light-dark(#1a1a1a, #fff);
}
main .blog-detail article em {
  color: light-dark(#1a1a1a, #fff);
}
main .blog-detail article ul {
  font-size: 1em;
  line-height: 1.5em;
  list-style-type: disc;
  list-style-position: inside;
  margin-bottom: 1em;
}
main .blog-detail article ul li {
  margin-left: 20px;
}
main .blog-detail article ul li ul {
  margin: 0;
}
main .blog-detail article ol {
  font-size: 1em;
  line-height: 1.5em;
  list-style-type: decimal;
  list-style-position: inside;
  margin-bottom: 1em;
}
main .blog-detail article ol li {
  margin-left: 20px;
}
main .blog-detail article ol li ol {
  margin: 0;
}
main .blog-detail article code {
  font-size: 0.833em;
  line-height: 1.5em;
  display: block;
  background: light-dark(#e5e5e5, #333);
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 1em;
  font-weight: 400;
}
main .member article h3 {
  font-size: 1.33em;
  font-weight: 600;
  color: light-dark(#1a1a1a, #fff);
  margin-bottom: 1em;
}
main .member article p {
  font-size: 1.167em;
  line-height: 1.5em;
  margin-bottom: 1em;
  color: light-dark(#666, #b2b2b2);
}
main .member article #gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}
main .member article #gallery > li {
  width: 23%;
  margin-bottom: 20px;
}
main .member article #gallery > li a.preview {
  display: block;
}
main .member article #gallery > li a.preview img {
  display: block;
  width: 100%;
  background: gray;
  height: auto;
}
main .member article #gallery > li ul {
  margin-top: 10px;
}
main .member article #gallery > li ul li a {
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.833em;
  font-weight: 600;
}
main .about section {
  display: flex;
}
@media only screen and (max-width : 800px) {
  main .about section {
    flex-direction: column;
  }
}
main .about section article {
  margin-right: 40px;
  max-width: 900px;
}
@media only screen and (max-width : 800px) {
  main .about section article {
    margin-right: 0;
  }
}
main .about section article figure {
  margin: 0 0 20px 0;
  padding: 0;
}
main .about section article figure img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 15px;
}
main .about section article figure figcaption {
  text-align: center;
  font-style: italic;
  padding: 10px 0 0 0;
  font-size: 0.833em;
  font-weight: 600;
  color: light-dark(#999, #7f7f7f);
}
main .about section article h2 {
  font-family: "veneer-three", sans-serif;
  font-size: 2em;
  font-style: italic;
  font-weight: 400;
  color: light-dark(#1a1a1a, #fff);
  margin-bottom: 0.5em;
  background: url(/assets/svg/border_diagonals_dark.svg) repeat-x 0 0;
  padding-top: 30px;
}
main .about section article h3 {
  font-family: "articulat-cf", "helvetica neue", helvetica, sans-serif;
  font-size: 1.167em;
  font-weight: 800;
  color: light-dark(#E60000, #FFB319);
  margin-bottom: 0.5em;
}
main .about section article p {
  color: light-dark(rgba(26, 26, 26, 0.8), rgba(238, 238, 238, 0.8));
  margin-bottom: 1.5em;
}
main .about section article .media {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
main .about section article .media li {
  width: 30%;
  margin-bottom: 20px;
}
@media only screen and (max-width : 500px) {
  main .about section article .media li {
    width: 48%;
  }
}
main .about section article .media li a img {
  display: block;
  width: 100%;
  border-radius: 10px;
}
main .about section aside {
  max-width: 400px;
  min-width: 200px;
}
@media only screen and (max-width : 800px) {
  main .about section aside {
    max-width: 100%;
  }
}
main .about section aside h2 {
  font-family: "veneer-three", sans-serif;
  font-weight: 400;
  font-style: italic;
  color: light-dark(#E60000, #FFB319);
  text-transform: uppercase;
  font-size: 1.167em;
  margin-bottom: 1.2em;
  background: url(/assets/svg/border_diagonals_dark.svg) repeat-x 0 0;
  padding-top: 40px;
}
main .about section aside h3 {
  font-family: "articulat-cf", "helvetica neue", helvetica, sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.833em;
  color: light-dark(rgba(26, 26, 26, 0.7), rgba(238, 238, 238, 0.7));
  margin-bottom: 5px;
  padding-bottom: 5px;
  border-bottom: 0.5px solid light-dark(rgba(26, 26, 26, 0.5), rgba(238, 238, 238, 0.5));
}
main .about section aside dl {
  margin-bottom: 20px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  line-height: 1.2em;
}
main .about section aside dl dt {
  padding-top: 5px;
  text-align: right;
  width: calc(40% - 10px);
  padding-right: 10px;
  font-weight: 800;
  color: light-dark(#1a1a1a, #fff);
  font-size: 0.722em;
  text-transform: uppercase;
  margin-bottom: 5px;
}
main .about section aside dl dd {
  padding-top: 5px;
  width: 60%;
  font-size: 0.778em;
  color: light-dark(rgba(26, 26, 26, 0.8), rgba(238, 238, 238, 0.8));
  margin-bottom: 5px;
}
main .filter {
  padding-bottom: 20px;
}
main .filter li {
  display: inline-block;
  font-weight: 600;
  text-transform: uppercase;
  margin-right: 15px;
  font-size: 0.833em;
  color: light-dark(#1a1a1a, #fff);
}
main .filter li a {
  text-decoration: none;
  color: light-dark(#E60000, #FFB319);
}
main .filter li a:hover {
  color: light-dark(#FF3333, #FFCC33);
}
main .filter li.selected {
  font-weight: 800;
}
main .pagination {
  max-width: 400px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-around;
  background: light-dark(rgba(26, 26, 26, 0.1), rgba(238, 238, 238, 0.1));
  backdrop-filter: blur(20px) brightness(110%) saturate(150%);
  padding: 10px;
  border-radius: 30px;
  text-transform: uppercase;
  font-size: 0.833em;
  font-weight: 600;
}
main .pagination li {
  width: 33.3%;
  text-align: center;
  color: light-dark(#b2b2b2, #666);
}
main .pagination li a {
  text-decoration: none;
  font-weight: 800;
}
main .pagination .count {
  color: light-dark(#1a1a1a, #fff);
  font-weight: 400;
}
main .more-items {
  background: light-dark(rgba(26, 26, 26, 0.1), rgba(238, 238, 238, 0.1));
  backdrop-filter: blur(20px) brightness(110%) saturate(150%);
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  width: calc(100% - 140px);
  margin-left: 60px;
}
@media only screen and (max-width : 800px) {
  main .more-items {
    margin-left: 30px;
    width: calc(100% - 110px);
  }
}
@media only screen and (max-width : 500px) {
  main .more-items {
    margin-left: 20px;
    width: calc(100% - 40px);
  }
}
main .more-items li {
  font-weight: 600;
  font-size: 0.833em;
}
main .more-items li a {
  display: block;
  text-decoration: none;
  transition: all 0.1s ease-in-out;
  padding: 10px;
}
@media only screen and (max-width : 500px) {
  main .more-items li a span {
    display: none;
  }
}
main .more-items li a img {
  display: inline-block;
  width: 50px;
  height: auto;
  border-radius: 5px;
  vertical-align: middle;
}
main .more-items li a:hover {
  background: light-dark(rgba(26, 26, 26, 0.1), rgba(238, 238, 238, 0.1));
  color: light-dark(#FF3333, #FFCC33);
}
main .more-items .next a {
  padding-right: 15px;
  border-radius: 5px;
}
@media only screen and (max-width : 500px) {
  main .more-items .next a {
    padding-right: 0;
  }
}
main .more-items .next a img {
  margin-right: 10px;
}
main .more-items .prev a {
  padding-left: 15px;
  border-radius: 5px;
}
@media only screen and (max-width : 500px) {
  main .more-items .prev a {
    padding-left: 0;
  }
}
main .more-items .prev a img {
  margin-left: 10px;
}

.light .not_found {
  background-image: url(/assets/img/404_light.png);
}

.light .pending {
  background: url(/assets/svg/bg_diagonals_light.svg), light-dark(#e5e5e5, #333);
}

.light .blog-list li,
.light .blog-detail article,
.light .about aside h2,
.light .about section article h2,
.light #work-detail article dl {
  background-image: url(/assets/svg/border_diagonals_light.svg);
}

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