@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
.photo-section{
    position: relative;
    min-height: 100vh;
    width: 100%;
    margin: 0 20px;
}
.photo-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: 50%;
    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;
    opacity: 0.8;
}
.lightBox_content .close:hover{
    opacity: 1;
}
.photo-section .logo_icons{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
}
.photo-section .logo_icons a{
    display: flex;
    align-items: center;
    text-decoration: none;
}
.photo-section .logo_icons .logoImg{
    height: 40px;
    width: 40px;
    border-radius: 50%;
}
.photo-section .logo_icons .text_content{
    display: flex;
    flex-direction: column;
    margin-left: 10px;
    color: #333;
    font-size: 16px;
    font-weight: 500;
}
.logo_icons .text_content .followers{
    font-size: 13px;
    margin-top: -5px;
}
.photo-section .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;
}
.lightBox .logo_icons .icons i:hover{
    color: #fff;
    background: #7d2ae8;
}
.photo-section .lightBox .showImg{
    display: flex;
    justify-content: center;
    height: 100%;
    width: 100%;
}
.lightBox .showImg .image{
    max-height: 700px;
    max-width: 900px;
}
.showImg .image img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.photo-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;
    gap: 15px;
}
.image-container img{
    width: 100%;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
.image-container .image-box{
    position: relative;
    cursor: pointer;
    margin: 10px 0;
}
.image-box .logo_icons{
    position: absolute;
    bottom: 5px;
    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;
}
.photo-section .image-gallery .logo_icons .text_content{
    color: #fff;
    font-size: 14px
}
.photo-section .image-gallery .text_content .followers{
    font-size: 12px;
    font-weight: 400;
    margin-top: -4px;
}
@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;
    }

    @media (max-width: 602px) {
        .image-gallery header {
            font-size: 25px;
        }
    }
}