* {
	scroll-behavior:smooth;
}

.nav-bar {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;

	z-index: 5;
	background-color: rgba(102, 102, 102, 0.196);
	/* Initial background color */
	backdrop-filter: blur(10px);
	/* Apply blur effect */
	border-bottom: 3px solid rgb(255, 255, 255);
	/* Initial border color */

	transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
	/* Smooth transition */
	box-shadow: 0 0 10px rgba(255, 0, 0, 0);
	/* Initial neon glow effect */
}

/* Hover Effect Here */
.nav-bar:hover {
    border-color: rgb(173, 82, 82);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.7);
}

.navbar-items {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 2px 10px;
	/* Adjust padding */

}

.title{
	padding-top: 30px;
	padding-bottom: 30px;
}

.logo {
	margin-right: auto;
	/* Push the logo to the left */
}

.navbar-items li {
	list-style: none;
	/* Remove default list style */
	padding-right: 55px;
	padding-left: 25px;
	font-size: 21px;
	font-family: "Belleza", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.navbar-items li:hover {
	text-shadow: 0 0 10px #ed0000;
	/* Neon glow effect on navbar item hover */
}
.head{
	display: flex;
	justify-content: center;
	margin-top: 100px;
	margin-bottom: -50px;
    color: rgb(255, 13, 13);
	justify-content: center;
	display: flex;
	font-family: Arial, Helvetica, sans-serif;
	margin-bottom: 35px;
	border-radius: 80px;
	/* Define a linear gradient background for the bottom line */
	background-image: linear-gradient(to right, transparent, red, transparent);
	background-size: 100% 1px; /* 2px height for the bottom line */
	background-position: bottom; /* Align the gradient to the bottom */
	background-repeat: no-repeat; /* Ensure the gradient does not repeat */
}

.scrollable-content {
    flex: 1;
    overflow-y: auto;
    padding: 2em;
}

 body {
	 position: relative;
	 display: flex;
	 align-items: center;
	 flex-direction: column;
	 padding-top: 180px;
}

/* Sample text */


.team{
	text-align: center;
	font-size: 50px;
}

.innerTeam{
	color: rgb(248, 248, 248);	
}


*, *::before, *::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	text-decoration: none;
	list-style: none;
	outline: none;
	appearance: none;
	border-style: none;
	color: #fff;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, span, p {
	font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
}
html, body {
	width: 100%;
	min-height: 100vh;
	background: #000000;
}


body .container {
	position: relative;
	z-index: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: row;
	flex-wrap: wrap;
	padding: 1em;
}
body .container .card {
	position: relative;
	width: 300px;
	height: 400px;
	margin: 1em;
	background: #0c0c0c;
	box-shadow: 0 15px 35px rgba(0, 0, 0, .2);
	border-radius: 15px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	backdrop-filter: blur(40px);
	border: solid 2px transparent;
	background-clip: padding-box;
	box-shadow: 0px 10px 10px rgba(46, 54, 68, 0.03);
}
body .container .card .content {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	opacity: 0.5;
	transition: 0.5s;
}
body .container .card .content .img {
	position: relative;
	width: 150px;
	height: 150px;
	border-radius: 50%;
	overflow: hidden;
	border: 5px solid #242424;
}
body .container .card .content .img img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
body .container .card .content .cardContent h3 {
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: 500;
	font-size: 18px;
	text-align: center;
	margin: 20px 0 10px;
	line-height: 1.1em;
}
body .container .card .content .cardContent h3 span {
	font-size: 12px;
	font-weight: 300;
	text-transform: initial;
}
body .container .card .sci {
	position: absolute;
	bottom: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: row;
}
body .container .card .sci li {
	margin: 0 10px;
	transform: translateY(40px);
	opacity: 0;
	transition: 0.5s;
	transition-delay: calc(0.1s * var(--i));
}
body .container .card .sci li a {
	font-size: 24px;
}
body .container .card:hover .content {
	opacity: 1;
	transform: translateY(-20px);
}
body .container .card:hover .sci li {
	transform: translateY(0px);
	opacity: 1;
}