body {
  margin: 0;
  width: 100%;
  padding: 0;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  font-size: larger;
}

.navbar-brand {
  overflow-x: hidden;
}
.navbar-brand img {
  width: 30px;
}
.navbar-brand span {
  margin-left: 20px;
}


.footer {
  background: linear-gradient(to right, #000000, #353060);
  color: #d6a936;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr)); /* Two divs per line */
  row-gap: 0px; /* Adding gap between grid items */
  padding: 20px; /* Adding some padding for spacing */
  text-align: justify;
}
.footer a {
  color: #d6a936;
}
.footer .phone-no,
.footer .address,
.footer .support,
.footer .contact-us {
  width: 40%;
  margin: 0;
  padding: 0;
}
.footer img {
  width: 100px;
  margin-right: 50px;
  margin-top: 20px;
  position: absolute;
  justify-self: end;
}

.logo-big {
  width: 100px !important; /* Adjust as needed */
  transition: width 0.3s ease; /* Add smooth transition */
  font-size: xx-large;
}

.logo-small {
  width: 40px !important; /* Adjust as needed */
  transition: width 0.3s ease; /* Add smooth transition */
}

.visible-nav {
  background-color: rgba(255, 255, 255, 0.1254901961) !important;
  transition: 0.3s ease;
}

.less-visible-nav {
  background-color: #ffffff !important;
  transition: 0.3s ease;
}


  .footer {
    overflow-x: hidden;
    width: 100%;
  }
  .footer img {
    width: 40%;
    transform: translate(-20px, 100px);
    position: absolute;
    right: 20px;
    width: 60px;
    text-align: left;
    margin: 0;
    padding: 0;
  }
  .footer p {
    width: 100%;
  }
  .footer .phone-no, .footer .address, .footer .support, .footer .contact-us {
    width: 60%;
    margin: 0;
    padding: 0;
  }
  .logo-big {
    width: 50px !important; /* Adjust as needed */
    transition: width 0.3s ease; /* Add smooth transition */
    font-size: 0px;
  }
  .logo-small {
    width: 20px !important; /* Adjust as needed */
    transition: width 0.3s ease; /* Add smooth transition */
  }
  .visible-nav {
    background-color: rgba(255, 255, 255, 0.1254901961) !important;
    transition: 0.3s ease;
  }
  .less-visible-nav {
    background-color: #ffffff !important;
    transition: 0.3s ease;
  }
/*# sourceMappingURL=home.css.map */




.header {
  background: url('./media/photo-gallery-background.png') no-repeat bottom center / cover;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.header-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 450px;
  width: 100%;
}

.header-content h1 {
  font-size: 42px;
  text-align: center;
  margin: 0;
}

@media (min-width: 768px) {
  .header-content h1 {
      font-size: 92px;
  }
}

.header-content h4 {
  text-align: center;
  font-weight: bold;
  margin-top: 5px;
}

.container-headr {
  margin: 40px auto;
  width: 90%;
  max-width: 1200px;
}

.photo-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-block: 70px;
  padding-inline: 20px;
  position: relative;

}
body{
  overflow-x: hidden;
}
.photo-img.zoomed{
  scale: 1.1;
  display: flex;
  position: relative;
  transition: ease-in-out 500ms;
  inset: 0;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.photo-img{
  transition: ease-in 500ms;
}

@media (min-width: 768px) {
  .photo-gallery {
      grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .photo-gallery {
      grid-template-columns: repeat(3, 1fr);
  }
  .photo-item{
      min-height: 400px;
  } 
}

.photo-item {
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.photo-img {
  width: 100%;
  height: auto;
  transition: transform 0.3s;
}

.photo-item:hover .photo-img {
  transform: scale(1.01);
}
.image-title-caption{
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
