.d-row-.Query-from {
  width: 50%;
  margin: 0 auto;
  padding: 31px 0;
}

h1.text-conter-in {
  text-align: center;
  margin: 0 0 18px;
}

.hover-text-in {
  color: #648c05 !important;
  font-weight: 700;
}

.overview_box {
  background: #fff;
  border-radius: 15px;
  padding: 45px;
}

.fishing-img-row {
  display: flex;
  flex-direction: row;
  gap: 10px;
}


.more-in-text:hover {
  background-color: transparent !important;

}

.container__img-holder {
  display: inline-block;
  cursor: pointer;
}

.container__img-holder img {
  width: 100%;
  display: block;
  object-fit: cover;
}


/* Popup Styling */
.img-popup {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(255, 255, 255, .5);
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}

.img-popup img {
  max-width: 900px;
  width: 100%;
  opacity: 0;
  transform: translateY(-100px);
  -webkit-transform: translateY(-100px);
  -moz-transform: translateY(-100px);
  -ms-transform: translateY(-100px);
  -o-transform: translateY(-100px);
}

.close-btn {
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: end;
  flex-direction: column;
  position: fixed;
  cursor: pointer;
}

.close-btn .bar {
  height: 4px;
  background: #000;
}

.close-btn .bar:nth-child(1) {
  transform: rotate(45deg);
}

.close-btn .bar:nth-child(2) {
  transform: translateY(-4px) rotate(-45deg);
}

.opened {
  display: flex;
}

.opened img {
  animation: animatepopup 1s ease-in-out .8s;
  -webkit-animation: animatepopup .3s ease-in-out forwards;
}

@keyframes animatepopup {

  to {
    opacity: 1;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
  }

}