/****** defs by igi *****/
/************************************************
*	Imports										*
*	--------------------------------------------*
*	Import everything locally, do not rely on	*
*	any internet-based resources!				*
************************************************/
@font-face {
  font-family: "din-condensed";
  font-weight: bold;
  src: url("/website/fonts/ff-din-condensed-bold.otf") format("opentype"); }

/************************************************
*	Animations									*
*	--------------------------------------------*
*	Import everything locally, do not rely on	*
*	any internet-based resources!				*
************************************************/
/* Primary color animation used on button tap */
@keyframes btn-press-primary {
  0% {
    color: #000000;
    background-color: transparent;
    border-color: #000000; }
  50% {
    color: #000000;
    border-color: #000000;
    background-color: #000000; }
  100% {
    color: #000000;
    background-color: transparent;
    border-color: #000000; } }

/* Secondary color animation used on button tap */
@keyframes btn-press-secondary {
  0% {
    color: #000000;
    background-color: #000000;
    border-color: #000000; }
  50% {
    color: #000000;
    border-color: #000000;
    background-color: #000000; }
  100% {
    color: #000000;
    background-color: #000000;
    border-color: #000000; } }

/* Secondary color animation used on button tap */
@keyframes btn-press-secondary {
  0% {
    color: #000000;
    background-color: #000000;
    border-color: #000000; }
  50% {
    color: #000000;
    border-color: #000000;
    background-color: #000000; }
  100% {
    color: #000000;
    background-color: #000000;
    border-color: #000000; } }

/* Secondary color animation used on button tap - with normal blending mode */
@keyframes btn-press-secondary-noblend {
  0% {
    color: #000000;
    background-color: #000000;
    border-color: #000000; }
  50% {
    color: #000000;
    background-color: #000000;
    border-color: #000000; }
  100% {
    color: #000000;
    background-color: #000000;
    border-color: #000000; } }

/* Secondary color animation used on button tap - with normal blending mode */
@keyframes btn-press-opacity {
  0% {
    opacity: 1; }
  50% {
    opacity: 0.2; }
  100% {
    opacity: 1; } }

/************************************************
*	Generic iOS fixes							*
*	--------------------------------------------*
*	iOS doesn't always behave like we'd expect	*
*	from other browsers. This					*
************************************************/
*:not(input):not(textarea) {
  /* With "not" clause specify all elements that will receive typed user input */ }

html,
body {
  scroll-behavior: smooth; }

/************************************************
*	Containers									*
*	--------------------------------------------*
*	Should be self-explanatory					*
************************************************/
html,
body,
.wrapper {
  width: 100%;
  height: 100%;
  background-color: #ffffff; }

.content {
  z-index: 1021;
  min-height: 100vh;
  height: 100%; }

/* Background image container. Instead of putting background in body, we need this in order for blending modes to work properly */
.backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(/website/images/polkadots.svg);
  background-position: top;
  background-repeat: repeat-x;
  background-size: cover;
  background-attachment: fixed;
  transition: opacity ease-in-out 0.5s; }

/* Fixed footer at the bottom of the page */
footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 18px 0;
  font-size: 0.75rem;
  letter-spacing: -0.065em; }

/* Centered form with bigger margins */
.form-container {
  margin-left: 10vw;
  margin-right: 10vw; }

/************************************************
*	Positioning									*
*	--------------------------------------------*
*	Should be self-explanatory					*
************************************************/
/* Vertical center (works inside elements with specified height) */
.vertical-center {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center; }

/************************************************
*	Styling classes								*
*	--------------------------------------------*
*	Bootstrap-like styling / overrides			*
************************************************/
/* Blend modes */
.blend-normal {
  mix-blend-mode: normal !important; }

.blend-exclusion {
  mix-blend-mode: exclusion !important; }

.isolate {
  isolation: isolate !important; }

/* Border widths */
.border-none {
  border: none !important; }

.border-sm {
  border: 4px solid !important; }

.border-md {
  border: 7px solid !important; }

/* Border colors */
.border-primary {
  border-color: #000000 !important; }

.border-secondary {
  border-color: #000000 !important; }

/* Background colors */
.bg-primary {
  background-color: #000000 !important; }

.bg-secondary {
  background-color: #000000 !important; }

/* Heights based on font size */
.height-2 {
  height: 5.7rem; }

.height-3 {
  height: 3.3rem; }

.height-5 {
  height: 1.7rem; }

.height-6 {
  height: 1.35rem; }

.height-7 {
  height: 0.75rem; }

/* Some common paddings*/
.p-0 {
  padding: 0; }

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

.pb-20 {
  padding-bottom: 20px; }

.pb-10 {
  padding-bottom: 10px; }

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

.pt-20 {
  padding-top: 20px; }

.pt-10 {
  padding-top: 10px; }

/************************************************
*	Typography									*
*	--------------------------------------------*
*	Should be self-explanatory					*
************************************************/
/* Default setting for all elements */
body {
  font-family: "din-condensed";
  font-weight: bold;
  font-size: 1.2rem; }

/* Common settings for text elements */
/* Fonz size 1 */
h1,
.fontsize-1 {
  font-size: calc(80px + 53 * ((100vw - 320px) / 1120));
  letter-spacing: -0.065em;
  line-height: 1; }
  @media screen and (max-width: 320px) {
    h1,
    .fontsize-1 {
      font-size: 80px; } }
  @media screen and (min-width: 1440px) {
    h1,
    .fontsize-1 {
      font-size: 133px; } }

/* Fonz size 2 */
h2,
.fontsize-2 {
  font-size: 5.7rem;
  letter-spacing: -0.065em;
  line-height: 1; }

/* Font size 3 */
h3,
.fontsize-3 {
  font-size: 3.3rem;
  letter-spacing: -0.065em;
  line-height: 1.2; }
  @media only screen and (min-width: 0px) and (max-width: 769px) {
    h3,
    .fontsize-3 {
      font-size: calc(30px + 15 * ((100vw - 320px) / 1120)); } }
  @media only screen and (min-width: 0px) and (max-width: 769px) and (max-width: 320px) {
    h3,
    .fontsize-3 {
      font-size: 30px; } }
  @media only screen and (min-width: 0px) and (max-width: 769px) and (min-width: 1440px) {
    h3,
    .fontsize-3 {
      font-size: 45px; } }
  @media only screen and (min-width: 770px) {
    h3,
    .fontsize-3 {
      font-size: calc(40px + 13 * ((100vw - 320px) / 1120)); } }
  @media only screen and (min-width: 770px) and (max-width: 320px) {
    h3,
    .fontsize-3 {
      font-size: 40px; } }
  @media only screen and (min-width: 770px) and (min-width: 1440px) {
    h3,
    .fontsize-3 {
      font-size: 53px; } }

/* Font size 5 */
h5,
.fontsize-5 {
  font-size: 1.7rem;
  letter-spacing: -0.065em;
  line-height: 1.2; }

/* Font size 6 */
h6,
.fontsize-6 {
  font-size: 1.35rem;
  letter-spacing: -0.065em;
  line-height: 1.2; }

/* Text colors */
.text-primary {
  color: #000000 !important; }

.text-secondary {
  color: #000000 !important; }

/************************************************
*	Buttons										*
*	--------------------------------------------*
*	Mostly Bootstrap customization				*
************************************************/
.btn {
  border-radius: 0; }

.btn.btn-primary {
  /* Primary color button */
  color: #000000;
  background: none;
  border: 7px solid #000000;
  mix-blend-mode: exclusion; }

.btn.btn-primary:not(:disabled):not(.disabled):active {
  /* Primary color button when tapped */
  color: #000000;
  border-color: #000000;
  background-color: #000000;
  animation: btn-press-primary 0.15s ease-in-out 30s;
  /* Show full animation on button tap, no matter the tap length */
  -webkit-animation: btn-press-primary 0.15s ease-in-out 30s;
  /* Show full animation on button tap, no matter the tap length */ }

.btn.btn-secondary {
  /* Secondary color button*/
  color: #000000;
  background: #000000;
  border: 7px solid #000000;
  mix-blend-mode: exclusion; }

.btn.btn-secondary:not(:disabled):not(.disabled):active {
  /* Secondary color button when tapped */
  color: #000000;
  border-color: #000000;
  background-color: #000000;
  animation: btn-press-secondary 0.15s ease-in-out 30s;
  /* Show full animation on button tap, no matter the tap length */
  -webkit-animation: btn-press-secondary 0.15s ease-in-out 30s;
  /* Show full animation on button tap, no matter the tap length */ }

.btn.btn-secondary-noblend {
  /* Secondary color button*/
  color: #000000;
  background: #000000;
  border-color: #000000; }

.btn.btn-secondary-noblend:not(:disabled):not(.disabled):active {
  /* Secondary color button when tapped */
  color: #000000;
  border-color: #000000;
  background-color: #000000;
  animation: btn-press-secondary-noblend 0.15s ease-in-out 30s;
  /* Show full animation on button tap, no matter the tap length */
  -webkit-animation: btn-press-secondary-noblend 0.15s ease-in-out 30s;
  /* Show full animation on button tap, no matter the tap length */ }

.btn.size-sm {
  /* Button size: small */
  min-width: 170px;
  padding: 0 3.5rem;
  font-size: 3.3rem;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.065em; }

.btn.size-md {
  /* Button size: large */
  min-width: 340px;
  padding-left: 3.5rem;
  padding-right: 3.5rem;
  padding-bottom: 0.5rem;
  font-size: 5.7rem;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.065em; }

.btn:not(:disabled):not(.disabled) {
  /* No fancy browser generated stuff on active buttons */ }

.btn:not(:disabled):not(.disabled):focus,
.btn:not(:disabled):not(.disabled):active:focus {
  box-shadow: none;
  /* Disable usually unwanted browser generated shadows on tap/click/hold */
  outline: none;
  /* Disable usually unwanted browser generated outlines on tap/click/hold */ }

/************************************************
*	Inputs										*
*	--------------------------------------------*
*	Bootstrap overrides + customization for the	*
*	specifics of our design						*
************************************************/
/* No rounded borders in our design */
input,
textarea,
.form-control {
  -webkit-border-radius: 0;
  border-radius: 0; }

/* Bootstrap overrides */
.form-control {
  color: #000000;
  background: none;
  border: 7px solid #000000;
  mix-blend-mode: exclusion; }

.form-control::placeholder {
  /* Placeholder color */
  color: #000000; }

.form-control:focus {
  /* Input on focus */
  color: #000000;
  background: none;
  border: 7px solid #000000;
  box-shadow: none;
  /* Don't want no fancy browser stuff */
  -webkit-box-shadow: none;
  /* Don't want no fancy browser stuff */ }

.form-control:focus::placeholder {
  /* Hide placeholder text on focus */
  color: transparent; }

.form-control.size-sm {
  /* Small size input */
  height: calc(5.7rem + 1.7rem);
  /* 1.3em would work beautifully, but our design doesn't shrink vertically with smaller font size */
  font-size: 3.3rem;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: -0.065em;
  padding: 0.5rem 1.8rem 0.6rem; }

.form-control.size-md {
  /* Medium size input */
  height: 1.3em;
  font-size: 5.7rem;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: -0.065em;
  padding: 0.5rem 1.8rem 0.6rem; }

/************************************************
*	Checkboxes									*
*	--------------------------------------------*
*	Mostly Bootstrap customization				*
************************************************/
.custom-control.custom-checkbox {
  padding-left: 2.5em; }

.custom-control.custom-checkbox .custom-control-input ~ .custom-control-label::before {
  top: 0;
  left: -2.5em;
  width: 1.2em;
  height: 1.2em;
  padding: 0.4em;
  mix-blend-mode: exclusion;
  background-color: transparent;
  border: 4px solid #000000;
  border-radius: 0;
  -webkit-border-radius: 0;
  box-shadow: none;
  /* Disable usually unwanted browser generated shadows on tap/click/hold */
  outline: none;
  /* Disable usually unwanted browser generated outlines on tap/click/hold */ }

.custom-control.custom-checkbox .custom-control-input ~ .custom-control-label::after {
  top: 0;
  left: -2.5em;
  width: 1.2em;
  height: 1.2em;
  padding: 0.4em;
  mix-blend-mode: exclusion; }

.custom-control.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
  color: transparent;
  background-color: #000000; }

.custom-control.custom-checkbox label {
  vertical-align: middle; }

/************************************************
*	Lists										*
*	--------------------------------------------*
*	Mostly Bootstrap customization				*
************************************************/
li {
  margin-left: -1em;
  list-style-position: inside; }

/************************************************
*	Signature box								*
*	--------------------------------------------*
*	Box for signing, made ready for enlarging 	*
*	in order to make it easier to sign			*
************************************************/
/* Container - must have same aspect ratio as canvas element in HTML */
.signature {
  width: 340px;
  height: 130px; }

.signature .drawing-area {
  /* Should contain signature box and related elements */
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1001;
  transition: width ease-in-out 0.5s, height ease-in-out 0.5s; }

.signature .backdrop {
  /* A special version of backdrop used to cover the rest of the page if we enlarge signature box */
  visibility: hidden;
  position: fixed;
  z-index: 1000;
  opacity: 0;
  transition: visibility 0s ease-in-out 0.5s, opacity 0.5s; }

.signature .signature-expand-icon {
  /* Icon indicating that signature box can be enlarged */
  opacity: 1;
  transition: opacity ease-in-out 0.4s, transform ease-in-out 0.5s; }

.signature .signature-close-button {
  /* Button to close/minimize enlarged signature box */
  position: absolute;
  top: 0;
  right: 0;
  border: none;
  opacity: 0;
  transition: opacity ease-in-out 0.5s; }

.signature canvas {
  /* Canvas is used to draw signature. This will scale canvas element according to parent element's scale */
  width: 100%;
  height: 100%; }

.signature.expanded {
  /* When signature box should be enlarged, it will get 'expanded' class in DOM */ }

.signature.expanded .drawing-area {
  /* Enlarged drawing area */
  width: 220%;
  height: 220%; }

.signature.expanded .backdrop {
  /* Show backdrop overlay when signature box is enlarged */
  visibility: visible;
  opacity: 0.9;
  transition: visibility 0s ease-in-out 0s, opacity 0.5s; }

.signature.expanded .signature-expand-icon {
  /* Hide signature expand icon, when signature box is enlarged */
  transform: scale(2.2);
  opacity: 0; }

.signature.expanded .signature-close-button {
  /* Show close button, when signature box is enlarged */
  opacity: 1; }

.signature.signed {
  /* 'signed' class will be applied in DOM whenever there is something drawn into the signature box */ }

.signature.signed .signature-expand-icon {
  display: none;
  /* Once signed, we never display expand icon again */ }

/************************************************
*	Other elements								*
*	--------------------------------------------*
*	Anything more specific to our design		*
************************************************/
/* First page logo sizing relative to font size */
/* Photo preview - must have same aspect ratio as canvas element in HTML */
.photo {
  width: 460px;
  height: 690px; }

.photo canvas {
  /* Canvas element used to draw received image stream */
  width: 100%;
  height: 100%;
  /* Make preview image grayscale */
  filter: grayscale(1);
  -webkit-filter: grayscale(1); }

/* Language choice */
.language-choice h3 {
  font-size: 4.5rem; }

.language-choice img {
  height: 4.5rem; }

.language-choice .language-option img {
  opacity: 1;
  transition: opacity 0.3s ease-in-out; }

.language-choice .language-option:active img {
  opacity: 0.2;
  animation: btn-press-opacity 0.3s ease-in-out 30s;
  /* Show full animation on button tap, no matter the tap length */
  -webkit-animation: btn-press-opacity 0.3s ease-in-out 30s;
  /* Show full animation on button tap, no matter the tap length */ }

.nav-link {
  padding-left: 0;
  padding-right: 0; }

.nav a:hover {
  text-decoration: underline; }

/*************************************************************/
.fill-height-or-more {
  min-height: 100%;
  display: flex;
  flex-direction: column; }

/* igi staff */
.fill-height-or-more > div {
  flex: 1;
  display: flex;
  flex-direction: column; }
  .fill-height-or-more > div .row {
    display: block; }
    @media only screen and (min-width: 768px) {
      .fill-height-or-more > div .row {
        display: flex; } }
    .fill-height-or-more > div .row .col-4 {
      max-width: 100%; }
      @media only screen and (min-width: 768px) {
        .fill-height-or-more > div .row .col-4 {
          max-width: 33.333333%; } }

.project-area > div {
  padding: 70px 1rem;
  box-sizing: border-box; }
  @media only screen and (min-width: 768px) {
    .project-area > div {
      padding: 1rem; } }

.project-area > div h3,
.project-area > div h5 {
  line-height: 1; }

/****************************/
img {
  z-index: 300; }

/** igi staff **/
.date-holder {
  position: relative;
  position: absolute;
  bottom: 100%;
  left: 100%;
  transform: translate(-100%, 5%); }
  @media only screen and (min-width: 576px) {
    .date-holder {
      transform: translate(-100%, 10%); } }
  @media only screen and (min-width: 768px) {
    .date-holder {
      position: relative;
      bottom: auto;
      left: auto;
      transform: translate(0, 0);
      margin-bottom: 10px; } }

.date-holder .date {
  width: 132px;
  height: 132px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: rotateZ(18deg); }
  @media only screen and (min-width: 1024px) {
    .date-holder .date {
      position: absolute;
      margin-left: -120px;
      margin-top: -28px; } }

.date-holder .date p {
  line-height: 1;
  padding: 0;
  margin: 0; }

.splash-screen {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover; }

.bg-white-transparent {
  background: rgba(255, 255, 255, 0.975); }

.bg-yellow-transparent {
  background: rgba(252, 211, 0, 0.975); }

.thumbnail > a {
  display: block;
  height: 200px;
  /* for center alignment */
  position: relative; }

.thumbnail > a > img {
  max-width: 100%;
  max-height: 100%;
  /* for center alignment */
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto; }

.img-fluid {
  padding: 0.25rem;
  background-color: white;
  border: 1px solid gray;
  cursor: pointer; }

.inline-image {
  max-width: calc(75vw - 45px); }

/****** igi staff ****/
header {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0 20px;
  z-index: 999; }
  @media only screen and (min-width: 1024px) {
    header {
      display: none; } }

.hamby_wrap {
  position: relative;
  width: 50px;
  height: 60px;
  cursor: pointer;
  z-index: 5;
  transition: all 0.4s;
  display: flex;
  justify-content: flex-end;
  align-items: center; }
  @media only screen and (min-width: 1024px) {
    .hamby_wrap {
      display: none; } }

.l-hamby {
  position: relative;
  width: 30px;
  height: 18px;
  padding: 0;
  margin: 0;
  border: none;
  pointer-events: none; }
  .l-hamby:focus {
    outline: none; }
  .l-hamby span {
    position: absolute;
    top: 50%;
    left: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    height: 2px;
    width: 100%;
    background-color: #000;
    transition: all 0.4s 0.4s; }
  .l-hamby:after, .l-hamby:before {
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    width: 100%;
    height: 2px;
    background-color: #000;
    transform: translate(-50%, 0%);
    transition: transform 0.4s, top 0.4s 0.4s; }
  .l-hamby:before {
    top: 0; }
  .l-hamby:after {
    top: calc(100% - 2px); }
  .l-hamby.active span {
    width: 0;
    transition: all 0.4s; }
  .l-hamby.active:after, .l-hamby.active:before {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    transition: top 0.4s, transform 0.4s 0.4s; }
  .l-hamby.active:after {
    transform: translate(-50%, -50%) rotate(-45deg); }

.popup_photo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0);
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transform: scale(10, 10) rotate(5deg);
  transition: all 0.4s;
  z-index: 9999; }
  .popup_photo.active {
    opacity: 1 !important;
    visibility: visible;
    transform: scale(1, 1) rotate(-10deg);
    pointer-events: auto;
    transition: all 0.2s; }
  .popup_photo .popup_content {
    position: relative;
    max-width: 40vh; }
    @media only screen and (min-width: 1024px) {
      .popup_photo .popup_content {
        max-width: 60vh; } }
    .popup_photo .popup_content .popup_img_wrap {
      position: relative;
      border: 1px solid #000;
      width: 100%;
      transition: all 0.6s; }
      .popup_photo .popup_content .popup_img_wrap img {
        border: 10px solid #fff;
        width: 100%;
        height: auto; }
  .popup_photo .close_popup {
    position: absolute;
    top: 0px;
    left: 100%;
    margin-left: 20px;
    margin-top: 20px;
    transform: rotate(10deg);
    width: 40px;
    height: 40px;
    cursor: pointer;
    border-radius: 50%;
    background-color: #000;
    transition: all 0.2s;
    z-index: 99; }
    @media only screen and (min-width: 1024px) {
      .popup_photo .close_popup {
        margin-left: 40px; } }
    .popup_photo .close_popup:after, .popup_photo .close_popup:before {
      content: '';
      position: absolute;
      top: 5px;
      left: 50%;
      margin-left: -1px;
      width: 3px;
      height: calc(100% - 10px);
      background: white;
      transform: rotate(45deg);
      transition: all 0.2s; }
    .popup_photo .close_popup:after {
      transform: rotate(-45deg); }
    .popup_photo .close_popup:hover:after, .popup_photo .close_popup:hover:before {
      background: #fff; }

.popup_contact_us {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0);
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(100%);
  transition: all 0.4s;
  z-index: 9999; }
  .popup_contact_us.active {
    opacity: 1 !important;
    visibility: visible;
    transform: translateY(0%);
    pointer-events: auto;
    transition: all 0.2s; }
  .popup_contact_us .popup_content {
    position: relative;
    width: calc(100vw - 100px);
    height: 100vh;
    max-width: 1024px;
    max-height: 80vh; }
    .popup_contact_us .popup_content .iframe_wrap {
      position: relative;
      border: 1px solid #000;
      width: 100%;
      height: 100%;
      transition: all 0.6s; }
      .popup_contact_us .popup_content .iframe_wrap iframe {
        border: 10px solid #fff;
        width: 100%;
        height: 100%;
        display: block; }
  .popup_contact_us .close_popup {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    border-radius: 50%;
    background-color: #000;
    transition: all 0.2s;
    z-index: 99; }
    .popup_contact_us .close_popup:after, .popup_contact_us .close_popup:before {
      content: '';
      position: absolute;
      top: 5px;
      left: 50%;
      margin-left: -1px;
      width: 3px;
      height: calc(100% - 10px);
      background: #111110;
      transform: rotate(45deg);
      transition: all 0.2s; }
    .popup_contact_us .close_popup:after {
      transform: rotate(-45deg); }
    .popup_contact_us .close_popup:hover:after, .popup_contact_us .close_popup:hover:before {
      background: #fff; }

@media only screen and (min-width: 0px) and (max-width: 1023px) {
  .active .content {
    filter: blur(4px);
    transition: all 0.4s; } }

/****** M stuff ******/
.gmaps {
  width: 100%;
  height: 450px;
  border: 0; }

.highlight {
  padding: 0.25rem;
  background-color: white;
  border: 1px solid gray;
  cursor: pointer; }

#photos {
  /* Prevent vertical gaps */
  line-height: 0;
  column-count: 5;
  column-gap: 0px; }

#photos img {
  /* Just in case there are inline attributes */
  width: 100% !important;
  height: auto !important; }

@media (max-width: 1200px) {
  #photos {
    -moz-column-count: 4;
    -webkit-column-count: 4;
    column-count: 4; } }

@media (max-width: 1000px) {
  #photos {
    -moz-column-count: 3;
    -webkit-column-count: 3;
    column-count: 3; } }

@media (max-width: 800px) {
  #photos {
    -moz-column-count: 2;
    -webkit-column-count: 2;
    column-count: 2; } }

@media (max-width: 400px) {
  #photos {
    -moz-column-count: 1;
    -webkit-column-count: 1;
    column-count: 1; } }

@media only screen and (min-width: 0px) and (max-width: 769px) {
  #navigation {
    display: none; } }

@media only screen and (min-width: 0px) and (max-width: 1023px) {
  #navigation {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100vw;
    max-width: 220px;
    transform: translateX(-100%);
    z-index: 10;
    transition: all 0.4s; }
    #navigation.active {
      transform: translateX(0); } }

.show {
  display: block !important; }
