/*Dashboard*/

.dashboard {
    color: white;
    font-size: 42px;
    margin-top: -160px;

    text-align: center;
}

.dashboard-info {
    color: white;
    font-size: 30px;
    margin-top: -25px;

    text-align: center;
}

.dashboard-info span {
    color: #4286f4;
	font-weight: bold;
}

.dashboard-img {
    text-align: center;

}

/*Features ------------------------------------------------------------------------------------------------------------------ */

#features {
    color: white;
    font-size: 42px;
    padding-left: 200px;
    margin-top: 200px;

    text-align: left;
}

.features-info {
    color: white;
    font-size: 30px;
    padding-left: 200px;
    margin-top: -25px;

    text-align: left;
}

.features-info span {
    color: #4286f4;
	font-weight: bold;
}

/* Style the button that is used to open and close the collapsible content */
.features-list {
    background-color: #202226;
    color: white;
    cursor: pointer;
    padding: 14px;
    margin-left: 200px;
    margin-top: 10px;
    padding-bottom: 10px;
    width: 50%;
    
    border: none;
    text-align: left;
    outline: none;
    font-size: 20px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
}
   
/* Style the collapsible content. Note: hidden by default */
.content {
    margin-left: 200px;
    margin-top: 0px;
    width: 50%;
    padding-left: 16px;
    line-height: 5px;

    display: none;
    overflow: hidden;
    color: white;
    background-color: #202226;
}

.content span {
	font-weight: bold;
}

.button h3 {
    color: #4286f4;
	font-weight: bold;
    font-size: 32px;
    margin-left: 200px;
    margin-bottom: -5px;
}

/*Team ------------------------------------------------------------------------------------------------------------------ */

#team {
    color: white;
    font-size: 42px;
    padding-right: 550px;
    padding-top: 400px;

    text-align: right;
}

.team-info {
    color: white;
    font-size: 30px;
    padding-right: 200px;
    margin-top: -25px;

    text-align: right;
}

.team-info span {
	color: #4286f4;
	font-weight: bold;
}


/* Team ------------------------------------------------------------------------------------------------------------------ */

/* Team */

.team-team {
	background: #121215;
	align-self: center;
}

.container {
	display: flex;
	
}

.container .card {
	width: 300px;
	height: 400px;
	margin: 20px;
	box-shadow: 0 15px 35px rgba(5, 0, 0, 5.8);
	border-radius: 15px;
	display: flex;
	backdrop-filter: blur(15px);
}

.container .card .content {
	display: flex;
	flex-direction: column;

	opacity: 0.8;
	transition: 0.5s;

	position: relative;
	align-items: center;
	align-self: center;

	background-color: #121215;
}

.container .card:hover .content {
	opacity: 1;
	transform: translateY(-20px);
	
}

.container .card .content .imgBx {
	position: relative;
	width: 180px;
	height: 180px;
	border-radius: 50%;
	
	overflow: hidden;
	border: 10px solid	rgba(0, 0, 0, 0.25);

	margin-right: 100px;
}

.container .card .content .imgBx img {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}


.container .card .content .contentBx h3 {
	color: white;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: 500;
	font-size: 20px;
	text-align: center;
	margin: 20px 0 10px;
	line-height: 1.1em;
}

/* User Bio */
.container .card .content .contentBx h3 span {
	font-size: 18px;
	font-weight: 300;
	text-transform: initial;

}

.container .card .sci {
	position: absolute;
	bottom: 50px;
	display: flex;
}

.container .card .sci li {
	list-style: none;

	margin-right: 10px;

	transform: translateY(40px);
	transition: 0.5s;
	opacity: 0;
	transition-delay: calc(0.1s * var(--i));
}

.container .card:hover .sci li {
	transform: translateY(0px);
	opacity: 1;
}

.container .card .sci li a {
	color: white;
	font-size: 24px;

}