/*
 NOTES

  Font-Weights have to be removed from references due to causing rendering issues in Safari.
  Font-Weights should be managed by the fonts themselves as we do have explicit ones with different weights

*/

/* Custom Fonts uploaded, available as web files in PP */

@font-face {
  font-family: 'Trades-Gothic-Next-Pro'; 
  src: url('/Trade-Gothic-Next-Pro.ttf') format('truetype');
  font-weight: normal; 
  font-style: normal
}

@font-face {
  font-family: 'Montserrat-Bold'; 
  src: url('/Montserrat-Bold.ttf') format('truetype');
  font-weight: bold; 
  font-style: normal;
}

@font-face {
  font-family: 'Montserrat-Light'; 
  src: url('/Montserrat-Light.ttf') format('truetype');
  font-weight: lighter; 
  font-style: normal;
}

@font-face {
  font-family: 'Montserrat-Medium'; 
  src: url('/Montserrat-Medium.ttf') format('truetype');
  font-weight: normal; 
  font-style: normal;
}

@font-face {
  font-family: 'Montserrat-Semi-Bold'; 
  src: url('/Montserrat-SemiBold.ttf') format('truetype');
  font-weight: normal; 
  font-style: normal;
}

/* Brand Colours as Variables */

:root {
  --brand-purple: #9600ff;
  --soft-purple: #DF98FE;
  --brand-orange: #ffa500;
  --soft-orange: #FADF96;
  --brand-red: #cc0045;
  --brand-gray: #39474f;
  --soft-gray: #F2EFEF;
  --brand-blue: #0000ce;
  --soft-blue: #6898FC;
  --brand-teal: #00817d;
  --brand-disabled: #fefbfb;

}

.isBrandPurple {
  color: var(--brand-purple);
  fill : var(--brand-purple);
}

.isDisabledPurple {
  color: var(--soft-purple);
  fill : var(--soft-purple);
}

.isDisabledBlue {
  color: var(--soft-blue);
  fill : var(--soft-blue);
}

.isDisabledOrange {
  color: var(--soft-orange);
  fill : var(--soft-orange);
}

.isBrandTeal {
  color: var(--brand-teal);
  fill : var(--brand-teal);
}

.isBrandBlue {
  color: var(--brand-blue);
  fill : var(--brand-blue);
}

.isBrandOrange {
  color: var(--brand-orange);
  fill : var(--brand-orange);
}

.isBrandRed {
  color: var(--brand-red);
  fill : var(--brand-red);
}

.isBrandGray {
  color: var(--brand-gray);
  fill : var(--brand-gray);
}

/* Font Classes, Applied where require on web, changes to letter-spacing done in existing classes */

.primaryFont-text {
  font-family: Trades-Gothic-Next-Pro !important;
  text-transform: uppercase;
  line-height: 1;
}

.bodyFontMedium-text {
  font-family: Montserrat-Medium !important;
  line-height: 1;
}

.bodyFontLight-text {
  font-family: Montserrat-Light, sans-serif !important;
  line-height: 1.5;
}

.bodyFontSemi-text {
  font-family: Montserrat-Semi-Bold, sans-serif !important;
  line-height: 1;
}


/* */

#dateRange {
  letter-spacing: 0.2rem;
  font-size: 0.7cqw;
  margin: 0;
}

.weblinks-depth-1 {
  display:none;
}

.skip-to-content {
  display:none;
}

/* PROFILE PAGE MAIN CONTAINER */
form[action="/profile/"] #mainContent {
  background-color: white;
  border-radius: 1.5rem;
  padding: 2.5rem;
  margin-bottom: 5vh;
  min-height: fit-content;
}

/*
body[data-sitemap-state="/profile/:/"] .navbar {
  height:5vh;
  width:100vw;
}
  */

form[action="/profile/"] .page-header {
  display: none;
}

form[action="/profile/"] .container:has(#mainContent) {
  margin-top:2vh;
}


form[action="/profile/"] legend {
  border-bottom:0px; /* Removes separater line between heading and form */
}

form[action="/profile/"] .field-label {
  background-color:white;
  font-size:1.5rem;
}

form[action="/profile/"] #ProfileFormView {
  background-color:white;
  border:0px;
  /* Adjusts form section containing first name fields etc */
}

form[action="/profile/"] .control input {
  font-family: Montserrat-Light;
}

form[action="/profile/"] .well,
form[action="/profile/"] .form-control {
  border: 0px;
  -webkit-box-shadow: 0 0 0 0;
  box-shadow: 0;
}

form[action="/profile/"] .form-control:focus {
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6);
}

form[action="/profile/"] .form-control {
  background-color:#f8f8f8 !important;
}

form[action="/profile/"] .form-group {
  margin-left: 1.5vw;
}

form[action="/profile/"] .btn-primary {
  width:100%;
}

form[action="/profile/"] .profile-info img {
  border-radius:100vh;
}

form[action="/profile/"] .checkbox span {
  font-family: Montserrat-Light;
}

form[action="/profile/"] .profile-page-heading,
.userFullName {
  font-family: Trades-Gothic-Next-Pro;
  font-size:2rem;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  /* One of the few classes that require the font to set rather than the function class, this class selects a form element that is not present within the web page file */
}


/* */

form[action*="feedbackcreate"] .form-control-cell:has( #byd_delegateid_name) {
  display:none;
}

.validation-header {
  font-family: Trades-Gothic-Next-Pro !important;
  text-transform: uppercase;
  line-height: 1;
}

#ValidationSummaryEntityFormView a {
  font-family: Montserrat-Light;
}

.launchentitylookup {
  height:35px;
}

#content_form {
  min-height: 90vh;
}

#NewAttachFileLabel {
  font-family: Montserrat-Semi-Bold;
  /* One of the few classes that require the font to set rather than the function class, this class selects a form element that is not present within the web page file */
}

.instructions {
  font-family: Montserrat-Light !important;
  /* One of the few classes that require the font to set rather than the function class, this class selects a form element that is not present within the web page file */
}

.datetimepicker input {
  font-family: Montserrat-Light;
  /* One of the few classes that require the font to set rather than the function class, this class selects a form element that is not present within the web page file */
}

.info {
  font-family: Montserrat-Light;
  /* One of the few classes that require the font to set rather than the function class, this class selects a form element that is not present within the web page file */
}

.control select {
  font-family: Montserrat-Light;
  /* One of the few classes that require the font to set rather than the function class, this class selects a form element that is not present within the web page file */
}

.actionButtons {
  width:100%;
  justify-content: center;
  display: flex;
}
.actionButtons .formButton {
  width:33%;
  height:100%;
  text-transform: uppercase;
}

.crmEntityFormView label {
  background-color: var(--soft-gray);
  font-family: Montserrat-Semi-Bold;
  /* One of the few classes that require the font to set rather than the function class, this class selects a form element that is not present within the web page file */
}

.section-title h3 {
  font-family: Montserrat-Semi-Bold;
  /* One of the few classes that require the font to set rather than the function class, this class selects a form element that is not present within the web page file */
}

.description {
  font-size:1.5rem;
  padding-top: 4vh;
  font-family: Montserrat-Light;
  /* One of the few classes that require the font to set rather than the function class, this class selects a form element that is not present within the web page file */
}

.bodyText {
  font-size:1.5rem;
}

.explicitCenter {
  margin: 0 auto;
}

.headerlarge {
  font-size: 5rem !important;
}

.ExperienceLandingMain {
  background-color: var(--soft-gray);
  min-height:80.03vh;
}

.familTileTitle {
  font-size: 0.8cqi !important;
  margin: 0;
}

#svg {
  display:none;
}

.completedTick {
  visibility: hidden;
  position: absolute;
  top:5px;
  left:5px;
}

.completedTick[data-status="3"] {
  visibility: visible;
}

.completedTick[data-status="1"] {
  visibility: visible;
  border-radius: 5px;
  width: 70%;
  padding-left: 5px;
  text-align: left;
  justify-self: left;
  background-color: var(--brand-teal);
  color: white;
  font-family: 'Montserrat-Semi-Bold';
  font-size: 1.2rem;
}


.custom-flex-section {
  display: flex;
  flex-wrap: wrap;
  padding: 8px;
  margin: 0;
  min-height: 400px;
}

.custom-flex-container {
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}

.custom-column {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  min-width: 250px;
}

.experience-programs h2 {
  margin: 0;
  font-weight: bold;
}

.header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.search-container {
  display: flex;
  flex-direction: column;
}

.search-bar {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 20px;
  overflow: hidden;
  padding: 2px;
  margin-top: 5px;
}

.search-bar input {
  border: none;
  border-radius: 20px;
  padding: 8px 12px;
  outline: none;
}

.search-bar button {
  border: none;
  background-color: transparent;
  padding: 5px;
  cursor: pointer;
}

.filter-options {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.filter-group {
  display: flex;
  flex-direction: column;
  align-items: left;
}

.filter-group label {
  font-weight: bold;
  margin-bottom: 5px;
}

.filter-options select {
  border-radius: 20px;
  padding: 5px 10px;
  border: 1px solid #ccc;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.program-list {
  display: grid;
  grid-template-columns: 32% 32% 32%;
  gap: 5vw;
  height: 100%;
  width: 60%;
}

.program-card {
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
  border: none;
  border-radius: 15px;
  padding: 10px;
  background: white;
  aspect-ratio: 1;
  height: 26cqh;
  margin:0 auto;
  max-width: 23cqw;
}


.program-image {
  background-position: center;
  /* Centers the background image */
  height: 70%;
  /* Set a height for the image container */
  border-radius:5px;
  background-size: cover;
}

.program-card:hover {
  transform: scale(1.05);
  /* Scale the card on hover */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  /* Adds a shadow on hover */
}

.program-details {
  padding: 1vh 5px 5px 5px;
  /* Add padding to the details */
  background: white;
  /* Optional: add a semi-transparent background */
  position: relative;
  /* Keep details in front of image */
  z-index: 1;
  /* Ensures details are above the image */
  display: grid;
  gap: clamp(5px, 1vh, 1.5vh);
}

.program-details h3 {
  font-size: 2rem;
  letter-spacing: 0.15rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  /* testing update
  min-height: auto;
  max-height: 5vh;
  */
  height: calc(2 * 1em);

  margin-top: 0.1rem;
}


.program-details h4 {
  font-size: 1.3rem;
  font-weight: bold;
  overflow: hidden;
}

.header-row h2,
.header-row .filter-group label {
  font-family: 'Stag Sans', sans-serif;
}

/* Specific styling for the header */
.header-row h2 {
  font-weight: 700;
  /* Bold weight for the header */
  font-size: 24px;
  /* Adjust font size as needed */
}

/* Specific styling for labels */
.header-row .filter-group label {
  font-weight: 400;
  /* Regular weight for labels */
  font-size: 16px;
  /* Adjust font size as needed */
}

/* Optionally, style the select dropdowns */
.header-row select {
  font-family: 'Stag Sans', sans-serif;
  font-size: 16px;
  /* Match font size with labels */
}

/* Dimming effect and overlay for completed items */
.dimmed {
  filter: brightness(0.5);
  /* Dim the image */
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  /* Change text color as needed */
  font-size: 24px;
  /* Adjust font size */
  font-weight: bold;
  /* Bold text */
  background: rgba(0, 0, 0, 0.5);
  /* Optional background for better visibility */
  z-index: 2;
  /* Ensure overlay is above other elements */
}

.carousel-container {
  position: relative;
  max-width: 100%;
  overflow: hidden;
  margin: auto;
}

.carousel-track {
  display: flex;
  /* Align slides in a row */
  transition: transform 0.5s ease-in-out;
  /* Smooth transition for sliding */
}

.carousel {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-slide {
  min-width: 100%;
  height: 300px;
  /* Adjust as needed */
  background-position: center;
  background-size: cover;
}

.slide-1 {
  background-image: url('/Carousel-01-Desktop.jpg');
}

.slide-2 {
  background-image: url('/Carousel-02-Desktop.jpg');
}

.slide-3 {
  background-image: url('/Carousel-03-Desktop.jpg');
}

.slide-4 {
  background-image: url('/Carousel-04-Desktop.jpg');
}

.slide-5 {
  background-image: url('/Carousel-05-Desktop.jpg');
}

.slide-6 {
  background-image: url('/Carousel-06-Desktop.jpg');
}

.slide-7 {
  background-image: url('/Carousel-07-Desktop.jpg');
}

.slide-8 {
  background-image: url('/Carousel-08-Desktop.jpg');
}

.slide-9 {
  background-image: url('/Carousel-09-Desktop.jpg');
}

.slide-10 {
  background-image: url('/Carousel-10-Desktop.jpg');
}

.carousel-control {
  position: absolute;
  top: 50%;
  font-size: 24px;
  font-weight: bold;
  color: white;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  padding: 10px;
  cursor: pointer;
  transform: translateY(-50%);
}

.carousel-control.prev {
  left: 10px;
}

.carousel-control.next {
  right: 10px;
}

.carousel-dots {
  text-align: center;
  position: absolute;
  bottom: 10px;
  width: 100%;
}

.dot {
  cursor: pointer;
  height: 10px;
  width: 10px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s;
}

.dot.active {
  background-color: white;
}

/*Experience Landing page*/
body {
  /*text-align: center;*/
  margin: 0;
  padding: 0;
  height: fit-content;
  min-height: 100vh;
  /* Full height of the viewport */
  background-color:var(--soft-gray);
}

/* body.no-scroll {
  overflow: hidden;  
} */

h1 {
  font-size: 3.5rem;
  /*text-shadow: 0.5px 0.5px 1px black !important; */
  letter-spacing: 0.35rem;
  margin: 10px 0;
}

p,
h2 {
  font-size: 1.4rem;
  /* Increased description font size */
  color: #333;
}

.home-top {
  color: white;
  height: 55vh;
  background-image: url('/home-hero.jpg');
  background-repeat: no-repeat;
  background-size: 135%;
  background-position: 0px 55%;
  object-fit:cover;
}

.home-bottom {
  color: white;
  height: calc(100vh - 55vh - 15vh);
  padding-top: 1vh;
  padding-left: 10vw;
  padding-right: 50px;
  padding-bottom: 1.5vh;
  overflow-y: auto;
  background-color: var(--soft-gray);
  position: relative;
  z-index: 1;
}

.home-top.full-screen {
  height: 100vh; /* Make it full screen */
}

.home-bottom.hidden {
  display: none; /* Hide the element */
}

.header-space {
  width: 95%;
  text-align: center;
  padding-top: 50px;
  color: white;
}

.header-space h1 {
  font-size: 3.5rem;
  text-align: left;
}

.header-space h3 {
  font-size: 1.8rem;
  text-align: left;
}

.home-header-row {
  height: 60vh;
}

.home-header-space {
  width: 95%;
  text-align: center;
  padding-top: 50px;
}

.home-header-space h1 {
  font-size: clamp(2vw,5em,5vw);
  text-align: left;
  color: white;
  text-shadow: rgba(0, 0, 0, 0.6) 0px 2px 20px;
}

.home-header-space h3 {
  font-size: clamp(13px,1vw, 22px);
  text-align: left;
  color: white;
  line-height: 1.4;
  letter-spacing: 0.1rem;
  border-radius: 10px;
  padding: 15px;
  background-color: rgb(from var(--brand-gray) r g b / 35%) !important;
}

.home-top-left {
  width:60%;
  padding-left: 10vw;
  padding-top: 5vh;
  padding-bottom: 5vh;
}

.home-top-right {
  width: 50%;
}

.icon-container {
  width: 80%;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  padding: 0px;
  display: flex;
  flex-direction: column;
  /* Stacks child elements vertically */
  justify-content: center;
}

.icon-section {
  display: flex;
  justify-content: space-evenly;
  margin: 30px 0;
  flex-wrap: wrap;
  min-height: 300px;
  gap: 15px;
}

.icon-section-new {
  display: flex;
  /*justify-content: space-evenly; 
  min-height: 300px;*/
  margin: 30px 0;
  flex-wrap: wrap;
  gap: 30px;
}


.icon-section-new> :first-child {
  align-self: flex-start;
  /* Ensure it aligns to the start */
  margin-left: 0;
  /* Optional: Reset left margin if needed */
}

.icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 150px;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  position: relative;
  background-color:white;
}

.icon a {
  text-decoration: none;
}

.icon[data-status="0"]:hover,.icon:hover:not([data-status])  {
  transform: scale(1.1);
  text-decoration: none;
}
.icon[data-status="3"]:hover,.icon:hover:not([data-status])  {
  transform: scale(1.1);
  text-decoration: none;
}

/* .icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-size: contain;
  background-repeat: no-repeat;
  width: 100px;
  height: 100px;
  pointer-events: none;
  background-image: var(--bg-image);
} */
.icon[data-status="3"]::after {
  /* Unicode for a checkmark */
  color: teal;
  font-size: 30px;
  font-weight: bold;
  position: absolute;
  width: auto;
  /* Remove width set by the previous ::after */
  height: auto;
  /* Remove height set by the previous ::after */
  background-image: none;
  /* Remove background image */
  top: 5px;
  /* Adjust distance from the top edge */
  right: 5px;
  /* Adjust distance from the right edge */
  left: auto;
  /* Reset left to prevent centering */
}


.icon[data-status="1"]{
  background-color: var(--brand-disabled);
  pointer-events: none;
  cursor:default;
  border-color:var(--brand-teal);
  border-width:2px;
  border-style:solid;
}


.icon-registration::after {
  background-image: url('/edit-file-pen-file-pen-copy-modify-write-319x319 copy.png');
}

.icon-luggage::after {
  background-image: url('/shout-out-speaker-offer-announcement-loud-319x319 copy.png');
}

.icon-drones::after {
  background-image: url('/parachute-freight-para-drop-air-transportation-hot-air-ballon-319x319 copy.png');
}

.icon-itinerary::after {
  background-image: url('/calendar-cal-event-schedule-date-319x319.png');
}

.icon-incident-report::after {
  background-image: url('/Icon_FilesEventsWhite.png');
}

.icon-feedback::after {
  background-image: url('/Icon_FilesTravelInfoWhite.png');
}

.icon-text {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  /* Align text close to the middle */
  font-size: 2rem;
  padding: 5px;
  letter-spacing: 0.2rem;
}

.icon-text:hover {
  text-decoration: none;
}

.experience-header-space {
  width: 70%;
  color: white;
}

.region-section h1 {
  text-align: left;
  font-weight: 900;
  letter-spacing: 0.15rem;
}

.region-section h2 {
  font-size: 2em;
  letter-spacing: 0.15rem;
  text-align: left;
  margin-top: 2px;
}

.region-section h3 {
  font-size: 1.5em;
  font-family: 'Stag Sans', sans-serif;
  text-align: left;
}

.region-highlights {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  align-items: normal;
  margin: 20px 0;
}

.region-content {
  display: flex;
  width: 50%;
}

.region-links {
  display: flex;
  width: 100%;
  padding-top: 2vh;
  padding-bottom: 2vh;
}

.region-image {
  flex-shrink: 0;
  width: 100%;
  margin-right: 20px;
}

.region-image > img {
  width: 100%;
  border-radius: 10px;

  /* suggested changes against original design, remove if not approved */
  max-height: 40vh;
  width: auto;
  min-width: 100%;
  min-height: 24vh;
  max-width: 100%;

}

.region-info {
  width: 50%;
  text-align: left;
  padding-left:2vh;
  word-wrap: break-word;
}

.region-info h2 {
  padding-bottom:2vh;
}

.explore-button {
  text-decoration: none;
  color: #00817D;
  letter-spacing: 0.1rem;
}

.form-control {
  border-radius: 10px;
  border: none !important;
  background-color: #FAFBFB !important;
  outline: none !important;
  font-family: 'Montserrat-Light';
  color:var(--brand-gray)
}

.field-label {
  font-size: clamp(0.8rem, 4vw, 1.5rem);
}

.region-more-info {
  text-align: center;
  background-color: teal;
  padding: 10px;
  border-radius: 10px;
  white-space: nowrap;
}

.region-links-left {
  display: flex;
  justify-content: space-between;
  width: 100%;
}


.regionClimate-title {
  padding-left: 10px;
  padding-top: 10px;
  font-size: 1.3em;
}

.regionClimate-details {
  padding-left: 2vh;
  padding-bottom: 10px;
  white-space: pre-line;
}

.regionClimate {
  width: 48%;
  background: white;
  border-radius: 10px;
}

.region-summerwinter {
  display: flex;
  border: 1px;
  border-radius: 50%;
  gap: 20px;
  justify-content: space-between;
  padding-bottom: 10px;
}

.region-more-info a {
  font-size: 1em;
  color: white;
  text-align: center;
  padding: 10px;
}

.region-info h5 {
  font-size: 1.5em;
  text-align: left;
  letter-spacing: 0.1rem;
}

.social-links {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  /* Distributes items with equal space between them */
}

.social-links a {
  margin: 0 5px;
  color: teal;
  font-size: 1.0em;
  display: flex;
  align-items: center;
  gap: 5px;
}

.social-links img {
  height:3vh;
  aspect-ratio: 1;
}

.social-links svg {
  background-color: transparent;
  fill: #000;
  width: 20px;
  height: 20px;
}


.info-link a {
  color: #0066cc;
  font-size: 1.1em;
  text-decoration: underline;
}

.row.sectionBlockLayout {
  display: flex;
  flex-wrap: wrap;
  margin: 0px auto;
  min-height: auto;
  padding: 8px;
  max-width:80vw;
}

.container {
  max-width: 80vw;
  margin-top: 0px;
  margin: 0 auto;
  margin-bottom: 0px;
  padding-top: 120px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  padding: 0px;
  display: flex;
  flex-wrap: wrap;
}

.col-lg-12.columnBlockLayout {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  min-width: 250px;
}

/* Changes to Header and Footer templates*/

.footer-blurb a:active,
.footer-blurb a:link,
.footer-blurb a:visited {
  color: var(--portalThemeColor7);
  font-size: 12px;
}

footer[role="contentinfo"] {
  width: 100%;
  /* Makes footer full width of the browser */
  text-align: center;
  box-sizing: border-box;
  
}

body[data-sitemap-state="/"] footer {
  position: absolute;
}

.footer-blurb small {
  color: var(--portalThemeColor7);
  text-align: left;
}

.row.list-unstyled li {
  display: inline;
  padding: 10;
}

footer .container {
  max-width: 1440px;
  margin-top: 0px;
  margin-bottom: 0px;
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  padding: 0px;
  display: flex;
  flex-wrap: wrap;
}

.footer-logos {
  display: flex;
  padding: 10px;
}

.footer-logos img {
  height: auto;
  width: 80%;
  margin: 0 auto;
}

footer.static {
  position: static;
  display: block;
  /* Make it visible when adjusted */
}

footer.fixed {
  position: fixed;
  display: block;
  /* Ensure visibility for the fixed state */
}

footer .footer-bottom {
  background-color: var(--brand-gray);
  padding-left: 10px;
  padding-right: 10px;
  margin-top: auto;
  padding: 2vh 0;
  position: relative;
  z-index: 2;
}

.footer-bottom > .container {
  width: 90%;
  margin: 0 auto;
  align-items: center;
}

.footer-bottom .footer-blurb {
  display: flex;
  margin: 0 auto;
  align-items: center;
}



footer .footer-bottom ul {
  display: inline-flex;
  align-items: flex-start;
}

.row.list-unstyled svg {
  background-color: transparent;
  fill: #fff;
  width: 20px;
  height: 20px;
  margin: 10px;
}

.row.sectionBlockLayout.sectionFixedStyle {
  display: flex;
  flex-wrap: wrap;
  text-align: center;
}

.row.sectionBlockLayout .container {
  display: flex;
  flex-wrap: wrap;
}

.col-md-12.columnBlockLayout {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

body,
label,
p,
span,
li {
  font-weight: normal;
  /* Regular weight */
  font-size: 1.5rem;
}

.navbar a {
  font-size: 2rem;
}

h1,
h2,
h3,
h4,
ul,
.navbar a {
  font-family: "Montserrat-Bold", sans-serif;
  color: #2F3E46;
}

/* Styling for .username (profile name) */
.username {
  font-family: "Montserrat-Bold", sans-serif;
  font-size: 1.5em;
  font-weight: bold;
  /* Bold weight */
  color: white;
}

/* Initial transparent header */
.navbar {
  display: flex;
  align-items: center;
  /* Vertically align all child elements */
  background-color: rgb(0, 129, 125);
  /*background-color: rgba(0, 0, 0, 0.4);  Slightly dark with transparency */
  transition: background-color 0.3s ease;
  /* Smooth transition */
  border-bottom: none;
  flex-wrap: wrap;
  height:5%;
}

/* Solid header background for scrolled state */
.navbar.scrolled {
  /* background-color: #333; Replace with your preferred solid color */
  background-color: rgb(0, 129, 125);
}

.navbar.bottommargin {
  margin-bottom: 50px;
}


/* Profile dropdown menu */
.navbar .dropdown-menu {
  background-color: rgba(0, 0, 0, 0.4) !important;
  /* Same transparent background as navbar */
  color: white !important;
  /* Set font color to white */
  border: none;
  /* Remove border */
  border-radius: 0;
  /* Optional: remove any border radius */
}

/* Ensure the text color for links is white */
.navbar .dropdown-menu li a {
  /* color: white !important;  */
  font-family: 'Stag Sans', sans-serif;
  font-weight: normal;
  /* Use regular font weight */
  text-decoration: none;
  /* Remove underline (if any) */
}

/* Hover effect: change background and font color back to black */
.navbar .dropdown-menu li a:hover {
  background-color: #fff;
  /* Set background to white on hover */
  /* color: #333 !important;  */
}

/* Ensure the profile dropdown's caret also blends in */
.navbar .dropdown-toggle .caret {
  border-top-color: white;
  /* White caret on the dropdown toggle */
}

/* Header styling for headings */
.navbar-header .header-label {
  display: flex;
  font-family: 'Stag Sans', sans-serif;
  font-weight: bold;
  /* Bold weight for headings */
  font-size: 1.2em;
  color: white;
  margin-left: 10px;
  justify-content: flex-start;
}

.experience-portal-label {
  font-family: 'Stag Sans', sans-serif;
  font-weight: 700;
  /* Bold weight for heading */
  font-size: 28px;
  /* Adjust font size for the header */
  color: white;
  /* Ensure font color is white */
}

/* Additional styling for body copy */
.navbar-right .username,
.navbar .navbar-toggle {
  font-weight: 700;
}

.navbar-nav {
  margin-right: 20px;
}

.navbar-profile {
  margin-left: auto;
}


.navbar-toggle.collapsed .child.override {
  font-family: 'Stag Sans', sans-serif;
  font-weight: normal;
  /* Regular weight */
}

.navbar-inverse .navbar-toggle:focus {
  background-color: rgb(0, 129, 125);
}

/* Ensure vertical alignment and proper spacing for menu-bar */
.navbar-right.menu-bar {
  display: flex;
  justify-content: flex-end;
  /* Align items to the right */
  align-items: center;
  /* Vertically align items */
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: 'Stag Sans', sans-serif;
  font-weight: normal;
  /* Normal font weight */
}

/* Styling for list items in menu-bar */
.navbar-right.menu-bar .nav li {
  display: inline-block;
  font-weight: 500;
  vertical-align: middle;
  letter-spacing: 0.1rem;
}

/* Styling for links in menu-bar */
.navbar-right.menu-bar .nav a {
  text-decoration: none;
  color: #fff;
  /* Default link color */
  font-weight: bold;
  /* Normal font weight */
  padding: 8px 5px;
  transition: color 0.3s ease, background 0.3s ease;
  font-family: 'Stag Sans', sans-serif;
  vertical-align: middle;
  /* Ensure vertical alignment */
}

.wrapper-body.nonhome {
  padding-top: calc(60px + 3rem);
  background-color: var(--soft-gray);
  min-height: 90cqh;
}

.wrapper-body {
  background-color: var(--soft-gray);
}


.navbar-inverse .navbar-brand {
  align-content: center;
}


.navbar-toggle {
  position: relative;
  float: right;
  margin-right: 15px;
  padding: 9px 10px;
  margin-top: 8px;
  margin-bottom: 8px;
  background-color: teal;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 0;
}

.navbar-right.menu-bar .nav li {
  display: inline-block;
  /* margin-right: 15px; */
  font-family: 'Stag Sans', sans-serif;
  font-weight: normal;
  vertical-align: middle;
}

.header-row h2 {
  font-weight: 700;
  font-size: 16px;
}

#backToTop {
  position: fixed;
  /* Fixed position so it floats */
  bottom: 20px;
  /* Distance from the bottom of the viewport */
  right: 20px;
  /* Distance from the right side of the viewport */
  background-color: teal;
  /* Button background color */
  color: white;
  /* Text color */
  border-radius: 30%;
  border: none;
  display: flex;
  justify-content: space-around;
  padding-left: 5px;
  align-items: center;
  font-size: 12px;
  cursor: pointer;
  /* Cursor changes to pointer on hover */
  display: none;
  /* Hidden by default */
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
  /* Button shadow */
  transition: transform 0.3s ease, background-color 0.3s ease;
  z-index: 1000;
  /* Ensure it stays above other elements */
}


#backToTop:hover {
  transform: scale(1.1);
  /* Slightly enlarges the button on hover */
}

.columnBlockLayout {
  margin-top: 1px;
  /* to override default css */
  margin-bottom: 60px;
  padding: 16px;
}


.floating-button {
  position: fixed;
  top: 70px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: teal;
  color: white;
  border-radius: 40%;
  border: none;
  display: flex;
  justify-content: space-around;
  padding-left: 5px;
  align-items: center;
  font-size: 12px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: transform 0.3s ease, background-color 0.3s ease;
  z-index: 1000;
}

.floating-button:hover {
  color: white;
  background-color: teal;
  transform: scale(1.1);
  /* Slightly enlarges the button on hover */
}

.floating-button:active {
  transform: scale(0.95);
  /* Shrinks slightly when clicked */
}

.fade.show {
  opacity: 1;
  background-color: rgba(0, 0, 0, 0.3);
}

/*Registration*/
.progress-bar {
  float: left;
  width: 0%;
  height: 100%;
  color: #fff;
  text-align: center;
  background-color: rgb(0, 129, 125);
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
  -webkit-transition: width .6s ease;
  -o-transition: width .6s ease;
  transition: width .6s ease;
}

.progress-bar > span {
  vertical-align: middle;
}

.progress {
  min-height: 30px;
  height:3vh;
}

.progress.top {
  border: 0.5px solid rgb(0, 129, 125);
  border-radius: 2px;
}

.floating-buttons {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
  /* Ensure it's above other elements */
}

.round-button {
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background-color: teal;
  color: white;
  font-size: 12px;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
}

.round-button:hover {
  background-color: teal;
  color: white;
  font-weight: bold;
  transform: scale(1.1);
  /* Slightly enlarges the button on hover */
}

.round-button:active {
  transform: scale(0.95);
  /* Shrinks slightly when clicked */
  color: white;
}

.round-button:visited {
  color: white;
}

.floating-home {
  position: fixed;
  right: 20px;
  z-index: 1000;
}

.crmEntityFormView .tab-title {
  border-bottom: 1px solid #eee;
  -ms-text-rendering: optimizelegibility;
  text-rendering: optimizelegibility;
  display: none;
}

a:not(.btn):not(.round-button):not(.footer-Link):not(.header-link):not(.explore-button):not(.icon) {
  text-decoration: none;
  color: #00817D;
}

.fBody {
  min-height: calc(100vh - 215px);
}

.confirmation-page {
  padding-top: 50px;
}

.homehero-image {
  position: fixed;
  /* Makes the image stay fixed relative to the viewport */
  top: 0;
  /* Aligns the top of the image with the top of the viewport */
  left: 0;
  /* Aligns the left of the image with the left of the viewport */
  width: 100vw;
  /* Sets the width to 100% of the viewport width */
  height: 50vh;
  /* Sets the height to 100% of the viewport height */
  object-fit: cover;
  /* Ensures the image covers the entire area without distortion */
  z-index: -1;
  /* Moves the image behind other content */
}

.teq-vertical-divider {
  display: block;
  width: 1px;
  height: 41px;
  background: linear-gradient(rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.9) 15%, rgba(255, 255, 255, 0.9) 85%, rgba(255, 255, 255, 0.1) 100%);
  margin: 0px 0.43rem;
  background-color: white;
  padding: 1px;
  height: auto;
}

.cardIcon {
  display: block;
}

.iconTop {
  height: 50%;
  padding-top: 50px;
}

.iconBottom {
  height: 50%;
  padding-bottom: 50px;
}


.card-icon {
  flex: 1;
  /* Top half */
  display: flex;
  justify-content: center;
  align-items: flex-end;
  /* Align icon close to the middle */
  margin-top:25px;
}

.social-links a {
  display: inline-block;
  /* Ensure the links are treated as block elements */
}

.footer-container {
  /* max-width: 1440px; */
  margin-top: 0px;
  margin-bottom: 0px;
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  padding: 0px;
  /* display: flex
; */
  flex-wrap: wrap;
  /* justify-content: space-evenly; */
  align-content: flex-start;
  width: 100%;
}

.experience-header-space p {
  text-align: left;
  font-size: 1.5rem;
  letter-spacing: 0.1rem;
}

.experience-header-space h3 {
  text-align: left;
  font-weight: bold;
}

.secondarySet-226 {  
  display: none;
}

.btn {
  color: #FFFFFF;
  /* border-color: #323130; */
  border-radius: 10px;
  /* font-family: Arial; */
  font-weight: 600;
  font-size: 14px;
  padding: 6px 20px;
  width: fit-content;
  border-style: none;
  /* border-width: thin; */
  background-color: teal;
  margin: 2px;
}

.btn:hover:active {
  color: teal;
  background-color: white;
  border-style: solid;
  border-width: 2px;
  border-color: teal;
}


/* Style the checkbox itself */
.checkbox input[type="checkbox"] {
  appearance: none;
  /* Removes the default browser styling */
  -webkit-appearance: none;
  /* For Safari */
  -moz-appearance: none;
  /* For Firefox */
  width: 14px;
  /* Set the width of the checkbox */
  height: 14px;
  /* Set the height of the checkbox */
  border: 2px solid teal;
  /* Border color and size */
  border-radius: 4px;
  /* Rounded corners */
  background-color: white;
  /* Default background color */
  display: inline-block;
  cursor: pointer;
  /* Add pointer cursor */
  box-sizing: border-box;
}

/* Checked state */
.checkbox input[type="checkbox"]:checked {
  background-color: teal;
  /* Teal background when checked */
  border-color: teal;
  /* Teal border */
  background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"%3E%3Cpolyline points="20 6 9 17 4 12"%3E%3C/polyline%3E%3C/svg%3E');
  background-repeat: no-repeat;
  background-position: center;
}

/* Optional: Add spacing between checkbox and label text */
.checkbox input[type="checkbox"]+label {
  margin-left: 10px;
  font-size: 16px;
  color: #2F3E46;
  /* Dark gray text */
  cursor: pointer;
}

/* Style the radio button */
input[type="radio"] {
  appearance: none;
  /* Remove default browser styles */
  -webkit-appearance: none;
  /* For Safari */
  -moz-appearance: none;
  /* For Firefox */
  width: 18px;
  /* Set custom width */
  height: 18px;
  /* Set custom height */
  border: 2px solid teal;
  /* Border color */
  border-radius: 50%;
  /* Make it circular */
  background-color: white;
  /* Default background */
  cursor: pointer;
  /* Pointer cursor on hover */
  position: relative;
  box-sizing: border-box;
}

/* Checked state */
input[type="radio"]:checked {
  background-color: teal;
  /* Fill with teal when checked */
  border-color: teal;
  /* Ensure border matches */
}

/* Inner circle for checked state */
input[type="radio"]:checked::after {
  content: '';
  display: block;
  width: 10px;
  /* Smaller circle for the checked state */
  height: 10px;
  border-radius: 50%;
  /* Circular */
  background-color: teal;
  /* Inner circle color */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid teal;
  /* Border color */
}

a:not(.btn):hover {
  text-decoration: none !important;
}

.input-group-addon {
  color: teal;
  border-radius: 0 10px 10px 0;
}


ul li.login-link a  {
  color: white !important;
  text-decoration: none;
}

.portraitOnly {
  display: none;
  height: 0px;
}

/* 
^^ Width: > 1366
Refactored Mobile views 05/03/2026
 */

 @media (min-width: 1800px) {
  .region-image > img {
    max-height: 65vh;
  }

  .familTileTitle {
    font-size: 1em !important;
  }

  #dateRange {
    font-size: 0.7em !important;
  }

 }


 /*
 LARGE non 16:9 landscape
 */
 @media (max-width: 1380px) and (min-width: 1180px) {
  #dateRange {
    /* font-size: 0.7cqw; */
    font-size: clamp(10px, 0.7cqw, 25px) !important;
  }

  .home-header-space h3 {
    font-size: clamp(10px, 2.5cqw, 1.8vh) !important; /*max used to be 2.5vh*/
  }
 }

 /* 
 First Transform removes safe margins, this is for landscape views
 ~ 1366 to 1023
 MODE: Landscape
 */

 

 @media (max-width: 1023px) {
  .home-bottom {
    padding-left: 5vw;
    padding-top: 1vh;
    padding-bottom: 1vh;
    height: calc(100vh - 55vh - 20vh);    
  }

  .program-list {
    width: 80%;
  }

  #dateRange {
    font-size: clamp(7px, 1.5em, 1.5vw) !important;
  }

  .home-top-left {
    padding-left: 5vw;
  }

  body[data-sitemap-state="/"] footer {
    bottom: unset;
  }

 }

  /* SMALL HEIGHT 16:9 */
  @media (min-aspect-ratio: 1/1) and (max-height: 960px) and (max-width: 1180px) {
    .program-card {
      max-width: 32cwq;
      height: 32cqh;
    }

    .home-bottom {
      height:fit-content;
    }

    footer {
      bottom: unset !important;
    }

    #dateRange {
      font-size: 1cqw !important;
    }

    .familTileTitle {
      font-size: 1.2cqi !important;
    }

    .program-list {
      gap: 10vw;
    }
  }

 /* 
 MODE: Large Portrait
 ie, Ipads
 */

 @media (max-aspect-ratio: 1/1) and (min-width: 601px) {

  .icon-section-new {
  padding-top: 2vh !important;
  padding-bottom: 2vh !important;
 }

 .icon {
  max-height: 25cqw !important;
  max-width: 25cqw !important;
 }

 .navbar a {
  font-size: 3cqw !important;
 }

 .regionClimate-details {
  font-size: 2cqi !important;
 }

 .program-card {
    height: 30cqh !important;
    max-width: 30cqh !important;
  }


 }


 /*
 MODE: Portrait
 */

 @media (max-aspect-ratio: 1/1 ){
  .program-list {
    grid-template-columns: repeat(auto-fill, minmax(40%, 1fr));
    column-gap: 1vw;
    row-gap: 2vh;
    width: 100%;
  }

  .program-image {
    background-position: unset;
    background-size: 150%;
  }

  .navbar a {
    font-size: 5cqw;
  }

  footer {
    bottom: unset !important;
  }

  .home-bottom {
    height: fit-content;
    padding-left: 1vw;
    padding-right: 1vw;
  }

  .home-top {
    height: fit-content !important;
    min-height: 85vh;
    background-size: 170%;
    background-position: -15vw 55%;
  }

  .home-top-left {
    padding-bottom: 1vh;
    padding-top: 3vh;
    width: 75%;
  }

  .header-space {
    padding-top: 1vh;
  }

  .home-header-space h1 {
    font-size: 5cqi;
  }

  .home-header-space h3 {
    font-size: clamp(10px, 3.5cqw, 22px)
  }

  .program-card {
    height: 25cqh;
    max-width: 95%;
    max-height: 95%;
  }

  .familTileTitle {
    font-size: clamp(1vw, 1em, 2vw) !important;
  }

  #dateRange {
    font-size: 1.8cqi;
  }

  .portraitOnly {
    display: flex;
  }

  .landScapeOnly {
    display: none;
  }

  .region-highlights {
    flex-direction: column;
    row-gap: 2vh;
  }

  .region-content {
    width: 100%;
  }

  .regionClimate-details {
    font-size: 3cqi;
  }

  .region-info {
    width: 100%;
  }

  .region-links {
    height: fit-content;
    padding-top: unset;
    padding-bottom: unset;
  }

  .region-links-left {
    flex-wrap: wrap;
    gap: 1vh;
  }

  .icon-container {
    width: 90%;
  } 

  .icon-section-new {
    width: 100%;
    gap: 4vw;
  }

  .icon {
    width: 42cqw;
  }

  .experience-header-space {
    width: 100%;
  }

  .row.sectionBlockLayout {
    max-width: unset !important;
    margin: 0px;
    padding-top: 1vh;
    padding-bottom: 1vh;
    padding-left: 0px;
    padding-right: 0px;
    width: 100%;
  }

  .row.sectionBlockLayout .container {
    width: 90%;
    margin-left: 5vw;
    max-width: unset !important;
  }

  .columnBlockLayout {
    padding-top: 2vh;
    gap: 2vh;
    padding-left: 0px;
    padding-right: 0px;
  }

  .mobileColumn40 {
    width: 40% !important;
  }

  .mobileColumnfit {
    width: fit-content !important;
  }

  .mobileColumn15 {
    width: 15% !important;
  }

 }

 /* Medium-height laptops */
@media (max-height: 900px) {
  .home-bottom {
    height: calc(100vh - 55vh - 17vh);
  }
}

/* 1366 × 768 (critical breakpoint) */
@media (max-height: 800px) {
  .home-bottom {
    height: calc(100vh - 55vh - 20vh);
  }
}

/* Very short screens */
@media (max-height: 720px) {
  .home-bottom {
    height: calc(100vh - 55vh - 20vh);
  }
}