body {
	font-family: Arial, sans-serif;
}

.menu, .small_menu {
	display: flex;
	flex-wrap: wrap;
	background-color: rgba(0, 0, 0, 0.9); /*black*/;
	justify-content: center;
	width: 100%;
	font-family: Arial, sans-serif;
	font-size: large;
	position: fixed;
	top: 0;
	z-index: 999;
}

.menu > div, .small_menu > div {
	flex: 15%;
	line-height: 50px;
	text-align: center;
	color: white;
	margin: 0px;
}

.menu_item a:link {
     text-decoration: none;
     color: white;
}     

.menu_item a:hover {
	text-decoration: underline;
	color: white;
}

.menu_item a:visited {
	text-decoration: none;
	color: white;
}

@media screen and (max-width: 800px) {
	.menu {
		display: none;	
	}
}

@media screen and (min-width: 801px) {
	.small_menu {
		display: none;
	}
}

.bottom {
	display: flex;
	flex-wrap: wrap;
	padding: 10px 10px;
}

.bottom_col {
	flex: 25%;
	max-width: 75%;
	padding: 0px 0px;
}

.bottom_col p {
	text-align: left;
	font-weight: bold;
}

.bottom_col a:link {
	text-decoration: none;
	color: black;
}

.bottom_col a:visited {
	color: gray;
}

.bottom_col a:hover {
	text-decoration: underline;
}


.middle {
	display: flex;
	flex-wrap: wrap;
	/*padding: 40px 10px;*/
	margin: 40px 10px;:w

}

.column {
	flex: 100%;
	max-width: 100%;
	/*padding: 40px 4px;*/
	margin: 40px 4px;
	text-align: center;
}

.column .col_title {
	margin-top: 50px;
	margin-bottom: 50px;
	font-size: 56px; 
	font-weight: bold;
	text-align: center;
}

.column .col_p {
	font-size: x-large;
	font-weight: bold;
	margin-bottom: 50px;
}

.column .col_a {
	font-size:large;
}

.column img {
	margin-top: 50px;
	margin-bottom: 80px;
	vertical-align: middle;
}

.column .description {
	font-size: large;
	margin-top: 40px;
	text-align: left;
}

.column .benefits {
	margin-top: 0px;
	text-align: left;
}

.column .features {
	list-style-type: square;
	text-align: left;
	font-size: large;
}

.small_menu .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    overflow: auto;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.small_menu .dropdown-content a {
	color: black;
        padding: 12px 16px;
        text-decoration: none;
	text-align: left;
        display: block;
}

.contact_form input[type=text], input[type=email], select, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: vertical;
}

.contact_col {
	flex: 100%;
	max-width: 100%;
	margin: 40px 100px 0px 100px;
	text-align: left;
}

.contact_form > p {
	padding: 10px;
}

.contact_form .error {
	color: red;
}

.contact_form .errorlist {
	display: none;
	color: red;
	text-align: left;
	list-style-type: none;
}

.searchfield {
	color: black;
	font-size: small;
	font_weight: normal;
	width: 70%;
	height: 35px;
}


