/*!
 * Stratum Security Website v 2.0 (https://stratumsecurity.com/)
 * © Stratum Security 2024. All Rights Reserved.
 */

/* modal.css */

@import url("https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,400;0,500;0,700;1,800&display=swap");

/* Custom Properties */
:root {
	--primary-color: #e36b0a;
	--primary-color-light: #f5d1b5;
	--text-light-color: #fff;
	--text-dark-color: #0d0d0d;
	--background-dark-color: #0d0d0d;
	--background-light-color: #fff;
	--dark-lines: #222222;
	--light-lines: #f5f5f5;
}

/* Global Styles */
html {
	/* background-color: var(--background-dark-color); */
	margin: 0 auto;
	width: 100%;
	scroll-behavior: smooth;
}

.body {
	color: var(--text-light-color);
	font-family: "Inter", sans-serif;
	height: 100vh;
	margin: 0 auto;
	padding: 0;
	line-height: 1.6;
	opacity: 0.5;
	transition: opacity 0.5s ease;
}

.dialog {
	width: 95vw;
	height: 85vh;
	padding: 0;
	border: 0;
	background-color: transparent;
	background-color: rgba(255, 255, 255, 0.04);
	backdrop-filter: blur(20px);
}

.expert-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 85vh;
}

.carved-box {
	width: 100%;
	height: 100%;
	position: absolute;
	background-color: rgba(255, 255, 255, 0.04);
	backdrop-filter: blur(20px);
	clip-path: polygon(
		0% 0%,
		0% 100%,
		35.75% 100%,
		35.75% 19.1%,
		64.25% 19.1%,
		64.25% 80.9%,
		35.75% 80.9%,
		35.75% 100%,
		100% 100%,
		100% 0%
	);
}

.expert-button {
	width: 35px;
	height: 35px;
	border-radius: 50px;
	background-color: transparent;
	border: 1px solid rgba(255, 255, 255, 0.4);
	transition: border 0.3s ease;
	background-image: url(../images/closeIconWhite.svg);
	background-repeat: no-repeat;
	background-position: center;
	margin-top: 1rem;
	cursor: pointer;
	z-index: 1000;
}

.expert-button:hover {
	border: 2.5px solid var(--primary-color);
}

.expert-button:focus {
	outline: none;
}

.expert-card {
	border: 0;
	border-radius: 8px;
	width: 330px;
	height: 440px;
	background-color: rgba(0, 0, 0, 0.9);
	backdrop-filter: blur(4px);
	z-index: 9;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.member-pic {
	border-radius: 50%;
	width: 100px;
	height: 100px;
	margin-top: 25px;
}

.name {
	color: var(--background-light-color);
	margin-top: 20px;
	font-weight: lighter;
}

.profession {
	font-size: .6em;
	color: rgba(255,255,255,0.5);
}

.separator-line {
	width: 100%;
	height: 1px;
	background-color: rgba(255,255,255,0.1);
	border: 0;
}

.description {
	color: var(--background-light-color);
	font-weight: lighter;
	font-size: 12px;
	text-align: center;
	margin-top: 25px;
	margin-inline: 30px;
}

@media (max-width: 680px) {
}
