
/* Pictures start */

#pictures {
  margin-top: 64px;
}

#pictures h2 {
  color: var(--Blue, #1e3c72);
  font-size: 50px;
  font-weight: 600;
  line-height: 1.3;
  text-transform: uppercase;
  margin-bottom: 64px;
}

#pictures .image-container {
  height: 452px;
  /* Set the container height */
  overflow: hidden;
  /* Hide overflow for responsive scaling */
  border-radius: 10px;
  /* Optional rounded corners */
  position: relative;
}

#pictures .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Ensures image scales and crops to fill container */
  transition: transform 0.3s ease;
  /* Optional zoom effect */
}

#pictures .image-container:hover img {
  transform: scale(1.05);
  /* Optional slight zoom on hover */
}

#pictures .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  /* Semi-transparent overlay */
  opacity: 0;
  transition: opacity 0.3s ease;
}

#pictures .image-container:hover .overlay {
  opacity: 1;
}

#pictures .download-link {
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: none;
  padding: 10px 20px;
  background-color: var(--Blue, #1e3c72);
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

#pictures .download-link:hover {
  background-color: #ca202e;
}

#pictures .button-wrapper a {
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 150% */
  letter-spacing: 3.2px;
  text-transform: uppercase;
}

/* Hexagon button with SVG background */
#pictures .hexagon-button {
  position: relative;
  display: grid;
  width: 254px;
  height: 54px;
  line-height: 54px !important;
  text-align: center;
  font-size: 12px;
  font-weight: bold;
  color: #1e3c72;
  text-decoration: none;
  text-transform: uppercase;
  font-family: Arial, sans-serif;
  background: url("../images/white-hexagon.svg") no-repeat center;
  background-size: auto;
  background-size: contain;
  transition: all 0.3s ease;
  z-index: 1;
  box-sizing: border-box;
}

/* Adding silver lines */
#pictures .hexagon-button::before,
#pictures .hexagon-button::after {
  content: "";
  position: absolute;
  width: 40px; /* Adjust the size of the silver lines */
  height: 4px; /* Thickness of the silver lines */
  background-color: #1d1e31; /* Silver color */
  z-index: 2; /* Ensure they appear above the SVG background */
  transition: all 0.3s ease;
}

#pictures .hexagon-button::before {
  top: 0px;
  left: 63%;
  transform: translateX(-50%);
  height: 3px;
  width: 75px;
}

#pictures .hexagon-button::after {
  bottom: 0px;
  left: 37%;
  transform: translateX(-50%);
  height: 3px;
  width: 120px;
}

#pictures .hexagon-button:hover::before {
  left: 28%;
}

#pictures .hexagon-button:hover::after {
  left: 65%;
}

/* Existing overlay styles */
#pictures .overlay {
  opacity: 0;
  transition: opacity 0.3s ease;
}

#pictures .image-container:hover .overlay,
#pictures .image-container.show-overlay .overlay {
  /* Show overlay on hover (desktop) or click (mobile) */
  opacity: 1;
}






@media screen and (max-width: 767px) {
  #pictures h2 {
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
    line-height: 40px; /* 111.111% */
    text-transform: uppercase;
    margin-bottom: 40px;
  }
  #pictures p {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
  }

  #pictures.row h4{
    margin-top: 30px;
  }


  #pictures .image-container {
    height: 400px;

  }
}

/* Pictures end */