/* =========================================================
   UNIVERSITY NAV
========================================================= */

#uni-nav li.active a {
	color: #f00;
	cursor: text;
}

.section {
	padding: 30px 5px;
}

[id] {
	scroll-margin-top: 120px;
}


/* =========================================================
   SEARCH BOX
========================================================= */

.field-wrap {
	position: relative;
}

.field-wrap i {
	position: absolute;
	top: 50%;
	left: 12px;
	transform: translateY(-50%);
	font-size: 14px;
	color: color-mix(in srgb, var(--default-color) 55%, transparent);
	pointer-events: none;
	z-index: 5;
}

.field-wrap input {
	padding-left: 42px !important;
}

.field-wrap select,
.field-wrap .select2-container--default .select2-selection--multiple,
.field-wrap .chosen-container-multi .chosen-choices {
	padding-left: 35px !important;
}

.form-control,
.form-select {
	height: 40px;
	padding: 8px 12px 8px 36px;
	border: 1px solid color-mix(in srgb, var(--default-color) 20%, transparent);
	border-radius: 6px;
	font-size: 14px;
}

.form-control:focus,
.form-select:focus {
	border-color: var(--accent-color);
	box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color) 15%, transparent);
	outline: none;
}

.btn-apply {
	height: 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: var(--accent-color);
	color: var(--contrast-color);
	border: none;
	font-size: 14px;
	font-weight: 500;
	padding: 0 16px;
	transition: background 0.2s ease, box-shadow 0.2s ease;
}

.btn-apply i {
	font-size: 14px;
}

.btn-apply:hover {
	background-color: color-mix(in srgb, var(--accent-color) 85%, black);
	color: var(--contrast-color);
}

.btn-apply:focus {
	outline: none;
	box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color) 25%, transparent);
}

.form-check-label {
	font-size: 0.9rem;
}

.search-types {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.search-types .form-check {
	width: calc(50% - 5px);
}


/* =========================================================
   UNIVERSITY CARD
========================================================= */

.uni-card {
	position: relative;
	overflow: hidden;
	border-radius: 12px !important;
	background: var(--surface-color) url("../images/bgcode.webp") repeat center;
	box-shadow: 0 0.1rem 0.4rem rgba(0, 0, 0, 0.15) !important;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.uni-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2) !important;
}

.uni-card::before {
	content: "";
	position: absolute;
	background: var(--accent-color);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: 1;
}

.uni-card i {
	width: 18px;
	height: 18px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	border-radius: 4px;
	background-color: color-mix(in srgb, var(--content-color) 6%, transparent);
	color: var(--content-color);
	font-size: 9px;
}

.badge-rank {
	font-size: 0.75rem;
	font-weight: 500;
	padding: 0.35em 0.75em;
	border-radius: 6px;
}

.uni-logo-wrapper {
	height: 70px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.uni-logo {
	max-height: 90px;
	object-fit: contain;
	transition: transform 0.3s ease;
}

.uni-name a {
	color: #212529;
	transition: color 0.15s ease-in-out;
}

.uni-name a:hover {
	color: #dc3545;
}

.rank-label {
	font-size: 0.875rem;
	color: #495057;
	font-weight: 500;
}

.subject-tags-container {
	max-height: 85px;
	overflow-y: auto;
	padding-right: 4px;
}

.subject-tags-container-details {
	max-height: 110px;
	overflow-y: auto;
	padding-right: 4px;
}

.uni-footer {
	margin-top: auto;
	text-align: center;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
}


/* =========================================================
   UNIVERSITY / PROGRAM BUTTONS
========================================================= */

.btn-uni-details,
.btn-prgm-details {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 10px;
	font-size: 12px;
	font-weight: 600;
	border-radius: 6px;
	text-decoration: none;
	overflow: hidden;
	transition: 0.25s ease;
}

.btn-uni-details {
	color: var(--contrast-color);
	background: var(--accent-color);
	border: 2px solid var(--accent-color);
}

.btn-prgm-details {
	background: transparent;
	color: var(--accent-color);
	border: 2px solid var(--accent-color);
}

.btn-uni-details span,
.btn-prgm-details span {
	opacity: 0.75;
	margin-left: -4px;
	transition: transform 0.25s ease, opacity 0.25s ease, margin 0.25s ease;
}

.btn-uni-details:hover {
	transform: translateY(-2px);
	color: var(--contrast-color);
}

.btn-prgm-details:hover {
	transform: translateY(-2px);
}

.btn-uni-details:hover span,
.btn-prgm-details:hover span {
	opacity: 1;
	transform: translateX(4px);
	margin-left: 0;
}


/* =========================================================
   SCHOOL RANK CARD
========================================================= */

.school-rank-card .btn-uni-details {
	font-size: 14px !important;
	padding: 8px 16px !important;
	justify-content: center;
}

.school-rank-card .btn-uni-details span {
	display: inline-block;
	font-size: 14px !important;
	opacity: 0.75;
	margin-left: 4px;
	transition: transform 0.25s ease, opacity 0.25s ease, margin 0.25s ease;
}

.school-rank-card .btn-uni-details:hover span {
	opacity: 1;
	transform: translateX(4px) !important;
	margin-left: 8px;
}

.school-rank-card .uni-logo-wrapper {
	height: 80px !important;
}

.school-rank-card .uni-logo {
	max-height: 80px !important;
	object-fit: contain !important;
}


/* =========================================================
   STATISTICS SECTION
========================================================= */

.statistics .panel-heading {
	color: var(--heading-color);
	margin-bottom: 0.5rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.statistics .panel-heading i {
	color: var(--accent-color);
	font-size: 1.3rem;
}

.statistics .uni-info-banner {
	background-color: color-mix(in srgb, var(--accent-color), transparent 96%);
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
}

.statistics .uni-info-block {
	position: relative;
	padding: 1.8rem 1.5rem;
	text-align: center;
	transition: background-color 0.3s ease;
}

.statistics .uni-info-block:hover {
	background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
}

.statistics .uni-info-block::after {
	content: "";
	position: absolute;
	right: 0;
	top: 20%;
	height: 60%;
	width: 1px;
	background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.statistics .uni-info-banner .row > div:last-child .uni-info-block::after {
	display: none;
}

.statistics .uni-info-block span {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	background: color-mix(in srgb, var(--accent-color), transparent 90%);
	border-radius: 50%;
	font-size: 1.3rem;
	color: var(--accent-color);
}

.statistics .uni-info-block h4 {
	font-size: 1.05rem;
	margin-bottom: 0.4rem;
}

.statistics .uni-info-block p {
	font-size: 0.95rem;
	margin-bottom: 0;
	color: color-mix(in srgb, var(--heading-color), transparent 10%);
}

.statistics .checklist-panel {
	height: 100%;
	padding: 2rem;
	background-color: var(--surface-color);
	border-radius: 12px;
	border-left: 5px solid var(--accent-color);
	box-shadow: 0 4px 20px color-mix(in srgb, var(--default-color), transparent 92%);
}

.statistics .checklist-items {
	margin-bottom: 0.2rem;
}

.statistics .checklist-item {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 0.75rem 0;
	border-bottom: 1px dashed color-mix(in srgb, var(--default-color), transparent 85%);
	transition: padding-left 0.3s ease;
}

.statistics .checklist-item:not(:last-child):hover {
	padding-left: 0.5rem;
}

.statistics .checklist-item:last-child {
	border-bottom: none;
}

.statistics .item-icons {
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	border-radius: 50%;
	background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
	color: var(--accent-color);
	font-size: 0.8rem;
	font-weight: 700;
}

.statistics .checklist-item span {
	padding: 5px;
}

.statistics .checklist-item span .title {
	color: var(--accent-color);
	font-size: 0.9rem;
}

.statistics .intl-notice {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	padding: 1rem;
	background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
	border-radius: 8px;
}

.statistics .intl-notice i {
	color: var(--accent-color);
	font-size: 1.3rem;
	flex-shrink: 0;
	margin-top: 2px;
}

.statistics .intl-notice p {
	margin-bottom: 0;
	font-size: 0.925rem;
}

.statistics .number-panel {
	height: 100%;
	padding: 40px;
	background: var(--surface-color);
	border-radius: 15px;
	box-shadow: 0 5px 20px color-mix(in srgb, var(--default-color), transparent 90%);
}

.statistics .number-panel h6 {
	display: inline-block;
	font-size: 0.825rem;
	color: var(--accent-color);
	font-weight: 400;
	padding-bottom: 3px;
	border-bottom: 2px solid var(--accent-color);
}

.statistics .number-panel ul {
	list-style: none;
	padding-left: 0;
}

.statistics .number-panel li {
	position: relative;
	padding: 12px 0 12px 1.6em;
	line-height: 1.9;
	margin-left: 15px;
}

.statistics .number-panel li::before {
	content: "\e93b";
	font-family: icomoon;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	color: #001786;
}

.statistics .number-panel strong {
	font-weight: 300;
	color: var(--icon-color);
}

.statistics .students-card {
	padding: 1.5rem;
	background-color: var(--surface-color);
	border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
	border-radius: 10px;
	text-align: center;
	transition: all 0.3s ease;
}

.statistics .students-card:hover {
	border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
	box-shadow: 0 8px 20px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.statistics .students-label {
	display: block;
	font-size: 0.85rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: color-mix(in srgb, var(--default-color), transparent 30%);
	margin-bottom: 0.5rem;
}

.statistics .students-amount {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--heading-color);
	margin-bottom: 0.3rem;
}

.statistics .students-extra {
	font-size: 0.85rem;
	font-weight: 400;
	color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.statistics .note-banner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	margin-top: 1rem;
	padding: 1.5rem 2rem;
	background-color: var(--accent-color);
	border-radius: 10px;
}

.statistics .note-content h4 {
	font-size: 1.1rem;
	color: var(--contrast-color);
	margin-bottom: 0.3rem;
}

.statistics .note-content p {
	margin-bottom: 0;
	font-size: 0.95rem;
	color: color-mix(in srgb, var(--contrast-color), transparent 5%);
}


/* =========================================================
   MAP / CAMPUS INFO
========================================================= */

.map-frame {
	position: relative;
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 8px 30px color-mix(in srgb, var(--default-color), transparent 88%);
}

.floating-panel {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 330px;
	max-height: calc(100% - 40px);
	padding: 1.6rem;
	background: url("../images/bgcode.webp");
	backdrop-filter: blur(14px);
	border-radius: 12px;
	box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 80%);
	overflow-y: auto;
	z-index: 799;
}

.floating-panel h3 {
	font-weight: 700;
	font-size: 1.25rem;
	margin-bottom: 0.5rem;
}

.floating-panel > p {
	font-size: 0.88rem;
	color: color-mix(in srgb, var(--default-color), transparent 25%);
	margin-bottom: 1.2rem;
}

.panel-contact {
	margin-bottom: 1.3rem;
}

.panel-contact span {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px 0;
	font-size: 0.88rem;
	font-weight: 500;
	color: var(--accent-color);
	border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
	transition: all 0.3s ease;
}

.panel-contact span a {
	color: var(--accent-color);
}

.panel-contact span:last-child {
	border-bottom: none;
}

.panel-contact span:hover {
	padding-left: 8px;
}

.panel-contact span i {
	font-size: 0.95rem;
}

.campus-address {
	padding: 1rem;
	background: color-mix(in srgb, var(--accent-color), transparent 92%);
	border-radius: 10px;
}

.campus-address h5 {
	font-weight: 700;
	font-size: 0.95rem;
	margin-bottom: 0.3rem;
	color: var(--heading-color);
}

.campus-address p {
	font-size: 0.82rem;
	color: color-mix(in srgb, var(--heading-color), transparent 1%);
	margin-bottom: 0.6rem;
}

.campus-address .quick-details {
	display: flex;
	gap: 1rem;
}

.campus-address .quick-details span {
	display: flex;
	align-items: center;
	gap: 4px;
	font-size: 0.78rem;
	color: var(--accent-color);
}

.campus-address .quick-details span i {
	font-size: 0.82rem;
}


/* =========================================================
   CITY CONTENT
========================================================= */

.citycontent blockquote {
	margin-top: 40px;
	padding: 16px;
	background: url("../images/bgcode.webp");
	border: 1px solid #f0f0f0;
	border-left: 6px solid #000;
	border-radius: 8px;
	line-height: 160%;
	color: #1c154b;
}

.citycontent table {
	width: 100%;
	margin: 20px 0 1rem;
}

.citycontent table td,
.citycontent table th {
	padding: 0.75rem;
	border: 1px solid #dee2e6;
	vertical-align: top;
}

.citycontent table th {
	background-color: #f3f3f3;
	vertical-align: bottom;
	font-weight: 300 !important;
	color: #3c003a !important;
}

.citycontent h2 {
	padding-top: 30px;
	padding-bottom: 10px;
	margin-bottom: 12px;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

.citycontent h3 {
	padding-top: 25px;
	color: #000;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.citycontent h4 {
	padding-top: 16px;
	color: #222;
	text-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
}

.citycontent p {
	line-height: 180%;
	color: #1c154b;
	margin-bottom: 0.3rem !important;
}

.citycontent p + p {
	margin-top: 1.5rem;
}

.citycontent ul,
.citycontent ol {
	list-style: none;
	padding-left: 0;
}

.citycontent ul {
	margin-left: 0;
}

.citycontent ol {
	padding-left: 2em;
	margin-left: 0;
}

.citycontent li a {
	text-decoration: none;
	border-bottom: none;
	color: inherit;
}

.citycontent li strong,
.citycontent p strong {
	color: #001786;
	font-weight: 300;
}

.citycontent li {
	position: relative;
	padding: 12px 0 12px 1.6em;
	line-height: 1.9;
	margin-left: 15px;
}

.citycontent li::before {
	content: "\e964";
	font-family: icomoon;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	color: #001786;
}

.citycontent ul ul {
	margin-top: 4px;
	padding-left: 1.4em;
	list-style: none;
}

.citycontent ul ul li {
	padding-left: 1.6em;
	border-bottom: none;
}

.citycontent ul ul li::before {
	content: "\e957";
	font-family: icomoon;
	position: absolute;
	left: 0;
	top: 12px;
	color: #005f9b;
}

.citycontent > .container {
	line-height: 1.8;
	color: #1c154b;
	margin-bottom: 0.3rem;
	font-weight: 300;
}


.citycontent .table p {
	vertical-align: middle;
	margin: 0;
	padding: 0;
	font-size: 0.9rem;
}

.citycontent .btn a {
	color: #fff !important;
	border-bottom: none !important;
	text-decoration: none !important;
}


/* =========================================================
   INFO CONTENT
========================================================= */

.infocontent a {
	text-decoration: none;
	border-bottom: #ff0080 2px solid !important;
	color: #ff0080 !important;
	background-color: transparent;
}

.infocontent a:hover {
	text-decoration: none !important;
	color: #003473 !important;
}


/* =========================================================
   PROGRAM CARDS
========================================================= */

.program-card {
	position: relative;
	overflow: hidden;
	border-radius: 16px;
	background: #fff;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.program-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.12) !important;
}

.program-card::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 4px;
	background-color: var(--accent-color);
	transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: 2;
}

.program-card:hover::before {
	width: 100%;
}

.program-card:hover .uni-logo {
	transform: scale(1.05);
}

.university-name {
	font-size: 0.85rem;
	font-weight: 400;
	color: #333;
}

.course-title {
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.5;
	padding: 5px 0 20px;
}

.course-title a {
	color: #d2223b;
	text-decoration: none;
	transition: all 0.2s ease;
}

.course-title a:hover {
	color: #a00016;
}

.badge {
	font-size: 0.85rem;
	font-weight: 500;
	border-radius: 50rem;
}


/* =========================================================
   BACKGROUND / CATEGORY COLORS
========================================================= */

.Undergraduate-back {
	background: #490001;
}

.Postgraduate-back {
	background: #1f3a5f;
}

.Phd-back {
	background: #0069a5;
}

.england-back {
	background: #b22222;
}

.scotland-back {
	background: #005eb8;
}

.wales-back {
	background: #006b3f;
}

.nireland-back {
	background: #7a4e00;
}


/* =========================================================
   RANKINGS
========================================================= */

.rankings table td {
	border-bottom: 1px solid #eee;
}

.rankings .table td a {
	display: inline-block;
	padding: 2px 4px;
	text-decoration: none;
	color: var(--content-color);
	background-color: transparent;
	border-bottom: 1px solid var(--default-color);
	transition: all 0.2s ease-in-out;
	font-weight: 400;
}

.rankings .table td a:hover {
	color: var(--accent-color);
	border-bottom-color: var(--accent-color);
	transform: translateY(-2px);
}


/* =========================================================
   UK EDUCATION TABLE
========================================================= */

.uk-education-table-wrap {
	width: 100%;
	margin: 20px 0;
	overflow-x: auto !important;
	-webkit-overflow-scrolling: touch;
	background-color: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 10px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.uk-education-table {
	width: 100%;
	min-width: 800px !important;
	margin-bottom: 0 !important;
	border-collapse: collapse !important;
	table-layout: auto;
	font-size: 0.9rem;
	color: #334155;
}

.uk-education-table thead th,
.uk-education-table tbody tr:first-child th {
	padding: 14px 10px !important;
	background-color: color-mix(in srgb, var(--heading-color), transparent 5%) !important;
	color: #fff !important;
	font-weight: 600;
	vertical-align: middle !important;
	white-space: nowrap;
}

.uk-education-table td,
.uk-education-table th {
	padding: 11px 10px !important;
	border: 1px solid #e2e8f0 !important;
	vertical-align: middle !important;
	line-height: 1.5;
}

.uk-education-table tbody tr:nth-of-type(even) {
	background-color: #f8fafc;
}

.uk-education-table tbody tr:hover {
	background-color: #e0f2fe !important;
	transition: background-color 0.15s ease-in-out;
}

/* =========================================================
   STUDY NEWS TABLE
========================================================= */

.studyNews {
	width: 100%;
	margin: 20px 0;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	border: 1px solid #e2e8f0;
	border-radius: 10px;
	background-color: #fff;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.studyNews table {
	width: 100%;
	min-width: 600px;
	margin: 0 !important;
	border-collapse: collapse !important;
	table-layout: auto;
	font-size: 0.9rem;
	color: #334155;
}

.studyNews table th {
	padding: 14px 10px !important;
	background-color: color-mix(in srgb, var(--heading-color), transparent 5%) !important;
	color: #fff !important;
	font-weight: 600;
	vertical-align: middle !important;
	white-space: nowrap;
	text-align: left;
}

.studyNews table td {
	padding: 11px 10px !important;
	border: 1px solid #e2e8f0 !important;
	vertical-align: middle !important;
	line-height: 1.5;
}

.studyNews table th:first-child,
.studyNews table td:first-child {
	width: 80px;
	text-align: center;
	white-space: nowrap;
}

.studyNews table th:last-child,
.studyNews table td:last-child {
	width: 100px;
	text-align: center;
	white-space: nowrap;
}

.studyNews table tbody tr:nth-of-type(even) {
	background-color: #f8fafc;
}

.studyNews table tbody tr:hover {
	background-color: #e0f2fe !important;
	transition: background-color 0.15s ease-in-out;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

	.studyNews table {
		min-width: 500px;
		font-size: 0.8rem;
	}

	.studyNews table th,
	.studyNews table td {
		padding: 8px 5px !important;
	}

	.studyNews table th:first-child,
	.studyNews table td:first-child {
		width: 60px;
	}

	.studyNews table th:last-child,
	.studyNews table td:last-child {
		width: 80px;
	}
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (min-width: 768px) {

	.uni-card::before {
		top: 0;
		left: 0;
		width: 4px;
		height: 0;
	}

	.uni-card:hover::before {
		height: 100%;
	}

	.school-rank-card::before {
		top: auto !important;
		bottom: 0 !important;
		left: 0 !important;
		width: 0 !important;
		height: 4px !important;
	}

	.school-rank-card:hover::before {
		width: 100% !important;
		height: 4px !important;
	}

	.border-top-sm {
		border-top: 1px dashed #dee2e6 !important;
	}

	.w-100-sm {
		width: 100%;
	}

	.border-end-md {
		border-right: 1px solid #dee2e6 !important;
	}
}

@media (min-width: 991px) {
	.border-end-md {
		border-right: 1px solid #dee2e6 !important;
	}
}

@media (min-width: 576px) and (max-width: 767.98px),
       (min-width: 1200px) and (max-width: 1399.98px) {

	.btn-uni-details,
	.btn-prgm-details {
		flex: 1 1 100%;
		justify-content: center;
	}
}

@media (max-width: 991px) {

	.citycontent h2.section-toggle {
		position: relative;
		display: flex;
		align-items: center;
		gap: 0.15rem;
		padding: 0.6rem 1rem;
		border-radius: 6px;
		background-color: var(--surface-color);
		font-size: 1rem;
		font-weight: 400;
		color: var(--heading-color) !important;
	}

	.section-toggle::after {
		content: "\e921";
		font-family: icomoon;
		font-size: 0.9rem;
		position: absolute;
		right: 1rem;
		top: 50%;
		transform: translateY(-50%);
		transition: transform 0.25s ease;
	}

	.section-toggle[aria-expanded="true"]::after {
		transform: translateY(-50%) rotate(180deg);
	}
}

@media (max-width: 768px) {

	.statistics .panel-heading {
		font-size: 1.2rem;
	}

	.statistics .panel-heading i {
		font-size: 0.9rem;
	}

	.btn-secondary {
		font-size: 0.8rem;
	}

	.statistics .uni-info-block::after {
		display: none;
	}

	.statistics .note-banner {
		flex-direction: column;
		text-align: center;
	}

	.statistics .number-panel {
		padding: 20px;
	}

	.statistics .students-card {
		padding: 1rem;
	}

	.statistics .students-amount {
		font-size: 1rem;
	}

	.citycontent .table td,
	.citycontent .table th {
		font-size: 0.8rem;
		padding: 6px 4px;
	}

	.citycontent .table {
		min-width: 100%;
	}

	.top-header h2 {
		font-size: 1.2rem;
		padding-bottom: 2px;
	}

	.uk-education-table {
		font-size: 0.8rem;
	}

	.uk-education-table td,
	.uk-education-table th {
		padding: 8px 5px !important;
	}
}

@media (max-width: 767.98px) {

	.uni-card::before {
		bottom: 0;
		left: 0;
		width: 0;
		height: 4px;
	}

	.uni-card:hover::before {
		width: 100%;
	}

	.uni-logo-wrapper {
		justify-content: center;
	}

	.bg-light-md {
		background-color: color-mix(in srgb, var(--nav-color) 6%, transparent);
		border: 1px solid color-mix(in srgb, var(--default-color) 4%, transparent);
	}

	.uni-name {
		text-align: center;
	}
}

@media (max-width: 576px) {

	.citycontent .table td,
	.citycontent .table th {
		font-size: 0.8rem;
		padding: 6px 4px;
	}

	.citycontent .table {
		min-width: 100%;
	}
}

@media (max-width: 1200px) {

	.floating-panel {
		position: relative;
		top: 0;
		right: 0;
		width: 100%;
		max-height: none;
		border-radius: 0 0 14px 14px;
	}
}


.bursery-card {
    display: block;
    background: #fff;
    padding: 1em;
    margin-bottom: 1.5rem;
    width: 100%;
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
    box-sizing: border-box;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .bursery-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  }
