.sn{
  background-color: #00000046;
  padding: 20px;
  border-radius: 20px;
}

.container-galeria{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  justify-items: center;
  grid-gap: 0;
}
.item-galeria{
  width: 100%;
  overflow: hidden;
  background: #000;
}      
.img-galeria{
  opacity: 0.6;
  width: 100%;
  height: 100%;
  transform: scale(1.15);
  transition: transform 0.5s, opacity 0.5s;
}
  
.img-galeria:hover{
  opacity: 1;
  transform: scale(1.03);
}

/* GALERIA */

.container-gallery {
  margin: auto;
  border: #fff solid 5px;
  background: #fff;
}

/* mak images fill their container*/
img {
  max-width: 100%;
}
.img-grid img:hover {
  opacity: 0.5;
  cursor: pointer;
}

/* CSS Grid*/
.img-grid {
  display: grid;
  grid-template-columns: repeat(3, 3fr);
  grid-gap: 15px;
}

/* Media Query for changing grid on bigger screens*/

/* Bigger than Phones(tablet) */
@media only screen and (min-width: 750px) {
  .img-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Bigger than Phones(laptop / desktop) */
@media only screen and (min-width: 970px) {
  .img-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* BANNER TERRA */
#phs-banner-sn {
  width: 100%;
  padding: 0;
  background-color: #000000;
  height: 200px;
}
#phs-banner-sn .phs-content {
  text-align: left;
  grid-area: content;
  display: grid;
  grid-template-columns: auto auto;
  grid-template-areas: "title list";
}
#phs-banner-sn .phs-content .title {
  grid-area: title;
  color: #ffffff;
  margin-top:20px;
}
#phs-banner-sn .phs-content .title h2 {
  font-size: 49px;
  line-height: 60px;
  font-weight: 300;
}
#phs-banner-sn .phs-content .title h2 span {
  color: #0dd2bc;
}
#phs-banner-sn .phs-content .title p {
  margin-top: 5px;
  font-size: 22px;
  font-weight: normal;
  line-height: 38px;
}
#phs-banner-sn .phs-content .list {
  justify-self: end;
  grid-area: list;
  margin-top: 20px;
  color: #ffffff;
  font-weight: 600;
  font-size: 19px;
  line-height: 32px;
  letter-spacing: 0.04em;
}
#phs-banner-sn .phs-content .list p {
  color: #0dd2bc;
  font-weight: bold;
}
#phs-banner-sn .phs-content .list ul {
  list-style: none;
}
#phs-banner-sn .phs-content .list li:before {
  margin-left: -0.9em;
  content: ".";
  padding: 0 5px;
}


