@media (min-width: 1020px) {
	.grid.bod-election {
		margin-left: 24px !important;
		margin-right: 0 !important;
	}
}
.bod-card {
	margin: auto;
	overflow-y: auto;
	position: relative;
	z-index: 1;
	overflow-x: hidden;
	background-color: #fff;
	display: flex;
	transition: 0.3s;
	flex-direction: column;
	border-radius: 6px;
	border: 6px solid rgba(0, 0, 0, 0.1);
}

.bod-card[data-state="#about"] .bod-card-main {
	padding-top: 0;
}

.bod-card.is-active .bod-card-header {
	height: 80px;
}

.bod-card.is-active .bod-card-cover {
	height: 100px;
	top: -50px;
}

.bod-card.is-active .bod-card-avatar {
	transform: none;
	left: 20px;
	width: 50px;
	height: 50px;
	bottom: 10px;
}

.bod-card.is-active .bod-card-fullname,
.bod-card.is-active .bod-card-jobtitle {
	left: 86px;
	transform: none;
}

.bod-card.is-active .bod-card-fullname {
	bottom: 18px;
	font-size: 19px;
}

.bod-card.is-active .bod-card-jobtitle {
	bottom: 16px;
	letter-spacing: 1px;
	font-size: 10px;
}

.bod-card-header {
	position: relative;
	display: flex;
	height: 200px;
	flex-shrink: 0;
	width: 100%;
	transition: 0.3s;
}

.bod-card-header * {
	transition: 0.3s;
}
/*
.bod-card-cover {
	width: 100%;
	height: 160px;
	position: absolute;
	top: -20%;
	left: 0;
	will-change: top;
	background-size: cover;
	background-position: center;
	filter: blur(30px);
	transform: scale(1.2);
	transition: 0.5s;
}*/
.bod-card-cover {
	width: 100%;
    height: 160px;
    position: absolute;
    top: -20%;
    left: 0;
	background-image: none !important;
    background: #003D5C !important;
}
.bod-card.is-active .bod-card-fullname { color: #fff }
.bod-card-avatar {
	width: 100px;
	height: 100px;
	box-shadow: 0 8px 8px rgba(0, 0, 0, 0.2);
	border-radius: 50%;
	object-position: 0 0;
	object-fit: cover;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%) translateY(-64px);
}

.bod-card-fullname {
	position: absolute;
	bottom: 0;
	font-size: 22px;
	font-weight: 700;
	text-align: center;
	white-space: nowrap;
	transform: translateY(-10px) translateX(-50%);
	left: 50%;
}

.bod-card-jobtitle {
	position: absolute;
	bottom: 0;
	font-size: 11px;
	white-space: nowrap;
	font-weight: 500;
	opacity: 0.7;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	margin: 0;
	left: 50%;
	transform: translateX(-50%) translateY(-7px);
}

.bod-card-main {
	position: relative;
	flex: 1;
	display: flex;
	padding-top: 10px;
	flex-direction: column;
}

.bod-card-subtitle {
	font-weight: 700;
	font-size: 18px;
	margin-bottom: 8px;
}

.bod-card-content {
	padding: 0 20px 40px;
}

.bod-card-desc {
	line-height: 1.6;
	color: #636b6f;
	font-size: 14px;
	margin: 0;
	font-weight: 400;
	font-family: "DM Sans", sans-serif;
}

.bod-card-buttons {
	display: flex;
	background-color: #fff;
	margin-top: auto;
	position: sticky;
	bottom: 0;
	left: 0;
}

.bod-card-buttons button {
	flex: 1 1 auto;
	user-select: none;
	background: 0;
	font-size: 16px;
	border: 0;
	padding: 10px 5px;
	cursor: pointer;
	color: #5c5c6d;
	transition: 0.3s;
	font-weight: 700;
	outline: 0;
	border-bottom: 3px solid transparent;
	background: rgba(0, 0, 0, 0.1);
}

.bod-card-buttons button.is-active,
.bod-card-buttons button:hover {
	border-bottom: 3px solid #003D5C;
}
.bod-card-buttons button.is-active {
	color: #fff;
	background: #003D5C;
}
.bod-card-section {
	display: none;
}

.bod-card-section.is-active {
	display: block;
	animation: fadeIn 0.6s both;
}

@keyframes fadeIn {
	0% {
		opacity: 0;
		transform: translatey(40px);
	}

	100% {
		opacity: 1;
	}
}
