:focus {
  outline: none; }

.about-title {
	font-size: 2.5rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: -0.02em;

	top: 20px;

	pointer-events: none;
	white-space: nowrap;
	background: linear-gradient(
		to bottom,
		#01332e,
		#01332e
	);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.carousel-container {
	width: 30%;
	max-width: 1200px;
	margin-right: 300px;
	height: 450px;
	position: relative;
	perspective: 1000px;
	margin-top: 30px;
}

.carousel-track {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	transform-style: preserve-3d;
	transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card {
	position: absolute;
	width: 280px;
	height: 380px;
	background: white;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
	transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	cursor: pointer;
}

.card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card.center {
	z-index: 10;
	transform: scale(1.1) translateZ(0);
}

.card.center img {
	filter: none;
}

.card.left-2 {
	z-index: 1;
	transform: translateX(-400px) scale(0.8) translateZ(-300px);
	opacity: 0.7;
}

.card.left-2 img {
	filter: grayscale(70%);
}

.card.left-1 {
	z-index: 5;
	transform: translateX(-200px) scale(0.9) translateZ(-100px);
	opacity: 0.9;
}

.card.left-1 img {
	filter: grayscale(50%);
}

.card.right-1 {
	z-index: 5;
	transform: translateX(200px) scale(0.9) translateZ(-100px);
	opacity: 0.9;
}

.card.right-1 img {
	filter: grayscale(50%);
}

.card.right-2 {
	z-index: 1;
	transform: translateX(400px) scale(0.8) translateZ(-300px);
	opacity: 0.7;
}

.card.right-2 img {
	filter: grayscale(70%);
}

.card.hidden {
	opacity: 0;
	pointer-events: none;
}

.member-info {
	text-align: center;
	margin-top: 1px;
	transition: all 0.5s ease-out;
}

.member-name {
	color: #ffffff;
	opacity: 0;
	font-size: 0.01rem;
	font-weight: 300;
	margin-bottom: 1px;
	position: relative;
	display: inline-block;
}

.member-name::before,
.member-name::after {
	content: "";
	position: absolute;
	top: 100%;
	width: 100px;
	height: 2px;
	/* background: rgb(8, 42, 123); */
}

.member-name::before {
	left: -120px;
}

.member-name::after {
	right: -120px;
}

.member-role {
	color: #01332e;
	font-size: 1.5rem;
	font-weight: 100;
	opacity: 0.6;
	text-transform: uppercase;
	padding: 3px 0;
	margin-top: -15px;
	position: relative;
}
.dots {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: -80px;
}

.dot {
	width: 15px;
	height: 5px;
	border-radius: 30%;
	background: #cc943a;
	cursor: pointer;
	transition: all 0.3s ease;
}

.dot.active {
	width: 30px;
	background: #01332e;
	transform: scale(1.3);
}

.nav-arrow {

  visibility: hidden;
	transform: translateY(-50%);
	background: rgba(8, 42, 123, 0.6);
	color: white;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 20;
	transition: all 0.3s ease;
	font-size: 1.5rem;
	border: none;
	outline: none;

}

.nav-arrow:hover {
	background: rgba(0, 0, 0, 0.8);
	transform: translateY(-50%) scale(1.1);
}

.nav-arrow.left {
	left: 20px;
	padding-right: 3px;
}

.nav-arrow.right {
	right: 20px;
	padding-left: 3px;
}

@media (max-width: 768px) {
	.about-title {
		font-size: 0rem;
	}
  .carousel-container {
	width: 50%;
	  margin-top: -60px;
	  margin-right: 95px;
  }
	.card {
		width: 175px;
		height: 255px;
	}
  .member-info {
	  margin-top: -120px;
  }
  .dots {
	  margin-top: 0px;
    margin-bottom: 20px;
  }
	.card.left-2 {
		transform: translateX(-140px) scale(0.65) translateZ(-140px);
    opacity: 0.65;
	}

	.card.left-1 {
		transform: translateX(-80px) scale(0.75) translateZ(-80px);
    opacity: 0.75;
	}

	.card.right-1 {
		transform: translateX(80px) scale(0.75) translateZ(-80px);
    opacity: 0.75;
	}

	.card.right-2 {
		transform: translateX(140px) scale(0.65) translateZ(-140px);
    opacity: 0.65;
	}

	.member-name {
		font-size: 0rem;
	}

	.member-role {
		font-size: 0rem;
	}

	.member-name::before,
	.member-name::after {
		width: 30px;
	}

	.member-name::before {
		left: -50px;
	}

	.member-name::after {
		right: -50px;
	}
}

.nav-link {
  color: #cc943a;
  background: #01332e;
  border-radius: 4px;
  font-size: 12px;
  padding: 6px 13px;
  text-align: center !important;
  margin: 0px 1px 0px 1px;
  font-weight: 500;
}
.languag-btn {
    font-size: 1.2rem;
}
.mboxs{
  padding: 20px;
}
.mrboxs{
  margin-top: 10px;
}








/*# sourceMappingURL=style.css.map */
