*{
    margin: 0
    padding: 0
    font-family:sans-derif;
        
}
.hdr .lnk{
    
}
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
.logo{
    Max-width: 250px;
    height: auto;   
}
body{
    background: #ecf4fb;
}
.projects_lists h2 {
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  font-size: 28px;
  text-align: center;
   margin-top: 45px;
   margin-bottom: 45px;
}
.projects_lists ul {
    margin: 0px;
    padding: 0px;
    text-align: center;
}
.projects_lists ul li {
    list-style: none;
    padding: 3px 30px;
    display: inline-block;
    border: 1px solid #ddd;
    margin-bottom: 30px;
    margin-right: 12px;
}
.projects_lists ul li a {
    text-decoration: none;
    color: #000;
    font-size: 18px;
    font-family: "Poppins", sans-serif;
  font-weight: 400;
}
.hdr {
    text-align: center;
    padding: 15px 0;
}

.img-gallery {
    width: 100%;
    margin: 0 auto;
    display: block;
    text-align: center;
}

.img-gallery img{
    width: 100%;
    cursor: pointer;
}

.img-gallery img:hover{
    transform: scale(0.8) rotate(-15deg);
    border-radius: 20px;
    box-shadow: 2 32px 75px rgba(68, 77,136, 0.2);
}
.full-img{
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.9);
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 100;
}

.full-img img{
    width: 100%;
    max-width: 900px;
    
}
.full-img span{
    position: absolute;
    top: 5%;
    right: 5%;
    color: azure;

}
.galleies {
    margin-bottom: 30px;
}
.gallery_title h2 {
    font-family: "Poppins", sans-serif;
  font-weight: bold;
  font-size: 35px;
  text-align: center;
  text-transform: uppercase;
}
.img_list {
    column-count: 5;
    column-gap: 1rem;
    padding: 1rem;
}

.img_list img {
    width: 100%;
    margin-bottom: 1rem;
    border-radius: 10px;
    transition: transform 0.3s;
    cursor: pointer;
    border: 2px solid #fff;
    box-shadow: 0 0 5px #d7d7d7;
}

.img_list img:hover {
    transform: scale(1.03);
}

@media (max-width: 992px) {
    .img_list {
        column-count: 3;
    }
    .img_list img {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 768px) {
    .img_list {
        column-count: 2;
    }
}

@media (max-width: 576px) {
    .img_list {
        column-count: 1;
    }
}