/* body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  margin: 0;
} */

.six-circles {
  background: #005597;
  padding: 20px 0;
  margin-top: 100px;
  margin-bottom: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.big-circle {
  position: relative;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  display: flex;
  justify-content: center; /* Centers horizontally */
  align-items: center;
  border: 4px solid #ffffff;
  margin-top: 100px;
  margin-bottom: 100px;
}
.big-circle img{
  max-width: 234px;
  max-height: 168px;
}

.small-circle {
  position: absolute;
  width: 200px;
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-shrink: 0;
  border: 4px solid white;
  border-radius: 50%;
  background: #005597;

  /* Positioning the circles around the big circle */
  transform: translate(-50%, -50%) rotate(var(--angle)) translate(0, -250px) rotate(calc(-1 * var(--angle)));
  top: 50%;
  left: 50%;
  cursor: pointer;
  transition: all 0.3s ease; /* Add transition for smooth effect */
}
.small-circle.active:hover {
  width: 205px;
  height: 205px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  border-color: #cccccc;
}

.content-box {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.inner-box {
  width: 54px;
  height: 54px;
  background: white;
  border-radius: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.number-box {
  text-align: center;
  color: #005597;
  font-size: 28px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 800;
  line-height: 24px;
  word-wrap: break-word;
}

.text-box {
  max-width: 150px;
  text-align: center;
  color: white;
  font-size: 20px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  line-height: 32px;
  word-wrap: break-word;
}

/* Style for inactive circles */
.small-circle.inactive {
  background-color: #cccccc;
  pointer-events: none; /* Disable pointer events for inactive circles */
}

.small-circle.inactive .inner-box {
  background-color: #005597; /* Color for the inner box of inactive circles */
}

.small-circle.inactive .number-box {
  display: none; /* Hide number box for inactive circles */
}

.small-circle.inactive .text-box {
  color: #006BBD; /* Color for text box of inactive circles */
}

/* Modal Styles */
.modal-six-circles {
  display: none; /* Hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.modal-six-circles .modal-content {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  max-width: 80%;
  text-align: left;
  position: relative;
}

.modal-six-circles .close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  color: #aaa;
  cursor: pointer;
}

.modal-six-circles .modal-text {
  padding: 20px 0;
}

.modal-six-circles .modal-title {
  font-size: 24px;
  margin-bottom: 10px;
}

.modal-six-circles .modal-description {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
}

.modal-six-circles .modal-video-player {
  max-width: 100%;
  height: auto;
}

/* Tablet and Mobile */
@media (max-width: 768px) {
  .six-circles {
    margin-top: 50px;
    margin-bottom: 50px;
  }
  .big-circle {
    position: relative;
    width: 100%;
    height: 100%;
    border: 4px solid transparent;
    margin-top: 0;
    margin-bottom: 0;
  }
  .big-circle img{
    display: none;
  }
  .circle-line {
    position: absolute;
    width: 4px; /* Adjust width of the line */
    height: 100%; /* Full height of the container */
    background-color: #ffffff; /* Color of the vertical line */
    left: 50%; /* Center horizontally */
    transform: translateX(-50%); /* Center horizontally */
  }
  .circle-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 100px; /* 12px gap between circles */
  }
  .small-circle {
    position: relative;
    top: auto; /* Reset top position */
    left: auto; /* Reset left position */
    margin: 0 auto; /* Center horizontally */
	transform:none;
  }
}

.form-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #f0f0f0;
}

.form-container {
  background-color: #fff;
  padding: 2em;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  max-width: 400px;
  width: 100%;
}

.post-password-form p {
  margin: 1em 0;
}

.post-password-form label {
  display: block;
  margin-bottom: 0.5em;
}

.post-password-form input[type="password"] {
  width: 100%;
  padding: 0.5em;
  margin-top: 0.5em;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

.post-password-form input[type="submit"] {
  background-color: #0073aa;
  color: white;
  border: none;
  padding: 0.75em 1.5em;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1em;
  transition: background-color 0.3s ease;
}

.post-password-form input[type="submit"]:hover {
  background-color: #005177;
}
.post-password-form{
  padding:20px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  /* top: 50%; */
  margin-top: 10%
}
em {
  font-style: italic !important;
}
.text_container>* {
    min-width: 660px;
}

@media screen and (max-width: 767px) {
    .text_container>* {
        min-width: 0;
    }
}

/* override hero slider bg image scaling */
#page > .hero--slider {
    height: auto !important;
}
@media (min-width: 767px) {
    #page > .hero--slider .hero-slider__bg-image {
        height: 0;
        padding-top: 25.30%; /* image aspect ratio: 341/1348  */
        position: relative;
    }
	#page.page-id-3477 > .hero--slider .hero-slider__bg-image{
		padding-top: 43%;
	}
}
@media (max-width: 767px) {
    #page > .hero--slider .hero-slider__bg-image__mobile {
        height: auto;
    }
}

/* override appearance of cta banner */
a.cta.cta--fixed {
    position: relative;
    transform: none;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    border-radius: 0;
    display: flex;
    text-align: center;
    margin: -20px auto 0 auto;
    align-content: center;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    flex-direction: row;
}
a.cta.cta--fixed:before {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    display: inline-block;
    margin: 0 15px 0 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%23ffffff' d='M160 368c26.5 0 48 21.5 48 48v16l72.5-54.4c8.3-6.2 18.4-9.6 28.8-9.6H448c8.8 0 16-7.2 16-16V64c0-8.8-7.2-16-16-16H64c-8.8 0-16 7.2-16 16V352c0 8.8 7.2 16 16 16h96zm48 124l-.2 .2-5.1 3.8-17.1 12.8c-4.8 3.6-11.3 4.2-16.8 1.5s-8.8-8.2-8.8-14.3V474.7v-6.4V468v-4V416H112 64c-35.3 0-64-28.7-64-64V64C0 28.7 28.7 0 64 0H448c35.3 0 64 28.7 64 64V352c0 35.3-28.7 64-64 64H309.3L208 492z'/%3E%3C/svg%3E");
}