@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=PT+Mono");
nt-family: "PT Mono", monospace;
}


.masonry {
    -webkit-column-count: 2;
  -moz-column-count: 2;
       column-count: 2;
  -moz-column-gap: 0;
       column-gap: 0;
  counter-reset: item-counter;
  display:flex;

}

.masonryHolder{
  border-top:solid 1px #ccc;
}

@media screen and (min-width: 0px) {
  .masonry {
    -webkit-column-count: 2;
    -moz-column-count: 2;
         column-count: 2;
         padding:1rem;
  }


@media screen and (min-width: 400px) {
  .masonry {
    -webkit-column-count: 2;
    -moz-column-count: 2;
         column-count: 2;
        
  }


  .item__content {
  position: relative;
  display: flex;
  flex-direction: column;
}

}
@media screen and (min-width: 600px) {
  .masonry {
    -webkit-column-count: 3;
    -moz-column-count: 3;
         column-count: 3;
  }
}
@media screen and (min-width: 800px) {
  .masonry {
    -webkit-column-count: 3;
    -moz-column-count: 3;
         column-count: 3;
  }
}
@media screen and (min-width: 1100px) {
  .masonry {
    -webkit-column-count: 4;
    -moz-column-count: 4;
         column-count: 4;
  }
}

.item {
  box-sizing: border-box;
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  padding: 10px 0 10px 0;
  counter-increment: item-counter;


  overflow:hidden;

}
.item__content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  font-size: 40px;
  color: #360007;

  box-sizing: border-box;

  aspect-ratio:2/3;

}

.item__content:hover, .item__content:active{
opacity:.9;}



.item__content:before {
  position: absolute;
  top: .5em;
  left: .5em;
  font-size: 13px;
  width: 2em;
  height: 2em;
  line-height: 2em;
  text-align: center;
  font-weight: bold;
  font-family:"futura", "futura pt", arial, sans-serif;

background:white;
color:#285e4c;
  content: counter(item-counter);
  border-radius:2em;

}

.item__content--horz {
 
 color: #ffffff;
   aspect-ratio:3/2;
}


.item__content--medium {
 
 color: #ffffff;
  height: 175px;
}


/* modal */ 
/* [Object] Modal
 * =============================== */


.modal {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: left;
  background: rgba(0,0,0, .9);
  transition: opacity .25s ease;
  z-index:99999;

}


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

.modal-state {
  display: none;
}

.modal-state:checked + .modal {
  opacity: 1;
  visibility: visible;
}

.modal-state:checked + .modal .modal__inner {
  top: 0;
}

.modal__inner {
  transition: top .25s ease;
  position: absolute;
  top: -20%;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  overflow: auto;
 
  border-radius: 5px;
  padding: 1em 4em 3em 3em;
  height: 90%;
  max-width:700px;
 width: static;


 background: #285e4c;
 background:#efefef;
}

.modal#modalForMap .modal__inner{
width:100% !important;
height:100%;
max-width:100%;
padding:0 !important;
}

.closeHolder{
  width:100%;
  text-align:right;
  background:#eee;
  overflow:hidden;
}
.modal__close {
  position: absolute;
  right: 1em;
  top: 1em;
  width: 1.1em;
  height: 1.1em;
  cursor: pointer;

}


.modal__close:after,
.modal__close:before {
  content: '';
  position: absolute;
  width: 2px;
  height: 1.5em;
  background: #000;
  display: block;
  transform: rotate(45deg);
  left: 50%;
  margin: -3px 0 0 -1px;
  top: 0;

}

.modal__close:hover:after,
.modal__close:hover:before {
  background: #aaa;
}

.modal__close:before {
  transform: rotate(-45deg);
}

@media screen and (max-width: 768px) {
  
  .modal__inner {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
  }

  .modal#modalForMap .modal__inner{
width:100%;
padding:0 !important;
}


}


