:root {
	--header-background: #ffffff;
	--primary-background: #E3E3EC;
	--main-color: blue;
	--hover-color: red;
	--input-color: green;
	--button-color: blue;
	--button-text: white;
	--button-hover: green;
	--button-text-hover: orange;
}

body {
	font-family: 'Poppins', sans-serif;
    width: 100%;
    min-height: 100vh;
    padding: 0;
    margin: 0;
}

header {
    position: fixed;
	background-color: var(--header-background);
    border-bottom: solid 1px #808080;
	height: 90px;
	width: 100%;
	margin: 0;
	padding: 0;
	left: 0;
	top: 0;
    z-index: 9000;
}

main {
    width: 100%;
    min-height: 900px;
}

footer {
    position: fixed;
	background-color: var(--header-background);
    border-top: solid 1px #808080;
	height: 40px;
	bottom: 0;
	width: 100%;
}

.header-container {
	width: 100%;
	height: 90px;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: stretch;
}

.header-box {
	min-height: 50px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}

.menu-item {
	margin: 0px 20px;
	color: #000000;
	font-size: 18px;
	font-weight: 300;
    padding-left: 10px;
}

.menu-item a{
	text-decoration: none;
	color: #000000;
}

.menu-item a.active {
	color: #000000;
    padding-top: 3px;
    padding-bottom: 3px;
    border-top: 1px solid #000000;
    border-bottom: 1px solid #000000;
}

.menu-item a:hover {
	color: blue;
    padding-top: 3px;
    padding-bottom: 3px;
    border-top: 1px solid blue;
    border-bottom: 1px solid blue;
}

.menu-item a:active {
	color: red;
    border-top: 1px solid red;
    border-bottom: 1px solid red;
}

.demo-button {
    background: #ffffff;
    padding: 9px 25px;
    border: 3px solid #5E5ED8;
    border-radius: 25px;
    opacity: 1;
    font-size: 18px;
    font-weight: 500;
    color: #5E5ED8;
}

.demo-button:hover {
    background: #5E5ED8;
    border: 3px solid #5E5ED8;
    color: #ffffff;
    cursor: pointer;
}

.demo-button:focus {
    outline: none;
}

body {
	background-color: var(--primary-background);
}

.primary-button {
    background: #4e4efd;
    padding: 9px 25px;
    border-radius: 25px;
    border: 2px solid #4e4efd;
    opacity: 1;
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    margin-top: 40px;
}

.primary-button:hover {
    background-color: var(--primary-background);
    color: #0A0AFC;
    cursor: pointer;
}

.primary-button:focus {
    outline: none;
}

#logo-box  {
    margin-left: 150px;
}

#logo {
	font-family: 'Manrope', sans-serif;
	font-size: 50px;
	font-weight: 300;
	color: #000000;
}

#logo a {
	text-decoration: none;
	color: #000000;
}

#logo-bold {
	font-weight: 600;
}

#main-menu {
    flex-basis: 630px;
    flex: 2;
    margin-right: 100px;
}

#active-page {
	font-weight: 600;
}

#active-page a:hover {
	color: black;
	font-weight:600;
    cursor: default;
}

#contact-box {
    margin-right: 125px;
}

#login-box {
    display: hidden;
}

#copyright {
	margin: 10px auto;
	text-align: center;
	font-size: 12px;
}

.intelligent-form {
    width: 90%;
    margin: 20px 5% 0px 5%;
}

::placeholder {
    color: gray;
}

fieldset {
	color: #000000;
	border-radius: 25px;
	border: 2px solid #000000;
    text-align: left;
}

fieldset legend {
	color: #000000;
	font-size:20px;
    margin-left: 50px;
}

.close-modal {
    height: 30px;
    fill: #000000;
}

.close-modal:hover {
    fill: #808080;
    cursor: pointer;
}
