/* Define CSS Custom Properties for breakpoints */
:root {
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --breakpoint-xxl: 1400px;
}
.text-ecoc-green{
  color: #8AD8A9;
}
.image-container {
  position: relative;
  text-align: center;
}
.carousel-caption{
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 6vw;
  width: 100%;
  font-weight: 700;
}
.bg-ecoc-green{
  background-color: #8AD8A9;
}
.blurred-image {
  filter: blur(5px); /* Adjust the pixel value for desired blur intensity */
  -webkit-filter: blur(5px); /* For older WebKit browsers */
}
.display-6{
  font-weight: 500;
}
.address-link, .address-link:hover {
  text-decoration: none;
  color: black;
}