.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: repeat(auto-fill, minmax(20%, 1fr));
  gap: 30px;
}

.program-card {
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
  border: none;
  border-radius: 15px;
  /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
  height: 70%;
  min-height: 280px;
  background: #F8F9FA;
  padding: 10px;
  background: #EBEEF0;
}

/* .program-card.full-width {
  grid-column: 1 / -1;  
} */

.program-image {
  background-size: cover;
  /* Ensures the background image covers the entire div */
  background-position: center;
  /* Centers the background image */
  height: 60%;
  /* Set a height for the image container */
}

.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: 5px;
  /* Add padding to the details */
  background: #EBEEF0;
  /* Optional: add a semi-transparent background */
  position: relative;
  /* Keep details in front of image */
  z-index: 1;
  /* Ensures details are above the image */
  font-family: 'Stag Sans', sans-serif;
}

.program-details h3 {
  font-family: 'Stag Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: bold;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}


.program-details h4 {
  font-family: 'Stag Sans', sans-serif;
  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 {
  font-family: 'Stag Sans', sans-serif;
  /*text-align: center;*/
  margin: 0;
  padding: 0;
  height: 100vh;
  /* Full height of the viewport */
}

/* body.no-scroll {
  overflow: hidden;  
} */

h1 {
  font-size: 2.5rem;
  /* Increased font size */
  margin: 20px 0;
}

p,
h2 {
  font-size: 1.4rem;
  /* Increased description font size */
  color: #333;
}

.home-top {
  color: white;
  height: 50vh;
  background-image: url('/home-hero.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;

}

.home-bottom {
  color: white;
  height: 35vh;
  padding-top: 5px;
  padding-left: 50px;
  padding-right: 50px;
  padding-bottom: 50px;
  overflow-y: auto;
}

.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;
  font-family: 'Stag Sans', sans-serif;
  text-align: left;
  font-weight: bold;
}

.header-space h3 {
  font-size: 1.8rem;
  font-family: 'Stag Sans', sans-serif;
  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: 5rem;
  font-family: 'Stag Sans', sans-serif;
  text-align: left;
  font-weight: bold;
  color: white;
}

.home-header-space h3 {
  font-size: 1.5rem;
  font-family: 'Stag Sans', sans-serif;
  text-align: left;
  color: white;
  line-height: 1.4;
}

.home-top-left {
  width: 45%;
  padding: 50px;
}

.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 {
  /* position: relative !important;
  flex: 1 1 calc(15% - 10px);
  width: 100%;
  max-width: 200px;
  max-height: 200px;
  height: auto; 
  aspect-ratio: 1 / 1; 
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: white;
  display: flex;  
  justify-content: center;
  font-size: 2.5rem;
  font-weight: bold;
  border-radius: 15px;
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.3s ease-in-out;
  background: #3A474F; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 150px;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  background-color: #2F3E46;
  color: white;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  position: relative;
}

.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 {
  content: "✔";
  /* 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:grey;
  pointer-events: none;
  cursor:default;
}

.icon[data-status="1"]::after {
  content: "✔";
  /* 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-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 {
  /* position: absolute !important;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2rem;
  font-weight: bold;
  color: white;
  text-decoration: none;
  text-shadow: rgba(0, 0, 0, 0.6) 0px 2px 20px;
  text-align: center; */
  flex: 1;
  /* Bottom half */
  display: flex;
  justify-content: center;
  align-items: flex-start;
  /* Align text close to the middle */
  font-size: 2rem;
  font-weight: bold;
  color: white;
  padding: 5px;
}

.icon-text:hover {
  text-decoration: none;
}

.experience-header-space {
  width: 70%;
  color: white;
}

.region-section h1 {
  font-size: 2.5em;
  font-family: 'Stag Sans', sans-serif;
  text-align: left;
  font-weight: bold;
}

.region-section h2 {
  font-size: 2em;
  font-family: 'Stag Sans', sans-serif;
  text-align: left;
  font-weight: bold;
  margin-top: 2px;
}

.region-section h3 {
  font-size: 1.5em;
  font-family: 'Stag Sans', sans-serif;
  text-align: left;
  font-weight: bold;
}

.region-highlights {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  align-items: center;
  margin: 20px 0;
}

.region-content {
  display: flex;
  width: 100%;
}

.region-links {
  font-family: 'Stag Sans', sans-serif;
  display: flex;
  width: 100%;
  padding-top: 10px;
}

.region-image {
  flex-shrink: 0;
  width: 40%;
  margin-right: 20px;
}

.region-image img {
  width: 100%;
  border-radius: 10px;
}

.region-info {
  width: 60%;
  text-align: left;
}

.explore-button {
  text-decoration: none;
  color: #00817D;
}

.form-control {
  border-radius: 10px;
  border: none !important;
  background-color: #FAFBFB !important;
  outline: none !important;
  font-family: 'Stag Sans', sans-serif;
}

.field-label {
  font-family: 'Stag Sans', sans-serif;
  font-weight: bold;
}

.region-more-info {
  text-align: center;
  background-color: teal;
  padding: 10px;
  border-radius: 10px;
  white-space: nowrap;
}

.region-links-left {
  font-family: 'Stag Sans', sans-serif;
  display: flex;
  justify-content: space-between;
  width: 40%;
}

.region-links-right {
  font-family: 'Stag Sans', sans-serif;
}

.regionClimate-title {
  font-family: 'Stag Sans', sans-serif;
  font-weight: bold;
  padding-left: 10px;
  padding-top: 10px;
  font-size: 1.3em;
}

.regionClimate-details {
  font-family: 'Stag Sans', sans-serif;
  padding-left: 10px;
  padding-bottom: 10px;
}

.regionClimate {
  font-family: 'Stag Sans', sans-serif;
  width: 48%;
  background: #EBEEF0;
  border-radius: 10px;
}

.region-summerwinter {
  font-family: 'Stag Sans', sans-serif;
  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;
  font-family: 'Stag Sans', sans-serif;
  text-align: center;
  padding: 10px;
  font-weight: bold;
}

.region-info h5 {
  font-weight: bold;
  font-size: 1.5em;
  text-align: left;
}

.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 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;
  min-height: auto;
  padding: 8px;
}

.container {
  max-width: 900px;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  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;
  /* Ensures padding doesn’t add to width */
}

.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: 50%;
}

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: #5C5A58;
  padding-left: 10px;
  padding-right: 10px;
  margin-top: auto;
  padding: 35px 0;
}

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,
.navbar a {
  font-family: 'Stag Sans', sans-serif;
  font-weight: normal;
  /* Regular weight */
  font-size: 1.4rem;
}

h1,
h2,
h3,
h4,
ul,
.navbar a {
  font-family: 'Stag Sans', sans-serif;
  color: #2F3E46;
}

/* Styling for .username (profile name) */
.username {
  font-family: 'Stag Sans', 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;
}

/* 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-family: 'Stag Sans', sans-serif;
  font-weight: normal;
  /* Regular weight */
}

.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;
  /* Display list items inline */
  font-family: 'Stag Sans', sans-serif;
  font-weight: normal;
  /* Ensure normal font weight */
  vertical-align: middle;
  /* Align items vertically in the middle */
}

/* 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);
}



.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 */
}


/* .modal {
  display: none;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal-content {
  position: relative;
  background-color: #fff;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, .2);
  border-radius: 0;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
  background-clip: padding-box;
  outline: 0;
}

.modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
}

.modal-body {
  position: relative;
  padding: 15px;
}

.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}

.modal.in .modal-dialog {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}

.modal.fade .modal-dialog {    
  -webkit-transform: translate(0, 10%);
  -ms-transform: translate(0, 10%);
  -o-transform: translate(0, 10%);
  transform: translate(0, 10%);
  -webkit-transition: -webkit-transform .3s ease-out;
  -moz-transition: -moz-transform .3s ease-out;
  -o-transition: -o-transform .3s ease-out;
  transition: transform .3s ease-out;
  
} */

.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.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 */
}

.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.6rem;
}

.experience-header-space h3 {
  text-align: left;
  font-weight: bold;
}

.secondarySet-226 {  
  display: none;
}

@media (max-width: 1289px) and (min-width: 769px) {
  .home-top-left {
    width: 65%;
  }
}

@media (max-width: 769px) and (min-width: 391px) {
  .icon-text{    
     font-size: clamp(0.5rem, 3.5vw, 10rem); 
  }

}
/* For general mobile; */
@media (max-width: 768px), (pointer: coarse) and (max-width: 768px) {
  .icon-container {
    width: 90%;
  }

  .region-content {
    flex-direction: column;
    gap: 10px;
  }

  .region-image,
  .region-info {
    width: 100%;
    word-wrap: break-word;
  }

  .familLandingSocialLinkText {
    display: none;
  }

  .icon-section-new {
    gap: 5px;
  }

  .icon {
    flex: 0 1 calc(33% - 5px);
    aspect-ratio: 1 / 1;
    /* 3 icons per row */
  }

  .home-top-left {
    width: 100%;
  }

  .program-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(40%, 1fr));
    gap: 10px;
  }

  .home-bottom {
    /* color: white; */
    /* height: 35vh; */
    padding: 10px;
    overflow-y: auto;
    height: auto;
  }

  .home-top {
    height: auto;
  }

  .navbar-profile {
    margin-left: auto;
  }

  .navbar-inverse .navbar-brand {
    display: none;
  }

  .footer-followus {
    display: none;
  }

  .footer-bottom {
    padding: 10px 0;
  }


  .region-links-left {
    font-family: 'Stag Sans', sans-serif;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .experience-header-space {
    width: 100%;
  }

  .program-card {
    height: auto;
    aspect-ratio: 1 / 1;
    min-height: 0;
  }

  .program-details h3 {
    margin-top: 5px;
  }

  .row {
    margin-left: auto;
    margin-right: auto;
  }

}

.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;
}

/* For very small screen width */
@media (max-width: 390px) {

  .col-xs-12,
  .col-sm-12 {
    padding-left: 0;
    padding-right: 0;
  }

  .icon {
    flex: 0 1 calc(50% - 5px);
    aspect-ratio: 1 / 1;
  }

  .home-top {
    height: auto;
  }

  .home-top-left {    
    padding: 20px;
  }

}

ul li.login-link a  {
  color: white !important;
  text-decoration: none;
}