


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
   
}
.container {
    width: 80%;
    margin: 0 auto;
}
.lightBox {
    display: grid;
    /* grid-template-columns: repeat(4, 24%); */
    justify-content: space-around;
    align-items: flex-start;
    grid-gap: 10px;
    margin: 15px 0px;
}
.lightBox img {
    width: 100%;
    height: auto;
    cursor: pointer;
}
/* ===== view js image ====== */
.img_box {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}
.img_box img {
    width: 30%;
    height: auto;
}
.img_box .cross {
    position: absolute;
    top: 10px;
    right: 20px;
    color: #fff;
    font-size: 36px;
    cursor: pointer;
    padding: 5px;
    transition: all 0.3s;
}
.img_box .cross:hover {
    color: #ccc;
}
.arrow_btn {
    width: 50%;
    height: 100vh;
    margin: 0 auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.hide {
    display: none;
}
.arrow_btn #prevBtn,
.arrow_btn #nextBtn {
    border: transparent;
    background: transparent;
    color: #fff;
    z-index: 100;
    font-size: 66px;
    position: absolute;
    cursor: pointer;
}
.arrow_btn #prevBtn {
    left: -40px;
}
.arrow_btn #nextBtn {
    right: -40px;
}
/* ======= responsive style only ======= */
@media (max-width: 768px) {
    .container {
        width: 95%;
    }
    .lightBox {
        grid-template-columns: repeat(2, 49%);
    }
    .img_box img {
        width: 80%;
        height: auto;
    }
    .arrow_btn {
        width: 80%;
    }
    .arrow_btn #prevBtn {
        left: -10%;
    }
    .arrow_btn #nextBtn {
        right: -10%;
    }
}
@media (min-width: 769px) {
    .lightBox {
        grid-template-columns: repeat(3, 32%);
    }
}
@media (min-width: 992px) {
    .lightBox {
        grid-template-columns: repeat(4, 24%);
    }
}


::-webkit-scrollbar{
width: 5px; 
}
    
::-webkit-scrollbar-track{
background-color: transparent;
}

::-webkit-scrollbar-thumb{
background-color: #f2a5bb;
}


::selection {
  color: #fff;
  background: #f2a5bb;
}



a {
  text-decoration: none;
  color: #9c606a;
  }
 
a:visited{
  color: #6e759c;
}
 
a:hover{
   font-weight: 1000;
   color:hotpink;
}




 