 /* 3 images container  ->    imagesbox.css */

 .section{
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;

 }

 .imgpara{
  display: block;
  max-width: 95%;
  margin-top: 40px;
  gap: 15px;
  columns: 4 440px;;
  margin-bottom: 20px;
  
}

.imgpara .imgp{
  display: flex;
  position: relative;
  flex-direction: column;
  overflow: hidden;
  list-style: none;
  margin-bottom: 14px;
  border-radius: 3px;
  cursor: pointer;
}
.imgpara .imgp .img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    
   
}
.textboxtop{
    height: 100px;
    width: 100%;
    position: absolute;
    top:-100px;
    background: linear-gradient(to bottom, #0000003a,transparent);
    transition: top 0.25s ease;
}

.textbox{
    height: 100px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    justify-content: space-evenly;
   position: absolute;
   bottom:-100px;
   transition: bottom 0.2s ease;
   background: linear-gradient(to top, #0000005c,transparent);
}
.Photographername{
    width: 77%;
    display: flex;
    align-items: center;
    padding-top: 10px;
    padding-left: 10px;
    
}
.Photographername .profileicon{
    width: auto;
    height: 30px;
    
}
.Photographername p{
    padding-left: 5px;
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 500;
  
}
.title{
    width: 77%;
    height: auto;
}
.title p{
    color: #ffffff;
    font-size: 1rem;
    font-weight: 400;
}

.imgp:hover .textbox{
    bottom: 0;
}
.imgp:hover .textboxtop{
    top: 0;
}





.Btn {
    width: 50px;
    height: 50px;
    border: 2px solid rgb(214, 214, 214);
    border-radius: 15px;
    background-color: rgb(255, 255, 255);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    transition-duration: 0.3s;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.11);
  }
  
  .svgIcon {
    fill: rgb(70, 70, 70);
    height:1em;
  }
  
  .icon2 {
    width: 18px;
    height: 5px;
    border-bottom: 2px solid rgb(70, 70, 70);
    border-left: 2px solid rgb(70, 70, 70);
    border-right: 2px solid rgb(70, 70, 70);
  }
  
  .Btn:hover {
    background-color: rgb(4, 0, 29);
    transition-duration: 0.3s;
  }
  
  .Btn:hover .icon2 {
    border-bottom: 2px solid rgb(235, 235, 235);
    border-left: 2px solid rgb(235, 235, 235);
    border-right: 2px solid rgb(235, 235, 235);
  }
  
  .Btn:hover .svgIcon {
    fill: rgb(255, 255, 255);
    animation: slide-in-top 1s linear infinite;
    
  }
  
  @keyframes slide-in-top {
    0% {
      transform: translateY(-10px);
      opacity: 0;
    }
  
    100% {
      transform: translateY(0px);
      opacity: 1;
    }
  }
  