/* .pxl-item--inner p {
	text-align: center;
} */

/* STYLES */

span.read-more {
    color: #fabe1d;
    cursor: pointer;
	display: block;
}

/* .pxl-team-grid .read-more{
  cursor: default;
} */

span.holder {
	position: relative;
	/* 	background: black; */
	height: 4em;
	overflow: hidden;
	display: block;
	width: 100%;
}

span.item {
	position: absolute;
	color: #Fff;
	font-size: 50px;
	transform-origin: 50% 70%;
	display: block;
}

/* span.item:nth-child(1) {
	animation: flipDown 7.5s cubic-bezier(0.68, -0.55, 0.26, 1.55) 0s both infinite;
}

span.item:nth-child(2) {
	animation: flipDown 7.5s cubic-bezier(0.68, -0.55, 0.26, 1.55) 1.5s both infinite;
}

span.item:nth-child(3) {
	animation: flipDown 7.5s cubic-bezier(0.68, -0.55, 0.26, 1.55) 3s both infinite;
}

span.item:nth-child(4) {
	animation: flipDown 7.5s cubic-bezier(0.68, -0.55, 0.26, 1.55) 4.5s both infinite;
}

span.item:nth-child(5) {
	animation: flipDown 7.5s cubic-bezier(0.68, -0.55, 0.26, 1.55) 6s both infinite;
} */

/* Total stagger = (1.5s * 5) = 7.5s */
span.item:nth-child(1) {
	animation: flipDown 7.5s cubic-bezier(0.68, -0.55, 0.26, 1.55) 0s both infinite;
}

span.item:nth-child(2) {
	animation: flipDown 7.5s cubic-bezier(0.68, -0.55, 0.26, 1.55) 1.5s both infinite;
}

span.item:nth-child(3) {
	animation: flipDown 7.5s cubic-bezier(0.68, -0.55, 0.26, 1.55) 3s both infinite;
}

span.item:nth-child(4) {
	animation: flipDown 7.5s cubic-bezier(0.68, -0.55, 0.26, 1.55) 4.5s both infinite;
}

span.item:nth-child(5) {
	animation: flipDown 7.5s cubic-bezier(0.68, -0.55, 0.26, 1.55) 6s both infinite;
}

.team-grid .pxl-item--title a {
	color: #fabe1d;
	font-weight: 600;
}

.gallery-img .pxl-item--image a,
.pxl-showcase-grid1 .pxl-grid-item .pxl-item--image:before {
	display: none !important;
}

.team-grid .pxl-item--image a img {
	width: auto !important;
	display: block;
	margin: 0 auto;
	border-radius: 100%;
}

.team-grid .pxl-item--position {
	max-width: 180px;
	margin: 0 auto;
}

.admin-bar .pxl-header-menu {
	top: 0 !important;
}

/* ANIMATION */

.testimonials svg path {
	stroke: #fff !important;
}

.testimonial-section .elementor-widget-pxl_text_editor.animated.zoomIn {
	display: none;
}

.testimonial-section .pxl-item--desc span {
	color: #FABE1D;
	font-size: 80px;
	display: none;
	line-height: 3px;
	vertical-align: bottom;
	margin-right: 15px;
}

.static-sec {
	position: sticky;
	top: 50px;
}


@keyframes flipDown {
	0% {
		opacity: 0;
		margin-top: -100px;
	}

	13.2% {
		opacity: 1;
		margin-top: 0;
		transform: rotateX(0deg);
	}

	33%,
	100% {
		opacity: 0;
		margin-top: 0;
		transform: rotateX(90deg);

	}
}

.pxl-swiper-arrow-wrap {
	position: absolute;
	margin: 0 !important;
	width: 100%;
	top: 50%;
	transform: translateY(-50%);
}

.pxl-swiper-arrow.pxl-swiper-arrow-prev {
	position: absolute;
	left: -70px;
}

.pxl-swiper-arrow.pxl-swiper-arrow-next {
	position: absolute;
	right: -70px;
	transform: rotate(180deg);
}

.review {
	padding-left: 0 !important;
}

.ft-gt .pxl-item--desc.el-empty {
	max-width: 100% !important;
}

#pxl-main,
.elementor-page:not(.single-product) #pxl-main {
	padding: 0 !important;
}

.image-border img {
	border-radius: 20px;
}

/* Client Carousel Styles */
.client-carousel-wrapper {
	text-align: center;
	padding: 50px 0;
	background: #000000;
	position: relative;
	overflow: hidden;
}

.client-carousel-title {
	font-size: 26px;
	font-weight: 600;
	margin-bottom: 30px;
	color: #ffffff;
	text-align: center;
}

.client-carousel.continuous-scroll {
	position: relative;
	background: #000000;
	border-radius: 12px;
	padding: 30px 0;
	margin: 0 auto;
	max-width: 1200px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
	overflow: hidden;
}

.client-row {
	display: flex;
	overflow: hidden;
	margin-bottom: 20px;
}

.client-row:last-child {
	margin-bottom: 0;
}

.client-track {
	display: flex;
	animation: scroll-right calc(var(--scroll-speed, 80) * 1s) linear infinite;
	gap: 20px;
	align-items: center;
}

.client-row-2 .client-track {
	animation: scroll-left calc(var(--scroll-speed, 80) * 1s) linear infinite;
}

@keyframes scroll-right {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-50%);
	}
}

@keyframes scroll-left {
	0% {
		transform: translateX(-50%);
	}

	100% {
		transform: translateX(0);
	}
}

.client-item {
	background: #ffffff;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	text-align: center;
	width: 200px;
	height: 140px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	border: 1px solid #f0f0f0;
	flex-shrink: 0;
}

.client-item:hover {
	transform: translateY(-3px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
	border-color: #007cba;
}

.client-item:hover .client-image img {
	opacity: 1;
}

.client-item a {
	text-decoration: none;
	color: inherit;
	display: block;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.client-image {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100px;
	margin-bottom: 0;
}

.client-image img {
	max-width: 175px;
	max-height: 110px;
	object-fit: contain;
	width: auto;
	height: auto;
	transition: all 0.3s ease;
	opacity: 1;
}

.client-title {
	font-size: 14px;
	margin-top: 8px;
	color: #333;
	font-weight: 500;
	line-height: 1.2;
	text-align: center;
}

/* Continuous scroll animation speed control */
.client-carousel-wrapper[data-scroll-speed] .client-track {
	animation-duration: calc(var(--scroll-speed, 20) * 1s);
}

.client-carousel-wrapper[data-scroll-speed] .client-row-2 .client-track {
	animation-duration: calc(var(--scroll-speed, 20) * 1s);
}

/* =============================
   Complete Client List Link
   ============================= */
.complete-client-list-link {
	text-align: center;
	margin-top: 30px;
}

.client-list-btn {
	background: #FABE1D;
	color: #000;
	border: none;
	padding: 12px 30px;
	border-radius: 25px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.client-list-btn:hover {
	background: #e6a800;
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(250, 190, 29, 0.4);
}

/* =============================
   Client List Popup
   ============================= */
.client-list-popup {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	z-index: 9999;
	justify-content: center;
	align-items: center;
	padding: 20px;
}

.popup-content {
	background: rgba(0, 0, 0, 0.95);
	border-radius: 15px;
	max-width: 600px;
	width: 100%;
	max-height: 80vh;
	overflow: hidden;
	position: relative;
	padding: 40px;
}

.popup-close {
	position: absolute;
	top: 20px;
	right: 20px;
	background: none;
	border: none;
	font-size: 30px;
	cursor: pointer;
	color: #fff;
	padding: 0;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: all 0.3s ease;
	z-index: 10;
}

.popup-close:hover {
	background: rgba(255, 255, 255, 0.1);
	transform: scale(1.1);
}

.popup-body {
	padding: 0;
	max-height: 60vh;
	overflow-y: auto;
	overflow-x: hidden;
	/* Hide scrollbars but keep scrolling functionality */
	scrollbar-width: none;
	/* Firefox */
	-ms-overflow-style: none;
	/* Internet Explorer 10+ */
}

.popup-body::-webkit-scrollbar {
	display: none;
	/* WebKit browsers (Chrome, Safari, Edge) */
}

.client-list-grid {
	display: flex;
	gap: 40px;
}

.client-column {
	flex: 1;
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.client-list-item {
	display: flex;
	align-items: center;
	padding: 8px 0;
	transition: all 0.3s ease;
}

.client-list-item:hover {
	transform: translateX(5px);
}

.client-list-name {
	color: #FABE1D;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.4;
	text-align: left;
}

/* =============================
   Gakushu Navigation Section
   ============================= */
.gakushu-navigation-wrapper {
	background: #000000;
	padding: 20px 0;
	position: sticky;
	top: 0;
	z-index: 100;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.gakushu-navigation-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.gakushu-navigation-list {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 40px;
	flex-wrap: nowrap;
	overflow-x: auto;
	scrollbar-width: thin;
	scrollbar-color: #fabE1D transparent;
	-webkit-overflow-scrolling: touch;
	gap: 20px;
	padding: 10px 0;
}

.gakushu-nav-link {
	color: #FABE1D;
	text-decoration: none;
	font-size: 16px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: all 0.3s ease;
	position: relative;
	padding: 10px 0;
	white-space: nowrap;
	text-align: center;
	display: inline-block;
}

.gakushu-nav-link:hover {
	color: #ffffff;
	transform: translateY(-2px);
}

.gakushu-nav-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: #FABE1D;
	transition: width 0.3s ease;
}

.gakushu-nav-link:hover::after {
	width: 100%;
}

span.subtitle {
	position: relative !important;
	height: 4em !important;
	overflow: hidden !important;
	display: block !important;
	width: 100% !important;
	color: #fff !important;
	margin-top: 5px !important;
}

span.holder {
	display: none;
}

/* Desktop Only - Hide on Mobile */
@media (max-width: 768px) {
	/* 	.gakushu-navigation-wrapper {
		display: none;
	} */
}

#pxl-footer-elementor .pxl-item--inner p {
	text-align: left;
}

.pxl-social--wrap {
	display: none !important;
}

.about-us-team-section h3.pxl-item--title a,
.about-us-team-section .pxl-item--position {
	color: #fff !important;
}

.d-none {
	display: none !important;
}

.tab-section .pxl-tabs--title {
	background: transparent !important;
	border: none !important;
}

.tab-section .pxl-item--title {
	color: #818181 !important;
}

.tab-section .pxl-item--title.active {
	color: #FABE1D !important;
}

.tab-section .pxl-tabs--content {
	border-radius: 20px;
	text-align: center;
	padding: 50px !important;
	background: #2c2c2c;
	text-transform: uppercase;
}

.tab-section .pxl-tabs4 .pxl-tabs--inner {
	align-items: center;
}

.tab-section .pxl-tabs--content hr {
	margin-top: 50px;
}

.global-presence h5.pxl-item--title {
	color: #e7c441 !important;
}

.global-presence .elementor-widget-wrap {
	border-radius: 20px !important;
}

.timeline-section {
	position: relative;
	background: #000;
	color: #fff;
}

.timeline-section::before {
	content: '';
	position: absolute;
	left: 50%;
	top: 158px;
	width: 2px;
	height: 85%;
	background: #555;
	transform: translateX(-50%);
	z-index: 1;
}

.timeline-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 120px;
	position: relative;
	width: 100%;
	margin: 100px 0;
}

.timeline-item::before {
	content: attr(data-number);
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	background: rgba(255, 255, 255, 0.6);
	border-radius: 6px;
	color: #000;
	font-weight: 600;
	font-family: sans-serif;
	font-size: 16px;
	width: 38px;
	height: 38px;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
	box-shadow: 0 0 0 2px #555;
}

.timeline-item.reverse {
	flex-direction: row-reverse;
}

.timeline-image img {
	border-radius: 10px;
	width: 100%;
	max-width: 450px;
}

.timeline-content {
	width: 45%;
}

.timeline-content {
	position: relative;
	background-color: #000;
	color: #fff;
	text-align: center;
	padding: 40px;
	border-radius: 6px;
	display: inline-block;
	line-height: 1.8em;
	letter-spacing: 0.5px;
}

.timeline-content p {
	margin: 0;
	font-size: 24px;
	line-height: 34px;
}

.timeline-content .yellow-corner {
	position: absolute;
	top: 0;
	right: 0;
	width: 60px;
	height: 60px;
}

.timeline-content .yellow-corner::before,
.timeline-content .yellow-corner::after {
	content: '';
	position: absolute;
	background-color: #FDC500;
	/* Yellow color */
}

/* Top yellow bar */
.timeline-content .yellow-corner::before {
	width: 100px;
	height: 6px;
	top: 0;
	right: 0;
}

/* Right yellow bar */
.timeline-content .yellow-corner::after {
	width: 6px;
	height: 60px;
	top: 0;
	right: 0;
}

/* Bottom-left corner */
.timeline-content::before,
.timeline-content::after {
	content: '';
	position: absolute;
	background-color: #FDC500;
}

/* Bottom bar */
.timeline-content::before {
	width: 100px;
	height: 6px;
	bottom: 0;
	left: 0;
}

/* Left bar */
.timeline-content::after {
	width: 6px;
	height: 60px;
	bottom: 0;
	left: 0;
}

.timeline-item.reverse .timeline-content .yellow-corner {
	bottom: 0;
	top: inherit;
}

.timeline-item.reverse .timeline-content:before {
	top: 0;
}

.timeline-item.reverse .timeline-content:after {
	top: 0;
}


.timeline-item.reverse .timeline-content .yellow-corner:before {
	bottom: 0;
	top: inherit;
}

.founder-info li {
	list-style: none;
	display: flex;
	gap: 10px;
	align-items: self-start;
}

.founder-info li:before {
	content: '';
	width: 10px !important;
	height: 10px;
	background: #000;
	margin-top: 6px;
	display: inline-block;
}

.founder-info ul {
	margin-top: 20px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

/* Sticky Title for Tabs Slip Widget */
.pxl-sticky-title {
	position: sticky;
	top: 60px;
	z-index: 100;
	background: transparent;
	padding: 0;
	text-align: left;
	margin-bottom: 0;
	transition: all 0.3s ease;
	width: 100%;
	height: 55px;
	/* Fixed height for the title */
	display: flex;
	align-items: center;
}

.sticky-title-content {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	width: 100%;
}

.sticky-title-text {
	font-family: "Century Gothic", Sans-serif;
	font-size: 45px;
	font-weight: 600;
	line-height: 55px;
	color: #FABE1D;
	text-align: center;
	margin: 0;
}

.pxl-tabs-slip1 .pxl-tabs--content {
	position: relative;
	margin-top: 20px;
	/* Space between title and content */
}

.pxl-tabs-slip1 .pxl-item--content {
	position: sticky;
	top: 164px !important;
	margin-top: 50px;
	z-index: 999;
}

/* Smooth scrolling for anchor links */
html {
	scroll-behavior: smooth;
}

/* Ensure contact section is properly positioned */
#contact {
	scroll-margin-top: 100px;
	/* Add space above contact section */
}


/* Service page */

.yellow-content strong {
	color: #FABE1D;
	font-weight: 400;
}


/* =============================
   Leadership Tree Section (Original Design Preserved)
   ============================= */
.leadership-tree {
	position: relative;
	color: #fff;
	font-family: "Poppins", sans-serif;
	overflow: hidden;
}

/* Tree Container */
.tree-container {
	position: relative;
	max-width: 100%;
	margin: 0 auto;
	text-align: center;
}

/* =============================
   Center Title
   ============================= */
.tree-center-title {
	position: relative;
	display: inline-block;
	text-align: center;
	margin-bottom: 40px;
}

.tree-center-title h2 {
	display: inline-block;
	background: #FABE1D42;
	color: #fff;
	padding: 10px 30px;
	border-radius: 4px;
	font-size: 20px;
	z-index: 2;
	position: relative;
	margin: 0;
	max-width: 300px;
}

/* Vertical Lines (above and below title) */
.tree-line.bottom-line {
	position: absolute;
	left: 50%;
	width: 1px;
	height: 40px;
	background: #fff;
}

.tree-line.top-line {
	top: -40px;
}

.tree-line.bottom-line {
	bottom: -40px;
}

.title-border .title-position {
	position: absolute;
	top: -28px;
	max-width: 300px;
	width: 300px;
	border-radius: 5px;
	padding: 12px 0;
}

/* =============================
   Tree Structure
   ============================= */
.tree-structure {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 40px;
	position: relative;
}

/* Horizontal connecting lines for rows */
.tree-row {
	display: flex;
	justify-content: space-between;
	width: 100%;
	position: relative;
	gap: 40px;
}

.tree-border:before {
	content: '';
	display: block;
	height: 40px;
	background: #fff;
	width: 1px;
	text-align: center;
	margin: 0 auto;
}

.row-top::before {
	content: "";
	position: absolute;
	top: 0px;
	left: 15.7%;
	right: 15.7%;
	height: 1px;
	background: rgba(255, 255, 255, 0.7);
	z-index: 1;
}

.tree-border:nth-child(2):before {
	width: 0.5px;
}

/* =============================
   4-Card Layout Tree Lines
   ============================= */
.tree-row.row-single {
	justify-content: center;
	gap: 20px;
}

.tree-row.row-single .tree-border:before {
	height: 40px;
	background: #fff;
	width: 1px;
	margin: 0 auto;
}

/* Horizontal line for 4-card layout */
.tree-row.row-single::before {
	content: "";
	position: absolute;
	top: 0px;
	left: 25%;
	right: 25%;
	height: 1px;
	background: rgba(255, 255, 255, 0.7);
	z-index: 1;
}

/* Vertical lines connecting to individual boxes in 4-card layout */
.tree-row.row-single .tree-border:nth-child(1)::after,
.tree-row.row-single .tree-border:nth-child(2)::after,
.tree-row.row-single .tree-border:nth-child(3)::after,
.tree-row.row-single .tree-border:nth-child(4)::after {
	content: '';
	position: absolute;
	top: -40px;
	left: 50%;
	width: 1px;
	height: 40px;
	background: #fff;
	transform: translateX(-50%);
	z-index: 1;
}

/* =============================
   Boxes
   ============================= */
.tree-box {
	position: relative;
	z-index: 2;
	width: 30%;
	background: #FABE1D42;
	padding: 30px 25px;
	border-radius: 10px;
	text-align: left;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	width: 100%;
	height: 100%;
}

.tree-border {
	width: 100%;
}

.tree-box h4 {
	font-size: 17px;
	font-weight: 600;
	color: #fff;
	margin-bottom: 10px;
	text-shadow: 0 0 4px rgba(0, 0, 0, 0.6);
}

.tree-box ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.tree-box ul li {
	font-size: 15px;
	color: #f4f4f4;
	line-height: 1.6;
	margin-bottom: 6px;
}

.gradiant-bg {
	background: linear-gradient(90deg, rgba(255, 192, 22, 0.1943) 0%, rgba(44, 44, 43, 0.29) 100%);
}

/* =============================
   Slider Functionality (Minimal Addition)
   ============================= */
.leadership-slider-wrapper {
	position: relative;
}

.leadership-slides {
	position: relative;
	overflow: hidden;
}

.leadership-slide {
	display: none;
	opacity: 0;
	transition: opacity 0.5s ease-in-out;
}

.leadership-slide.active {
	display: block;
	opacity: 1;
}

/* Navigation Arrows - Positioned above the title */
.slider-navigation {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 100%;
	z-index: 10;
	pointer-events: none;
}

.slider-arrow {
	position: absolute;
	top: 20px;
	background: rgba(250, 190, 29, 0.9);
	border: none;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	pointer-events: auto;
	z-index: 11;
}

.slider-arrow:hover {
	background: rgba(250, 190, 29, 1);
	transform: scale(1.1);
}

.slider-arrow svg {
	color: #000;
	width: 16px;
	height: 16px;
}

.slider-prev {
	left: 20px;
}

.slider-next {
	right: 20px;
}

/* Slide Dots */
.slider-dots {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 40px;
}

.slider-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	border: none;
	background: rgba(255, 255, 255, 0.3);
	cursor: pointer;
	transition: all 0.3s ease;
}

.slider-dot.active {
	background: #FABE1D;
	transform: scale(1.2);
}

.slider-dot:hover {
	background: rgba(250, 190, 29, 0.7);
}

/* =============================
   Responsive Layout
   ============================= */
@media (max-width: 992px) {
	.tree-row {
		flex-direction: column;
		align-items: center;
	}

	.tree-box {
		width: 80%;
		margin-bottom: 25px;
	}

	.tree-row::before,
	.row-top::after {
		display: none;
	}

	.slider-navigation {
		position: relative;
		top: auto;
		transform: none;
		margin-bottom: 20px;
		display: flex;
		justify-content: center;
		gap: 50px;
	}

	.slider-prev,
	.slider-next {
		position: relative;
		left: auto;
		right: auto;
		top: auto;
		transform: none;
	}
}

@media (max-width: 1200px) {
	.slider-prev {
		left: 15px;
	}

	.slider-next {
		right: 15px;
	}

	.slider-arrow {
		width: 35px;
		height: 35px;
		top: 15px;
	}

	.slider-arrow svg {
		width: 14px;
		height: 14px;
	}
}

@media (max-width: 768px) {
	.tree-center-title h2 {
		font-size: 18px;
		padding: 8px 20px;
		max-width: 250px;
	}

	.tree-box {
		width: 90%;
		padding: 20px 15px;
	}

	.tree-box h4 {
		font-size: 15px;
	}

	.tree-box ul li {
		font-size: 14px;
	}

	.slider-arrow {
		width: 35px;
		height: 35px;
	}

	.slider-arrow svg {
		width: 14px;
		height: 14px;
	}
}






/* Responsive Design */
@media (max-width: 1200px) {
	.client-item {
		width: 180px;
		height: 130px;
		padding: 15px;
	}

	.client-image {
		height: 90px;
	}

	.client-image img {
		max-width: 140px;
		max-height: 90px;
	}

	.client-track {
		gap: 15px;
	}
}

@media (max-width: 991px) {
	.client-item {
		width: 160px;
		height: 120px;
		padding: 15px;
	}

	.client-image {
		height: 80px;
	}

	.client-image img {
		max-width: 120px;
		max-height: 80px;
	}

	.client-track {
		gap: 15px;
	}
}

@media (max-width: 768px) {
	.client-item {
		width: 140px;
		height: 110px;
		padding: 12px;
	}

	.client-carousel-title {
		font-size: 22px;
		margin-bottom: 20px;
	}

	.client-image {
		height: 70px;
	}

	.client-image img {
		max-width: 100px;
		max-height: 70px;
	}

	.client-track {
		gap: 12px;
	}

	.client-list-grid {
		flex-direction: column;
		gap: 20px;
	}

	.popup-content {
		margin: 10px;
		max-height: 90vh;
		padding: 20px;
	}

	.client-list-item {
		padding: 6px 0;
	}

	.client-list-name {
		font-size: 14px;
	}

	.timeline-item {
		flex-direction: column;
		text-align: center;
	}

	.timeline-item.reverse {
		flex-direction: column;
	}

	.timeline-content {
		width: 100%;
		margin-top: 20px;
	}

	.timeline-section::before {
		left: 20px;
	}
}

@media (max-width: 767px) {
	span.item {
		font-size: 30px;
		line-height: 40px;
	}

	.pxl-swiper-arrow.pxl-swiper-arrow-next {
		right: inherit;
		margin-left: 40px;
		margin-top: -8px;
	}

	.pxl-swiper-arrow.pxl-swiper-arrow-prev {
		left: inherit;
		margin-left: -50px;
	}

	.pxl-swiper-arrow-wrap {
		top: -40px;
		transform: inherit;
		z-index: 999;
	}

	.client-carousel-wrapper,
	.client-carousel {
		padding: 0;
	}

	.client-carousel {
		margin-bottom: 0 !important;
	}

	.home-tab .pxl-item--inner {
		flex-direction: column;
	}

	.home-tab .pxl-item--meta {
		text-align: center;
	}

	.pxl-tabs-slip1 .pxl-item--content {
		margin-top: 20px !important;
		z-index: 99 !important;
	}

	.tab-section .pxl-tabs--content {
		padding: 30px 20px !important;
		margin-top: 20px;
	}

	.tab-section .pxl-tabs--content hr {
		margin-top: 12px;
	}

	.tab-section .wrap-title {
		display: grid;
		grid-template-columns: 1fr 1fr;
	}

	.tab-section .pxl-tabs4 .pxl-tabs--inner .pxl-item--title+.pxl-item--title {
		margin-top: 0;
	}

	.tab-section .pxl-tabs4 .pxl-tabs--inner .pxl-item--title.active .icon-tab {
		display: none;
	}

	.timeline-item::before {
		display: none;
	}

	.timeline-section::before {
		display: none;
	}

	/* Sticky Title Responsive */
	.pxl-sticky-title {
		margin-bottom: 20px;
	}

	.sticky-title-text {
		font-size: 32px;
		letter-spacing: 1px;
	}

	.title-border .title-position {
		padding: 10px 0;
		left: 0;
		right: 0;
		text-align: center;
		margin: 0 auto;
	}
}

@media (max-width: 480px) {
	.client-item {
		width: 120px;
		height: 100px;
		padding: 10px;
	}

	.client-image {
		height: 60px;
	}

	.client-image img {
		max-width: 80px;
		max-height: 50px;
	}

	.client-track {
		gap: 10px;
	}

	.client-list-btn {
		padding: 10px 20px;
		font-size: 14px;
	}

	.client-list-grid {
		grid-template-columns: 1fr;
		gap: 8px;
	}

	.popup-content {
		padding: 15px;
	}

	.client-list-item {
		padding: 10px 12px;
	}

	.client-list-name {
		font-size: 13px;
	}

	.popup-close {
		top: 15px;
		right: 15px;
		font-size: 24px;
		width: 35px;
		height: 35px;
	}

	.client-image img {
		max-width: 60px;
		max-height: 35px;
	}

	.client-title {
		font-size: 11px;
		margin-top: 5px;
	}
}

span.subtitle {
	font-size: 34px;
	/* Desktop */
}

/* Tablet */
@media (max-width: 1024px) {
	span.subtitle {
		font-size: 24px;
	}
}

/* Mobile */
@media (max-width: 768px) {
	span.subtitle {
		font-size: 22px;
	}
	.gakushu-navigation-list {
	  justify-content: flex-start;
	  overflow-x: auto;
	  padding-left: 10px;
	}
}