:root {
	--white: #ffffff;
	--soft-white: rgba(255, 255, 255, 0.86);
	--line: #ffffff91;
	--light-blue: #0a62ff;
	--light-blue-dark: #0a4acc;
}

* {
	box-sizing: border-box;
}

html,
body {
	height: 100%;
}

html {
	scrollbar-width: thin;
	scrollbar-color: #58a6ff rgba(88, 166, 255, 0.16);
}

body::-webkit-scrollbar {
	width: 8px;
}

body::-webkit-scrollbar-track {
	background: rgba(88, 166, 255, 0.16);
}

body::-webkit-scrollbar-thumb {
	background: #58a6ff;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.4);
}

body::-webkit-scrollbar-thumb:hover {
	background: #3f94f3;
}

body {
	margin: 0;
	font-family: "Manrope", sans-serif;
	background: #000;
	color: var(--white);
    border-top:8px solid #00ff87;
}

.logo{
	width:50px;
}

.hero {
	position: relative;
	min-height: 100vh;
	overflow: hidden;
}

.hero-bg-slider {
	position: absolute;
	inset: 0;
	overflow: hidden;
}

.hero-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	transform: scale(1.05);
	transition: opacity 1100ms ease, transform 7000ms ease;
}

.hero-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	display: block;
}

.hero-slide.active {
	opacity: 1;
	transform: scale(1.01);
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.38) 65%, rgba(0, 0, 0, 0.64) 100%);
}

.hero-nav {
	position: relative;
	z-index: 10;
	border-bottom: 1px solid var(--line);
	background: rgba(8, 16, 28, 0.14);
	-webkit-backdrop-filter: blur(18px);
	backdrop-filter: blur(18px);
	transition: background-color 280ms ease, border-color 280ms ease, box-shadow 280ms ease;
}

.hero-nav.is-sticky {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	z-index: 1040;
	background: rgba(8, 16, 28, 0.94);
	border-bottom-color: rgba(255, 255, 255, 0.22);
	box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
	animation: stickyNavReveal 260ms ease;
}

body.has-sticky-nav {
	padding-top: var(--sticky-nav-offset, 0px);
}

.nav-wrap {
	max-width: 1820px;
	min-height: 108px;
	padding-left: 2.2rem;
	padding-right: 0;
	display: flex;
	align-items: stretch;
	transition: min-height 260ms ease;
}

.hero-nav.is-sticky .nav-wrap {
	min-height: 88px;
}

@keyframes stickyNavReveal {
	from {
		transform: translateY(-100%);
	}

	to {
		transform: translateY(0);
	}
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 0.24rem;
	text-decoration: none;
	margin-right: 2rem;
}

.brand span {
	border: 2px solid var(--white);
	border-radius: 0.18rem;
	width: 2.25rem;
	height: 2.25rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	font-weight: 800;
	font-size: 1.5rem;
	line-height: 1;
}

.menu-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	gap: 5rem;
	flex: 1;
	justify-content: center;
}

.menu-list a {
	position: relative;
	display: inline-flex;
	align-items: center;
	padding-bottom: 0.35rem;
	text-decoration: none;
	color: var(--white);
	font-size: 1rem;

}

.menu-list a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 1px;
	background: var(--white);
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 220ms ease;
}

.menu-list a:hover::after,
.menu-list a:focus-visible::after,
.menu-list a:hover::after,
.menu-list a:focus-visible::after {
	transform: scaleX(1);
}

.menu-list a:hover,
.menu-list a:focus-visible {
	color: var(--white);
}

.menu-list a.active,
.mobile-nav a.active {
	position: relative;
	padding-left: 1rem;
}

.menu-list a.active::before,
.mobile-nav a.active::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	width: 0.62rem;
	height: 0.62rem;
	background: var(--light-blue);
	transform: translateY(-50%) rotate(45deg);
}

.nav-right {
	display: flex;
	align-items: stretch;
	margin-left: auto;
	border-left: 1px solid var(--line);
	background: rgba(8, 16, 28, 0.16);
	-webkit-backdrop-filter: blur(18px);
	backdrop-filter: blur(18px);
}

.contact-link {
	text-decoration: none;
	color: var(--white);
	font-size: 1.05rem;
	display: inline-flex;
	align-items: center;
	padding: 0 3rem;
	white-space: nowrap;
	background: rgba(255, 255, 255, 0.01);
	-webkit-backdrop-filter: blur(18px);
	backdrop-filter: blur(18px);
	position: relative;
	overflow: hidden;
	isolation: isolate;
	transition: transform 220ms ease;
}

.contact-link::before {
	content: "";
	position: absolute;
	inset: 0;
	background:#00013c;
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform 320ms ease;
	z-index: 0;
}

.contact-link:hover,
.contact-link:focus {
	color: #fff;
	transform: translateY(-1px);
}

.contact-link:hover::before,
.contact-link:focus::before {
	transform: scaleX(1);
}

.contact-link .plus {
	position: relative;
	z-index: 1;
	margin-right: 0.75rem;
	font-size: 1rem;
	
}

.contact-link > * {
	position: relative;
	z-index: 1;
}

.contact-link-text {
	position: relative;
	z-index: 1;
}

.desktop-search-toggle,
.mobile-menu-toggle {
	display: inline-flex;
	border: 0;
	border-left: 1px solid rgba(255, 255, 255, 0.24);
	background: var(--light-blue);
	color: var(--white);
	width: 4.6rem;
	min-width: 4.6rem;
	font-size: 2rem;
	align-items: center;
	justify-content: center;
}

.desktop-search-toggle i {
	font-size: 1.35rem;
}

.desktop-search-toggle:hover,
.desktop-search-toggle:focus,
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
	background: var(--light-blue-dark);
}

.site-search-modal .modal-content {
	border: 0;
	border-radius: 0;
	background: #f7f8fa;
	box-shadow: 0 18px 55px rgba(0, 0, 0, 0.24);
}

.site-search-modal .modal-header,
.site-search-modal .modal-body {
	padding-left: clamp(1rem, 2vw, 1.5rem);
	padding-right: clamp(1rem, 2vw, 1.5rem);
}

.site-search-modal .modal-title {
	letter-spacing: -0.02em;
	font-size:16px;
}

.site-search-group {
	box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.site-search-group .input-group-text {
	background: #fff;
	border: 0;
	border-right: 1px solid rgba(0, 0, 0, 0.08);
	color: #0f1418;
	padding-inline: 1rem;
}

.site-search-group .form-control {
	border: 0;
	box-shadow: none;
	padding: 0.95rem 1rem;
	font-size: 1.02rem;
}

.site-search-group .btn {
	padding-inline: 1.2rem;

}

.site-search-group .form-control:focus {
	box-shadow: none;
}

.hero-content {
	position: relative;
	z-index: 5;
	max-width: 1820px;
	min-height: calc(100vh - 108px);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding-bottom: 9rem;
}

.headline-wrap h1 {
	margin: 0;
	font-size: clamp(0.5rem, 6vw, 3rem);
	line-height: 1.2;
	letter-spacing: -0.02em;
	font-weight:100;	
}

.cta-btn {
	margin-top: 2.1rem;
	border-radius: 999px;
	background: #ffffff;
	color: #0f1418;
	border: 0;
	padding: 0.45rem 0.5rem 0.45rem 2.15rem;
	font-size: 0.96rem;
	font-weight: 400;
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.8rem;
	min-width: min(90vw, 200px);
	position: relative;
	overflow: hidden;
	isolation: isolate;
	transition: transform 220ms ease, color 260ms ease, box-shadow 260ms ease;
}

.cta-btn::before {
	content: "";
	position: absolute;
	inset: 0;
	background: #0a62ff;
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform 320ms ease;
	z-index: 0;

}

.cta-btn:hover,
.cta-btn:focus {
	background: #ffffff;
	color: #fff;
	transform: translateY(-1px);
}

.cta-btn:hover::before,
.cta-btn:focus::before {
	transform: scaleX(1);
}

.cta-btn .cta-text {
	white-space: nowrap;
	font-weight: 400;
	position: relative;
	z-index: 1;
}

.cta-btn .cta-icon-wrap {
	width: 2.9rem;
	height: 2.9rem;
	border-radius: 50%;
	background: #ff1b12;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	flex: 0 0 auto;
	position: relative;
	z-index: 1;
	transition: background-color 260ms ease;
}

.cta-btn .cta-icon-wrap i {
	font-size: 1.15rem;
	line-height: 1;
	transition: transform 280ms ease;
}

.cta-btn:hover .cta-icon-wrap,
.cta-btn:focus .cta-icon-wrap {
	background: #ff1005;
}

.cta-btn:hover .cta-icon-wrap i,
.cta-btn:focus .cta-icon-wrap i {
	transform: rotate(45deg);
}

.service-tabs {
	position: absolute;
	left: 2.2rem;
	bottom: 2rem;
	display: flex;
	gap: 1.35rem;
}

.service-tab {
	text-decoration: none;
	color: rgba(255, 255, 255, 0.92);
	width: 10.4rem;
	min-height: 10.4rem;
	/* border: 1px solid rgba(255, 255, 255, 0.33); */
	background: transparent;
	padding: 0.9rem 1rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	transition: transform 180ms ease, box-shadow 220ms ease;
}

.service-tab:hover {
	transform: translateY(-2px);
}

.service-tab.active {
	border-color: rgba(255, 255, 255, 0.33);
	background: rgba(255, 255, 255, 0.02);
	-webkit-backdrop-filter: blur(28px);
	backdrop-filter: blur(28px);
	box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
}

.service-tab .number {
	display: block;
	text-align: right;
	font-size: 0.6rem;
	
}

.service-tab .label {
	display: block;
	font-size: 0.5rem;
	line-height: 1.05;

}

.offcanvas {
	--bs-offcanvas-width: min(82vw, 26rem);
}

.mobile-menu-offcanvas {
	background: #ffffff;
	color: #101820;
	border-left: 1px solid rgba(0, 0, 0, 0.14);
}

.mobile-menu-offcanvas .offcanvas-header {
	border-bottom: 1px solid rgba(0, 0, 0, 0.12) !important;
}

.mobile-menu-offcanvas .offcanvas-title {
	color: #101820;
}

.mobile-menu-offcanvas .btn-close {
	filter: none;
}

.mobile-nav-search .input-group-text {
	background: #ffffff;
	border-color: rgba(0, 0, 0, 0.2);
	color: #101820;
}

.mobile-nav-search .form-control {
	border-color: rgba(0, 0, 0, 0.2);
	color: #101820;
	background: #ffffff;
}

.mobile-nav-search .form-control:focus {
	border-color: rgba(10, 98, 255, 0.5);
	box-shadow: none;
}

.mobile-nav-search-btn {
	background: var(--light-blue);
	border-color: var(--light-blue);
	color: #ffffff;
	padding-inline: 1rem;
}

.mobile-nav-search-btn:hover,
.mobile-nav-search-btn:focus {
	background: var(--light-blue-dark);
	border-color: var(--light-blue-dark);
	color: #ffffff;
}


.mobile-nav li + li {
	border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.mobile-nav a {
	display: flex;
	align-items: center;
	position: relative;
	width: 100%;
	padding: 0.8rem 0;
	color: #101820;
	text-decoration: none;
	font-size: 1.15rem;
}

.services-feature-strip {
	background: #ffffff;
	color: #262a2f;
}

.services-feature-strip .row > [class*="col-"] {
	display: flex;
}

.feature-item {
	min-height: 500px;
	height: 100%;
	width: 100%;
	padding: clamp(2.6rem, 4vw, 4.4rem);
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	gap: clamp(1.6rem, 2.2vw, 2.6rem);
	border-right: 1px dotted #000000;
}

.services-feature-strip .col-xl-3:last-child .feature-item {
	border-right: 0;
}

.feature-icon {
	font-size: clamp(2.4rem, 2.8vw, 3.5rem);
	line-height: 1;
	color: #ff4a3d;
	display: inline-block;
	margin-top: 0.25rem;
}



.feature-item p {
	max-width: 31ch;
	font-size: clamp(0.9rem, 1.25vw, 0.5rem);
	line-height: 1.55;
	margin: 0;
	font-weight: 500;
	color: #2c3036;
}

.insight-faq-section {
	background: #ffffff;
	color: #0b0f12;
	border-top: 1px solid rgba(0, 0, 0, 0.6);
}

.insight-col-left,
.insight-col-right {
	min-height: 580px;
	display: flex;
}

.insight-col-left {
	background: #ffffff;
}

.insight-col-right {
	background: #00ff7b;
	border-left: 1px solid rgba(0, 0, 0, 0.6);
}

.insight-content-wrap {
	padding: clamp(2rem, 4vw, 5rem);
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.insight-eyebrow {
	text-transform: uppercase;
	letter-spacing: 0.12em;
	font-size: 0.74rem;
	font-weight: 700;
	color: #111;
}

.insight-title {
	font-size: clamp(1.75rem, 4vw, 2.35rem);
	line-height: 1.05;
	letter-spacing: -0.02em;
	margin: 0 0 1.25rem;
}

.insight-copy {

	font-size: clamp(0.9rem, 1.4vw, 0.9rem);
	line-height: 1.65;
	color: #24292f;
}

.modern-faq .accordion-item {
	background: transparent;
	border: 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.45);
	border-radius: 0;
}

.modern-faq .accordion-item:first-child {
	border-top: 1px solid rgba(0, 0, 0, 0.45);
}

.modern-faq .accordion-button {
	padding: 1.1rem 0.25rem;
	background: transparent;
	color: #0a0f12;
	font-size: clamp(1rem, 1.25vw, 0.7rem);
	box-shadow: none;
}

.modern-faq .accordion-button:not(.collapsed) {
	background: transparent;
	color: #0a0f12;
	box-shadow: none;
}

.modern-faq .accordion-button:focus {
	box-shadow: none;
}

.modern-faq .accordion-button::after {
	filter: grayscale(1) contrast(3);
}

.modern-faq .accordion-body {
	padding: 0.2rem 0.25rem 1.1rem;
	font-size: 0.98rem;
	line-height: 1.65;
	color: #112419;
}

.hover-showcase-section {
	background: linear-gradient(180deg, #f4f8ff 0%, #ffffff 100%);
	border-top: 1px solid rgba(0, 0, 0, 0.16);
	border-bottom: 1px solid rgba(0, 0, 0, 0.16);
	padding: 0;
	overflow-x: clip;
}

.gallery-sections-wrap {
	padding-left: clamp(1rem, 3.5vw, 2.75rem) !important;
	padding-right: clamp(1rem, 3.5vw, 2.75rem) !important;
}

.gallery-section-block {
	margin-bottom: clamp(1.4rem, 3vw, 2.35rem);
}

.gallery-section-head {
	max-width: 72ch;
}

.gallery-section-title {
	font-size: clamp(1.2rem, 2.1vw, 1.2rem);
	line-height: 1.15;
	color: #111820;
	letter-spacing: -0.02em;
}

.gallery-section-description {
	font-size: 0.95rem;
	line-height: 1.65;
	color: #4e5a67 !important;
}

.gallery-grid {
	--bs-gutter-x: 1rem;
	--bs-gutter-y: 1rem;
	margin-right: 0;
	margin-left: 0;
}


.hover-showcase-inner {
	border: 1px solid rgba(7, 16, 26, 0.12);
	border-radius: 0;
	background: #fff;
	min-height: 760px;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	position: relative;
	background-size: cover;
	background-position: center;
	overflow: hidden;
	box-shadow: 0 12px 30px rgba(12, 24, 36, 0.08);
	transition: background-image 320ms ease, background-size 700ms ease;
	isolation: isolate;
}

.hover-showcase-inner::before {
	content: "";
	background: #dbe5f2;
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.34) 0%, rgba(0, 0, 0, 0.5) 52%, rgba(0, 0, 0, 0.68) 100%);
	z-index: 0;
}

.hover-service-panel {
	height: clamp(190px, 24vw, 260px);
	z-index: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 2rem 2rem 2.6rem;
	border-right: 1px solid rgba(255, 255, 255, 0.28);
	min-height: 760px;
	cursor: pointer;
	text-decoration: none;
	color: inherit;
	transition: background 250ms ease, backdrop-filter 250ms ease, -webkit-backdrop-filter 250ms ease;
}

.hover-service-panel:hover,
.hover-service-panel:focus-visible {
	color: inherit;
	text-decoration: none;
}

.hover-service-panel:focus-visible {
	outline: 2px solid rgba(255, 255, 255, 0.9);
	outline-offset: -2px;
}

.hover-service-panel:last-child {
	border-right: 0;
}

.hover-service-panel.is-active {
	background: rgba(8, 16, 28, 0.14);
	-webkit-backdrop-filter: blur(18px);
	backdrop-filter: blur(18px);
}

.panel-top {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 1rem;
}

.panel-number {
	font-size: clamp(2.3rem, 7vw, 4.6rem);
	line-height: 0.85;
	letter-spacing: 0.04em;
	color: rgba(255, 255, 255, 0.92);
	text-shadow: 0 0 0 transparent;
}

.panel-tag {
	writing-mode: vertical-rl;
	text-orientation: mixed;
	font-size: 1.05rem;
	letter-spacing: 0.03em;
	padding: 0.72rem 0.45rem;
	background:#ff1100;
	color: #fff;
}

.panel-bottom h3 {
	margin: 0 0 0.95rem;
	font-size: clamp(1.2rem, 3vw, 1rem);
	line-height: 1;
	color: #fff;

}

.panel-bottom p {
	max-width: 21ch;
	margin: 0 0 1.3rem;
	font-size: 1.02rem;
	line-height: 1.58;
	color: rgba(255, 255, 255, 0.92);
	opacity: 0;
	transform: translateY(10px);
	transition: opacity 260ms ease, transform 260ms ease;
}

.panel-thumb {
	width: 100%;
	max-width: 300px;
	height: 140px;
	object-fit: cover;
	display: block;
	margin: 0 0 0.9rem;
	border: 1px solid rgba(255, 255, 255, 0.35);
	opacity: 0;
	transform: translateY(10px);
	transition: opacity 260ms ease, transform 260ms ease;
}

.panel-link {
	text-decoration: none;
	color: #fff;
	font-size: 0.6rem;
	opacity: 0;
	transform: translateY(10px);
	display: inline-flex;
	align-items: center;
	gap: 0.3rem;
	transition: opacity 260ms ease, transform 260ms ease;
}

.panel-link i {
	color: #ff4a3d;
	font-size: 1.25em;
}

.hover-service-panel.is-active .panel-bottom p,
.hover-service-panel.is-active .panel-thumb,
.hover-service-panel.is-active .panel-link {
	opacity: 1;
	transform: translateY(0);
}

.news-grid-section {
	background: #ffffff;
	color: #0f1418;

}

.news-major-left,
.news-major-right {
	display: flex;
}

.news-major-right {
	border-right: 0;
}

.news-inner-wrap {
	width: 100%;
	padding: clamp(1.25rem, 2.2vw, 2.4rem);
}

.news-eyebrow {
	text-transform: uppercase;
	letter-spacing: 0.14em;
	font-size: 0.72rem;
	font-weight: 700;
	color: #3d454d;
}

.news-title {
	font-size: clamp(1.6rem, 2.6vw, 1rem);
	line-height: 1;
	letter-spacing: -0.02em;
	color: #151b20;
}

.news-view-all {
	text-decoration: none;
	font-size: 0.95rem;
	font-weight: 700;
	color: #1e252c;
	white-space: nowrap;
}

.news-view-all i {
	color: #0a62ff;
	font-size: 1.25em;
	vertical-align: middle;
}

.news-left-carousel .carousel-item,
.news-left-carousel-mobile .carousel-item {
	padding-right: 0;
	height: 100%;
}

.news-left-carousel .news-card-row {
	margin-top: 0;
	--bs-gutter-x: clamp(0.9rem, 1.4vw, 1.25rem);
	--bs-gutter-y: clamp(0.9rem, 1.4vw, 1.25rem);
	height: 100%;
	align-items: stretch;
}

.news-left-carousel,
.news-left-carousel-mobile {
	position: relative;
	overflow: hidden;
	padding-bottom: 3rem;
}

.news-left-carousel .carousel-inner,
.news-left-carousel-mobile .carousel-inner {
	height: clamp(28rem, 34vw, 33rem);
}

.news-left-carousel .carousel-item,
.news-left-carousel-mobile .carousel-item,
.news-left-carousel .news-card-row,
.news-left-carousel-mobile .news-card {
	height: 100%;
}

.news-left-carousel .carousel-item > .row,
.news-left-carousel-mobile .carousel-item > .news-card {
	height: 100%;
}

.news-left-carousel .news-slider-card-row {
	margin-top: 0;
	--bs-gutter-x: clamp(0.9rem, 1.4vw, 1.25rem);
	--bs-gutter-y: clamp(0.9rem, 1.4vw, 1.25rem);
	height: 100%;
	align-items: stretch;
}

.news-left-carousel .news-slider-card-row > [class*="col-"],
.news-left-carousel-mobile .news-slider-card {
	display: flex;
}

.news-slider-card {
	width: 100%;
	display: flex;
	flex-direction: column;
	height: 100%;
	border: 0;
	border-radius: 0;
	overflow: hidden;
}

.news-slider-card-body {
	padding: 0.75rem 1rem 0.9rem 0rem;
	border-top: 0;
	border-radius: 0;
	flex: 1;
	overflow: hidden;
	position: relative;
	padding-right: 0;
}

.news-slider-thumb {
	width: 100%;
	height: 100%;
	min-height: 400px;
	height: 400px;
	object-fit: cover;
	display: block;
	border-radius: 0;
}

.news-slider-meta {
	margin: 0 0 0.3rem;
	font-size: 0.78rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	font-weight: 700;
	color: #5c6671;
}

.news-slider-card h3 {
	font-size: clamp(0.96rem, 1.15vw, 1.12rem);
	line-height: 1.25;
	margin: 1rem 0 1rem;
	color: #161d22;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.news-slider-card p {
	margin: 0;
	font-size: 0.9rem;
	line-height: 1.45;
	color: #313a42;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.news-item-learn-more {
	text-decoration: underline;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.85rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #0a4f88;
}

.upcoming-card {
	width: 100%;
	display: flex;
	flex-direction: column;
	height: 100%;
	border: 0;
	border-radius: 0;
	overflow: hidden;
}

.upcoming-card-link,
.news-slider-card-link {
	display: block;
	height: 100%;
	color: inherit;
	text-decoration: none;
}

.upcoming-card-link:hover,
.news-slider-card-link:hover {
	color: inherit;
	text-decoration: none;
}

.upcoming-thumb {
	width: 100%;
	height: 220px;
	min-height: 0;
	object-fit: cover;
	display: block;
	border-radius: 0;
}

.upcoming-card-body {
	padding: 1rem 1rem 1rem 0rem;
	border-top: 0;
	border-radius: 0;
	flex: 1;
	overflow: hidden;
	position: relative;
	padding-right: 2.5rem;
}

.news-item-link-icon,
.upcoming-link-icon {
	position: absolute;
	right: 0.5rem;
	bottom: 0.6rem;
	width: 1.75rem;
	height: 1.75rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(10, 15, 18, 0.22);
	color: #0f1720;
	text-decoration: none;
	font-size: 0.92rem;
	background: rgba(255, 255, 255, 0.82);
	pointer-events: none;
}

.news-item-link-icon:hover,
.upcoming-link-icon:hover {
	color: #0f1720;
	background: #ffffff;
}

.upcoming-meta {
	margin: 0 0 0.5rem;
	font-size: 0.78rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	font-weight: 700;
	color: #5c6671;
}

.upcoming-card-body h3 {
	font-size: clamp(1.03rem, 1.35vw, 1.3rem);
	line-height: 1.35;
	margin: 0 0 0.65rem;
	color: #161d22;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.upcoming-card-body p:last-child {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.news-left-carousel-controls {
	position: absolute;
	right: 0;
	bottom: 0;
	display: inline-flex;
	border-top: 1px solid var(--light-blue-dark);
	border-left: 1px solid var(--light-blue-dark);
	border-right: 1px solid var(--light-blue-dark);
	background: var(--light-blue);
	overflow: hidden;
	border-radius: 0;
}

.news-left-carousel .carousel-control-prev,
.news-left-carousel .carousel-control-next,
.news-left-carousel-mobile .carousel-control-prev,
.news-left-carousel-mobile .carousel-control-next {
	position: static;
	width: 46px;
	height: 42px;
	opacity: 1;
	background: var(--light-blue);
	border: 0;
	border-radius: 0;
}

.news-left-carousel .carousel-control-prev,
.news-left-carousel-mobile .carousel-control-prev {
	border-right: 1px solid var(--light-blue-dark);
}

.news-left-carousel .carousel-control-prev-icon,
.news-left-carousel .carousel-control-next-icon,
.news-left-carousel-mobile .carousel-control-prev-icon,
.news-left-carousel-mobile .carousel-control-next-icon {
	background-image: none;
	width: 0.95rem;
	height: 0.95rem;
	border-top: 2px solid #ffffff;
	border-right: 2px solid #ffffff;
}

.news-left-carousel .carousel-control-prev:hover,
.news-left-carousel .carousel-control-next:hover,
.news-left-carousel-mobile .carousel-control-prev:hover,
.news-left-carousel-mobile .carousel-control-next:hover {
	background: var(--light-blue-dark);
}

.news-left-carousel .carousel-control-prev-icon,
.news-left-carousel-mobile .carousel-control-prev-icon {
	transform: rotate(-135deg);
}

.news-left-carousel .carousel-control-next-icon,
.news-left-carousel-mobile .carousel-control-next-icon {
	transform: rotate(45deg);
}

.news-card-row > [class*="col-"] {
	display: flex;
}

.news-card {
	width: 100%;
	display: flex;
	flex-direction: column;
	height: 100%;
	border: 0;
	border-radius: 0;
	overflow: hidden;
}

.news-card-row .col-md-4:last-child .news-card {
	border-right: 0;
}

.single-news-card {
	height: 100%;
	border-left: 0;
	border-right: 0;
	border-bottom: 0;
	overflow: hidden;
}

.news-thumb {
	width: 100%;
	height: 100%;
	min-height: 230px;
	object-fit: cover;
	display: block;
	border-radius: 0;
}

.single-news-card .news-thumb {
	height: 220px;
	min-height: 0;
}

.news-card-body {
	padding: 1rem 1rem 1rem 0rem;
	border-top: 0;
	border-radius: 0;
	flex: 1;
	overflow: hidden;
}

.news-meta {
	margin: 0 0 0.5rem;
	font-size: 0.78rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	font-weight: 700;
	color: #5c6671;
}

.news-card h3 {
	font-size: clamp(1.03rem, 1.35vw, 1.3rem);
	line-height: 1.35;
	margin: 0 0 0.65rem;
	color: #161d22;
}

.single-news-card .news-card-body h3 {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.single-news-card .news-card-body p:last-child {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.news-card p {
	margin: 0;
	font-size: 0.76rem;
	line-height: 1.55;
	color: #313a42;
}

.inner-hero {
	position: relative;
	overflow: hidden;
	background-image: linear-gradient(120deg, rgba(7, 16, 26, 0.86) 0%, rgba(13, 34, 54, 0.82) 55%, rgba(10, 26, 42, 0.9) 100%), url("/assets/img/slide-2.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.inner-hero-content {
	position: relative;
	z-index: 2;
	padding: clamp(4.5rem, 9vw, 7.8rem) clamp(1rem, 4vw, 4rem);
	color: #fff;
}

.inner-hero-content h1 {
	margin: 0;
	font-size: clamp(1rem, 6vw, 2.8rem);
	line-height: 1.4;
	letter-spacing: -0.03em;
}

.inner-eyebrow {
	text-transform: uppercase;
	letter-spacing: 0.15em;
	font-size: 0.75rem;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 0.85rem;
}

.inner-page-main {
	background: #fff;
	color: #111820;
}

.content-panel {
	padding: clamp(1.4rem, 3.5vw, 4rem);
	min-height: 420px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	border-top: 1px solid rgba(0, 0, 0, 0.6);
}

.about-accordion-section {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	padding: clamp(3.2rem, 7vw, 6rem) 0;
	border-top: 1px solid rgba(255, 255, 255, 0.28);
	border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.about-accordion-wrap {
	max-width: 1220px;
	margin: 0 auto;
	padding-left: clamp(1.2rem, 4vw, 3.5rem);
	padding-right: clamp(1.2rem, 4vw, 3.5rem);
	display: flex;
	justify-content: center;
}

.about-accordion-card {
	width: min(100%, 1080px);
	max-width: 1080px;
	background: #ffffff;
	padding: clamp(1.6rem, 4vw, 3rem) clamp(1.4rem, 4vw, 3.2rem);
	box-shadow: 0 20px 48px rgba(6, 14, 22, 0.24);
	border: 1px solid rgba(0, 0, 0, 0.08);
}

@media (max-width: 991.98px) {
	.about-accordion-section {
		background-attachment: scroll;
	}

	.about-accordion-wrap {
		padding-left: 1rem;
		padding-right: 1rem;
	}

	.about-accordion-card {
		padding: 1.25rem 1.1rem;
	}
}

.content-panel-light {
	background: #fff;
	border-right: 1px solid rgba(0, 0, 0, 0.6);
}

.content-panel-accent {
	background: #00ff7b;
}

.content-panel h2 {
	font-size: clamp(1.8rem, 3vw, 3rem);
	line-height: 1.05;
	margin-bottom: 1rem;
}

.content-panel p,
.content-list li {
	font-size: clamp(0.9rem, 1.4vw, 0.9rem);
	line-height: 1.7;
	margin-bottom: 0.85rem;
}

.team-grid-section {
	background: #ffffff;
	border-top: 1px solid rgba(0, 0, 0, 0.25);
	border-bottom: 1px solid rgba(0, 0, 0, 0.25);
}

.team-grid-wrap {
	padding: clamp(1.2rem, 2.8vw, 2.4rem);
}

.team-card {
	width: 100%;
	position: relative;
	min-height: 420px;
	border-radius: 0;
	overflow: hidden;
	background: #111;
	box-shadow: 0 18px 42px rgba(0, 0, 0, 0.25);
	border-bottom: 4px solid #00ff87;
}

.team-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0);
	transition: background 0.25s ease;
	z-index: 1;
	pointer-events: none;
}

.team-card-link {
	display: block;
	text-decoration: none;
	color: inherit;
}

.team-card-link:hover::after,
.team-card-link:focus-visible::after {
	background: rgba(0, 0, 0, 0.6);
}

.team-card-action {
	position: absolute;
	top: 0.75rem;
	right: 0.75rem;
	width: 2rem;
	height: 2rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	background: rgba(8, 12, 18, 0.75);
	border: 1px solid rgba(255, 255, 255, 0.45);
	text-decoration: none;
	z-index: 3;
	transition: background 0.2s ease, transform 0.2s ease;
}

.team-card-link:hover .team-card-action,
.team-card-link:focus-visible .team-card-action {
	background: rgba(255, 61, 51, 0.95);
	color: #fff;
	transform: translateY(-1px);
}

.team-photo {
	width: 100%;
	height: 100%;
	min-height: 420px;
	object-fit: cover;
	display: block;
	position: relative;
	z-index: 0;
}

.team-card-body {
	position: absolute;
	left: 0.65rem;
	right: 0.65rem;
	bottom: 0.8rem;
	padding: 1.1rem 1.1rem 1.25rem;
	background: linear-gradient(112deg, rgba(28, 38, 50, 0.92) 0%, rgba(8, 10, 14, 0.8) 58%, rgba(5, 6, 8, 0.44) 100%);
	border-left: 6px solid #ff3d33;
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
	z-index: 2;
}

.team-card-body h2 {
	font-size: clamp(1rem, 1.8vw, 1rem);
    line-height: 1.08;
    margin: 0;
    color: #fff;
    font-weight: 100;
}

.team-role {
	margin: 0 0 0.4rem;
	color: rgba(255, 255, 255, 0.86);
	font-size: clamp(0.96rem, 1vw, 1.06rem);

}

.team-detail-section {
	background: #fff;
	border-top: 1px solid rgba(0, 0, 0, 0.25);
	border-bottom: 1px solid rgba(0, 0, 0, 0.25);
}

.team-detail-wrap {
	padding: clamp(1.2rem, 2.8vw, 2.4rem);
}

.team-detail-card {
	height: 100%;
	background: #0f1116;
}

.team-detail-photo {
	width: 100%;
	height: 100%;
	min-height: 420px;
	object-fit: cover;
	display: block;
}

.team-detail-content {
	padding: clamp(1.3rem, 2.5vw, 2rem);
	border: 1px solid rgba(0, 0, 0, 0.2);
	border-left:4px solid #0a62ff;
	height: 100%;
	background: #fff;
}

.team-detail-role {
	font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 0.4rem;
  background: #044ab3;
  display: inline-block;
  padding: 2px 11px;
}

.team-detail-name {
	margin: 0 0 0.8rem;
	font-size: clamp(1.5rem, 2.2vw, 1rem);
	line-height: 1.1;
	color: #101218;
	font-weight: 100;
}

.team-detail-bio {
	font-size: clamp(0.9rem, 1.25vw, 0.9rem);
	line-height: 1.75;
	color: #2a2f37;
}

.team-detail-other-title {
	margin: 0 0 1rem;
	font-size: clamp(1.1rem, 1.6vw, 1.3rem);
	color: #111;
}

.team-detail-other-card {

    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 1rem;
    border-left: 4px solid #00ff87;
    text-decoration: none;
    background: #fff;
    transition: border-color 0.2s ease, transform 0.2s ease;
    background: #f6f6f6;
}

.team-detail-other-thumb {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	object-fit: cover;
	flex: 0 0 52px;
	border: 1px solid rgba(0, 0, 0, 0.12);
}

.team-detail-other-text {
	min-width: 0;
}

.team-detail-other-card:hover,
.team-detail-other-card:focus-visible {
	border-color: rgba(163, 39, 32, 0.9);
	transform: translateY(-1px);
}

.team-detail-other-name {
	display: block;
	font-size: 1rem;
	font-weight: 700;
	color: #111;
	margin-bottom: 0.35rem;
}

.team-detail-other-role {
	display: block;
	font-size: 0.86rem;
	color: #4a515e;
}

.news-list-section {
	background: #fff;
	border-top: 1px solid rgba(0, 0, 0, 0.6);
	border-bottom: 1px solid rgba(0, 0, 0, 0.6);
}

.news-list-card {
	width: 100%;
	border-right: 1px solid rgba(0, 0, 0, 0.6);
	background: #fff;
	border-radius: 0;
	overflow: hidden;
}

.news-list-section .col-xl-3:last-child .news-list-card {
	border-right: 0;
}

.news-list-thumb {
	width: 100%;
	height: 230px;
	object-fit: cover;
	display: block;
}

.news-list-body {
	padding: 1rem;
	border-top: 1px solid rgba(0, 0, 0, 0.6);
}

.news-list-body h2 {
	font-size: 1.08rem;
	line-height: 1.45;
	margin: 0;
}

.archive-overview-section {
	background: linear-gradient(180deg, #f4f7fb 0%, #ffffff 100%);
	color: #101820;
	border-top: 1px solid rgba(0, 0, 0, 0.14);
	border-bottom: 1px solid rgba(0, 0, 0, 0.14);
}

.archive-overview-panel {
	min-height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(1.5rem, 3vw, 3rem);
}

.archive-overview-panel-dark {
	background: linear-gradient(135deg, #07101a 0%, #10273d 55%, #0a1624 100%);
	color: #fff;
	position: relative;
	overflow: hidden;
	border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.archive-overview-panel-light {
	background: #ffffff;
	gap: 1rem;
}

.archive-eyebrow {
	text-transform: uppercase;
	letter-spacing: 0.14em;
	font-size: 0.74rem;
	font-weight: 800;
	color: #6b7480;
}

.archive-overview-panel-dark .archive-eyebrow,
.archive-overview-panel-dark .archive-title,
.archive-overview-panel-dark .archive-copy,
.archive-overview-panel-dark .archive-check-list,
.archive-overview-panel-dark .archive-check-list i {
	color: #fff;
}

.archive-title {
	font-size: clamp(2rem, 3.8vw, 3.35rem);
	line-height: 1.02;
	letter-spacing: -0.04em;
	margin: 0 0 1rem;
}

.archive-copy {
	font-size: clamp(0.98rem, 1.25vw, 1.06rem);
	line-height: 1.7;
	max-width: 48ch;
	margin: 0 0 1.4rem;
	color: #e5ebf3;
}

.archive-chip-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-bottom: 1.3rem;
}

.archive-chip {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.65rem 0.95rem;
	border: 1px solid rgba(255, 255, 255, 0.2);
	background: rgba(255, 255, 255, 0.06);
	color: #fff;
	font-size: 0.86rem;
	font-weight: 700;
	letter-spacing: 0.02em;
}

.archive-check-list li {
	display: flex;
	align-items: flex-start;
	gap: 0.45rem;
	font-size: 0.95rem;
	line-height: 1.6;
	margin-top: 0.7rem;
}

.archive-check-list i {
	color: #00ff87;
	font-size: 1.15rem;
	line-height: 1.2;
	flex: 0 0 auto;
	margin-top: 0.05rem;
}

.archive-feature-card {
	background: #eeffff;
	padding: clamp(1.2rem, 4vw, 2.8rem);
	margin-bottom: 1rem;
	border-radius:5px;
}

.archive-feature-top,
.archive-item-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
}

.archive-tag {
	display: inline-flex;
	align-items: center;
	padding: 0.5rem 0.8rem;
	background: #044ab3;
	color: #fff;
	font-size: 0.76rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.archive-year {
	    font-size: 0.88rem;
    color: #fff;
    letter-spacing: 0.04em;
    background: #0066ff;
    padding: 5px 16px;
}

.archive-feature-card h3 {
	font-size: clamp(1.5rem, 2.4vw, 1.5rem);
	line-height: 1.1;
	margin: 1rem 0 0.8rem;
	color: #121820;
}

.archive-feature-card p {
	font-size: 0.98rem;
	line-height: 1.7;
	color: #38424c;
	margin: 0 0 1rem;
}

.archive-feature-meta {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.75rem;
	margin-bottom: 1rem;
	padding-top: 0.95rem;
	border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.archive-feature-meta li {
	font-size: 0.9rem;
	line-height: 1.55;
	color: #28323c;
}

.archive-feature-meta strong {
	display: block;
	font-size: 0.72rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #6d7782;
	margin-bottom: 0.2rem;
}

.archive-mini-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 0.85rem;
}

.archive-mini-card {
	background: #ffffff;
	border: 1px solid rgba(0, 0, 0, 0.08);
	padding: 1rem;
	box-shadow: 0 14px 32px rgba(7, 16, 26, 0.08);
}

.archive-mini-label {
	margin: 0 0 0.45rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	font-size: 0.68rem;
	font-weight: 800;
	color: #6d7782;
}

.archive-mini-card h4 {
	margin: 0 0 0.45rem;
	font-size: 1rem;
	line-height: 1.25;
	color: #121820;
}

.archive-mini-card p {
	margin: 0;
	font-size: 0.88rem;
	line-height: 1.55;
	color: #39434d;
}

.archive-section {
	padding: clamp(1.5rem, 3vw, 2.75rem) clamp(1rem, 4vw, 4rem);
	background: #ffffff;
	border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.archive-section-alt {
	background: linear-gradient(180deg, #f7f9fb 0%, #ffffff 100%);
}

.archive-section-head {
	margin-bottom: 1.4rem;
}

.archive-filter-tabs {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	flex-wrap: wrap;
}

.archive-filter-tab {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.45rem 0.8rem;
	font-size: 0.78rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	text-decoration: none;
	color: #2f3b48;
	border: 1px solid rgba(0, 0, 0, 0.16);
	background: #fff;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.archive-filter-tab:hover,
.archive-filter-tab:focus-visible {
	color: #0a62ff;
	border-color: rgba(10, 98, 255, 0.45);
}

.archive-filter-tab.is-active {
	background: #0a62ff;
	border-color: #0a62ff;
	color: #fff;
}

.archive-section-title {
	font-size: clamp(1.2rem, 4vw, 1rem);
	line-height: 1.02;
	letter-spacing: -0.03em;
	color: #121820;
}

.archive-view-all {
	text-decoration: none;
	font-size: 0.96rem;
	font-weight: 800;
	color: #1e2630;
	white-space: nowrap;
}

.archive-view-all i,
.archive-link i {
	color: #0a62ff;
	font-size: 1.25em;
	vertical-align: middle;
}

.archive-card-grid > [class*="col-"] {
	display: flex;
}

.archive-item-card {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 0.9rem;
	padding: 1.2rem;
	border: 1px solid rgba(0, 0, 0, 0.1);
	background: #fff;
	box-shadow: 0 16px 36px rgba(7, 16, 26, 0.08);
	position: relative;
	overflow: hidden;
	transition: transform 200ms ease, box-shadow 200ms ease;
}

.archive-item-card::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 4px;
	background: #0a62ff;
}

.archive-item-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 22px 46px rgba(7, 16, 26, 0.14);
}

.archive-item-card--presentation .archive-tag {
	background: #ff4a3d;
}

.archive-item-card--publication .archive-tag {
	background: #0a62ff;
}

.archive-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.7rem;
	height: 2.7rem;
	border-radius: 50%;
	background: rgba(10, 98, 255, 0.1);
	color: #0a62ff;
	font-size: 1.15rem;
}

.archive-item-card--presentation .archive-icon {
	background: rgba(255, 74, 61, 0.12);
	color: #ff4a3d;
}

.archive-item-meta {
	display: flex;
	justify-content: space-between;
	gap: 0.75rem;
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #66707c;
}

.archive-item-card h3 {
	font-size: clamp(1.08rem, 3vw, 1rem);
	line-height: 1.35;
	margin: 0;
	color: #121820;
}

.archive-item-card p {
	margin: 0;
	font-size: 0.92rem;
	line-height: 1.6;
	color: #343d47;
	flex: 1;
}

.archive-link {
	margin-top: auto;
	text-decoration: none;
	font-size: 0.88rem;
	text-decoration: underline;
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	color:blue !important;
}

.archive-link:hover {
	color: #0a62ff;
}

.news-detail-page-section {
	background: #ffffff;
}

.news-detail-layout {
	display: grid;
	grid-template-columns: minmax(0, 80%) minmax(220px, 25%);
	gap: 1.2rem;
	align-items: start;
}

.news-detail-sidebar {
	padding: 1rem 1rem 1rem 1.1rem;
}

.news-detail-sidebar-title {
	font-size: 0.86rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #586273;
	margin: 0 0 0.8rem;
}

.news-detail-sidebar-list {
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
}

.news-detail-sidebar-item {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	text-decoration: none;
	padding: 0.65rem 0;
	color: #111820;
}

.news-detail-sidebar-item-media {
	flex: 0 0 64px;
}

.news-detail-sidebar-thumb {
	width: 64px;
	height: 64px;
	object-fit: cover;
	display: block;
	background: #e9edf2;
}

.news-detail-sidebar-thumb-placeholder {
	color: #667380;
	font-size: 1.1rem;
}

.news-detail-sidebar-item-content {
	min-width: 0;
}

.news-detail-sidebar-item-title {
	display: block;
	font-size: 0.9rem;
	line-height: 1.4;
	font-weight: 600;
	color: #111820;
	white-space: normal;
	overflow-wrap: anywhere;
	word-break: break-word;
}

.news-detail-sidebar-item-meta {
	display: block;
	font-size: 0.72rem;
	line-height: 1.4;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #6a7381;
	margin-top: 0.2rem;
}

.news-detail-main {
	min-width: 0;
}

.news-detail-card {
	padding: 0;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	transition: none;
}

.news-detail-card::before {
	display: none;
}

.news-detail-card:hover {
	transform: none;
	box-shadow: none;
}

.news-detail-media {
	position: relative;
}

.news-detail-thumb {
	width: 100%;
	height: clamp(260px, 34vw, 420px);
	object-fit: cover;
	display: block;
	border-radius: 0;
}

.news-detail-meta {
	position: absolute;
	left: 1rem;
	top: 1rem;
	z-index: 2;
}

.news-detail-date {
	display: inline-block;
	font-size: 0.78rem;
	letter-spacing: 0.03em;
	padding: 0.22rem 0.5rem;
	background:#044ab3;
	color: #ffffff;
	
}

.news-detail-body {
	padding: 1.2rem 1.2rem 1.5rem;
	gap: 0.95rem !important;
}

.news-detail-body .text-body-secondary {
	font-size: 0.98rem;
	line-height: 1.78;
	color: #1f2933 !important;
}

.news-detail-back {
	color: #111820;
}

.news-detail-back:hover {
	color: #111820;
}

@media (max-width: 1199.98px) {
	.news-detail-layout {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.news-detail-sidebar {
		padding-right: 0;
	}

	.news-detail-sidebar-list {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0.75rem;
	}
}

@media (max-width: 767.98px) {
	.news-detail-sidebar-list {
		grid-template-columns: 1fr;
	}
}

.gallery-page-section {
	background: #fff;
	border-top: 1px solid rgba(0, 0, 0, 0.6);
	border-bottom: 1px solid rgba(0, 0, 0, 0.6);
}

.gallery-card {
	width: 100%;
	border-right: 1px solid rgba(0, 0, 0, 0.6);
	background: #fff;
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.gallery-page-section .col-xl-3:nth-child(4n) .gallery-card {
	border-right: 0;
}

.gallery-trigger {
	position: relative;
	display: block;
	padding: 0;
	border: 0;
	background: transparent;
	text-align: left;
	cursor: zoom-in;
	overflow: hidden;
}

.gallery-trigger::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(6, 12, 22, 0.04) 26%, rgba(5, 12, 22, 0.56) 66%, rgba(4, 10, 18, 0.84) 100%);
	pointer-events: none;
	z-index: 1;
	transition: opacity 220ms ease;
}

.gallery-thumb {
	width: 100%;
	height: 260px;
	object-fit: cover;
	display: block;
	transition: transform 350ms ease;
}

.gallery-trigger:hover .gallery-thumb,
.gallery-trigger:focus-visible .gallery-thumb {
	transform: scale(1.05);
}

.gallery-trigger:hover::after,
.gallery-trigger:focus-visible::after {
	opacity: 0.9;
}

.gallery-desc {
	margin: 0;
	padding: 0.95rem 1rem 1.05rem;
	font-size: 0.9rem;
	line-height: 1.5;
	color: #ffffff;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	pointer-events: none;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.news-events-card {
	width: 100%;
	background: #fff;
	overflow: hidden;
	border-radius: 0;
	box-shadow: none;
}

.news-events-trigger {
	position: relative;
	display: block;
	min-height: 360px;
	text-decoration: none;
	color: inherit;
	overflow: hidden;
	border-radius: 0;
}

.news-events-trigger::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(6, 12, 22, 0.04) 24%, rgba(6, 12, 22, 0.58) 66%, rgba(4, 10, 18, 0.88) 100%);
	z-index: 1;
}

.news-events-thumb {
	width: 100%;
	height: 360px;
	object-fit: cover;
	display: block;
}

.news-events-trigger:hover .news-events-thumb,
.news-events-trigger:focus-visible .news-events-thumb {
	transform: none;
}

.news-events-content {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 0.95rem 1rem 2rem;
	z-index: 2;
	color: #fff;
}

.news-events-date {
	    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.2rem 0.45rem;
    background: rgb(0 255 135);
    margin-bottom: 0.45rem;
    color: #000000;
}

.news-events-content h3 {
	margin: 0;
	font-size: clamp(1rem, 5vw, 0.8rem);
	line-height: 1.35;
	color: #fff;
}

.news-events-content p {
	margin: 0.5rem 0 0;
	font-size: 0.86rem;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.94);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.news-events-read-more {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	margin-top: 0.7rem;
	font-size: 0.78rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: #fff;
}

.news-events-page-section .gallery-swiper-prev,
.news-events-page-section .gallery-swiper-next {
	border-radius: 0;
	box-shadow: none;
	background: #0f1720;
	border: 1px solid rgba(255, 255, 255, 0.15);
}

.news-events-page-section .gallery-swiper-prev:hover,
.news-events-page-section .gallery-swiper-next:hover {
	background: #0f1720;
}

.gallery-modal .modal-content {
	border-radius: 0;
	border: 1px solid rgba(0, 0, 0, 0.25);
}

.gallery-modal-image {
	width: 100%;
	max-height: 70vh;
	object-fit: contain;
	display: block;
	background: #f3f5f7;
}

.gallery-modal-caption {
	margin-top: 0.95rem;
	font-size: 0.95rem;
	line-height: 1.6;
	color: #202c36;
}

.contact-page-section {
	background: #fff;
	border-top: 1px solid rgba(0, 0, 0, 0.6);
	border-bottom: 1px solid rgba(0, 0, 0, 0.6);
}

.contact-info-panel,
.contact-form-panel {
	padding: clamp(1.4rem, 3.2vw, 3.2rem);
	min-height: 500px;
}

.contact-info-panel {
	background: #f3f3f3;
	border-right: 1px solid rgba(0, 0, 0, 0.6);
}

.contact-info-panel h2 {
	font-size: clamp(1.8rem, 3.2vw, 3rem);
	margin-bottom: 0.95rem;
}

.contact-info-list li {
	margin-top: 0.8rem;
	font-size: 1rem;
}

.contact-info-list i {
	
}

.contact-form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

.contact-form-grid .full-width {
	grid-column: 1 / -1;
}

.contact-form-grid .form-control {
	border-radius: 0;
	border: 1px solid rgba(0, 0, 0, 0.45);
	padding: 0.7rem 0.8rem;
}

.contact-submit-btn {
	border-radius: 0;
	background: var(--light-blue);
	border-color: var(--light-blue);
	padding: 0.75rem 1.3rem;
}

.contact-submit-btn:hover,
.contact-submit-btn:focus {
	background: var(--light-blue-dark);
	border-color: var(--light-blue-dark);
}

.partners-strip {
	background: #ffffff;
	border-top: 1px solid rgba(0, 0, 0, 0.14);
	border-bottom: 1px solid rgba(0, 0, 0, 0.14);
	padding: clamp(1rem, 2.4vw, 1.6rem) clamp(1rem, 3vw, 2rem);
	padding-top:100px;
}

.partners-row {
	--bs-gutter-y: 0.9rem;
}

@media (min-width: 1200px) {
	.partners-row > .partner-col {
		flex: 0 0 20%;
		max-width: 20%;
	}
}

.partner-logo-cell {
	width: 100%;
	min-height: 130px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.40rem;
	padding: 0.20rem 0.1rem;
	border:1px dotted blue;
	font-size: clamp(0.76rem, 1.05vw, 0.92rem);
	font-weight: 800;
	letter-spacing: 0.01em;
	text-transform: uppercase;
	color: #2d3945;
	text-align: center;
	background: #ffffff;
	box-shadow: 0 6px 14px rgba(8, 18, 28, 0.05);
}

.partner-card-logo {
	width: 120px;
	height: 120px;
	object-fit: contain;
	display: block;
}

.partner-company-name {
	margin: 0;
	font-size: 0.76rem;
	letter-spacing: 0.06em;
	color: #1c2a37;
}

.partner-label-cell {
	color: #111820;
	border-right: 1px solid #000000;
}

.site-footer {
	background: #ffffff;
	color: #23303d;
	border-top: 1px solid rgba(0, 0, 0, 0.18);
	padding-top:50px;
}

.footer-block {
	padding: clamp(1.25rem, 3vw, 2.4rem);

}

.site-footer .col-lg-4:last-child .footer-block,
.footer-block:last-child {
	border-right: 0;
}

.footer-brand {
	font-size: 2rem;
	line-height: 1;
	margin-bottom: 0.85rem;
	color: #101820;
}

.footer-copy {
	margin: 0;
	line-height: 1.7;
	font-size: 0.96rem;
	max-width: 40ch;
}

.footer-copy p{
	margin: 0;
	line-height: 1.7;
	font-size: 0.7rem !important;
	max-width: 40ch;
}

.footer-links li,
.footer-contact li {
	margin-bottom: 0.45rem;
	font-size: 0.96rem;
}

.footer-links a,
.footer-contact a {
	color: #23303d;
	text-decoration: none;
}

.footer-links a:hover,
.footer-contact a:hover {
	color: #101820;
}

.footer-social {
	margin-top: 0.9rem;
	display: flex;
	align-items: center;
	gap: 0.55rem;
}

.footer-social a {
	width: 2rem;
	height: 2rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	text-decoration: none;
	color: #23303d;
	border: 1px solid rgba(35, 48, 61, 0.35);
	transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.footer-social a i {
	display: block;
	line-height: 1;
	font-size: 0.95rem;
}

.footer-social a:hover,
.footer-social a:focus-visible {
	background: #0a62ff;
	border-color: #0a62ff;
	color: #ffffff;
}

.footer-bottom {
	border-top: 1px solid rgba(0, 0, 0, 0.14);
	padding: 0.9rem clamp(1rem, 2vw, 2rem);
	font-size: 0.85rem;
	color: rgba(16, 24, 32, 0.72);
}

@media (max-width: 1599.98px) {
	.nav-wrap {
		min-height: 88px;
		padding-left: 1rem;
	}

	.hero-content {
		min-height: calc(100vh - 88px);
		padding-bottom: 6.8rem;
	}

	.brand span {
		width: 1.9rem;
		height: 1.9rem;
		font-size: 1.2rem;
	}

	.menu-list {
		gap: 2.5rem;
	}

	.menu-list a,
	.contact-link {
		font-size: 1rem;
	}

	.desktop-search-toggle,
	.mobile-menu-toggle {
		width: 4.4rem;
		font-size: 1.8rem;
	}

	.desktop-search-toggle i {
		font-size: 1.2rem;
	}

	.service-tab {
		width: 8rem;
		min-height: 8rem;
	}

	.service-tab .number,
	.service-tab .label {
		font-size: 0.7rem;
	}

	.feature-item {
		min-height: 380px;
	}

	.insight-col-left,
	.insight-col-right {
		min-height: 500px;
	}

	.hover-showcase-inner,
	.hover-service-panel {
		min-height: 660px;
	}

	.panel-link {
		font-size: 0.9rem;
	}

	.news-thumb {
		min-height: 190px;
	}

	.news-slider-thumb {
		min-height: 250px;
		height: 250px;
	}

	.upcoming-thumb {
		height: 190px;
	}

	.news-left-carousel,
	.news-left-carousel-mobile {
		padding-bottom: 2.8rem;
	}

	.single-news-card .news-thumb {
		min-height: 240px;
	}

	.team-card,
	.team-photo {
		min-height: 380px;
	}
}

@media (max-width: 1199.98px) {
	.contact-link {
		padding: 0 1.2rem;
		font-size: 1rem;
	}

	.service-tabs {
		left: 1rem;
		right: 1rem;
		gap: 0.75rem;
	}

	.service-tab {
		width: calc((100% - 1.5rem) / 3);
	}

	.services-feature-strip .col-md-6:nth-child(2n) .feature-item {
		border-right: 0;
	}

	.services-feature-strip .col-md-6:nth-child(1),
	.services-feature-strip .col-md-6:nth-child(2) {
		/* border-bottom: 1px solid #c3c4c7; */
        border-bottom: 1px dotted #000000;
	}

	.insight-col-left,
	.insight-col-right {
		min-height: 440px;
	}

	.hover-showcase-inner {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.hover-service-panel {
		min-height: 500px;
	}

	.hover-service-panel:nth-child(2n) {
		border-right: 0;
	}

	.hover-service-panel:nth-child(1),
	.hover-service-panel:nth-child(2) {
		border-bottom: 1px solid rgba(255, 255, 255, 0.28);
	}

	.news-major-right {
		border-left: 0;
		border-top: 0;
	}

	.news-card {
		border-right: 0;
	}

	.news-slider-card {
		border-right: 0;
	}

	.news-card-row .col-md-4:nth-child(2) .news-card {
		border-right: 0;
	}

	.news-slider-card-row .col-md-4:nth-child(2) .news-slider-card {
		border-right: 0;
	}

	.news-card-row .col-md-4:last-child .news-card {
		border-right: 0;
	}

	.news-slider-card-row .col-md-4:last-child .news-slider-card {
		border-right: 0;
	}

	.content-panel-light,
	.contact-info-panel {
		border-right: 0;
	}

	.content-panel-accent,
	.contact-form-panel {
		border-top: 1px solid rgba(0, 0, 0, 0.6);
	}

	.team-grid-section .col-md-6:nth-child(2n) .team-card,
	.news-list-section .col-md-6:nth-child(2n) .news-list-card {
		border-right: 0;
	}

	.gallery-page-section .col-md-6:nth-child(2n) .gallery-card {
		border-right: 0;
	}

	.gallery-page-section .col-md-6:nth-child(1) .gallery-card,
	.gallery-page-section .col-md-6:nth-child(2) .gallery-card {
		border-bottom: 1px solid rgba(0, 0, 0, 0.6);
	}

	.team-grid-section .col-md-6:nth-child(1) .team-card,

	.partner-label-cell {
		border-right: 1px solid #000000;
	}
	.team-grid-section .col-md-6:nth-child(2) .team-card,
	.news-list-section .col-md-6:nth-child(1) .news-list-card,
	.news-list-section .col-md-6:nth-child(2) .news-list-card {
		border-bottom: 1px solid rgba(0, 0, 0, 0.6);
	}

	.news-left-carousel,
	.news-left-carousel-mobile {
		padding-bottom: 2.6rem;
	}

}

@media (max-width: 767.98px) {
	.hero-nav.is-sticky .nav-wrap {
		min-height: 72px;
	}

	.archive-section-head {
		flex-direction: column;
		align-items: flex-start !important;
	}

	.archive-filter-tabs {
		width: 100%;
		flex-wrap: nowrap;
		overflow-x: auto;
		gap: 0.35rem;
		padding-bottom: 0.2rem;
		-webkit-overflow-scrolling: touch;
	}

	.archive-filter-tab {
		flex: 0 0 auto;
		white-space: nowrap;
	}

	.hero {
		min-height: 78vh;
	}

	.nav-wrap {
		min-height: 72px;
	}

	.hero-content {
		min-height: calc(78vh - 50px);
		padding-bottom: 1.5rem;
	}

	.headline-wrap {
		margin-top: -3.5rem;
	}

	.headline-wrap h1 {
		font-size: clamp(2rem, 6vw, 3.3rem);
	
	}

	.cta-btn {
		font-size: 0.9rem;
		padding: 0.45rem 0.5rem 0.45rem 2.15rem;
		min-width: min(94vw, 200px);
		gap: 0.6rem;
	}

	.cta-btn .cta-icon-wrap {
		width: 2.6rem;
		height: 2.6rem;
	}

	.cta-btn .cta-icon-wrap i {
		font-size: 1.05rem;
	}

	.service-tabs {
		position: absolute;
		left: 0.7rem;
		bottom: 0.6rem;
		right: auto;
		margin-top: 0;
		width: auto;
		gap: 0.35rem;
		z-index: 6;
	}

	.service-tab {
		width: auto;
		min-height: auto;
		padding: 0.28rem 0.38rem;
	}

	.service-tab .number {
		font-size: 0.72rem;
		text-align: left;
	}

	.service-tab .label {
		display: none;
	}

	.feature-item {
		min-height: 280px;
		padding: 2rem 1.4rem;
		border-right: 0;
		border-bottom: 1px solid #c3c4c7;
	}

	.services-feature-strip .col-md-6:last-child .feature-item,
	.services-feature-strip .col-md-6:nth-last-child(2) .feature-item {
		border-bottom: 0;
	}

	.insight-col-right {
		border-left: 0;
		border-top: 1px solid rgba(0, 0, 0, 0.6);
	}

	.insight-col-left,
	.insight-col-right {
		min-height: 0;
	}

	.hover-showcase-inner {
		grid-template-columns: 1fr;
		min-height: 0;
	}

	.hover-service-panel {
		min-height: 360px;
		border-right: 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.22);
		padding: 1.4rem 1.15rem 1.8rem;
	}

	.hover-service-panel:last-child {
		border-bottom: 0;
	}

	.panel-bottom h3 {
		font-size: clamp(0.7rem, 4vw, 2rem);
	}

	.hover-service-panel .panel-bottom p,
	.hover-service-panel .panel-thumb,
	.hover-service-panel .panel-link {
		opacity: 1;
		transform: translateY(0);
	}

	.news-header-row {
		align-items: flex-start;
	}

	.news-card {
		border-right: 0;
	}

	.news-card-row .col-md-4 + .col-md-4 .news-card {
		border-top: 0;
	}

	.news-slider-card-row .col-md-4 + .col-md-4 .news-slider-card {
		border-top: 0;
	}

	.news-left-carousel,
	.news-left-carousel-mobile {
		padding-bottom: 2.3rem;
	}

	.news-left-carousel-mobile {
		padding-bottom: 0;
	}

	.news-left-carousel-mobile .news-left-carousel-controls {
		position: static;
		margin-top: 1.25rem;
		margin-bottom: 0.65rem;
		margin-left: auto;
		width: fit-content;
	}

	.news-left-carousel .carousel-inner,
	.news-left-carousel-mobile .carousel-inner {
		height: clamp(24rem, 92vw, 30rem);
	}

	.news-left-carousel-mobile .carousel-inner,
	.news-left-carousel-mobile .carousel-item,
	.news-left-carousel-mobile .carousel-item > .news-card,
	.news-left-carousel-mobile .news-slider-card,
	.news-left-carousel-mobile .news-slider-card-body {
		height: auto;
	}

	.news-left-carousel-mobile .news-slider-card-body {
		overflow: visible;
	}

	.news-left-carousel-mobile .news-slider-thumb {
		height: 250px;
		min-height: 250px;
	}

	.news-left-carousel-mobile .news-card,
	.news-left-carousel-mobile .news-slider-card {
		border-right: 0;
	}

	.single-news-card,
	.upcoming-card {
		height: 100%;
	}

	.upcoming-thumb {
		height: 190px;
	}

	.inner-hero-content {
		padding: 3.8rem 1rem;
	}

	.contact-form-grid {
		grid-template-columns: 1fr;
	}

	.team-card,
	.news-list-card,
	.gallery-card,
	.footer-block {
		border-right: 0;
	}

	.gallery-thumb {
		height: 220px;
	}

	.news-events-thumb,
	.news-events-trigger {
		height: 260px;
		min-height: 260px;
	}

	.news-events-content h3 {
		font-size: 0.98rem;
	}

	.news-events-content p {
		font-size: 0.82rem;
	}

	.gallery-page-section .col-sm-6 .gallery-card {
		border-bottom: 1px solid rgba(0, 0, 0, 0.6);
	}

	.gallery-page-section .col-sm-6:last-child .gallery-card {
		border-bottom: 0;
	}

	.partner-logo-cell {
		min-height: 108px;
		padding: 0.2rem 0.1rem;
		font-size: 0.68rem;
	}

	.partner-card-logo {
		width: 70px;
		height: 70px;
	}

	.partner-company-name {
		font-size: 0.68rem;
	}

	.partner-label-cell {
		border-right: 1px solid #000000;
	}

	.team-grid-wrap {
		padding-left: 1.6rem;
		padding-right: 1.6rem;
	}

	.team-grid-section .row.g-4 > [class*="col-"] {
		width: 100%;
	}

	.team-grid-section .team-card {
		width: min(100%, 300px);
		max-width: 300px;
		margin-left: auto;
		margin-right: auto;
	}

	.team-grid-section .col-md-6 .team-card,
	.news-list-section .col-md-6 .news-list-card,
	.footer-block {
		border-bottom: 1px solid rgba(0, 0, 0, 0.6);
	}

	.team-card,
	.team-photo {
		min-height: 320px;
	}

	.team-card-body {
		left: 0.5rem;
		right: 0.5rem;
		bottom: 0.6rem;
		padding: 0.9rem 0.9rem 1rem;
		border-left-width: 4px;
	}

	.site-footer .row .col-lg-4:last-child .footer-block {
		border-bottom: 0;
	}
}

	/* Gallery page refresh overrides */
	.inner-page-main,
	.gallery-page-section {
		overflow-x: hidden;
	}

	.gallery-page-section {
		background: linear-gradient(180deg, #f3f8ff 0%, #ffffff 100%) !important;
		border-top: 0 !important;
		border-bottom: 0 !important;
		padding: clamp(1.4rem, 2.8vw, 2.8rem) 0 !important;
	}

	.gallery-sections-wrap {
		padding-left: clamp(1rem, 3.8vw, 3rem) !important;
		padding-right: clamp(1rem, 3.8vw, 3rem) !important;
	}

	.gallery-section-block {
		margin-bottom: clamp(1.6rem, 3vw, 2.5rem);
	}

	.gallery-section-title {
		font-size: clamp(1.25rem, 2.2vw, 1.2rem);
		line-height: 1.12;
		letter-spacing: -0.02em;
	}

	.gallery-section-description {
		font-size: 0.95rem;
		line-height: 1.65;
		max-width: 70ch;
	}

	.gallery-grid {
		--bs-gutter-x: 1rem;
		--bs-gutter-y: 1rem;
		margin-left: 0 !important;
		margin-right: 0 !important;
	}

	.gallery-card {
		border-bottom: 4px solid #00ff87;
		border-right: 0 !important;
		border-radius: 0;
		background: #ffffff;
		box-shadow: 0 14px 34px rgba(10, 22, 35, 0.09);
		overflow: hidden;
	}

	.gallery-trigger {
		background: #d9e5f4;
	}

	.gallery-thumb {
		height: clamp(190px, 24vw, 300px);
	}

	.gallery-desc {
		padding: 0.85rem 0.9rem 0.95rem;
		font-size: 0.86rem;
	}

	.gallery-swiper-wrap {
		position: relative;
	}

	.gallery-swiper {
		width: 100%;
		overflow: hidden;
	}

	.gallery-swiper .swiper-slide {
		height: auto;
		display: flex;
	}

	.gallery-swiper .gallery-card {
		width: 100%;
		height: 100%;
	}

	.gallery-swiper-nav {
		display: flex;
		justify-content: flex-end;
		gap: 0.5rem;
		margin-top: 0.8rem;
	}

	.gallery-swiper-prev,
	.gallery-swiper-next {
		width: 2.2rem;
		height: 2.2rem;
		border: 0;
		background: #111820;
		color: #fff;
		display: inline-flex;
		align-items: center;
		justify-content: center;
	}

	.gallery-swiper-prev:hover,
	.gallery-swiper-next:hover {
		background: #0a62ff;
	}

	.gallery-video-trigger {
		position: relative;
		display: block;
		width: 100%;
		padding: 0;
		border: 0;
		background: transparent;
		text-align: left;
		cursor: pointer;
		overflow: hidden;
	}

	.gallery-video-trigger::after {
		content: "";
		position: absolute;
		inset: 0;
		background: linear-gradient(180deg, rgba(6, 12, 22, 0.1) 20%, rgba(5, 12, 22, 0.56) 70%, rgba(4, 10, 18, 0.84) 100%);
		pointer-events: none;
		z-index: 1;
	}

	.gallery-video-thumb {
		width: 100%;
		height: clamp(190px, 24vw, 300px);
		display: block;
		object-fit: cover;
		background: #0d141c;
	}

	.gallery-video-play {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		width: 3.3rem;
		height: 3.3rem;
		border-radius: 50%;
		background: #00ff87;
		color: #0b1219;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		z-index: 3;
		box-shadow: 0 12px 24px rgba(0, 0, 0, 0.28);
		transition: transform 200ms ease, box-shadow 200ms ease;
		pointer-events: none;
	}

	.gallery-video-play i {
		font-size: 1.7rem;
		margin-left: 0.12rem;
	}

	.gallery-video-trigger:hover .gallery-video-play,
	.gallery-video-trigger:focus-visible .gallery-video-play {
		transform: translate(-50%, -50%) scale(1.08);
		box-shadow: 0 16px 30px rgba(0, 0, 0, 0.36);
	}

	.gallery-video-modal .modal-content {
		background: #060b11;
		color: #ffffff;
		border: 1px solid rgba(255, 255, 255, 0.12);
		border-radius: 0;
	}

	.gallery-video-modal .btn-close {
		filter: invert(1) grayscale(100%);
	}

	.gallery-video-modal .ratio {
		background: #000;
	}

	.gallery-video-modal-caption {
		font-size: 0.92rem;
		line-height: 1.5;
		color: rgba(255, 255, 255, 0.85);
	}


	.badge{
		border-radius:0;	
	padding:0.45rem 0.5rem;
	}

.socialshare{
  max-width: 113px;
  font-size: 12px;
  border: 0px;
  padding: 9px 10px;
  background: #044ab3;
  color: #fff;
	}


.news-c{

 min-width:0;
}

.news-detail-body,
.news-c,
.news-c p,
.news-c li,
.news-c span,
.news-c strong,
.news-c em,
.news-c b,
.news-c i {
	white-space: normal !important;
	overflow-wrap: anywhere;
	word-break: break-word;
}