*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
section{
    position: relative;
    min-height: 100vh;
    width: 100%;
    margin:  0 20px;
   
}
section .lightBox{
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 100;
    display: none; 
}
.lightBox .lightBox_content{
    position: fixed;
    left: 50%;
    top: 55%;
    transform: translate(-50%, -50%);
    max-width: 950px;
    width: 100%;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    padding: 20px;
}

.lightBox_content .close{
    position: absolute;
    top: 0;
    left: -40px;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
}
 .logo_icons{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
}
 .logo_icons a{
    display: flex;
    align-items: center;
    text-decoration: none;
}

 .logo_icons .logoImg{
    height: 40px;
    width: 40px;
    border-radius: 50%;
}
 .logo_icons .text_content{
    display: flex;
    flex-direction: column;
    margin-left: 10px;
    color: #333;
    font-size: 16px;
    font-weight: 500;
}
 .logo_icons .followers{
    font-size: 14px;
    margin-top: -5px;
}
 .logo_icons .icons i{
height: 35px;
width: 35px;
background: #ccc;
text-align: center;
line-height: 35px;
font-size: 16px;
color: #fff;
border-radius: 4px;
margin:  0 5px;
cursor: pointer;
transition: all 0.3s ease;
}
.logo_icons .icons i:hover{
    background: #2a2a2a;
}
section .lightBox .showImg{
    display: flex;
    justify-content: center;
    height: 100%;
    width: 100%;
}
.lightBox .showImg .image{
    max-width: 900px;
    width: 100%;
    max-height: 700px;

}
.showImg .image img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
section .image-gallery{
    max-width: 1300px;
    min-height: 100vh;
    width: 100%;
    background: #fff;
    margin: auto;
}
.image-gallery header{
    color: #fff;
    font-size: 30px;
    font-weight: 600;
    text-align: center;
    background: #24292d;
    padding: 20px 0;
    letter-spacing: 1px;


}
.image-gallery .image-container{
    columns: 3;
    margin-top: 20px;
}

.image-container img{
    width: 100%;
    box-shadow:  0 5px 10px rgba(0, 0, 0, 0.1);
}

.image-container .image-box{
    position: relative;
    cursor: pointer;
}
.image-box .logo_icons{
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    padding: 10px;
    background: rgba(0, 0, 0, 0.2);
    box-shadow:  0 -10px 10px rgba(0, 0, 0, 0.1);
    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;
}
.image-box .logo_icons .icons i:hover{
    color: #707070;
}
section .image-gallery .logo_icons .text_content{
    color: #fff;
}

@media(max-width: 1034px){
    .lightBox_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;
    }
    .image-gallery header{
        font-family: 25px;
    }
 }