@charset "UTF-8";
:root {
  --emphase: #C2414F;
  --sidebar-background: #3B8B8C;
  --sidebar-text: #f2f1ef;
  --img-brightness: 0.85;
  --page-bg1: rgba(0,0,0,0.4);
  --page-bg2: rgba(0,0,0,0);
  --page-bg-angle: 180deg;
  --bar-color: white;
  --bar-bg: transparent;
  --sel-text-bg: #f2f1ef;
  --sel-text-color: #000;
  --link-decoration-color: #db8e97;
  --anim-duration: .2s;
  --shadow-angle: 135deg;
  --shadow-box1: -2px 2px 5px;
  --shadow-box2: -5px 5px 10px;
  --shadow-box3: -10px 10px 20px;
  --card-text: #f2f1ef;
  --card-year: #c4c0b7;
  --card-text-bg: rgba(0,0,0,.7);
  --card-bg1: #77262f;
  --card-bg2: #169c93;
  --card-filter: grayscale(40%) contrast(100%) brightness(.4);
  --card-filter-hover: grayscale(10%) contrast(100%) brightness(0.9);
  --tag-off1: rgba(255, 255, 255, 0.5);
  --tag-off2: rgba(204, 204, 204, 0.5);
  --tag-off-text: black;
  --tag-on1: #C2414F;
  --tag-on2: #9d333e;
  --tag-on-text: #f2f1ef;
  --img-show-background: rgba(0,0,0,0.75);
  --caption-background: black;
  --caption-text:#f2f1ef;
  --bg-color-1: #169c93;
  --bg-color-2: #750075;
  --bg-color-3: #13395E;
}

[data-theme=light] {
  --sidebar-text: #000;
  --img-brightness: 1;
  --sel-text-bg: #000;
  --sel-text-color: #f2f1ef;
  --link-decoration-color: #f2f1ef;
  --shadow-angle: -45deg;
  --shadow-box1: 2px 2px 5px;
  --shadow-box2: 5px 5px 10px;
  --shadow-box3: 10px 10px 20px;
  --card-text: #000;
  --card-year: #333333;
  --card-text-bg: rgba(255,255,255,0.5);
  --card-filter: grayscale(80%) contrast(35%) brightness(2);
  --card-filter-hover: grayscale(20%) contrast(90%) brightness(1.2);
  --card-bg1: #db8e97;
  --card-bg2: #169c93;
  --img-show-background: rgba(255,255,255,0.7);
  --caption-background: white;
  --caption-text:#000;
  --bg-color-1: #e8fcfa;
  --bg-color-2: #ffa8ff;
  --bg-color-3: #b3d2f0;
}

/* FONTS */
@font-face {
  font-family: "League Gothic";
  src: url("/css/fonts/leaguegothic-italic.woff2") format("woff2"), url("/css/fonts/leaguegothic-italic-webfont.woff") format("woff"), url("/css/fonts/leaguegothic-italic-webfont.eot") format("embedded-opentype");
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: "Comfortaa";
  font-style: normal;
  font-weight: 400;
  src: local("Comfortaa"), local("Comfortaa"), url("/css/fonts/Comfortaa_400.woff") format("woff");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Comfortaa";
  font-style: bold;
  font-weight: 700;
  src: local("Comfortaa"), local("Comfortaa"), url("/css/fonts/Comfortaa_700.woff") format("woff");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@keyframes backgroundAnim {
  0% {
    background-position: 75% 0%;
  }
  50% {
    background-position: 26% 100%;
  }
  100% {
    background-position: 75% 0%;
  }
}
div > p, div > a, div > h1, div > h2, .arrow-back, .arrow-top, .align-icon, #site-name > h1 {
  transition: all var(--anim-duration) ease-out;
  transition-property: background-color, border-color, color;
}

body {
  background: linear-gradient(30deg, var(--bg-color-2), var(--bg-color-3), var(--bg-color-1));
  background-attachment: fixed;
  background-size: 400% 400%;
  animation: backgroundAnim 40s ease-in-out infinite;
}

.sidebar-content {
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.5) rgba(0, 0, 0, 0);
}
.sidebar-content::-webkit-scrollbar {
  width: 9px;
}
.sidebar-content::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0);
}
.sidebar-content::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 6px;
}

h1, h2, h3, p, li, a, label {
  font-family: Comfortaa, Arial, sans-serif;
}
h1::selection, h2::selection, h3::selection, p::selection, li::selection, a::selection, label::selection {
  background-color: var(--sel-text-bg);
  color: var(--sel-text-color);
}

a {
  text-decoration: underline;
  color: var(--sidebar-text);
}
a:hover {
  background-color: var(--emphase);
}

.main-page {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100vh;
}

.main-area {
  background: linear-gradient(var(--page-bg-angle), var(--page-bg2) 40%, var(--page-bg1) 100%);
}

#scroll-top {
  width: 100%;
  height: 70px;
  bottom: 10px;
  right: 10px;
  text-align: center;
  display: block;
}
#scroll-top a {
  display: inline-block;
  width: 100%;
  height: 100%;
  vertical-align: middle;
}
#scroll-top .arrow-top {
  display: inline-block;
}
#scroll-top .arrow-top::after {
  content: "";
  display: inline-block;
  margin-top: 1.6em;
  width: 2em;
  height: 2em;
  border-top: 0.3em solid var(--emphase);
  border-right: 0.3em solid var(--emphase);
  transform: rotate(-45deg);
}
#scroll-top:hover .arrow-top::after {
  border-color: white;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 99;
  display: flex;
  justify-content: center;
  align-items: center;
}
.overlay .overlayContent {
  background-color: red;
  max-width: 450px;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
}
.overlay .overlayContent p {
  margin: 0 0 10px 0;
}

input#noscript-overlay {
  position: absolute;
  top: -9999px;
  left: -9999px;
}

input#noscript-overlay:checked ~ div {
  display: none !important;
}

#noscript label {
  line-height: 34px;
  padding: 0 10px;
}

/*-------------------------------------------------------------------*/
/* SIDEBAR */
/*-------------------------------------------------------------------*/
.sidebar {
  background: linear-gradient(130deg, var(--page-bg2) 40%, var(--page-bg1) 100%);
  color: var(--sidebar-text);
}
.sidebar .sidebar-content {
  margin: 0 auto;
  padding: 0 10px;
  text-align: right;
  overflow-x: hidden;
}
.sidebar .sidebar-content h1 {
  font-size: min(42px, 10vw);
  margin: 5px 0;
}
.sidebar .sidebar-content img {
  display: block;
  max-width: 100%;
  min-width: 200px;
  max-height: 300px;
  margin: 0 auto;
  filter: brightness(var(--img-brightness));
  opacity: 0.95;
  border-radius: 10px;
  transition: all var(--anim-duration) ease-out;
  transition-property: opacity, filter;
}
.sidebar .sidebar-content img:hover {
  opacity: 1;
  filter: none;
}
.sidebar .sidebar-content .sidebar-text {
  text-align: left;
  max-width: 450px;
  margin: 0 auto;
  padding-bottom: 10px;
}
.sidebar .sidebar-content .tag-list ul {
  margin: 0;
  justify-content: flex-end;
}
.sidebar .sidebar-content .tag-list a {
  padding: 7px;
}
.sidebar .sidebar-content .tag-list h3 {
  font-size: 12px;
}

#site-name {
  text-align: left;
  margin: 0.2em 0;
  display: inline-block;
  background: none;
  text-decoration: none;
}
#site-name h1 {
  font-family: League Gothic, Impact, sans-serif;
  font-size: 32px;
  font-style: italic;
  display: inline-block;
}
#site-name.home {
  text-align: inherit;
  color: var(--sidebar-text);
}
#site-name.home h1 {
  font-size: 62px;
}
#site-name.home h1:hover {
  color: var(--emphase);
  background: none;
}
#site-name.home .arrow-back {
  display: none;
}
#site-name:not(.home) h1 {
  color: var(--emphase);
}
#site-name:hover h1 {
  color: var(--sidebar-text);
}
#site-name:hover .arrow-back {
  border-color: var(--sidebar-text);
}

.arrow-back {
  display: inline-block;
  border: solid var(--emphase);
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 9px;
  margin-left: 5px;
  transform: rotate(135deg);
}

.sidebar-utility {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  flex-direction: row-reverse;
  justify-content: flex-start;
  margin: -12px 0 15px -6px;
}

.sb-util {
  display: inline-block;
  position: relative;
  height: 34px;
  margin: 5px;
  padding: 0;
  border-radius: 34px;
  background-color: var(--tag-off1);
  box-shadow: var(--shadow-box2) rgba(0, 0, 0, 0.3);
  text-decoration: inherit;
  color: var(--tag-off-text);
}
.sb-util a {
  text-decoration: inherit;
  color: inherit;
}
.sb-util h2, .sb-util p {
  font-size: inherit;
  font-weight: normal;
  margin: 8px;
}
.sb-util::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  opacity: 0;
  border-radius: 34px;
  box-shadow: var(--shadow-box3) rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: all var(--anim-duration) ease-out;
  transition-property: opacity;
}
.sb-util:hover::after {
  opacity: 1;
}
.sb-util:hover {
  color: var(--tag-on-text);
}

.switch {
  position: relative;
  width: 66px;
  margin: 0 5px;
}
.switch:after {
  border-radius: 34px;
}

.switch input {
  display: none;
}

.slider {
  bottom: 0;
  cursor: pointer;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.slider:before {
  background-color: var(--emphase);
  bottom: 4px;
  content: "";
  height: 26px;
  left: 4px;
  position: absolute;
  transition: var(--anim-duration);
  width: 26px;
  box-shadow: inset 2px -2px 5px rgba(0, 0, 0, 0.5);
}

input:checked + .slider:before {
  box-shadow: inset -2px -2px 5px rgba(0, 0, 0, 0.5);
}

input:hover + .slider:before {
  box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.5), var(--shadow-box1) rgba(0, 0, 0, 0.8);
}

input:checked:hover + .slider:before {
  box-shadow: inset -2px -2px 5px rgba(0, 0, 0, 0.5), var(--shadow-box1) rgba(0, 0, 0, 0.8);
}

input:checked + .slider:before {
  transform: translateX(32px);
}

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.bubble-wrapper {
  display: none;
  width: 100%;
  margin-top: 10px;
}
.bubble-wrapper .bubble {
  display: flex;
  position: relative;
  max-width: 300px;
  margin-left: -10px;
  float: right;
  background: var(--tag-off1);
  border-radius: 0.4em;
  transform: translate(0px, -7px);
  color: var(--tag-off-text);
}
.bubble-wrapper .bubble p {
  margin: 10px;
}
.bubble-wrapper .bubble:after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-top-color: var(--tag-off1);
  margin-bottom: -20px;
  right: 28px;
}

/*-------------------------------------------------------------------*/
/* PROJECTS */
/*-------------------------------------------------------------------*/
.tag-list {
  pointer-events: none;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0 10px;
  z-index: 2;
}
.tag-list ul {
  width: 100%;
  list-style: none;
  display: inline-flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  padding: 0;
}
.tag-list ul li {
  display: block;
}
.tag-list ul li p, .tag-list ul li h1, .tag-list ul li h3 {
  margin: 0;
  font-size: 16px;
  font-weight: normal;
}
.tag-list ul li > a {
  color: inherit;
  background-color: inherit;
  text-decoration: none;
  position: relative;
  display: block;
  background-color: var(--tag-off1);
  box-shadow: var(--shadow-box2) rgba(0, 0, 0, 0.3);
  color: var(--tag-off-text);
  border-radius: 10px;
  padding: 10px;
  margin: 5px;
  cursor: pointer;
  transition: all var(--anim-duration) ease-out;
  transition-property: font-size, color, background-color, transform;
  will-change: transform;
  pointer-events: auto;
}
.tag-list ul li > a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  opacity: 0;
  border-radius: 10px;
  box-shadow: var(--shadow-box3) rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity, var(--anim-duration) ease-out;
}
.tag-list ul li > a:hover::after {
  opacity: 1;
}
.tag-list ul li.tag {
  transform: skew(-20deg);
}
.tag-list ul li.tag p, .tag-list ul li.tag h1, .tag-list ul li.tag h3 {
  transform: skew(20deg);
}
.tag-list ul li#align-tags {
  margin-right: 45px;
}
.tag-list ul li#align-tags .align-icon {
  transform: skew(20deg);
}
.tag-list ul li#align-tags .align-icon .align-icon-wrapper {
  transform: skew(-20deg);
}
.tag-list ul li#align-tags.active .align-icon {
  transform: skew(-20deg);
}
.tag-list ul li#align-tags.active .align-icon .align-icon-wrapper {
  transform: skew(20deg);
}
.tag-list ul li#align-tags.active .align-icon .align-icon-bar {
  background-color: var(--tag-on-text);
}
.tag-list ul li.active a, .tag-list ul li:hover a {
  color: var(--tag-on-text);
  background-color: var(--tag-on1);
}

#align-tags {
  padding: 0 10px;
}

.align-icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 36px;
  background-color: rgba(0, 0, 0, 0);
}
.align-icon:hover #aib1 {
  width: 75%;
}
.align-icon:hover #aib2 {
  width: 75%;
}
.align-icon:hover #aib3 {
  width: 75%;
}

.align-icon-bar {
  background-color: var(--tag-off-text);
  height: 3px;
  margin: 0 auto;
  transition: all var(--anim-duration) ease-out;
  transition-property: width border-color;
  border-radius: 2px;
}

#aib1 {
  width: 60%;
}

#aib2 {
  width: 100%;
  margin: 4px auto;
}

#aib3 {
  width: 40%;
}

#align-tags.active #aib1 {
  width: 75%;
}
#align-tags.active #aib2 {
  width: 75%;
}
#align-tags.active #aib3 {
  width: 75%;
}
#align-tags.active:hover #aib1 {
  width: 60%;
}
#align-tags.active:hover #aib2 {
  width: 100%;
}
#align-tags.active:hover #aib3 {
  width: 40%;
}

.project-list {
  text-align: center;
  padding-bottom: 20px;
}

.project-card-shuffle-sizing {
  margin-left: 10px;
  width: 1px;
}

.project-card {
  position: relative;
  overflow: hidden;
  min-width: 250px;
  max-width: 500px;
  height: 130px;
  margin: 10px;
  border-radius: 10px;
  display: inline-block;
  box-shadow: var(--shadow-box2) rgba(0, 0, 0, 0.3);
  transition: all var(--anim-duration) ease-out;
  transition-property: box-shadow;
}
.project-card img, .project-card .card-filter, .project-card .project-card-text, .project-card .project-card-tags, .project-card .project-card-year {
  transition: all var(--anim-duration) ease-out;
}
.project-card .project-card-text, .project-card .project-card-tags {
  transition: background-color var(--anim-duration) ease-out;
}
.project-card img, .project-card .card-filter {
  position: absolute;
  left: 0;
  width: 100%;
  min-height: 100%;
  top: 50%;
  transform: translateY(-50%);
}
.project-card img {
  filter: var(--card-filter);
  opacity: 0.7;
}
.project-card .card-filter {
  height: 100%;
  background: linear-gradient(15deg, var(--card-bg1) 0%, var(--card-bg2) 100%);
  transition: opacity var(--anim-duration) ease-out;
}
.project-card a {
  color: var(--card-text);
  text-decoration: none;
}
.project-card .project-card-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  padding: 10px;
  box-sizing: border-box;
}
.project-card .project-card-text {
  width: 70%;
  height: 100%;
  z-index: 1;
}
.project-card .project-card-text h2 {
  margin: 0;
  font-size: 1.5em;
  line-height: 28px;
  text-align: left;
}
.project-card .project-card-text .project-card-year {
  margin: 0;
  padding: 5px 0 0 0;
  color: var(--card-year);
  text-align: left;
}
.project-card .project-card-tags {
  flex-basis: 30%;
  margin: 0;
  padding: 0;
  list-style: none;
  display: block;
  text-align: right;
  font-size: 0.8em;
  opacity: 0.7;
}
.project-card .project-card-tags li {
  text-align: right;
}
.project-card.justify-card {
  width: 400px;
}
.project-card:hover {
  box-shadow: var(--shadow-box3) rgba(0, 0, 0, 0.4);
}
.project-card:hover img {
  filter: var(--card-filter-hover);
  opacity: 1;
}
.project-card:hover .card-filter {
  opacity: 0.3;
}
.project-card:hover h2 > span {
  background-color: var(--card-text-bg);
}
.project-card:hover .project-card-tags, .project-card:hover .project-card-year {
  opacity: 0;
}

/*-------------------------------------------------------------------*/
/* MEDIA GALLERY */
/*-------------------------------------------------------------------*/
.img-gal {
  width: 100%;
  background-color: var(--img-show-background);
  text-align: center;
}
.img-gal .gal-items {
  display: flex;
  flex-wrap: nowrap;
  align-content: flex-start;
  width: 100vw;
  height: 20vh;
  position: relative;
}
.img-gal .gal-items .gal-item {
  position: relative;
  height: 20vh;
  cursor: pointer;
  background-color: var(--caption-background);
}
.img-gal .gal-items .gal-item .item-wrap {
  height: 20vh;
  filter: saturate(25%);
  transition: all var(--anim-duration) ease-out;
  transition-property: transform, filter;
}
.img-gal .gal-items .gal-item .item-wrap p {
  font-size: 22px;
  padding: 10px;
}
.img-gal .gal-items .gal-item img {
  display: block;
  width: auto;
  height: 100%;
}
.img-gal .gal-items .gal-item.text .item-wrap {
  width: 150px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--sidebar-text);
}
.img-gal .gal-items .gal-item.text:nth-child(3n) .item-wrap {
  background-color: var(--bg-color-1);
}
.img-gal .gal-items .gal-item.text:nth-child(3n+1) .item-wrap {
  background-color: var(--bg-color-2);
}
.img-gal .gal-items .gal-item.text:nth-child(3n+2) .item-wrap {
  background-color: var(--bg-color-3);
}
.img-gal .gal-items .gal-item .caption-data, .img-gal .gal-items .gal-item .text-data {
  display: none;
}
.img-gal .gal-items .gal-item.selected-item  {
  background-color: transparent;
}
.img-gal .gal-items .gal-item.selected-item  .item-wrap {
  transform: perspective(200px) translateZ(-120px) rotate(13deg);
  filter: saturate(100%);
}
.img-gal .gal-items .gal-item.selected-item  .play-button:after {
  border-left-color: var(--emphase);
}
.img-gal .gal-items .gal-item:hover:not(.selected-item) .item-wrap {
  filter: saturate(100%);
}
.img-gal .gal-items .gal-item:hover:not(.selected-item) .play-button:after {
  border-left-color: var(--emphase);
}
.img-gal .gal-items.items-strech .gal-item {
  flex-grow: 1;
}
.img-gal .gal-items.items-strech .gal-item.text .item-wrap {
  width: auto;
}
.img-gal .img-show {
  width: 100vw;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.img-gal .img-show .img-show-media-wrapper {
  width: 100%;
  height: auto;
}
.img-gal .img-show img, .img-gal .img-show iframe, .img-gal .img-show video {
  max-width: 100%;
  height: auto;
}
.img-gal .img-show iframe {
  min-height: 450px;
}
.img-gal .img-show .img-show-caption, .img-gal .img-show .img-show-text {
  background-color: var(--caption-background);
  color: var(--caption-text);
  width: 100%;
  padding: 0 10px;
  box-sizing: border-box;
  text-align: right;
}
.img-gal .img-show .img-show-text {
  background-color: transparent;
  text-align: left;
  overflow: auto;
}
.img-gal .img-show .img-show-text ul {
  line-height: 1.5;
}

.play-button {
  position: absolute;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
  width: 50px;
  height: 50px;
  display: block;
  border-radius: 50%;
  padding: 0;
  margin: 0 auto;
  user-select: none;
  background-color: rgba(0, 0, 0, 0.6);
  transition: all var(--anim-duration) ease-out;
  transition-property: background-color border-color;
}
.play-button:after {
  position: absolute;
  top: calc(50% - 13px);
  left: calc(50% - 7px);
  display: block;
  content: "";
  box-sizing: border-box;
  border-color: transparent transparent transparent rgba(255, 255, 255, 0.8);
  border-style: solid;
  border-width: 13px 0 13px 20px;
  transition: border-color var(--anim-duration) ease-out;
}
/*-------------------------------------------------------------------*/
/* RESPONSIVENESS */
/*-------------------------------------------------------------------*/
@media screen and (min-width: 900px) {
  :root {
    --page-bg-angle: 0deg;
  }
  body {
    overflow-x: hidden;
  }
  .main-page {
    flex-direction: row;
  }
  .sidebar {
    position: fixed;
    width: 40vw;
  }
  .sidebar .sidebar-utility {
    flex-direction: row;
  }
  .sidebar .sidebar-utility .bubble {
    float: left;
  }
  .sidebar .sidebar-utility .bubble::after {
    right: auto;
    left: 38px;
  }
  .sidebar .sidebar-content {
    height: 100vh;
    margin-left: 25%;
    padding: 0 10px 0 20px;
    text-align: left;
  }
  .sidebar .sidebar-content #site-name.home h1 {
    font-size: 6vw;
  }
  .sidebar .sidebar-content h1 {
    font-size: 3.5vw;
    font-size: max(3.5vw, 35px);
  }
  .sidebar .sidebar-content img {
    margin: 0;
  }
  .sidebar .sidebar-content .sidebar-text {
    margin: 0;
    max-width: 500px;
  }
  .sidebar .sidebar-content .tag-list ul {
    justify-content: flex-start;
  }
  .title {
    font-size: 4em;
  }
  .main-area {
    position: absolute;
    left: 40vw;
    width: 60vw;
    min-height: 100vh;
  }
  .main-area .tag-list {
    position: sticky;
    top: 0;
  }
  .project-card h2 {
    font-size: 2em;
  }
  .img-gal {
    height: 100vh;
  }
  .img-gal .gal-items {
    flex-wrap: wrap;
    width: 20vw;
    max-width: 400px;
    height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    float: left;
  }
  .img-gal .gal-items .gal-item {
    width: 100%;
    height: auto;
    overflow: hidden;
  }
  .img-gal .gal-items .gal-item .item-wrap {
    width: 100%;
    height: auto;
  }
  .img-gal .gal-items .gal-item .item-wrap p {
    font-size: 2vw;
  }
  .img-gal .gal-items .gal-item img {
    width: 100%;
    height: auto;
  }
  .img-gal .gal-items .gal-item.text {
    width: 100%;
  }
  .img-gal .gal-items .gal-item.text .item-wrap {
    width: 100%;
  }
  .img-gal .gal-items .gal-item:hover:not(.selected-item) .item-wrap {
    transform: scale(1.2) rotate(-3deg);
  }
  .img-gal .gal-items.items-strech {
    align-content: stretch;
  }
  .img-gal .gal-items.items-strech .gal-item, .img-gal .gal-items.items-strech .gal-item.text {
    height: auto;
  }
  .img-gal .gal-items.items-strech .gal-item .item-wrap, .img-gal .gal-items.items-strech .gal-item.text .item-wrap {
    min-height: 100%;
    height: inherit;
  }
  .img-gal .img-show {
    width: 40vw;
    height: 100vh;
    flex-direction: column-reverse;
  }
  .img-gal .img-show .img-show-text {
    max-width: 700px;
  }
  .img-gal .img-show iframe {
    height: 100%;
    min-height: 200px;
  }
  .img-gal .img-show img, .img-gal .img-show video {
    min-height: 0;
    object-fit: contain;
  }
  #scroll-top {
    display: none !important;
  }
}
@media screen and (max-width: 660px) {
  #align-tags {
    display: none;
  }
  .project-card {
    width: 90%;
  }
  .project-card.justify-card {
    width: 90%;
  }
}
/*# sourceMappingURL=main.css.map */