/* div.gallery {
    margin: 5px;
    border: 1px solid #ccc;
    float: left;
    width: 180px;
  }
   */
/* .gallery:hover {
    border: 1px solid #777;
  } */

button i {
  color: white;
}

color {
  color: #db2b1b;
  color: #291b6c;
  color: #021844;
}

.gallery {
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: #f5f5f5;
}
.gallery-title h1 {
  color: #021844;
  font-size: 50px;
  width: 100%;
  text-align: center;
}
.gallery-title h3 {
  color: #021844;
  font-size: 30px;
  padding-bottom: 30px;
  width: 100%;
  text-align: center;
}

.gallery-container {
  display: flex;
  gap: 20px;
  object-fit: cover;
  height: 400px;
}

.image-container {
  position: relative;
  width: 50%;
}

.image {
  opacity: 1;
  display: block;
  width: 100%;
  height: 300px;
  transition: 0.5s ease;
  backface-visibility: hidden;
}

.middle {
  transition: 0.5s ease;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.image-container:hover .image {
  opacity: 0.3;
}

.image-container:hover .middle {
  opacity: 1;
}

.text {
  background-color: #021844;
  color: white;
  font-size: 16px;
  padding: 16px 32px;
}

@media (max-width: 800px) {
  .gallery-container {
    display: inline;
  }

  .image-container {
    position: relative;
    width: 100%;
    padding-top: 20px;
  }
}

/* page gallery */

.gallery_view {
  margin-top: 130px;
  text-align: center;
}

.gallery_image {
  display: flex;
  width: 100%;
  height: 350px;
  /* gap: 10px; */
  margin: 30px;
  /* margin-bottom: 110px; */
  text-align: center;
  justify-content: space-between;
}
.gallery_img {
  width: 100%;
  height: 350px;
  background-color: white;
  margin: 10px;

  /* height: 260px; */
}

.gallery_img img:hover {
  opacity: 0.4;
}
.gallery_img img {
  width: 100%;
  height: 250px;
}

@media (max-width: 800px) {
  .gallery_image {
    display: inline;
    width: 100%;
    height: 400px;
    gap: 10px;
    margin: 30px;
    margin-bottom: 110px;
    text-align: center;
  }
  .gallery_img {
    width: 100%;
    height: 400px;

    /* height: 260px; */
  }
  .gallery_img img {
    width: 100%;
    height: 300px;
  }
}
