.container-galery {
  display: flex;
  justify-content: space-around;
  flex-direction: column;
  /* margin: 20px; */
  width: 100vw;
}

.container-galery img {
  width: 40vw;
  border-radius: 10px;
}

.molbra {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: space-evenly;
}

.store {
  background-image: url("../assets/molbra1.jpg");
  border-radius: 10px;
  background-size: cover;
  height: 100vh;
  width: 45vw;
  margin-bottom: 15%;
  margin-left: 10%;
}

.store p {
  margin-left: 10px;
  color: #fff;
  font-size: 30px;
}

.industry {
  background-image: url("../assets/molbra2.jpg");
  margin-left: 10px;
  overflow: hidden;
  border-radius: 10px;
  background-size: cover;
  width: 45vw;
  height: 100vh;
}

.industry p {
  margin-left: 10px;
  color: rgb(0, 0, 0);
  font-size: 30px;
}

.galery-instaled {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(6, 22%);
  justify-content: space-evenly;
  margin: 0 auto;
  gap: 2%;
  height: 250vh;
  width: 90vw;
}

.galery {
  height: 100%;
  width: 100%;
  margin: 0;
  border-radius: 20px;
  background-size: cover;
  overflow: hidden;
  cursor: pointer;
}

.expectation {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0;
  height: 100%;
  width: 100%;
  border-radius: 20px;
}

.expectation:hover {
  opacity: 1;
  background-color: #4d4d4d8d;
}

@media (max-width: 1500px) {
  body {
    height: 4500px;
  }

  .galery-instaled {
    grid-template-columns: repeat(2, 1fr);
  }

  body footer{
    position: absolute;
    bottom: 0;
    width: 100%;
  }
}

@media (max-width: 970px) {
  body{
    height: 4450px;
  }

  .molbra{
    grid-template-columns: 1fr;
  }

  .store, .industry{
    margin: 5%;
    width: 90vw;
    max-height: 400px;
  }
}

@media (max-width: 430px) {
  body{
    height: 3450px;
  }

  .galery-instaled {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(11, 1fr);
  }
}