.htxt1 {
  font-family: 'Tahoma', 'Open Sans', 'Times New Roman', Times, serif;
  font-size: 24pt;
  color: white;
  font-style: bold;

}

.htxt2 {
  font-family: 'Tahoma', 'Open Sans', 'Times New Roman', Times, serif;
  font-size: 12pt;
  color: white;
  font-style: bold;
}

.htxt3 {
  font-family: 'Tahoma', 'Open Sans', 'Times New Roman', Times, serif;
  font-size: auto;
  color: white;
  /* font-style: bold; */

}

/* start of slideshow hover box */
.slideshow-container {
  position: relative;
  max-width: 800px;
  margin: auto;
  overflow: hidden;
}

.slide {
  display: none;
  position: relative;
}

.slide img {
  width: 100%;
  height: auto;
}

.hover-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hover-content {
  text-align: center;
  color: white;
}

.slide:hover .hover-box {
  opacity: 1;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 1.5s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* end of slideshow hover box */

/* start of hover border */
.hover-border-container {
  display: flex;
  gap: 20px; /* Adjust the gap between images as needed */
}

.hover-border-image {
  transition: border 0.5s ease-in-out;
  
}

.hover-border-image:hover {
   border: 3px solid #0278BE; /*Change to desired border color */
  /* transition: border 0.3s ease-in-out; */
}
/* end of hover border */

/* start of hover zoom */
.hover-zoom-container {
  display: flex;
  gap: 20px; /* Adjust the gap between images as needed */
}

.hover-zoom-image {
  transition: transform 0.3s ease-in-out;
}

.hover-zoom-image:hover {
  transform: scale(1.1); /* Adjust the scale factor as needed */
}
/* end of hover zoom */
/* start of hover box image */
.hover-box-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.hover-box-image {
  position: relative;
  width: 100%;
  max-width: 1200px; /* Adjust the max-width as needed */
}

.hover-box-image img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0; /* Ensure no space between images */
}

.hover-box-text {
  padding: 5%;
  color: white;
  position: absolute;
  margin: 0;
  top: 0;
  width: 90%;
  height: 60%;
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0;
  transition: border 0.3s ease-in-out;
  align-items: center;
  text-align: center;
}
.hover-box-image:hover .hover-box-text {
  opacity: 1;
  max-height: 100%; /* Ensure the text container does not overflow */
  overflow: hidden; /* Hide any overflow text */
  word-wrap: break-word; /* Break long words to fit within the box */
}
.hover-box-image:hover {
   border: 5px solid #0278BE; /*Change to desired border color */
  /* transition: border 0.3s ease-in-out; */
}
/* end of hover box image */
/* start of dropdown */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-button {
  background-color: #959595; /* Green */
  color: white;
  padding: 16px;
  font-size: 15px;
  font-family: 'Tahoma', 'Open Sans', 'Times New Roman', Times, serif;
  border: none;
  cursor: pointer;
}

.dropdown-button:hover, .dropdown-button:focus {
  background-color: #0278BE;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
  display: block;
}
/* end of dropdown */

/* automatic dropdown when hover */
/* Add this to the custom CSS section in Wild Apricot */
/* .hover-box-container {
  display: flex;
  flex-direction: column;
  align-items: center;
} */

.hover-box-block {
  margin-bottom: 20px;
  width: 100%;
  max-width: 700px; /* Adjust the max-width as needed */
}

.hover-box-image-dd {
  position: relative;
  width: 100%;
  cursor: pointer; /* Indicate that the image is clickable */
  max-width: 1200px;
}

.hover-box-image-dd img {
  width: 100%;
  height: auto;
  display: block;
}

.hover-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 10px;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.hover-box-image-dd:hover .hover-text {
  opacity: 1;
}

.description-container {
  display: none;
  padding: 20px;
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  margin-top: 10px;
}

/* Add this to the custom CSS section in Wild Apricot */
.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  margin: 0 auto; /* Center the container */
}

.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Add this to the custom CSS section in Wild Apricot */
body, html {
  margin: 0;
  padding: 0;
  width: 100%;
}

.full-width-video1 {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  overflow: hidden;
}

.full-width-video1 iframe,
.full-width-video1 video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}