@charset "UTF-8";
/*   
Theme Name: VIZINHODAARTE THEME
Description: Template for "Instituto Vizinho da Arte" / Vitória, Espírito Santo, Brazil
Author: Marcelo dos Santos Netto
*/
/* FIRST ADJUSTMENTS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* MAIN PANEL - BACKGROUND */
.panel-parallax {
  height: 500px;
  min-height: 500px;
  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* PARAGRAPH */
p {
  margin: 10px 0 20px 0;
}

/* BACKGROUND */
.bg-blue {
  background: rgb(0, 51, 153) !important;
}

/* PANEL */
.panel-bg-image {
  background-image: url("./images/LEANDROMELLO-background02.svg");
  background-position: center center;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: 1450px auto;
  background-position: center bottom;
}

.panel-content {
  flex-direction: row;
}

.panel-content-left {
  display: flex;
}

/* LINKS */
a {
  text-decoration: none !important;
}

a:hover {
  text-decoration: underline !important;
}

/* IMAGES */
.img-shadow {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.img-left {
  padding: 0 1.5rem 1.5rem 0;
  float: left;
}

.img-right {
  padding: 0 0 1.5rem 1.5rem;
  float: right;
}

.img-general {
  width: 100% !important;
  height: auto !important;
}

.img-borders {
  border: 15px solid white;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

/* No seu arquivo CSS */
.masonry-grid {
  -moz-column-count: 3;
       column-count: 3; /* Número de colunas */
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem; /* Espaçamento do Bootstrap */
}

.masonry-item {
  display: inline-block;
  width: 100%;
  margin-bottom: 1.5rem;
}

/* LIGHTBOX */
.lightbox-transparent {
  opacity: 0.8;
  background: black;
}

.lightbox-back,
.lightbox-front {
  z-index: 10;
  position: fixed;
  width: 100%;
  height: 100%;
  text-align: center;
  align-items: center;
  justify-content: center;
  display: none;
}

.lightbox-image {
  opacity: 1;
  width: auto;
  height: auto;
  max-width: 90vw;
  max-height: 90vh;
}

/* CONTAINER ADJUSTMENTS */
.container-main {
  padding-top: 100px !important;
}

/* CONTENT DISPLAY */
.content-02-cols {
  margin-top: 50px;
  -moz-column-count: 2;
       column-count: 2;
  white-space: pre-line;
}
@media (max-width: 768px) {
  .content-02-cols {
    -moz-column-count: 1;
         column-count: 1;
  }
}

/* ANCHOR: TITLE */
.title {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.title:before,
.title:after {
  content: "";
  border-top: 2px solid;
  margin: 0 20px 0 0;
  flex: 1 0 20px;
}

.title:after {
  margin: 0 0 0 20px;
}

/* https://stackoverflow.com/questions/35814653/automatic-height-when-embedding-a-youtube-video */
.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* SNACKBAR */
/* The snackbar - position it at the bottom and in the middle of the screen */
#toast {
  visibility: hidden;
  width: 60%;
  margin: 0 20% 0 20%;
  min-width: 250px;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 2px;
  padding: 16px;
  position: fixed;
  z-index: 1;
  bottom: 30px;
}

/* GRID FOR IMAGES */
.img-grid-container {
  -moz-column-count: 3;
       column-count: 3;
}

.grid-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.grid-item {
  width: calc((100% - 32px) / 3);
  padding: 20px;
  text-align: center;
  box-sizing: border-box;
}

/* TOAST */
/* Show the snackbar when clicking on a button (class added with JavaScript) */
#toast.show {
  visibility: visible;
  /* Add animation: Take 0.5 seconds to fade in and out the snackbar.
  However, delay the fade out process for 2.5 seconds */
  /* animation: fadein 0.5s, fadeout 0.5s 2.5s forwards; */
}

/* Animations to fade the snackbar in and out */
@keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }
  to {
    bottom: 30px;
    opacity: 1;
  }
}
@keyframes fadeout {
  from {
    bottom: 30px;
    opacity: 1;
  }
  to {
    bottom: 0;
    opacity: 0;
  }
}
/* </TOAST> */
/* DO HERE THE REQUIRED MICROADJUSTS: */
@media (max-width: 300px) {
  .image {
    position: absolute;
    left: 0;
  }
}
@media (max-width: 575px) {
  .panel-bg-image {
    background-size: 1000px auto;
  }
}
@media (max-width: 768px) {
  .panel-content {
    flex-direction: column-reverse;
  }
  .img-left,
  .img-right {
    padding: 0 0 1.5rem 0;
  }
  .img-grid-container {
    -moz-column-count: 1 !important;
         column-count: 1 !important;
  }
}
@media (max-width: 992px) {
  .grid-container {
    grid-template-columns: 1fr; /* Changes from 3 columns to 1 column */
  }
  .grid-item {
    width: 100%; /* Ensures elements occupy the full available width */
  }
  .img-grid-container {
    -moz-column-count: 2;
         column-count: 2;
  }
}
/* 
@media (min-width:1200px) {

}
@media (min-width:1400px) {

} */
@media print {
  .do-not-print {
    display: none;
  }
  #comments {
    page-break-before: always;
  }
  code {
    font: 10pt Courier, monospace;
  }
  blockquote {
    margin: 1.3em;
    padding: 1em;
  }
  img {
    display: block;
    margin: 1em 0;
  }
  a img {
    border: none;
  }
  table {
    margin: 1px;
    text-align: left;
  }
  th {
    border-bottom: 1px solid #333;
    font-weight: bold;
  }
  td {
    border-bottom: 1px solid #333;
  }
  th,
  td {
    padding: 4px 10px 4px 0;
  }
  caption {
    background: #fff;
    margin-bottom: 2em;
    text-align: left;
  }
  thead {
    display: table-header-group;
  }
  tr {
    page-break-inside: avoid;
  }
  a {
    text-decoration: none;
    color: black;
  }
} /* END print media *//*# sourceMappingURL=style.css.map */