section{
  position: relative;
  width: 100%;
}
section .overlay{
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 100;
  display: none;
}
.overlay .overlay_content{
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 12px;
  padding-top: 90px;
}

section .logo_icons{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
}
section .logo_icons a{
  display: flex;
  align-items: center;
  text-decoration: none;
}
section .logo_icons .logoImg{
  height: 40px;
  width: 40px;
  border-radius: 50%;
  object-fit: cover;
}
section .logo_icons .text_content{
  display: flex;
  flex-direction: column;
  margin-left: 10px;
  color: #333;
  font-size: 16px;
  font-weight: 500;
}
section .logo_icons .icons i{
  height: 35px;
  width: 35px;
  text-align: center;
  line-height: 35px;
  font-size: 40px !important;
  color: #fff;
  border-radius: 4px;
  margin: 0 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.overlay .logo_icons .icons i:hover{
  color: red;
  transition: all 0.3s ease;
}
section .overlay .showImg{
  display: flex;
  justify-content: center;
  height: 100%;
  width: 100%;
}
.overlay .showImg .image{
  max-height: 500px;
  max-width: 900px;
}
.showImg .image img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 5px;
}
section .image-gallery{
  width: 100%;
  margin: auto;
}
.image-gallery .image-container{
  columns: 3;
  margin-top: 20px;
  gap: 15px;
}
.image-container img{
  width: 100%;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
}
.image-container .image-box{
  position: relative;
  cursor: pointer;
  margin-bottom: 10px;
}
.image-container .image-box:hover{
  opacity: .8;
}
.image-box .logo_icons{
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  padding: 10px 15px;
  background: rgba(0, 0, 0, 0.2);
  box-shadow: 0 -10px 10px rgba(0, 0, 0, 0.2);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}
.image-box:hover .logo_icons{
  opacity: 1;
  pointer-events: auto;
}
.image-box .logo_icons .icons i{
  color: #b4b4b4;
  background: #fff;
}
.logo_icons .icons i:hover{
  color: #707070;
}
section .image-gallery .logo_icons .text_content{
  color: #fff;
  font-size: 14px
}
@media (max-width: 1034px) {
  .overlay_content .close{
    top: -40px;
    left: 10px;
  }
}
@media (max-width: 1002px) {
  .image-gallery .image-container{
    columns: 2;
  }
}
@media (max-width: 602px) {
  .image-gallery .image-container{
    columns: 1;
  }
}
@media (max-width: 602px) {
  .image-gallery header{
    font-size: 25px;
  }
}