* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  scroll-behavior: smooth;
}

.gal2 {
  height: 100%;
  background: linear-gradient(45.5deg, rgb(213, 221, 13, 1), rgb(17, 144, 17), rgba(213, 221, 13, 1));
}

.heading h1 {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 40px;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  font-size: 60px;
}

.heading a {
  color: white;
  width: fit-content;
  margin-left: 48%;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 20px;
  font-weight: 600;
}

.cont {
  position: relative;
  padding-top: 30px;
}

.cont .img-cont {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  padding: 10px;
}

.cont .img-cont .image {
  height: 250px;
  width: 350px;
  border: 10px solid #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, .1);
  overflow: hidden;
  cursor: pointer;
}

.cont .img-cont .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: 0.2s linear;
}

.cont .img-cont .image:hover img {
  transform: scale(1.05);
}

.cont .popup-img {
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, .9);
  height: 100%;
  width: 100%;
  z-index: 100;
  display: none;
}

.cont .popup-img span {
  position: absolute;
  top: 0;
  right: 10px;
  font-size: 40px;
  font-weight: bolder;
  color: #fff;
  cursor: pointer;
  z-index: 100;
}

.cont .arrows{
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  transform: translateY(650%);
  padding: 0 30px;
  align-items: center;
  align-self: center;
  color: #fff;
  /* font-size: 50px; */
  position: relative;
  z-index: 100;
  cursor: pointer;
}

.cont button{
  font-size: 40px;
  padding: 0 15px;
  border-radius: 50%;
  padding-bottom: 5px;
  cursor: pointer;
  border: 0;
  color: rgb(255, 255, 255);
  background: rgba(255, 255, 255, 0.5);
  filter: opacity(75%);
  transition: ease-in-out 0.1s;
}

.cont button:hover{
  filter: opacity(100%);
}

.cont .popup-img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 5px solid #fff;
  border-radius: 5px;
  height: 80%;
  object-fit: contain;
}

@media (max-width:1360px) {
  .cont .popup-img img {
    width: 95%;
    /* height: auto; */
  }
}

@media (max-width:768px) {
  .cont .popup-img img {
    width: 95%;
    height: auto;
  }
  .cont .arrows{
    top: -10px;
  }
  .cont button{
    font-size: 20px;
    padding: 0 10px;
    border-radius: 50%;
    padding-bottom: 5px;
    color: rgb(255, 255, 255);
    background: rgba(255, 255, 255, 0.5);
    filter: opacity(75%);
    transition: ease-in-out 0.1s;
  }
}

@media (max-width:410px) {
  .heading h1 {
    font-size: 45px;
  }
}