:root {
	--default-font-family: "Afacad Flux", sans-serif;
}

.main-container {
	overflow: hidden;
}

.main-container,
.main-container * {
	box-sizing: border-box;
}

input,
select,
textarea,
button {
	outline: 0;
}
body {
	margin: 0px;
	font-family: var(--default-font-family);
}
.main-container {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	flex-wrap: nowrap;
	position: relative;
	width: 100%;
	margin: 0 auto;
	background: #ffffff;
	overflow: hidden;
}
.navbar {
	display: flex;
	align-items: center;
	justify-content: space-around;
	width: 100%;
	align-self: stretch;
	flex-wrap: wrap;
	flex-shrink: 0;
	position: sticky;
	top: 0;
	z-index: 50;
	padding: 0 64px 0 64px;
	background: var(--secondary-bg);
}
.container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	flex-grow: 1;
	flex-basis: 0;
	position: relative;
	z-index: 1;
}
.color-dark {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	align-self: stretch;
	flex-wrap: nowrap;
	flex-shrink: 0;
	gap: 10px;
	position: relative;
	width: 333px;
	min-height: 0;
	padding: 4px 0 4px 0;
	z-index: 3;
	overflow: hidden;
}
.logo-wide {
	display: flex;
	align-items: center;
	justify-content: center;
	align-self: stretch;
	flex-wrap: wrap;
	flex-grow: 1;
	flex-shrink: 0;
	flex-basis: 0;
	position: relative;
	min-width: 0;
	z-index: 4;
	overflow: hidden;
}
.vector {
	align-self: stretch;
	flex-grow: 1;
	flex-basis: 0;
	position: relative;
	background: url(./../img/84a04c9a-a618-4216-b164-9379cdf88988.png)
		no-repeat center;
	background-size: cover;
	z-index: 5;
}

.header {
	display: flex;
	align-items: center;
	justify-content: center;
	align-self: stretch;
	flex-wrap: wrap;
	flex-shrink: 0;
	position: relative;
	padding: 0 164px 0 164px;
	background: var(--primary);
	z-index: 18;
	overflow: hidden;
	min-height: 100vh;
}
.block {
	display: flex;
	align-items: center;
	justify-content: center;
	align-self: stretch;
	flex-wrap: wrap;
	flex-shrink: 0;
	position: relative;
	padding: 0 164px 0 164px;
	overflow: hidden;
	min-height: 70vh;
	color: var(--primary)
}
.content {
	padding: 64px 164px 64px 164px;
	overflow: hidden;
	color: var(--primary)
}
.block .message {
	color: black;
}
.block .side,
.header .side {
	max-width: 40%;
	margin: 64px 32px;
}
.block .chat,
.header .chat {
	min-width: 40%;
}
@media screen and (max-width: 768px) {
	.header,
	.block,
	.content {
		gap: 32px;
		padding: 0 24px;
		min-height: unset;
	}
	.block .side,
	.header .side {
		max-width: 100%;
	}
	.header .chat,
	.block .chat {
		font-size: x-small;
	}
}

.divider {
	border-top: 4px solid var(--primary);
	width: 100%;
	position: relative;
}

.footer-menu a,
.footer-menu a:visited {
	color: var(--primary);
	font-size: 14px;
	font-weight: 400;
	line-height: 21px;
	text-align: left;
	text-decoration: underline;
	margin: 0px 32px;
}