body {
    margin: 0;
    padding: 0;
    font-family: "futura-pt", sans-serif;
    overflow-x: hidden;
    box-sizing: border-box;
    background-color: #f5f8f8;
}

html {
	scroll-padding-top: 100px;
}

.title {
    color: white;
    text-align: center;
}

.interior-title {
    padding: 5% 15% 2.5%;
    color: white;
    text-align: center;
}

h1 {
    font-size: 72px;
}

h2 {
    font-size: 56px;
}

h3 {
    font-size: 48px;
}

h4 {
    font-size: 32px;
}

h5 {
    font-size: 24px;
}

h6 {
    font-size: 18px;
}

p {
    font-size: 16px;
}

ul {
    font-size: 16px;
}

.video-wrapper {
	display: flex;
	justify-content: center;
}

a.anchor {
    display: block;
    position: relative;
    top: -10vh;
    visibility: hidden;
}

.anchor {
    position: absolute;
    transform: translateY(-50vh);
}

.article-background {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom center;
    height: 100vh;
    overflow-x: hidden;
    display: flex;
    align-items: center;
}

.homepage-feature-text {
    position: relative;
    color: var(--Color-2, #fff);
    text-align: center;
    font-family: "Times New Roman", "serif";
    font-size: 5rem;
    z-index: 6;
    padding-bottom: 5%;
}

.homepage-feature-section {
    height: 50%;
    max-width: 80%;
}

.homepage-feature-buttons {
    display: flex;
    gap: 20px;
    position: relative;
    width: 100%;
    margin: 0 auto;
    justify-content: center;
    z-index: 10;
}

iframe {
    display: block;
 /* Adjust this value if you don't want it to cover the full viewport height */
	border: none; /* Removes the default iframe border */
}

iframe #homepage-events {
	height: auto;
	
}

.wp-site-blocks {
	background-color: #009999;
}

  .tooltip {
    position: relative;
    display: inline-block;
  }

  .tooltip .tooltiptext {
    visibility: hidden;
    width: 280px;
    background-color: #333;
    color: #fff;
    text-align: left;
    padding: 8px;
    border-radius: 6px;
    position: absolute;
    z-index: 1;
    bottom: 125%; /* Position above the link */
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
  }

  .tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
  }

  /* Optional arrow */
  .tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%; /* bottom of the tooltip */
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
  }


/*Menu*/
#menu-search {
	position: fixed;
	top: 100px;
	width: 55%;
	z-index: 100;
	background-color: orange;
	color: white;
}

#go-to-search,
#back-to-menu,
#search-results {
	display: none;
}

/*Main Content*/

.section-container {
	margin: 2.5% 10%;
}

.main-content-sections {
	padding: 10% 5%;
	display: flex;
	flex-direction: row;
}

.decorative-bubbles-1 {
	position: absolute;
	top: 60%;
	left: -30%;
}

.decorative-bubbles-2 {
	position: absolute;
	top: 100%;
	right: -20%;
	overflow-x: hidden;
}

.decorative-bubbles-3 {
	z-index: 1;
	transform: translate(-80%, -50%);
}

.decorative-bubbles-4 {
	transform: translate(-75%, -90%) rotate(90deg);
	z-index: -1;
}

.decorative-bubbles-5 {
	transform: translate(75%, -90%) rotate(90deg);
	z-index: -2;
}

.gsc-search-button .gsc-search-button-v2 {
	background-color: #006666;
}
.gsc-search-button:hover .gsc-search-button-v2:hover {
	background-color: #003333;
}

.navbar {
	transition: background-color 0.5s, color 0.5s;
	height: 100px;
	padding: 0px 20px;
}

.navbar-brand {
	display: flex;
	align-items: center;
	font-family: "Times New Roman", Times, serif;
	font-size: 2rem;
	color: white;
}

.navbar-brand:hover {
	color: white;
}

.nav-link {
	color: white;
	font-weight: 600;
	justify-content: center;
}

.nav-link:hover {
	color: #f7951d;
	text-decoration: none;
}

.nav-item {
	display: flex;
	justify-content: center;
}

.menuButton {
	background-color: #003333;
	padding: 10px;
	border: none;
	margin-left: 20px;
	color: white;
	text-decoration: none;
	font-weight: 600;
	width: 175px;
	transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.menuButton:hover {
	background-color: #f7951d;
	color: black;
}

.hamburgerButton {
	display: none;
	background-color: transparent;
	border: none;
	padding: 10px;
	margin-left: 20px;
	cursor: pointer;
}

.hamburger-icon span {
	display: flex;
	width: 30px;
	height: 3px;
	margin: 6px 0;
	background-color: white;
	transition: 0.3s;
	justify-content: center;
	align-content: center;
	align-items: center;
}

.fa-magnifying-glass {
	position: fixed;
	bottom: 0;
	right: 5%;
	background-color: #f7951d;
	color: black;
	font-size: 2rem !important;
	padding: 2% 2.2%;
	border: none;
	border-radius: 360px;
	z-index: 100;
}

#navlogo {
	height: 60px;
	margin-right: 20px;
}

/*Menu & Search*/
.overlay {
	display: none;
	position: fixed;
	top: 100px;
	left: 0;
	height: 86vh;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 1000;
}

.content-wrapper {
	display: flex;
}

.search-column {
	width: 60vw;
}

#search-container {
	border: 5px solid #006666;
	border-left: none;
	background-color: #fff;
	padding: 5% 10% 8%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	transform: translate(-100%, 0); /* Initial state: hidden on the left */
	height: 42vh;
}

.search-title {
	color: #000;
	font: 400 2rem "Futura Bk BT", sans-serif;
}

	
	.search-input-container {
        align-items: center;
        background-color: transparent;
        display: flex;
        gap: 20px;
        margin: 0%;
        padding-left: 2.5%;
    }

.search-input {
	color: #000;
	font: 400 20px "Futura Bk BT", sans-serif;
	flex-grow: 1;
	border: none;
	background-color: #ead7bf;
}

.search-button {
	background-color: #f7951d;
	border: 2px solid #f7951d;
	padding: 2% 3%;
	transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.search-button:hover {
	background-color: #a85d0c;
	border: 2px solid #a85d0c;
	color: white;
}

.search-icon {
	width: 25%;
	height: 59px;
}

.popular-searches {
	display: flex;
	gap: 20px;
	font-size: 18px;
	color: #000;
	font-weight: 400;
	text-align: center;
	cursor: pointer;
	font-size: 16px;
}

.popular-search-item {
	font-family: "Futura Bk BT", sans-serif;
}

#quick-links {
	display: flex;
	flex-direction: row;
	height: 48vh;
	border: 5px solid #006666;
	border-left: none;
	background-color: #fff;
	align-items: center;
	gap: 20px;
	color: #000;
	text-align: center;
	transform: translate(0, 100%); /* Initial state: hidden below */
}

.quick-links-image {
	width: 25vw;
	height: 100%;
	background-size: cover;
	background-position: right;
	background-image: url:("https://test.phsu.edu/_resources/images/decorative/quick-links-image.jpg") !important;
}

.quick-links-group {
	display: flex;
	flex-direction: column;
	gap: 1.5vh;
}

.quick-link,
.resource-link {
	font-family: "Futura Bk BT", sans-serif;
	width: 25vw;
	color: black;
	text-decoration: none;
}

.quick-link:hover,
.resource-link:hover {
	color: #006666;
	text-decoration: underline;
}

.vertical-divider {
	width: 12px;
	height: 65%;
	background-color: #000;
	margin: auto 0;
}

.transition-transform {
	transition: transform 0.5s ease-in-out;
}

.resources-group {
	display: flex;
	flex-direction: column;
	gap: 1.5vh;
	padding: 3%;
}

.resources-title {
	color: #006666;
	font: 1rem "Futura Bk BT", sans-serif;
}

#menu-column {
	width: 41vw;
	background-color: white;
	transform: translate(0, -100%); /* Initial state: hidden above */
	transition: transform 0.3s ease-in-out; /* Smooth transition */
	position: fixed;
	top: 0;
	right: 0;
	z-index: 999; /* Ensure it's on top */
}

.menu-container {
    border-color: #006666;
    border-width: 5px 10px;
    border-style: solid;
    border-right: none;
    background-color: #fff;
    padding: 10% 10%;
    margin-top: 100px;
    height: 92vh;
    background-image: url(/_resources/images/Lion-only-round-Icon-faded.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 10%;
    margin-bottom: 5px;
    text-decoration: none;
    color: black;
    font-size: 1.25vw;
    cursor: pointer;
 /* Indicate that it's clickable */
	transition: color 0.3s, padding-right 0.3s; /* Smooth hover effect */
}

.menu-item: hover {
	transform: translateX(20px);
}

.menu-item span {
	/* Ensure there's no default underline on the span */
    text-decoration: none;
}

/* Apply the underline animation to the span only when the parent menu-item is hovered */
.menu-item:hover span {
    position: relative;
    display: inline-block;
}

.menu-item:hover span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
 /* Adjust this value to control the distance of the underline */
    width: 100%;
    height: 2px;
 /* Adjust the thickness of the underline */
    background-color: currentColor;
 /* Use the text color for the underline */
    animation: underline-animation 0.3s forwards;
}

/* Animation keyframes for underline */
@keyframes underline-animation {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

.menu-icon {
    float: right;
    transition: transform 0.3s;
 /* Smooth icon movement */
}

.menu-item:hover .menu-icon {
    transform: translateX(10px);
 /* Slide icon to the right on hover */
}

.overlay.show #search-container {
    transform: translate(0%, 0);
 /* Final state: fully visible */
}

.overlay.show #quick-links {
    transform: translate(0, 0);
 /* Final state: fully visible */
}

.overlay.show #menu-column {
    transform: translate(0, 0);
 /* Final state: fully visible */
}


/*Landing Pages*/

.landing-page-image-grid {
	background-size: cover !important;
    width: 25%;
	padding: 0px;
    background-repeat: no-repeat !important;
    height: 250px;
	background-position: center;
	border: 0px;
}

#bvi-boat {
	background-image: url(https://test.phsu.edu/_resources/images/locations/bvi-boat.jpg);
}

#bvi-boat-2 {
	background-image: url(https://test.phsu.edu/_resources/images/locations/bvi-boat-2.jpg);
}


#bvi-boat-3 {
	background-image: url(https://test.phsu.edu/_resources/images/locations/bvi-boat-3.jpg);
}

#bvi-fish {
	background-image: url(https://test.phsu.edu/_resources/images/locations/bvi-fish.jpg);
}

#bvi-beach {
	background-image: url(https://test.phsu.edu/_resources/images/locations/bvi-beach.jpg);
}

#bvi-island {
	background-image: url(https://test.phsu.edu/_resources/images/locations/bvi-isalnd-1.jpg);
}

/*Featured News Overlay*/

.article-background {
	position: relative;
	background-size: cover;
	background-position: center;
}

.background-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5); /* or whatever color/tint you want */
	z-index: 1;
}

.container.homepage-feature-section {
	position: relative;
	z-index: 2;
	flex-direction: column;
}

/*General*/

a {
    color: #006666;
    text-decoration: none;
}

a:hover {
    color: black;
    text-decoration: underline;
}

ul {
    color: black;
}

.align-center {
    display: flex;
    text-align: center;
    justify-content: center;
    align-content: center;
    align-items: center;
}

.custom-shape-divider-bottom-1724796885 {
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    margin-bottom: -2px;
}

.custom-shape-divider-bottom-1724796885 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 107px;
}

.custom-shape-divider-bottom-1724796885 .shape-fill {
    fill: #009999;
}

.disclosure {
    font-style: italic;
    font-weight: 400;
    line-height: 1;
}



.underline-animation {
    position: relative;
    display: inline-block;
    text-decoration: none;
    align-content: center;
}

.underline-animation::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    transition: width 0.3s ease-in-out;
}

.underline-animation-orange::after {
    background-color: #f7951d;
}

.underline-animation-blue::after {
    background-color: #009999;
}

.underline-animation-white::after {
    background-color: #ffffff;
}

.underline-animation-black::after {
    background-color: #000000;
}

.underline-animation:hover::after {
    width: 100%;
}

.white {
    color: white;
}



/*News*/

.fa-circle-arrow-left,
.fa-circle-arrow-right {
    color: black;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
    border-radius: 60px;
}

.fa-circle-arrow-left:hover,
.fa-circle-arrow-right:hover {
    color: white;
    background-color: black;
    border-radius: 50px;
}

.arrows {
    display: flex;
    font-size: 2rem;
    justify-content: flex-end;
    margin: 0 10% 1%;
    gap: 10px;
}

.arrows:hover a {
    text-decoration: none;
}

.date,
.event-news-details,
.description {
    color: #ffffff;
    font-family: "futura-pt", sans-serif;
    font-weight: 400;
}

.date,
.event-news-details {
    font-size: 1.2rem;
}

.description {
    font-size: 24px;
    line-height: 29.045px;
}

.first-item {
    margin-left: 7.5%;
}

.frame {
	margin-bottom: 5%;
    align-items: flex-start;
    cursor: grab;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 3%;
    overflow-x: auto;
 /* Enable horizontal scrolling */
    position: relative;
    width: 100%;
    z-index: 1;
    scrollbar-width: none;
 /* Firefox */
}

.frame.activated {
    cursor: grabbing;
}

.last-item {
    margin-right: 7.5%;
}

.main-container {
    overflow: hidden;
    padding: 2.5% 0;
    position: relative;
    width: 100vw;
}

.news-event-item {
    align-items: flex-start;
    background-position: center;
 /* Add this to center the background image */
    background-size: cover;
    border: none;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    flex-wrap: nowrap;
    position: relative;
    width: 33vw;
}

.news-event-item-overlay {
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    background-image: linear-gradient(
		to bottom,
		rgba(0, 0, 0, 0),
		rgba(0, 0, 0, 1)
	);
    background-size: cover;
    border-radius: 20px;
    font-size: 0px;
    padding: 30% 10% 10% 10%;
    position: relative;
    text-align: left;
    height: 400px;
    width: 33vw;
}

.news-event-section-title {
    padding-left: 10%;
    color: black;
}

.news-event-title {
    display: flex;
    color: black;
}

.news-event-title:hover {
    text-decoration: red;
}

.scroll-button {
    background-color: transparent;
    border: none;
    color: black;
    float: right;
    font-size: 1.5rem;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.scroll-button:hover {
    color: #066;
    text-decoration: none;
}

/*Footer*/

.footer {
    background-color: #006666;
    padding: 5% 5% 2%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.footer2 {
    background-color: #006666;
    padding: 0% 5% 2%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-columns {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-between;
}

.footer-column {
    flex: 1;
}

.footer-column h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: white;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 5px;
}

.footer-column ul li a {
    text-decoration: none;
    color: #fff;
}

.footer-column ul li a:hover {
    text-decoration: none;
    color: #f7951d;
}

#campus-resources-column,
#students-column {
    order: 1;
}

.branding-column {
    display: flex;
    order: 2;
    justify-content: center;
}

.homepage-button {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    flex-basis: auto;
    position: relative;
    font-family: "futura-pt", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    text-align: center;
    padding: 10px 40px;
    border: none;
    border-radius: 50px;
    z-index: 1;
    width: 25vw;
    text-decoration: none;
}

.resources-for-column,
.quicklinks-column {
    order: 3;
    text-align: right;
}

.footer-branding img {
    max-width: 100%;
}

.footer-branding p {
    margin-top: 10px;
    font-family: "Times New Roman", Times, serif;
    font-size: 40px;
    color: white;
    text-align: center;
}

#legal {
    display: flex;
    flex-direction: row;
    text-align: center;
    justify-content: center;
    color: white;
    margin-top: 20px;
}

#legal a {
    color: white;
    margin: 10px;
}

#legal a:hover {
    color: #f7951d;
}

.social-links {
    display: flex;
    text-align: center;
    justify-content: space-between;
    gap: 20px;
}

.social-links a {
    color: white;
    font-size: 20px;
    text-decoration: none;
    margin-left: 10px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #f7951d;
}

.social-links i {
    font-size: 24px;
}

.socials-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px 10%;
    background-color: #024748;
    width: 100%;
}

.locationDropdown {
    padding: 5px;
    font-size: 16px;
    margin-right: 20px;
    width: 100px;
    height: auto;
}

.accreditationsAndLicensures {
    display: flex;
    flex-direction: row;
    gap: 5%;
}

.sub-menu {
    color: white;
    padding: 10px;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5%;
}

.sub-menu a,
.sub-menu select {
    display: block;
 /* Makes each link and the select box take up a full line */
}

.sub-menu .hamburger {
    display: none;
 /* Hide hamburger by default */
}

.sub-menu a {
    color: white;
    text-decoration: none;
    padding: 10px;
    transition: color 0.3s;
    font-size: 1rem;
}

.sub-menu a:hover {
    color: black;
}

.sub-menu .menu-icon,
.sub-menu .close-icon {
    font-size: 1rem;
    cursor: pointer;
}

.sub-menu .close-icon {
    display: inline;
    position: fixed;
    top: 130px;
    left: 5%;
    z-index: 1031;
}

/*Homepage*/

.header {
    background-color: #006666;
    display: flex;
    justify-content: space-between;
    padding: 18px 48px;
}

.homepage-feature-buttons .dark-teal-button {
    display: flex;
    width: fit-content;
    justify-content: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-image {
    width: 60px;
    height: 60px;
}

.logo-text {
    font-family: "Times New Roman", sans-serif;
    font-size: 60px;
    color: #fff;
}

.header-actions {
    display: flex;
    gap: 20px;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    font-size: 20px;
}

.button-group {
    display: flex;
    gap: 20px;
}

.button-outline {
    font-family: "Inter", sans-serif;
    color: #006666;
}

.button-solid {
    font-family: "Inter", sans-serif;
    color: #fff;
}

.menu-search {
    background-color: #f7951d;
    color: #000;
    padding: 13px 28px;
    font: 30px "Futura Bk BT", sans-serif;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.single-blurb {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5% 20% 5% 20%;
}

.single-blurb h2,
.single-blurb button {
    margin-bottom: 2%;
 /* Adjust as needed */
}

.vl {
    position: absolute;
    border-left: 6px solid #f7951d;
    height: 30%;
    z-index: 5;
    left: 50%;
    top: 85%;
    border-radius: 5px;
}

.blue-background {
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #009999;
}

.feedback {
    display: flex;
    flex-direction: column;
    background-color: #d77d1a;
    width: 100%;
    padding: 5%;
    color: black;
    text-align: center;
    justify-content: center;
}

.locations {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2%;
    padding: 5% 10%;
    text-align: center;
}

.location {
    text-decoration: none;
    color: black;
    font-family: "futura-pt", sans-serif;
    font-size: 1.5em;
}

.location:hover {
    cursor: pointer;
}

.location img {
    border-radius: 20px;
    width: 100%;
}

.location.homepage:hover {
    color: white;
    filter: drop-shadow(10px 10px 20px #033);
}

.location-container {
    padding: 0 5%;
}

/*General Page*/

.generic-page {
    padding: 2% 10%;
}

.general-category {
    padding: 10px;
    color: white;
    text-decoration: none;
    display: flex;
    border: solid 1px #006666;
    justify-content: center;
    background-color: #006666;
}

.general-item {
    display: flex;
    flex-direction: column;
    font-weight: 700;
	font-size: 1.25em;
}

/*Components*/

.main-padding {
    padding: 5%;
}

.main-padding p {
    margin-bottom: 0 !important;
}

.small-padding {
    padding: 2.5%;
}

.small-bottom-padding {
    padding-bottom: 2.5%;
}

.medium-padding {
    padding: 5%;
}

.gray {
    background-color: #DBDDDC;
}

.light-blue {
    background-color: #CFE6E6;
}

.teal {
    background-color: #006666;
    color: white;
}

.feature-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: gray;
    object-fit: cover;
}

.accordion {
    width: 100%;
    margin: 0 auto;
    padding: 2.5% 0;
}

.accordion-btn {
    width: 100%;
    background-color: #DBDDDC;
    border: 1px solid #ccc;
    padding: 10px;
    text-align: left;
    cursor: pointer;
    outline: none;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
    position: relative;
    color: black;
 /* Default text color */
    font-size: 1.25em
}

.accordion-btn:hover {
    background-color: #CFE6E6;
    color: black;
}

.accordion-btn.active {
    background-color: #006666;
 /* Active background color */
    color: white;
 /* Active text color */
    border: 1px solid #004d4d;
 /* Darker border for contrast */
}

.accordion-content {
    display: none;
    padding: 10px;
    border: 1px solid #ccc;
    border-top: none;
    font-size: 18px;
}

.primary-button {
    background-color: #f7951d;
    color: black;
    font-weight: 600;
    border: none;
    border-radius: 5rem;
    padding: .75rem 2rem;
}

.primary-button:hover {
    background-color: #A85D0C;
    color: white;
    font-weight: 600;
    border: none;
    border-radius: 5rem;
    padding: .75rem 2rem;
}

.secondary-button {
    background-color: #009999;
    color: black;
    font-weight: 600;
    border: none;
    border-radius: 5rem;
    padding: .75rem 2rem;
	display: block;
	justify-self: center;
}

.secondary-button:hover {
    background-color: #006666;
    color: white;
    font-weight: 600;
    border: none;
    border-radius: 5rem;
    padding: .75rem 2rem;
}

.primary-white-button {
    background-color: white;
    color: black;
    font-weight: 600;
    border: 2px solid black;
    border-radius: 5rem;
    padding: .75rem 2rem;
}

.primary-white-button:hover {
    background-color: #A85D0C;
    color: white;
    font-weight: 600;
    border: 2px solid #A85D0C;
    border-radius: 5rem;
    padding: .75rem 2rem;
}

.secondary-gray-button {
    background-color: #DBDDDC;
    color: black;
    font-weight: 600;
    border: 2px solid black;
    border-radius: 5rem;
    padding: .75rem 2rem;
}

.secondary-gray-button:hover {
    background-color: #006666;
    color: white;
    font-weight: 600;
    border: 2px solid #006666;
    border-radius: 5rem;
    padding: .75rem 2rem;
}

.light-button,
.light-download-button {
    background-color: #DBDDDC;
    color: black;
    font-weight: 600;
    border: 2px solid #DBDDDC;
    border-radius: 5rem;
    padding: .75rem 2rem;
}

.light-button:hover,
.light-download-button:hover {
    background-color: #CFE6E6;
    color: black;
    font-weight: 600;
    border: 2px solid #CFE6E6;
    border-radius: 5rem;
    padding: .75rem 2rem;
}

.dark-button,
.dark-download-button {
    background-color: #003333;
    color: white;
    font-weight: 600;
    border: 2px solid #003333;
    border-radius: 5rem;
    padding: .75rem 2rem;
}

.dark-button:hover,
.dark-download-button:hover {
    background-color: black;
    color: white;
    font-weight: 600;
    border: 2px solid black;
    border-radius: 5rem;
    padding: .75rem 2rem;
}

.primary-link,
.dark-link {
    text-decoration: none;
    padding: .75rem 2rem;
}

.primary-link:hover,
.dark-link:hover {
    text-decoration: none;
}


/* Arrow styles */
.arrow {
    float: right;
    transition: transform 0.3s;
}

.arrow.down {
    transform: rotate(90deg);
 /* Rotates the arrow to point down */
}

/* Tab Container Styles */
.tab-container,
.tab-container-2 {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.tab-container-2 {
    padding: 5%;
}

.tab-container-vert,
.tab-container-vert-2 {
    display: flex;
    flex-direction: row;
}

.tab-container-vert-2 {
    padding: 10%;
}

/* Tab Button Styles */
.tab-buttons {
    display: flex;
    justify-content: space-between;
}

.tab-buttons-vertical {
    display: flex;
    flex-direction: column;
}

.tab-buttons button,
.tab-buttons-vertical button {
    flex: 1;
    padding: 10px;
    cursor: pointer;
    border: 1px solid #ccc;
    background-color: #f1f1f1;
    color: black;
    outline: none;
    transition: background-color 0.3s, color 0.3s;
}

.tab-buttons button:hover,
.tab-buttons-vertical button:hover {
    background-color: #ddd;
}

.tab-buttons .active-tab,
.tab-buttons-vertical .active-tab {
    background-color: #006666;
    color: white;
}

/* Tab Content Styles */
.tab-content {
    display: none;
    padding: 10px;
    border: 1px solid #ccc;
    border-top: none;
    font-size: 18px;
}

.tab-content.active {
    display: block;
}

.table-widget {
    display: flex;
    justify-content: center;
    align-items: center;
}

table {
    border-collapse: collapse;
    width: 100%;
    margin: 20px 0px;
}

th, td {
    border: 1px solid #006666;
    padding: 15px;
    text-align: center;
    color: #ffffff;
    align-content: baseline;
}

th {
    background-color: #006666;
}

td {
    background-color: white;
    color: black
}

.quote-person-container {
	margin-top: 20px;
}

.quote-person {
	display: flex;
    flex-direction: column;
    justify-content: center;
}

.quote-img {
    width: 238px;
    border-radius: 200px;
}

.quote-name {
    font-size: 1.5rem;
    color: #006666;
}

.fact-col {
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: top;
    align-items: center;
}

.fast-facts {
    text-align: center;
    display: flex;
    justify-content: space-evenly;
}

.fast-fact {
    display: flex;
    width: 150px;
    height: 150px;
    background-color: #000000;
	color: white
    border-radius: 50%;
    box-shadow: 10px 10px 20px #d1d9d9, -10px -10px 20px #ffffff;
    text-align: center;
    align-items: center;
    justify-content: center;
    margin-bottom: 15%;
	border-radius: 100%;
}

.fast-facts:not(.gray):not(.light-blue):not(.teal) .fast-fact {
    background-color: #F7951D;
	color: black;
}

.fast-facts.gray .fast-fact {
    background-color: #F7951D;
	color: black;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.15), -10px -10px 20px rgba(255, 255, 255, 0.8);
}

.fast-facts.light-blue .fast-fact {
    background-color: #006666;
	color: white;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.1), -10px -10px 20px rgba(225, 242, 242, 0.9);
}

.fast-facts.teal .fast-fact {
    background-color: #F7951D;
	color: black;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.2), -10px -10px 20px rgba(8, 128, 128, 0.7);
}

/* Text inside circle */
.fact-text {
	margin: 0;
    font-size: 2rem;
	line-height: 1;
}

/*Find Your Program*/


.low-title {
		margin-top: 100px !important;
		font-size: 2.5em !important;
	}

.title-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    height: 300px;
    color: var(--Color-2, #fff);
    text-align: center;
    font: 400 2.5rem "Times New Roman", sans-serif;
    background-position: center;
    background-size: cover;
}

.title-box .school-name {
    font-size: 4rem;
}

.background-image {
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.find-a-program {
    margin-bottom: 5%;
}

.page-description {
    padding: 5% 20% 0%;
}


.filter-category {
    display: flex;
    flex-direction: column;
}

.filter-container {
    display: flex;
    max-width: 25vw;
    flex-direction: column;
    font: 400 16px Inter, sans-serif;
    color: #fff;
    padding: 5% 5%;
    margin-bottom: 50px;
}

.clear-filter {
    color: #000;
    text-align: center;
    width: 100%;
    font-size: 20px;
}

.filter-title {
    margin: auto 0;
    text-align: start;
    font-size: 16px;
}

.filter-toggle,
.close-btn {
    display: none;
 /* Hidden by default */
    position: relative;
    margin: 10px;
}

.filter-toggle:hover {
    background-color: black;
    color: white;
}

.filter-option {
    padding: 10px;
    width: 15vw;
    background-color: #006666;
 /* Default background */
    color: white;
    border: none;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    margin: 5px 10px 5px 0;
}

.filter-option.selected {
    background-color: #f7951d;
 /* Highlight color when selected */
    color: black;
}

.field-filter-header {
    align-self: center;
    display: flex;
    margin-top: 17px;
    gap: 20px;
    color: #000;
    white-space: nowrap;
    text-align: center;
    justify-content: space-between;
}

.filter-separator {
    border-radius: 20px;
    background-color: #006666;
    min-height: 4px;
    margin-top: 10px;
    width: 100%;
}

.result-container {
    display: flex;
    flex-direction: column;
    width: 75vw;
}

.program-cards-container {
    align-content: flex-start;
    flex-wrap: wrap;
    display: flex;
    padding: 5% 5% 0 0;
    flex-direction: column;
    width: 75vw;
}

.program-row {
    width: 100%;
    padding: 0 20px;
    margin-top: 35px;
}

.program-row:first-child {
    margin-top: 0;
}

.program-grid {
    gap: 20px;
    display: flex;
    column-count: 2;
    display: flex;
    flex-wrap: wrap;
}

.program-card {
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    flex-grow: 1;
    color: #fff;
    padding: 5% 2% 2%;
    font: 400 1rem Futura Bk BT, sans-serif;
    width: 30vw;
	height: 275px;
	justify-content: flex-end;
}

.program-card:hover {
	cursor: pointer;
	box-shadow: 10px 5px 5px black;	
	color: #fff;
}

.program-image {
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.program-content {
    position: relative;
}

.program-title {
    font-size: 25px;
    line-height: 1.2;
    margin-bottom: 10px;
	font-weight: 700;
}

.program-info {
    font-size: 20px;
    line-height: 18px;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.overlay-fade {
    position: absolute;
    bottom: 0px;
    right: 0px;
    background: linear-gradient(
		0deg,
		rgba(0, 0, 0, 1),
		rgba(0, 0, 0, 0)
	);
 /* Black see-through */
    width: 100%;
    height: 100%;
    transition: 0.5s ease;
    opacity: 1;
    color: white;
    font-size: 20px;
    text-align: center;
}

.overlay-blue {
    position: absolute;
    bottom: 0px;
    right: 0px;
    background: rgba(0, 153, 153, 0.8);
    width: 100%;
    height: 100%;
    transition: 0.5s ease;
    opacity: 1;
    color: white;
    font-size: 20px;
    text-align: center;
}

.overlay-blue:hover {
    background: rgba(0, 51, 51, 0.8);
}

.applied-filter-list {
    display: flex;
    flex-direction: row;
    padding-left: 2.5%;
}

.applied-filters {
    text-align: center;
    gap: 1%;
    width: 100%;
}

.applied-filter-item {
    width: fit-content;
    background-color: #006666;
    color: white;
    border: none;
    padding: 0 10px;
    border-radius: 50px;
    margin: 5px;
}

.applied-filter-item .fa-solid {
    font-size: 1rem;
}

.applied-filter-item a {
    color: white;
    text-decoration: none;
}

.applied-filter-item a:hover {
    color: black;
}

.fa-user-headset {
    position: fixed;
    bottom: 5%;
    right: 5%;
    background-color: #f7951d;
    color: black;
    font-size: 3rem;
    padding: 2% 2.2%;
    border: none;
    border-radius: 360px;
}

.fa-user-headset:hover {
    background-color: #a85d0c;
    color: white;
}

.apply-filters {
    display: none;
}

.edit-filters {
    color: #006666;
}

.edit-filters:hover {
    color: black;
}


/*Schools Page*/

#agreement {
    text-align: left;
    width: 3%;
}

.dean {
    font-weight: 800;
    width: 50%;
}

.dean-info {
    flex-direction: row;
}

.deanImg {
    width: 45%;
}

.school-menu {
    display: block;
    text-align: center;
}

.active {
    display: none;
}

.dean-column {
    padding-right: 5%;
    width: 40%;
}

.icon {
    display: none;
}

.nav-box {
    background-color: #006666;
    height: 14vh;
}

.program-box {
    align-items: center;
    background-color: #cd3915;
 /*School Colors to be pulled based on school*/
    background-size: cover;
    border-radius: 30px;
    color: white;
    cursor: pointer;
    display: flex;
    flex-wrap: wrap;
    height: 165px;
    justify-content: center;
    opacity: 0.8;
    text-align: center;
	padding: 10px;
	font-size: 20px;
}

.program-box:hover {
    background-color: #741c07;
}

.program-box-image {
    background: url("/_resources/images/doctor.jpg");
    background-size: cover;
    border-radius: 30px;
    margin-bottom: 5%;
    width: 30%;
}

.program-container {
    max-width: 282px;
    width: 100%;
}

.program-information-column {
    width: 60%;
}

.programs {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 5%;
}

.responsive-image {
    aspect-ratio: 3.45;
    object-fit: auto;
    object-position: center;
    width: 100%;
}

.schoolnav {
    position: relative;
    margin-top: -100px;
    font-size: 1.2rem;
}

.school-menu a {
    color: white;
    text-decoration: none;
    padding: 0 2.5%;
}

.section-spacer {
    padding-bottom: 5%;
}

.submit {
    background-color: #006666;
    border: none;
    color: white;
}

.submit:hover {
    background-color: #033;
}

/*Directory*/
.person-card {
    display: flex;
    flex-direction: row;
    position: relative;
    overflow: hidden;
    flex-grow: 1;
    color: black;
    padding: 5%;
    font: 400 18px "Futura Bk BT", sans-serif;
    width: 25vw;
    background-color: #cfe6e6;
}

.person-info {
    margin: 0;
    font-size: 1rem;
}

.person-image {
    width: 80%;
}

.fa-angles-left,
.fa-angles-right {
    font-size: 18px;
    justify-content: center;
}

.fa-angles-right {
    text-align: right;
}

/*Library*/

.library {
    padding: 2% 5%;
    justify-content: space-between;
}

.library-col {
    margin: 0px;
    padding: 0;
    text-align: center;
    color: white;
    background-color: #006666;
    border-color: white;
    font-size: 20px;
}

.library-col-content-container {
    padding: 2%;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url("/_resources/images/background-texture.png");
}

.library-col-content-container-2 {
    padding: 0% 5% 2%;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: transparent;
    color: black;
    text-align: left;
}

/*Note on Library Content Container: Option 1 used for PHSU Journal and PHSU Thesis & Dissertations
Option 2 for the rest that don't link to another website/page */

.library-category {
	padding: 10px;
	color: white;
	text-decoration: none;
	display: flex;
	border: solid 1px #005959;
	justify-content: center;
}

.library-category:hover {
	background-color: #024748;
	color: white;
}

.library-instructions {
	padding: 0 5% 5% 5%;
	text-align: center;
}

.archives {
	display: flex;
	justify-content: center;
	padding: 5%;
}

.library-books {
	display: flex;
	gap: 5%;
	justify-content: center;
	margin-top: 5%;
}

/*Wellness*/

.section-2 .row {
	padding: 1.5rem 5%;
}

.wellness-main {
	padding: 0 5%;
}

.wellness-icons {
	font-size: 2.5rem;
}

.title-header {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-bottom: 50px;
}

.wellness {
	width: 100%;
}

.wellness-location img:hover {
	box-shadow: 0 10px 15px rgba(0, 0, 0, 0.5); /* Optional: to add a shadow for better visibility */
}

.custom-shape-divider-top-1722284967 {
	margin-top: -10px;
}

.section-3 {
	background-color: #006666;
	padding: 0px 5% 5% 5%;
	text-align: center;
	margin-top: -2px;
}

.services {
    display: flex;
    justify-content: center;
    padding-bottom: 5%;
}

.wellness-lists {
	padding: 0 10% 5%;
}

.service-box {
	width: 16vw;
	display: flex;
	flex-direction: column;
	background-color: transparent;
	justify-content: center;
	align-items: center;
	border-radius: 20px;
	margin: 4% 0 0%;
	font-size: 1rem;
	color: white;
}

.service-box .fa-solid {
	color: white;
	font-size: 3rem;
}

.multiple-services {
	justify-content: space-evenly;
}

.multiple-services h3
{
	color: white;
}

.section-heading {
	color: white;
	align-items: center;
	display: flex;
	flex-direction: column;
}

.custom-shape-divider-top-1722284923 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	overflow: hidden;
	line-height: 0;
	transform: rotate(180deg);
}

.custom-shape-divider-top-1722284923 svg {
	position: relative;
	display: block;
	width: calc(100% + 1.3px);
	height: 100px;
}

.custom-shape-divider-top-1722284923 .shape-fill {
	fill: #ffffff;
}

.shape-fill {
	fill: #006666;
}

.lists {
	text-align: left;
	color: white;
}



.section-4 {
	padding: 0% 5%;
	text-align: center;
}

.contact-section {
	padding: 5%;
}

.contact-info {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.contact-item {
	padding: 10px;
	text-decoration: none;
	color: #006666;
	font-size: 1.2rem;
}

.contact-item:hover {
	color: black;
}

.orange-button,
.dark-teal-button,
.teal-button {
	width: 40vw;
	height: fit-content;
	padding: 10px 15px;
	color: black;
	text-align: center;
	border-radius: 50px;
	text-decoration: none;
	border: none;
	font-weight: 600;
	transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.orange-button {
	background-color: #f7951d;
	color: black;
}

.orange-button:hover {
	background-color: #009999;
	text-decoration: none;
}

.dark-teal-button {
	background-color: #024748;
	color: white;
}

.dark-teal-button:hover {
	background-color: #f7951d;
	color: black;
}

.teal-button {
	background-color: #006666;
	color: white;
}

.teal-button:hover {
	background-color: #f7951d;
	color: black;
}

/*Program Page*/

/* Style the video: 100% width and height to cover the entire window */

.dropbtn {
	background-color: #f7951d;
	color: black;
	padding: 16px;
	font-size: 16px;
	border: none;
	cursor: pointer;
	width: 50%;
}

.dropbtn:hover,
.dropbtn:focus {
	background-color: #006666;
	color: white;
}

.dropdown-content {
	display: none;
	position: absolute;
	background-color: #f1f1f1;
	min-width: 100%;
	overflow: auto;
	box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
	z-index: 1;
	margin-top: 56px;
}

.dropdown-content a {
	color: black;
	padding: 12px 16px;
	text-decoration: none;
	display: block;
	align-items: center;
}

.dropdown a:hover {
	background-color: #ddd;
}

.link-button {
	background-color: #009999;
    border: none;
    color: black;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
}

.show {
	display: block;
}

.program-nav-item .nav-link {
	color: black;
	justify-content: flex-start;
}

.program-nav-item .nav-link:hover {
	color: black;
	background-color: #CFE6E6;
	justify-content: flex-start;
}


.section-container.program-detail-container h3 {
	text-align: center;
}
.section-container.program-detail-container button {
	width: 100%;
}

.program-header-container {
	display: flex;
	position: relative;
	height: auto;
	background-color: #006666;
	align-items: center; /* Ensure items are stretched to the same height */
}

.program-header-container video {
	width: 100%;
	height: auto;
}

.program-header-content {
	position: absolute; /* Position content absolutely within the container */
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	flex-direction: column;
	justify-content: center; /* Vertically center content */
	align-items: center; /* Horizontally center content */
	padding: 20px;
	color: #fff;
	text-align: center;
}

.myVideo {
	background-size: cover;
	background-repeat: no-repeat;
	width: 100vw;
	overflow-x: hidden;
	z-index: 0;
	background-color: black;
}

/* Add some content at the bottom of the video/page */

.program-header-content select {
	margin: 0 5% 5rem 5%;
}

.program-navbar {
	position: relative;
	width: 100%;
	transition: top 0.3s ease-in-out;
}

.program-navbar.sticky {
	position: fixed;
	top: 0;
	left: 0;
	margin-top: var(--header-height); /* Add margin equal to the header height */
}

.program-navbar ul {
	display: flex;
	list-style-type: none;
	margin-top: -1%;
	padding: 0;
	overflow: hidden;
	justify-content: center;
}

.program-navbar li {
	list-style-type: none;
	float: left;
}

.program-navbar li a {
	display: block;
	text-align: center;
	font-size: 1.5rem;
	padding: 1rem 1.2rem;
	text-decoration: none;
	bottom: 0;
}

.program-navbar ul li a {
    transition: background-color 0.3s, color 0.3s;
}

.program-navbar a:hover {
}

/*--Overview Section*/

.overview-container {
	margin-top: 5%;
	text-align: center;
	background-color: #f5f8f8;
	padding: 2.5% 5%;
	z-index: 999999;
	width: 100vw;
}

.application-deadline {
	text-align: center;
	justify-content: center;
}

.overview-container h3 {
	margin-bottom: 5%;
}

.overview-item .fa-solid {
	font-size: 2rem;
}

.objectives {
	margin-bottom: 2%;
}

.flip-card-title {
	justify-content: center;
}

.flip-card-front .fa-solid {
	display: flex;
	font-size: 3rem;
	padding-bottom: 1rem;
}

.flip-card-front h4 {
	font-size: 24px !important;
}

.flip-card {
	height: 250px;
	perspective: 1000px;
	position: relative;
	margin-bottom: 20px;
}

.flip-card-inner {
	position: relative;
	width: 100%;
	height: 100%;
	text-align: center;
	transition: transform 0.6s;
	transform-style: preserve-3d;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

.flip-card:hover > .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
	position: absolute;
	width: 100%;
	height: 100%;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	align-items: center;
	display: flex;
	justify-content: center;
	flex-direction: column;
	padding: 10%;
}

.flip-card-front {
	background-color: #006666;
	color: white;
	font-size: .75em !important;
}

.flip-card-back {
	background-color: #024748;
	color: white;
	transform: rotateY(180deg);
}

.flip-card-2 {
	margin: 10px;
	width: 100%;
}

.flip-card-2-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 20px;
}

.flip-card-2-width {
    width: calc(40%); /* Two cards per row */
    background-color: #006666;
    display: flex;
    justify-content: center;
    padding: 0;
}

.expand-btn {
	background: #ffffff;
	color: #000;
	border: none;
	padding: 10px;
	cursor: pointer;
	border-radius: 4px;
	margin-top: 10px;
}

.expand-btn:hover {
	background: black;
	color: white;
}

.popup-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(0, 0, 0, 0.8);
	z-index: 1000;
	overflow: auto;
	align-items: center;
	justify-content: center;
}

.popup-content {
	background: #fff;
	top: 10%;
	color: #000;
	width: 90%;
	padding: 20px;
	border-radius: 8px;
	position: relative;
	font-size: .85rem;
}

.close-btn {
	position: absolute;
	right: 5%;
	background-color: #ffffff;
	color: #000;
	border: none;
	border-radius: 50%;
	width: 30px;
	height: 30px;
	font-size: 2rem;
	cursor: pointer;
}

/* General Styles */
.content-container {
	margin: 5% 10%;
}

.content-container-title {
	text-align: center;
	padding-bottom: 2%;
}

.locationDropdown {
	justify-content: center;
}

.sidebar {
	display: block;
}

.sidebar ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
}

.sidebar li {
	color: black;
	cursor: pointer;
	padding: 5px;
}

.sidebar li:hover {
	color: #006666;
}

.content {
	padding: 20px;
}

.content p {
	margin: 0;
}

.graduation {
	align-items: center;
    display: flex;
    flex-direction: column;
}

.youtube {
	display: flex;
	justify-content: center;
}

#ou-hidden{
	display: none;
}

/*Hide Tracking Pixel*/
img[src*="adsrvr.org/track/pxl"]
{
  display: none !important;
}


/*---1400---------------------------------------------------------------------------------------------------------------*/

@media only screen and (min-width: 1400px) {
	/*Header*/

	.navbar {
		height: 100px;
	}
	
	.nav-box {
		height: 10vh;
	}

	.overlay {
		top: 100px;
		height: 90vh;
	}

	#search-container {
		height: 44vh;
	}

	.search-title {
		font-size: 3rem;
	}

	.menu-icon,
	.menu-text {
		font-size: 1.5rem;
	}

	.menu-text:hover {
		text-decoration: underline;
	}

	.menu-container {
		margin-top: 100px;
		height:92vh;
	}

	.resources-title {
		font-size: 1.5rem;
	}

	.resource-link,
	.quick-link {
		font-size: 1rem;
	}

	/*Footer*/

	.footer {
		padding: 2%;
	}

	#legal {
		width: 100vw;
	}

	/*Homepage*/

	.decorative-bubbles-1 {
		left: -20%;
	}

	.decorative-bubbles-2 {
		top: 80%;
		right: -20%;
	}

	.decorative-bubbles-3 {
		transform: translate(-101%, -159%);
	}

	.homepage-feature-section {
		height: 50%;
	}

	.homepage-feature-buttons {
		font-size: 2rem;
	}

	.orange-button {
		padding: 10px 30px;
	}

	.single-blurb {
		padding: 0 35% 5%;
	}

	/*General*/
	.orange-button,
	.teal-button,
	.dark-teal-button {
		width: 20vw;
	}

	/*Directory*/
	.person-card {
		padding: 2.5%;
		font: 400 18px "Futura Bk BT", sans-serif;
		width: 20vw;
	}

	/*Library*/

	.library {
		padding: 0% 20% 2%;
	}

	/*Program*/
	.overview-container {
		padding: 2.5% 25%;
	}

	.section-container {
		padding: 2.5% 15%;
	}

	.popup-modal {
		padding-bottom: 16vh;
	}

	/*Wellness Center*/
	.wellness-main {
		padding: 5% 25%;
	}

	.section-3 {
		padding: 0 15% 2%;
	}

	.section-4 {
		padding: 5% 15%;
	}

	.wellness-location {
		width: 100vw !important;
	}

	/*News & Events*/

	.news-event-item {
		width: 20vw;
	}

	.news-event-item-overlay {
		width: 20vw;
	}

	.main-container {
		padding: 0;
	}

	.main-container .section-container {
		padding: 0%;
	}
}

/*--1024px------------------------------------*/

@media only screen and (max-width: 1024px) {

p {
    font-size: 1.25em;
}

ul {
    font-size: 1.25em;
}

	#quick-links {
		flex-direction: column;
		height: 56vh;
		justify-content: center;
	}


	.accreditationsAndLicensures {
		flex-direction: column;
	}

	.article-background {
		height: 100vh;
		overflow-y: hidden;
	}

	.book-3 {
		display: none;
	}

	.dean-column {
		width: 50%;
		padding-right: 5%;
	}

	.dean-info {
		justify-content: center;
	}

	.decorative-bubbles-1 {
		position: absolute;
		top: 30%;
		left: -40%;
	}

	.decorative-bubbles-2 {
		position: absolute;
		top: 80%;
		right: -0%;
		overflow-x: hidden;
	}

	.decorative-bubbles-3 {
		z-index: 1;
		transform: translate(0%, -45%);
	}

	.decorative-bubbles-4 {
		transform: translate(-50%, -30%) rotate(90deg);
	}

	.decorative-bubbles-5 {
		transform: translate(50%, -30%) rotate(90deg);
	}

	.footer-columns {
		flex-direction: row;
		column-gap: 2.5%;
	}

	.homepage-button {
		width: 30vw;
	}

	.homepage-feature-button {
		font-size: 16px;
		font-weight: 500;
		width: 20vw !important;
	}

	.homepage-feature-button:hover {
		background-color: #a85d0c;
		color: white;
	}

	.homepage-feature-text {
		text-align: center;
		font-size: 3rem;
		padding: 40vh 10vh 50px 10vh;
	}

	.homepage-feature-section {
		height: 100%;
	}

	.main-container,
	.main-container * {
		box-sizing: border-box;
	}

	.menu-container {
		position: relative;
		margin: 0 auto;
		display: flex;
		flex-direction: column;
		top: 11vh;
		height: 90vh;
		overflow-y: scroll;
	}

	.menu-icon {
		font-size: 1.5rem;
	}

	.menu-item {
		margin-bottom: 5px;
	}

	.menu-text {
		font-size: 1rem;
	}
	
	.navbar {
		background-color: #006666 !important;
	}

	.navbar-nav {
		display: flex;
		flex-direction: row;
		gap: 15px;
	}

	.overlay {
		top: 10vh;
		height: 90vh;
	}

	.person-card {
		width: 70vw;
	}

	.popular {
		text-wrap: nowrap;
	}

	.popular-searches {
		flex-wrap: wrap;
		justify-content: center;
		gap: 10px;
	}

	.program-box {
		width: 100%;
	}

	.program-box-image {
		width: 100%;
	}

	.program-card {
		width: 30vw;
	}

	.program-information-column {
		width: 50%;
	}
	
	.program-header-container {
		display: flex;
		position: relative;
		height: auto;
		background-color: #006666;
		align-items: center;
		margin-top: 100px;
	}
	
	.program-navbar li a {
		font-size: 1rem;
	}

	.quick-links-group {
		gap: 0;
	}
	
	.quick-links-image {
		display: none;
	}

	.resources-group {
		gap: 2px;
		width: 30vw;
		align-items: center;
	}

	#search-container {
		height: 35vh;
		padding: 22% 10% 20%;
	}

	.search-button {
		font-size: 150%;
	}

	.search-title {
		font-size: 30px;
	}

	.section-2 {
		text-align: center;
	}

	.section-2 p {
		text-align: left;
		margin: 0 5%;
	}
	
	.service-box {
		width: 16vw;
	}

	.vl {
		height: 250px;
		top: 425px;
	}

	.vertical-divider {
		padding: 0;
		transform: rotate(90deg);
		margin: 0;
		height: 10%;
		width: 1%;
	}

	.wellness {
		width: 75%;
		padding-bottom: 50px;
	}

	.wellness-paragraph-2 {
		padding: 0 11% 0 2%;
	}


}


/*--992-----------------------------------------------------------------------------------------------------------*/
/*Wordpress Events Iframe*/
@media only screen and (max-width: 992px){	
	.homepage-events{
		height: 1025px;
	}	
}

/*--768-----------------------------------------------------------------------------------------------------------*/

@media only screen and (max-width: 768px) {

p {
	font-size: 1em;
}
	
	
	.accreditationsAndLicensures {
		flex-direction: column;
	}

	.arrows {
		display: none;
	}

	.article-background {
		height: 100vh;
		overflow-y: hidden;
	}

	.branding-column {
		display: flex;
		justify-content: center;
		order: 3;
	}

	#branding-column {
		order: 4;
	}

	.decorative-bubbles-1 {
		left: -19%;
		position: absolute;
		scale: 0.7;
		top: 70%;
	}

	.decorative-bubbles-2 {
		overflow-x: hidden;
		position: relative;
		right: -37%;
		scale: 0.7;
		top: 45%;
	}

	.decorative-bubbles-3 {
		scale: 0.7;
		transform: translate(-80%, -50%);
		z-index: 1;
	}

	.decorative-bubbles-4 {
		scale: 0.7;
		transform: translate(-50%, -90%) rotate(90deg);
	}

	.decorative-bubbles-5 {
		scale: 0.7;
		transform: translate(50%, -90%) rotate(90deg);
	}
	
	.dropdown {
		display: flex;
		justify-content: center;
	}

	.fa-user-headset {
		font-size: 2rem;
		padding: 3% 3.5%;
	}

	.filter-container {
		padding: 5% 3% 5% 5%;
		transition: transform 0.5s ease-in-out;
		width: 30vw;
	}
	
	.flip-card-2-width {
        width: 33%; /* Single card per row */
    }

	.footer-branding {
		align-items: center;
		display: flex;
		flex-direction: column;
		justify-content: center;
		width: 60vw;
	}

	.footer-branding img {
		display: flex;
		justify-content: center;
		width: 40%;
	}

	.footer-columns {
		column-gap: 10%;
		padding: 10% 2% 0;
	}
	.general-col, .general-category
	{
		display: none;
	}
	
	.homepage-events{
		height: 1410px;
	}

	.homepage-feature-button {
		font-size: 12px;
		font-weight: 50vw;
		padding: 10px !important;
		width: 80vw !important;
	}

	.homepage-feature-button:hover {
		background-color: #a85d0c;
		color: white;
	}

	.homepage-feature-buttons {
		align-items: center;
		display: flex;
		gap: 20px;
		justify-content: center;
		margin: 0 auto;
		position: relative;
		width: 100%;
		z-index: 10;
	}

	.homepage-feature-section {
		height: 80%;
	}

	.homepage-feature-text {
		font-size: 2rem;
		padding: 25vh 10vh 25px 10vh;
		text-align: center;
	}



	#legal {
		flex-direction: column;
	}

	.location {
		width: 30vw;
	}

	.locationDropdown {
		margin-bottom: 20px;
	}

	.locations {
		flex-wrap: wrap;
		margin: 0%;
		padding: 5%;
	}
	
	h1 .low-title {
		margin-top: 100px !important;
		font-size: 2.5em !important;
	}

	.menu-column {
		width: 40vw;
	}

	.menu-icon {
		font-size: 1.5rem;
	}

	.menu-item {
		color: black;
		padding-right: 30px;
		text-decoration: none;
		font-size: 2vw;
	}

	.menu-item:hover {
		color: #006666;
		padding-right: 28px;
		text-decoration: none;
	}

	.menu-text {
		font-size: 1rem;
	}

	.menu-text:hover {
		font-size: 1rem;
		font-weight: 700;
	}

	.myVideo {
		height: 100vh;
		overflow-x: visible;
		width: auto;
	}

	.navbar {
		padding: 0px;
		height: 100px;
	}

	.navbar-nav {
		display: flex;
		flex-direction: row;
		gap: 15px;
		position: relative;
	}

	.news-event-item,
	.news-event-item-overlay {
		width: 50vw;
	}

	option {
		background-color: white;
		display: block;
		padding: 10px;
		text-align: left;
	}

	.popular {
		text-wrap: nowrap;
	}

	.popular-searches {
		display: none;
	}

	.program-box {
		width: 100%;
	}

	.program-cards-container {
		width: 70vw;
	}
	
	.program-header-container {
		display: flex;
		position: relative;
		height: auto;
		background-color: #006666;
		align-items: center;
		margin-top: 100px;
	}

	.program-header-container video {
		height: 100vh;
		width: auto;
	}

	.programs {
		flex-direction: column;
	}

	.quick-link,
	.resource-link {
		width: 25vw;
	}

	.quick-links-group {
		align-items: center;
		width: 25vw;
	}

	.quick-links-image {
		display: none;
	}

	.quicklinks-column,
	.resources-for-column {
		text-align: left;
	}

	.research-link {
		font-size: 14px;
	}

	.school-menu a {
		padding: 0 1%;
	}

	.school-name {
		padding-top: 30px;
	}

	.schoolnav {
		font-size: 1rem;
		margin-top: -12%;
	}

	#search-container {
		padding: 13% 10%;
	}

	.scroll-button {
		text-align: left;
	}

	.search-button {
		font-size: 100%;
	}

	.search-input {
		font-size: 16px;
	}

	.search-input-container {
		align-items: center;
		background-color: #ead7bf;
		display: flex;
		gap: 20px;
		margin: 0%;
		padding-left: 2.5%;
	}

	.section-2 {
		padding: 5% 0 5% 5%;
	}

	.section-2 .row {
		padding: 0px;
	}

	.single-blurb {
		align-items: center;
		display: flex;
		flex-direction: column;
		justify-content: center;
		padding: 5% 15% 10% 15%;
	}

	.single-blurb button,
	.single-blurb h2 {
		margin-bottom: 2%;
	}

	.socials-section {
		flex-direction: column;
		padding: 20px 20%;
		width: 100%;
	}

	.title {
		font-size: 2rem;
		margin-top: 5%;
		padding: 1%;
	}
	
	.low-title {
		margin-top: 100px !important;
		font-size: 2em !important;
	}

	.vl {
		height: 150px;
		top: 350px;
	}

	.wellness {
		flex-wrap: wrap !important;
		padding-bottom: 5%;
	}

	.wellness-icons {
		font-size: 2rem;
	}

	.wellness-location {
		margin-bottom: 5%;
		width: 30vw;
	}

	.wellness-location:hover {
		color: white;
		filter: drop-shadow(10px 10px 20px black);
	}

	.wellness-paragraph-2 {
		padding: 5% 11% 0 2%;
	}
	
	.youtube-video {
		width: 300px !important,
		height: 169px !important;
	}
}

/*680-------------------------------------------------------------------------------------------------------------*/

@media only screen and (max-width: 680px) {
	.filter-option {
		width: 22vw;
	}
	
	.flip-card-2-width {
		width: 100vw;
		display: flex;
		flex-direction: column;
		height: 100%;
	}

	.footer-columns {
		column-gap: 30%;
		padding: 10% 5% 0;
	}
	
	.interior-title {
		padding: 10% 15% 2.5%;
	}


	.schoolnav {
		margin-top: -15%;
		font-size: 1rem;
	}

	.school-menu a {
		padding: 0 1%;
	}

	.main-content-sections {
		padding-top: 10%;
	}

	.menu-button {
		width: 175px;	
	}
	
	.menu-container {
		top: 9vh;
		height: 92vh;
		padding-top: 15%;
	}

	.menu-item {
		padding-right: 0;
	}

	.nav-box {
		height: 70px;
	}

	.nav-link {
		display: block;
		position: fixed;
		background-color: #f7951d;
		color: black !important;
		top: 70px;
		width: 50%;
		text-align: center;
	}

	.nav-link:hover {
		background-color: #a85d0c;
		color: white !important;
	}

	.nav-lead {
		left: 0%;
		border-right: 1px solid #a85d0c;
	}

	.nav-apply {
		right: 0%;
		border-left: 1px solid #a85d0c;
	}

	.navbar {
		height: 70px;
	}

	.navbar.clear {
		background-color: #006666;
	}
	
	.title-box {
		height: 400px;
	}

	.underline-animation:hover::after {
		width: 0%;
	}
	
	iframe.youtube-video {
		width: 300px;
		height: 169px;
	}
}

/*---480----------------------------------------------------------------------------------------------------------*/

@media only screen and (max-width: 480px) {
	h1 {
    font-size: 36px;
}

h2 {
    font-size: 24px;
}

h3 {
    font-size: 21px;
}

h4 {
    font-size: 20px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}

p {
    font-size: 16px;
}

ul {
    font-size: 16px;
}
	
	.active {
		background-color: white;
		color: black;
	}

	.apply-filters {
		background-color: #f7951d;
		border: none;
		border-radius: 50px;
		display: block;
		font-weight: 500;
		margin-top: 20px;
		padding: 10px;
	}

	.apply-filters:hover {
		background-color: #a85d0c;
	}

	#back-to-menu:hover {
		cursor: pointer;
		font-weight: 600;
	}

	.clear-filter {
		font-size: 14px;
		text-align: left;
	}

	.close-btn,
	.filter-toggle {
		display: block;
		z-index: 0;
	}

	.contact-item .fa-solid {
		font-size: 1rem;
	}

	.content-wrapper {
		flex-direction: column-reverse;
		padding: 0;
	}

	.dean-column {
		padding-right: 0px;
		width: 100%;
	}

	.decorative-bubbles-1,
	.decorative-bubbles-2 {
		display: none;
	}

	.decorative-bubbles-3 {
		scale: 0.7;
		transform: translate(-40%, -50%);
		z-index: 1;
	}

	.decorative-bubbles-4 {
		display: none;
	}

	.decorative-bubbles-5 {
		display: none;
	}

	.dropdownbtn {
		background: #f7951d;
		border: none;
		color: black;
		cursor: pointer;
		display: block;
		padding: 10px;
	}

	.dropdown-content {
		cursor: pointer;
		list-style-type: none;
		padding: 0;
	}

	.edit-filters {
		color: #006666;
		padding: 20px 20px;
		text-decoration: none;
	}

	.edit-filters:hover {
		color: #033;
	}

	.expand-btn {
		display: none;
	}

	.fa-solid {
		font-size: 50px;
	}

	.filter-category {
		flex-direction: row;
		flex-wrap: wrap;
		gap: 0px 8px;
	}

    .filter-container {
        background-color: white;
        height: 88vh;
        left: 0;
        max-width: 100vw;
        /* overflow-y: scroll; */
        overflow: scroll;
        position: fixed;
        top: 116px;
        transform: translateX(-100%);
        width: 100vw !important;
        z-index: 999;
        z-index: 1000;
        padding-bottom: 70px;
    }

	.filter-container.hidden {
	opacity: 0;
	pointer-events: none;
	}

	.filter-option {
	padding: 5px;
	width: 90vw;
	}

	.flip-card {
	height: 200px;
	margin-bottom: 200px;
	perspective: 1000px;
	position: relative;
	}

	.flip-card-back {
	transform: rotateY(0deg);
	}

	.flip-card-front {
	background-color: #006666;
	color: white;
	}

	.flip-card-front,
		.flip-card-back {
	backface-visibility: visible;
	position: relative;
	}

	.flip-card-inner {
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
	height: 100%;
	position: relative;
	text-align: center;
	transform-style: preserve-3d;
	transition: transform 0.6s;
	width: 100%;
	}

	.flip-card:hover .flip-card-inner {
	transform: rotateY(0deg);
	}
	
	.flip-card-2-width {
		height: 100%;
		margin-bottom: 20px;
	}

	.footer-branding {
	align-items: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	}

	.footer-columns {
	column-gap: 30%;
	flex-direction: row;
	}
	
	.gecko-styles .gecko-chat-widget-app .gecko-chat-widget-app-trigger {
        right: 0px !important;
        bottom: 0px !important;
    }

	.generic-page .col-4 {
	display: none;
	}

	#go-to-search,
		#back-to-menu,
		#search-results {
		display: block;
	}

	.group-1 {
	width: 60vw;
	}

	.group-1:hover {
	width: 60vw;
	}

	.homepage-feature-button {
	width: 25vw !important;
	}

	.homepage-feature-section {
	height: 100%;
	}

	.homepage-feature-text {
	padding: 25vh 2vh 25px 2vh;
	}

		.interior-title {
			padding: 15% 10% 2.5%
		}

	.landing-page-image-grid {
		display: flex;
		background-size: cover !important;
		background-position: center;
		width: 100%;
		background-repeat: no-repeat !important;
		height: 200px;
		background-position: center;
		justify-content: center;
		align-items: center;
		border: 0px;
	}

	#legal {
	margin-top: 0px;
	}

	#legal a {
	margin-top: 0px;
	}

	.library-books {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 5%;
	justify-content: center;
	margin-top: 5%;
	}

	.library-books a {
	margin-bottom: 3%;
	}

	.light-download-button .fa-solid,
		.dark-download-button .fa-solid {
	font-size: 20px;
	}

	.location {
	font-size: 1em;
	}

	.locationDropdown {
	margin-right: 0px;
	margin-top: 5%;
	}

	.locations {
	padding: 5%;
	}
	
	.low-title {
		margin-top: 25px !important;
		font-size: 1.25em !important;
	}

	/* Media Query for screens smaller than 480px */
	.menuButton {
	display: none;
	}

	.hamburgerButton {
	display: block;
	}

	.nav-item {
	align-items: center;
	}

	.phone-search {
	display: block;
	}

	.main-content-sections {
	flex-direction: column;
	}

	#menu-column {
	height: 40vh;
	width: 100vw;
	}

	#menu-column,
		.menu-container {
	height: 91vh;
	}

	.menu-container {
	border: none;
	padding-top: 20%;
	}

	.menu-container.active {
	display: block;
	}

	.menu-container,
		#quick-links {
	position: relative;
	z-index: 2;
	transition: transform 0.3s ease-in-out;
	}

	.menu-container.hidden,
		#quick-links.hidden {
	opacity: 0;
	}

	.show-search {
	transform: translateY(0);
	}

	.menu-icon {
	display: block;
	font-size: 1rem;
	}

	.menu-item {
	padding: 0px;
	font-size: 1em;
	}

	.menu-links {
	background-color: white;
	border-top: 1px solid #ccc;
	 /* Optional: to add a border at the top */
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	 /* Optional: to add a shadow for better visibility */
	display: none;
	flex-direction: column;
	left: 0;
	position: absolute;
	top: 50px;
	 /* Adjust based on your header height */
	width: 100%;
	}

	.menu-links.show {
	display: flex;
	}

	.menu-links a {
	margin: 10px 0;
	}

	.menu-text {
	font-size: 1rem;
	}

	.menu-toggle {
	background-color: #006666;
	color: white;
	cursor: pointer;
	display: block;
	padding: 10px;
	text-align: center;
	}

	.mission {
	flex-direction: column;
	gap: 30px;
	}

	.navbar {
	height: 70px;
	padding: 0 0px;
	}

	.navbar > .container-fluid {
	flex-wrap: nowrap;
	background-color: #006666 !important;
	}

	.navbar-nav {
	gap: 0;
	}

	.nav-lead {
	right: 25%;
	}

	.nav-link {
	top: 70px;
	}

	.news-container {
	margin-bottom: 5%;
	margin-top: 0%;
	}

	.news-event-item,
		.news-event-item-overlay {
	width: 60vw;
	}

	.objectives {
	justify-content: center;
	margin: 5% 0 2% 0;
	}

	.overlay {
	position: relative;
	height: 92vh;
	top: 8vh;
	}

	.overview-container {
	flex-direction: column;
	gap: 20px;
	}

	.program-header-content {
		top: 100px;
		height: 50vh;
		background-color: #006666;
		position: static;
	}
	
	.program-header-container video {
		display: none;
	}

	.person-info .fa-solid {
	font-size: 30px;
	margin: 10px 10px 0 0;
	}

	.program-card {
	width: 100vw;
	}

	.program-cards-container {
	width: 100vw;
	}

	.program-information-column {
	width: 100%;
	}

	.program-navbar {
	display: none;
	}

	.program-row {
	padding: 0 0 0 30px;
	}

	#quick-links {
		position: fixed;
        top: 26vh;
        background-color: #006666;
        font-size: 1rem;
        height: 74vh;
        width: 100vw;
	}

	.quick-links-group {
	width: 80%;
	gap: 10px;
	}

	.quick-link:hover,
		.resource-link:hover {
	color: white;
	text-decoration: none;
	}

	.resource-link {
	width: 45vw;
	}

	.resources-group {
	width: 80vw;
	}

	.resources-title,
		.resource-link,
		.quick-link {
	color: white;
	}
	
	.quick-link, .resource-link {
        width: 80%;
    }



	.low-title {
	font-size: 1.5rem;
	padding-top: 25%;
	text-align: center;
	}

	.school-menu {
	text-align: center;
	}

	.school-menu a {
	padding: 5% 1%;
	}

	.schoolnav {
	background-color: #333;
	font-size: 1rem;
	margin-top: 0%;
	overflow: hidden;
	position: relative;
	}

	.schoolnav #myLinks {
	display: none;
	}

	.schoolnav a {
	color: white;
	display: block;
	font-size: 17px;
	padding: 14px 16px;
	text-decoration: none;
	}

	.schoolnav a:hover {
	background-color: #ddd;
	color: black;
	}

	.schoolnav a.icon {
	background: black;
	display: block;
	position: absolute;
	right: 0;
	top: 0;
	}

	.search-column {
	display: flex;
	flex-direction: column-reverse;
	height: 91vh;
	width: 100vw;
	}

	#search-container {
		position: fixed;
        top: 14vh;
        left: 0;
        padding: 10%;
        width: 100%;
        justify-content: center;
        z-index: 1;
        transform: translateY(100%);
        transition: transform 0.3s ease;
        height: 16vh;
        border: none;
        gap: 0;
	}

	.search-input-container {
	margin-bottom: 12%;
	}

	.search-results {
	padding-left: 0px;
	}

	.search-results-container {
	margin-left: 2.5%;
	padding-left: 5%;
	}

	.search-title {
	display: block;
	font-size: 1.25rem;
	}

	.section-container {
	margin: 15% 10%;
	}

	.section-container.objectives-container {
	--bs-gutter-x: 0;
	margin: 5% 0;
	padding: 0px;
	}

	.see-more-button {
	font-size: 1rem;
	margin: 0 1.5rem;
	padding: 0.5rem 2rem;
	}

	.service-box {
	width: 40vw;
	}

	.text-break {
	display: flex;
	flex-direction: column;
	padding-top: 2.5%;
	}

	.title {
	font-size: 1.5rem;
	padding-top: 20%;
	text-align: center;
	}

	.title-box {
	height: 25vh;
	padding: 0 5%;
	}

	.title-box .school-name {
	font-size: 2rem;
	padding-top: 30%;
	}

	.wellness-icons {
	align-content: center;
	}

	.wellness-lists {
	padding: 0;
	}

	.wellness-location {
	width: 100vw !important;
	}

	.wellness-location img {
	width: 75vw !important;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	 /* Optional: to add a shadow for better visibility */
	}

	.wellness-main {
	padding: 0 5% 5% 5%;
	}

	.wellness-table {
	display: flex;
	flex-direction: column;
	}
	
	.locationDropdown2 {
		padding: 5px;
		font-size: 16px;
		margin-right: 20px;
		width: 110px;
		height: 2.5rem;
		margin-bottom: 10px;
	}
	
	#go-to-search, #back-to-menu, #search-results {
        display: block;
        left: 40%;
        right: 40%;
        bottom: -6%;
        height: 54px;
        width: 54px;
    }
	
	.quick-links-group {
        width: 80%;
        gap: 10px;
    }


}

/*----360---------------------------------------------------------------------------------------------------------*/

@media only screen and (max-width: 360px) {
#branding-column {
    order: 4;
}

#legal {
    flex-direction: column;
}

#navlogo {
    height: 50px;
    margin-right: 0px;
}

#schoolDropdown {
    position: absolute;
    right: 1%;
    top: 60%;
}

.applied-filter-list {
    flex-wrap: wrap;
    gap: 5px;
}

.article-background {
    height: 100vh;
    overflow-y: hidden;
}
	
	.back-to-menu

.contact-section {
    flex-direction: column;
    gap: 30px;
}

.countries {
    margin-bottom: 20px;
}

.decorative-bubbles-4 {
    display: none;
}

.decorative-bubbles-5 {
    display: none;
}

.description {
    font-size: 1.5rem;
    line-height: 100%;
}

.filter-container {
    padding: 18% 5%;
}

.footer-branding img {
    display: flex;
    justify-content: center;
    width: 40%;
}

.footer-columns,
	.resources-for-column,
	.quicklinks-column {
    flex-direction: column;
    text-align: center;
    padding: 10% 0% 0%;
}

.homepage-feature-button {
    font-size: 12px;
    font-weight: 600;
    padding: 10px !important;
    width: 50vw !important;
}

.homepage-feature-button:hover {
    background-color: #a85d0c;
    color: white;
}

.homepage-feature-buttons {
    flex-direction: column;
}

.homepage-feature-text {
    font-size: 2rem;
    padding: 150px 5vh 25px 5vh;
    text-align: center;
}

.locationDropdown {
    margin-bottom: 20px;
}
	
	.main {
		overflow-x: hidden;
	}

.menu-container {
    padding-top: 15%;
}

.menuButton {
    padding: 3px;
}

.nav-link {
    font-size: 0.75rem;
	max-width: 50%;
}

.news-event-item,
	.news-event-item-overlay {
    width: 80vw;
}

.orange-button,
	.teal-button,
	.dark-teal-button {
    width: 75vw;
}
	
	.program-header-container{
		height: 100vh;
	}

.programs {
    flex-direction: column;
}

.search-column {
    height: 43vh;
}
	
	.search-input-container {
        margin-bottom: 5%;
    }

.search-title {
    display: none;
}

.section-4 {
    justify-content: center;
}

.single-blurb {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5% 15% 10% 15%;
}

.single-blurb button,
	.single-blurb h2 {
    margin-bottom: 2%;
}

.skinny-page {
    padding-top: 20%;
}

.socials-section {
    flex-direction: column;
    padding: 20px 20%;
    width: 100%;
}

.title-box {
    height: 35vh;
}

.title {
    text-align: center;
    padding-top: 10%;
    font-size: 1.3rem;
}

.title-header {
    padding: 0px;
}

.vl {
    height: 150px;
    top: 350px;
}

.vertical-divider {
    display: none;
}
}