@charset "UTF-8";
* {
  box-sizing: border-box;
  position: relative;
}

html {
  margin: 0;
  padding: 0;
  font-size: 100%;
  background-color: #000;
}

body {
  margin: 0;
  padding: 0;
}

.app {
  min-height: 100%;
  font-size: 18px;
  font-family: "Work Sans", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
          text-size-adjust: none;
  overflow: hidden;
}
.theme-light .app {
  color: rgb(0, 0, 0);
  background-color: rgb(255, 255, 255);
}
.theme-dark .app {
  color: rgb(255, 255, 255);
  background-color: rgb(0, 0, 0);
}
.app h1, .app h2 {
  font-weight: 600;
  line-height: 1em;
}
.app h1 {
  margin: 0;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  font-size: 4em;
}
.app p {
  line-height: 1.33em;
}
.app a {
  text-decoration: none;
}
.theme-light .app a {
  color: rgb(0, 0, 0);
}
.theme-dark .app a {
  color: rgb(255, 255, 255);
}
.app a:hover {
  text-decoration: underline;
}
.app ul {
  margin-left: 0;
  margin-right: 0;
  padding: 0;
  list-style-type: none;
}
.app figure {
  margin: 0;
}
.app figure figcaption {
  display: none;
  font-size: 0.88em;
  margin-top: 10px;
}
.app:not(.menu-open) header.collapsed {
  height: 7vh;
  padding: 1vh 0;
}
.app header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 20vh;
  padding: 5vh 0;
  transition: all 0.4s ease-out 0.1s;
  z-index: 1000;
}
.app header::before {
  content: "";
  display: block;
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  border-bottom: 1px solid transparent;
  transition: top 0.2s ease-out 0s, background-color 0s linear 0s, border-bottom-color 0s linear 0s;
  z-index: -1;
}
.app header.collapsed {
  transition: all 0.2s ease 0s;
}
.app header.collapsed::before {
  top: 0;
  transition: all 0.2s ease-out 0s, background 0s ease 0s;
}
.theme-light .app header.collapsed::before {
  background-color: rgb(255, 255, 255);
  border-bottom-color: rgb(0, 0, 0);
}
.theme-dark .app header.collapsed::before {
  background-color: rgb(0, 0, 0);
  border-bottom-color: rgb(255, 255, 255);
}
.app header .scroll-to-top {
  display: none;
}
.app:not(.menu-open) header.collapsed .scroll-to-top {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
@media screen and (orientation: landscape) and (max-width: 1024px) {
  .app header {
    height: 30vh;
  }
  .app:not(.menu-open) header.collapsed {
    height: 10vh;
    padding: 1vh 0;
  }
}
.app.menu-open header {
  transition: all 0.2s ease 0s;
}
.app.menu-open header::before {
  top: 0;
  transition: all 0.2s ease 0s;
}
.theme-light .app.menu-open header::before {
  background-color: rgb(255, 255, 255);
  border-bottom-color: rgb(0, 0, 0);
}
.theme-dark .app.menu-open header::before {
  background-color: rgb(0, 0, 0);
  border-bottom-color: rgb(255, 255, 255);
}
@keyframes ellipsisB {
  0% {
    left: 0;
  }
  50% {
    left: 0.4em;
  }
  100% {
    left: 0;
  }
}
@keyframes ellipsisA {
  0% {
    left: 0;
  }
  50% {
    left: 0.8em;
  }
  100% {
    left: 0;
  }
}
@keyframes ellipsisText {
  0% {
    opacity: 100%;
  }
  20% {
    opacity: 0%;
  }
  80% {
    opacity: 0%;
  }
  100% {
    opacity: 100%;
  }
}
.app .ellipsis {
  aspect-ratio: 1/1;
  display: block;
  height: 50px;
  font-size: 40px;
  font-weight: 500;
  font-family: "Work Sans", sans-serif;
  font-optical-sizing: auto;
  text-decoration: none !important;
  line-height: 50px;
  transition: all 0.2s ease;
}
.theme-light .app .ellipsis {
  color: rgb(0, 0, 0);
}
.theme-dark .app .ellipsis {
  color: rgb(255, 255, 255);
}
.touch .app .ellipsis {
  transition: none;
}
.app .ellipsis span {
  position: absolute;
  left: 20px;
  font-size: 12px;
  line-height: 50px;
  transition: opacity 0.2s linear;
  text-decoration: none !important;
}
.app .ellipsis::before, .app .ellipsis::after {
  content: "•";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  transition: left 0.3s ease;
}
.touch .app .ellipsis::before, .touch .app .ellipsis::after {
  transition: left 0.5s ease;
}
.notouch .app .ellipsis:hover span, .app .ellipsis:active span, .app .ellipsis:focus span {
  opacity: 0;
}
.notouch .app .ellipsis:hover::before, .app .ellipsis:active::before, .app .ellipsis:focus::before {
  left: 0.4em;
}
.notouch .app .ellipsis:hover::after, .app .ellipsis:active::after, .app .ellipsis:focus::after {
  left: 0.8em;
}
body:not(.home) .app.menu-open #rootLink {
  display: block;
}
.app #rootLink {
  display: none;
  position: absolute;
  top: calc(50% - 25px);
  left: 50px;
  cursor: pointer;
}
.app #rootLink span {
  z-index: -1;
}
.notouch .app #rootLink:hover {
  cursor: pointer;
}
.app #menuToggle {
  display: block;
  aspect-ratio: 1/1;
  height: 100%;
  margin: 0 auto;
  cursor: pointer;
}
.theme-light .app #aaa-monogram.active {
  color: rgba(160, 0, 0, 0.8);
  filter: drop-shadow(0 0 2vw rgb(255, 255, 255));
  transition: filter 0s;
}
@media screen and (min-width: 768px) {
  .theme-light .app #aaa-monogram.active {
    filter: drop-shadow(0 0 3vw rgb(255, 255, 255));
  }
}
@media screen and (min-width: 1024px) {
  .theme-light .app #aaa-monogram.active {
    filter: drop-shadow(0 0 4vw rgb(255, 255, 255));
  }
}
.theme-dark .app #aaa-monogram.active {
  color: rgba(255, 255, 255, 0.9);
  filter: drop-shadow(0 0 2vw rgb(255, 255, 255));
  transition: filter 0s;
}
@media screen and (min-width: 768px) {
  .theme-dark .app #aaa-monogram.active {
    filter: drop-shadow(0 0 3vw rgb(255, 255, 255));
  }
}
@media screen and (min-width: 1024px) {
  .theme-dark .app #aaa-monogram.active {
    filter: drop-shadow(0 0 4vw rgb(255, 255, 255));
  }
}
.menu-open .app #aaa-monogram.active {
  filter: none;
}
.touch body:not(.home) .app #aaa-monogram.active {
  filter: none !important;
}
.touch body:not(.home) .app #aaa-monogram.active .initial {
  fill: transparent !important;
}
.app #aaa-monogram svg {
  width: 100%;
  height: 100%;
  transition: filter 0.5s;
}
@keyframes pulse0 {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  75% {
    opacity: 1;
  }
  95% {
    opacity: 0.8;
  }
  100% {
    opacity: 1;
  }
}
@keyframes pulse1 {
  0% {
    opacity: 0.9;
  }
  50% {
    opacity: 0.9;
  }
  75% {
    opacity: 0.66;
  }
  95% {
    opacity: 0.05;
  }
  100% {
    opacity: 0.9;
  }
}
@keyframes pulse2 {
  0% {
    opacity: 0.9;
  }
  50% {
    opacity: 0.9;
  }
  75% {
    opacity: 0.33;
  }
  95% {
    opacity: 0.05;
  }
  100% {
    opacity: 0.9;
  }
}
.app .initial {
  will-change: opacity;
  fill: transparent;
  stroke-width: 1.25vw;
  transition: opacity 0.2s linear, fill 0.2s linear;
}
.theme-light .app .initial {
  stroke: rgb(0, 0, 0);
}
.theme-dark .app .initial {
  stroke: rgb(255, 255, 255);
}
@media screen and (min-width: 768px) {
  .app .initial {
    stroke-width: 0.75vw;
  }
}
@media screen and (min-width: 1024px) {
  .app .initial {
    stroke-width: 0.5vw;
  }
}
@media screen and (min-width: 2048px) {
  .app .initial {
    stroke-width: 0.25vw;
  }
}
.app header.collapsed .initial, .app.menu-open .initial {
  animation: none !important;
  fill: transparent !important;
}
.notouch .app #aaa-monogram:hover .initial {
  transition: opacity 0.4s linear, fill 4s linear;
}
.theme-light .notouch .app #aaa-monogram:hover .initial {
  fill: rgba(160, 0, 0, 0.8) !important;
}
.theme-dark .notouch .app #aaa-monogram:hover .initial {
  fill: rgba(255, 255, 255, 0.9) !important;
}
.notouch .app.menu-open #aaa-monogram:hover .initial {
  fill: transparent !important;
}
.app .animate .a-0 {
  animation: pulse0 8s ease-out 0s infinite forwards;
}
.app .animate .a-1 {
  animation: pulse1 8s ease-out 0.2s infinite forwards;
}
.app .animate .a-2 {
  animation: pulse2 8s ease-out 0.4s infinite forwards;
}
.app.menu-open #themeToggle {
  display: block;
}
.app #themeToggle {
  display: none;
  position: absolute;
  top: calc(50% - 25px);
  right: 50px;
  cursor: pointer;
}
.app #themeToggle svg {
  width: 50px;
}
.app #themeToggle svg .lens {
  fill: transparent;
  transition: fill 0.2s linear;
}
.app #themeToggle svg .frame {
  fill: rgb(255, 255, 255);
}
.app #themeToggle:hover svg .lens {
  fill: rgba(255, 255, 255, 0.8);
  transition: fill 0.8s linear;
}
@media screen and (min-width: 768px) {
  .app #themeToggle {
    top: calc(50% - 35px);
  }
  .app #themeToggle svg {
    width: 70px;
  }
}
.app.menu-open nav {
  top: 0;
  transition: top 0.4s ease-out;
}
.app.menu-open nav ul {
  opacity: 1;
  transition: 0.5s opacity 0.2s linear, 0.4s background-color 0.4s linear;
}
.theme-light .app.menu-open nav ul {
  background-color: rgba(255, 255, 255, 0.5);
}
.theme-dark .app.menu-open nav ul {
  background-color: rgba(0, 0, 0, 0.3);
}
.app nav {
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  padding-top: 20vh;
  z-index: 900;
  transition: top 0.5s ease-in;
}
.app nav ul {
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  transition: 0.2s opacity 0s linear;
  display: flex;
  flex-direction: column;
  background-color: transparent;
}
.app nav ul li {
  margin: auto;
  text-align: center;
  font-size: 10vw;
  font-weight: 300;
  display: flex;
  justify-content: center;
  align-items: center;
}
.theme-light .app nav ul li {
  color: rgb(0, 0, 0);
}
.theme-dark .app nav ul li {
  color: rgb(255, 255, 255);
}
.app nav ul li a {
  padding: 2vw;
  transition: all 0.3s ease;
}
.theme-light .app nav ul li a {
  color: rgb(0, 0, 0);
  text-shadow: 0 0 0.5em rgba(255, 255, 255, 0.8);
}
.theme-dark .app nav ul li a {
  color: rgb(255, 255, 255);
  text-shadow: 0 0 0.5em rgba(0, 0, 0, 0.8);
}
.app nav ul li a::before {
  opacity: 0;
}
.app nav ul li a:hover {
  font-size: 12vw;
  text-decoration: none;
}
.app nav ul li a.active::before {
  content: "•";
  position: absolute;
  display: block;
  left: -0.3em;
  color: rgb(160, 0, 0);
  font-size: 1.5em;
  line-height: 0.9em;
  opacity: 1;
}
@media screen and (min-width: 1024px) {
  .app nav ul li {
    font-size: 5vw;
  }
  .app nav ul li a:hover {
    font-size: 7vw;
  }
}
@media screen and (orientation: landscape) {
  .app nav ul {
    flex-direction: row;
  }
  .app nav ul li {
    height: 100%;
  }
}
@media screen and (orientation: landscape) and (max-width: 1024px) {
  .app nav ul li {
    height: 100%;
    font-size: 4vw;
  }
  .app nav ul li a:hover {
    font-size: 8vw;
  }
}
@keyframes bgzoom {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.5);
  }
  100% {
    transform: scale(1);
  }
}
.app #bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 60vh;
  background-size: cover;
  background-position: center;
  transform-origin: center;
  transition: filter 0.4s ease 0.2s, transform 0.4s ease-out 0s;
  transform: scale(1.75);
  overflow: hidden;
  will-change: transform;
  z-index: -1;
}
.app #bg::before {
  content: "";
  display: block;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(290deg, rgb(14, 28, 54), rgb(160, 0, 0));
  mix-blend-mode: darken;
}
.theme-light .app #bg::before {
  background: linear-gradient(290deg, rgb(120, 205, 215), rgb(160, 0, 0));
  mix-blend-mode: screen;
}
.theme-light .app #bg::after {
  content: "";
  display: block;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(250, 250, 250, 0.4);
}
.home .app #bg {
  background-image: url(https://imagedelivery.net/hN7COo1gC0VpB-JN0YHCpw/fa8156c2-e416-4488-bfec-e8059cfc8800/aaaSiteBg);
  height: 100vh;
  transform-origin: 44% 63%;
  background-position: bottom center;
  animation: bgzoom 80s ease-in-out 0s 1 alternate;
  transform: scale(1);
}
.home.theme-light .app #bg {
  filter: contrast(1.5);
}
.home.theme-light .app #bg::before {
  background: linear-gradient(290deg, rgb(120, 205, 215), rgb(160, 0, 0));
}
.home.theme-light .app #bg::after {
  display: none;
}
.work .app #bg {
  background-image: url(https://imagedelivery.net/hN7COo1gC0VpB-JN0YHCpw/27117968-200f-4efa-e8ce-42df986d4800/aaaSiteBg);
}
.play .app #bg {
  background-image: url(https://imagedelivery.net/hN7COo1gC0VpB-JN0YHCpw/c0ef5839-1d62-407a-2b40-5db04c687d00/aaaSiteBg);
}
.about .app #bg {
  background-image: url(https://imagedelivery.net/hN7COo1gC0VpB-JN0YHCpw/990ff03f-3558-489a-302d-f9858bf35500/aaaSiteBg);
}
.app.menu-open #bg {
  filter: blur(40px);
}
@keyframes txBubble {
  0% {
    transform: rotateX(-15deg) rotateY(15deg) rotateZ(-15deg) translateX(0) translateY(0);
  }
  50% {
    transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg) translateX(5vw) translateY(5vh);
  }
  100% {
    transform: rotateX(-15deg) rotateY(15deg) rotateZ(-15deg) translateX(0) translateY(0);
  }
}
.app #txBubble {
  display: none;
  position: absolute;
  top: 50%;
  left: 40%;
  opacity: 0;
  transition: opacity 0.5s linear 1s;
}
.app #txBubble h1 {
  font-size: 1.5em;
  line-height: 1.2em;
  text-wrap: balance;
}
.home .app #txBubble {
  display: block;
  opacity: 1;
  animation: txBubble 80s ease-in-out 0s infinite alternate;
}
.app.menu-open main {
  filter: blur(15px);
}
.app main {
  min-height: 100vh;
  padding-top: 40vh;
  transition: filter 0.2s ease-in 0.1s;
  z-index: 100;
}
.home .app main {
  padding-top: 0;
}
.theme-light.home .app main::before {
  content: "";
  display: block;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, rgb(255, 255, 255), transparent 60%);
}
body:not(.home) .app main::before {
  content: "";
  display: block;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 25vh;
  z-index: 0;
}
.theme-light body:not(.home) .app main::before {
  background-color: rgb(255, 255, 255);
}
.theme-dark body:not(.home) .app main::before {
  background-color: rgb(0, 0, 0);
}
.app main section {
  max-width: 1300px;
  min-height: 60vh;
  margin: 0 auto;
  padding: 0 30px 10vw 30px;
  z-index: 10;
}
.app main section.bg-fill::before, .app main section.bg-fill .heading::before {
  content: "";
  position: absolute;
  top: 10vh;
  left: calc(50% - 50vw);
  width: 100vw;
  height: calc(100% - 10vh);
}
.theme-light .app main section.bg-fill::before, .theme-light .app main section.bg-fill .heading::before {
  background-color: rgb(255, 255, 255);
}
.theme-dark .app main section.bg-fill::before, .theme-dark .app main section.bg-fill .heading::before {
  background-color: rgb(0, 0, 0);
}
.app main section.bg-fill .heading {
  letter-spacing: -0.025em;
}
.app main section.bg-fill .heading p {
  font-weight: 500;
}
.app main section.bg-fill .heading::before {
  top: auto;
  bottom: calc(100% - 10vh);
  height: 30vh;
}
.theme-light .app main section.bg-fill .heading::before {
  background: linear-gradient(0deg, rgb(255, 255, 255), transparent);
}
.theme-dark .app main section.bg-fill .heading::before {
  background: linear-gradient(0deg, rgb(0, 0, 0), transparent);
}
.app main section.bg-fill .heading + p {
  max-width: 820px;
}
.app main section#home {
  height: 100vh;
  margin-top: 0;
}
.app main section#home a {
  display: block;
  width: 100%;
  height: 50%;
  margin-top: 40vh;
}
.app main section img, .app main section video {
  opacity: 0;
  transition: opacity 0.5s linear;
}
.app main section.active img, .app main section.active video {
  opacity: 1;
}
@media screen and (min-width: 769px) {
  .app main section {
    padding: 0 50px 10vw 50px;
  }
}
.app main footer {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 30px;
  font-size: 0.8em;
  z-index: 10;
}
.theme-light .app main footer {
  background-color: rgb(255, 255, 255);
}
.theme-dark .app main footer {
  background-color: rgb(0, 0, 0);
}
.app main footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: calc(50% - 50vw);
  width: 100vw;
  height: 100%;
}
.theme-light .app main footer::before {
  background-color: rgb(255, 255, 255);
  border-top: 1px solid rgb(0, 0, 0);
}
.theme-dark .app main footer::before {
  background-color: rgb(0, 0, 0);
  border-top: 1px solid rgb(255, 255, 255);
}
.app main footer ul {
  margin: 0;
  padding: 30px 0;
}
.app main footer ul li:last-child:not(li:first-child) {
  padding-top: 30px;
}
@media screen and (min-width: 640px) {
  .app main footer ul {
    display: flex;
    font-size: 1em;
  }
  .app main footer ul li {
    flex-grow: 1;
  }
  .app main footer ul li:last-child:not(li:first-child) {
    text-align: right;
    padding-top: 0 !important;
    flex-grow: 1;
  }
}
.app .headshot {
  width: calc(50% - 10px);
  max-width: 200px;
  margin: 0 15px 0 0;
  float: left;
}
.theme-light .app .gallery {
  background-color: rgb(255, 255, 255);
}
.theme-dark .app .gallery {
  background-color: rgb(0, 0, 0);
}
.app .gallery > li {
  margin: 150px 0;
  padding-top: 100px;
  transition: transform 0.4s ease, padding 0.5s ease-out;
  transform: scale(0.97);
}
.app .gallery > li.active {
  padding-top: 0;
  transform: scale(1);
}
.app .gallery > li.expanded .details {
  height: unset;
}
.app .scroll-controls {
  margin: 0 auto;
}
.app .scroll-controls a {
  display: inline-block;
  opacity: 0;
  margin: 0;
  cursor: default;
  transition: 0.2s opacity linear;
}
.app .scroll-controls a.visible {
  cursor: pointer;
  opacity: 1;
  transition: 0s opacity linear;
}
.app .scroll-controls a.next {
  position: absolute;
  top: 0;
  right: 0;
  transform: rotateY(180deg);
}
.app .scroll-controls a.next span {
  transform: rotateY(180deg);
}
.app .media ul {
  display: flex;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.app .media ul li {
  min-width: 100%;
  overflow: hidden;
  scroll-snap-align: start;
}
.app .media img, .app .media video {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0;
  transition: opacity 0.2s linear 0.3s;
}
.theme-light .app .media img, .theme-light .app .media video {
  border: 1px solid rgb(0, 0, 0);
}
.theme-dark .app .media img, .theme-dark .app .media video {
  border: 1px solid rgb(255, 255, 255);
}
.app .copy h2 + p {
  -moz-column-span: all;
       column-span: all;
  margin-top: -0.8em;
}
.app .copy .more-link {
  display: block;
  width: 50px;
  margin-top: -0.4em;
  cursor: pointer;
}
.app .copy .details {
  height: 0;
  overflow: hidden;
}
.app .copy .details p:first-child {
  margin-top: 0;
}
@media screen and (min-width: 880px) {
  .app .copy .details {
    -moz-columns: 2;
         columns: 2;
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
  .app .copy .details p {
    text-align: justify;
  }
}
@media screen and (min-width: 880px) {
  .app .gallery li.expanded .copy .more-link {
    margin-top: 0;
  }
}
@media screen and (orientation: landscape) and (max-height: 768px) {
  .app .gallery > li {
    display: flex;
  }
  .app .media {
    width: 55%;
  }
  .app .expanded .media {
    width: 25%;
  }
  .app .copy {
    width: 45%;
    padding: 0 30px;
    flex-grow: 1;
  }
  .app .copy h2 {
    margin-top: 0;
  }
  .app .copy .details {
    -moz-columns: 1;
         columns: 1;
    -moz-column-gap: 0;
         column-gap: 0;
  }
  .app .copy .details p {
    text-align: left;
  }
  .app .gallery li.expanded .copy {
    width: 75%;
  }
  .app .gallery li.expanded .copy .more-link {
    margin-top: -0.5em;
  }
  .app li.scrolling-media .copy {
    margin-top: 50px;
  }
}
.app #madeinsf .sf {
  color: transparent;
  background-repeat: no-repeat;
  background-size: auto 100%;
}

.theme-light .app #themeToggle svg .frame {
  fill: rgb(0, 0, 0);
}

.theme-light .app #themeToggle:hover svg .lens {
  fill: rgba(0, 0, 0, 0.5);
}

.theme-light .app main::before {
  background-color: rgb(255, 255, 255);
}

.theme-light #madeinsf .sf {
  background-image: url(https://assets.aaronadiego.com/sf-k.svg);
}

.theme-dark #madeinsf .sf {
  background-image: url(https://assets.aaronadiego.com/sf-w.svg);
}

.notouch .theme-light .app #aaa-monogram:hover .initial {
  fill: rgb(160, 0, 0) !important;
}

.notouch .theme-dark .app #aaa-monogram:hover .initial {
  fill: rgba(255, 255, 255, 0.9) !important;
}

.notouch .theme-light .app.menu-open #aaa-monogram:hover, .notouch .theme-dark .app.menu-open #aaa-monogram:hover {
  filter: none !important;
}

.notouch .theme-light .app.menu-open #aaa-monogram:hover .initial, .notouch .theme-dark .app.menu-open #aaa-monogram:hover .initial {
  fill: transparent !important;
}/*# sourceMappingURL=main.css.map */