body {
	background: linear-gradient(to right, #ef4623, #6e6d6a);
	color: #000;
	font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 16px;
	line-height: 1.6;
}

h2 {
	color: #000;
	font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 22px;
	margin: 15px;
	text-align: center;
}

.group {
	border: 1px solid #ef4623;
	padding: 20px;
	width: 400px;
	color: #006;
	border-radius: 8px;
	background: rgb(255, 255, 255);
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
}

.contact-form {
	width: 400px;
	text-align: left;
}

.contact-form.frame {
	background-color: #444444;
	border: 1px solid #CCCCCC;
	padding: 20px;
}

.form-input {
	display: block;
	width: 200px;
	height: 15px;
	margin-bottom: 15px;
	color: #ef4623;
	background-color: rgb(255, 255, 255);
	border: .1px solid #999;
	box-shadow: inset 0 0 1px #ef4623, 0 1px 0 rgba(255, 255, 255, 0.1);
	transition: all 0.4s ease-in-out;
	font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 14px;
	padding: 5px 10px;
}

.form-input:focus {
	border: .1px solid #ef4623;
	box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.7), 0 0 1px #ef4623;
}

.form-input:-moz-ui-invalid, .form-input.invalid {
	border: 1px solid #e00;
	box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.7), 0 0 1px #e00;
}

.form-btn {
	padding: 0 15px;
	height: 30px;
	font: bold 16px 'Roboto', sans-serif;
	text-align: center;
	color: #fff;
	text-shadow: 0 1px 0 rgba(0, 0, 0, 0.7);
	cursor: pointer;
	border: 1px solid #0d3d6a;
	outline: none;
	position: relative;
	background: linear-gradient(to right, #ef4623, #6e6d6a);
	background-image: linear-gradient(top, #ef4623, #0d3d6a);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 1px 2px rgba(0, 0, 0, 0.7);
	margin-top: 10px;
}

.form-btn:active {
	border: 1px solid #ef4623;
	background: linear-gradient(to right, #ef4623, #6e6d6a);
	background-image: -webkit-gradient(linear, left top, left bottom, from(#ef4623), to(#ef4623));
	background-image: -webkit-linear-gradient(top, #0d3d6a, #ef4623);
	background-image: -moz-linear-gradient(top, #0d3d6a, #ef4623);
	background-image: -ms-linear-gradient(top, #0d3d6a, #ef4623);
	background-image: -o-linear-gradient(top, #0d3d6a, #ef4623);
	background-image: linear-gradient(top, #0d3d6a, #ef4623);
	box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.7), 0 1px 0 rgba(255, 255, 255, 0.1);
}

label {
	margin-bottom: 8px;
	display: block;
	width: 120px;
	color: #003;
	font-size: 15px;
	font: sans-serif;
}

.label1 {
	margin-bottom: 8px;
	display: block;
	width: 400px;
	color: #003;
	font-size: 14px;
	font: sans-serif;
}

label span {
	font-size: 12px;
	font: sans-serif;
	color: #333;
	font-weight: normal;
}

table {
	font: sans-serif;
	border-collapse: collapse;
	width: 70%;
	text-align: center;
}

table td {
	font: sans-serif;
	border-collapse: collapse;
	border: 1px solid orange;
	text-align: center;
	padding: 1.3rem;
}

table tr {
	font: sans-serif;
	font-size: 14px;
}

table th {
	font-weight: bold;
	font: sans-serif;
	font-size: 14px;
}

.image-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
	gap: 20px;
	justify-items: center;
}

.image-grid img {
	max-width: 170px;
	max-height: 170px;
}

.menu {
	height: 16%;
	background-color: #ffffff;
	padding: 20px;
}

.menu2 {
	height: 10%;
	background-color: #ffffff;
	padding: 20px;
}

.title1 {
	height: 18%;
	background: linear-gradient(to right, #ef4623, #6e6d6a);
}

.content {
	height: 70%;
	background-color: #ffffff;
	padding: 20px;
}

@media (max-width: 768px) {
	.group, .contact-form, .label1 {
		width: 100%;
		padding: 10px;
	}

	.form-input {
		max-width: 100%;
	}

	.form-btn {
		width: 100%;
	}

	table {
		width: 100%;
	}

	table td, table th {
		padding: 0.8rem;
		font-size: 12px;
	}
}