@import url(https://fonts.googleapis.com/css?family=Montserrat:400,700);
html {
  height: 100%;
}
html,
body {
  margin: 0;
  padding: 0;
  font-size: 10px;
  position: relative;
  box-sizing: border-box;
}
body {
  height: 100%;
  min-height: 100%;
}
#left-bar {
  position: relative;
  height: 100%;
  background: #ffffff;
  width: 300px;
}
#left-bar .logo {
  position: relative;
  margin: 0 auto;
  max-width: 100%;
  max-height: 100%;
  display: block;
  box-sizing: border-box;
  padding: 50px;
}
#body {
  padding: 50px 50px 50px 300px;
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  box-sizing: border-box;
}
#body .cnt {
  background: white;
  position: relative;
  width: 100%;
  min-height: 100%;
  box-sizing: border-box;
}
.grid:after {
  content: '';
  display: block;
  clear: both;
}
.gutter-sizer {
  width: 0px;
}
.grid-sizer,
.grid-item {
  width: 300px;
  height: 300px;
}
.grid-item {
  border: 0px solid white;
  box-sizing: border-box;
  transition: .3s all;
  background: white;
}
.grid-item a {
  display: block;
  color: inherit;
  text-decoration: inherit;
  outline: inherit;
}
.grid-item img {
  max-width: 100%;
  height: auto;
  display: block;
  transition: .3s all;
}
.grid-item .description {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  background-color: rgba(255, 255, 255, 0.8);
  opacity: 0;
  transition: .3s all;
  color: black;
  font-family: 'Montserrat', sans-serif;
  padding: 20px;
  box-sizing: border-box;
}
.grid-item .description .pubblicato {
  font-size: 10px;
}
.grid-item .description .titolo {
  font-size: 20px;
  text-transform: uppercase;
}
.grid-item .description .icona {
  font-size: 80px;
  text-align: center;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.grid-item .description .visitasito {
  position: absolute;
  bottom: 10px;
  right: 10px;
}
.grid-item:hover {
  border: 20px solid white;
  transition: .3s all;
}
.grid-item:hover img {
  transition: .3s all;
  transform: rotateY(180deg);
}
.grid-item:hover .description {
  opacity: 1;
}
/*# sourceMappingURL=main.css.map */