@charset "utf-8";
/* CSS Document */

/* The Experts */

body {
	margin: 0;
	font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
	color: navy;
	height: 100%;
}

.mast {
	margin: 1px;
	width: 100%;
	text-align: center;
}

.mast img {
	max-width: 100%;
}

.nav {
	text-align: center;
	display: inline-block;
	margin: 0px; padding: 2px;
	width: 49%;
	background-color: navy;
}

.nav a {
	width: 100%;
	margin: 2px 1px 0px 2px; padding: 1em 0px;
	background-color: navy;
	text-align: center;
	color: white;
	text-decoration: none;
}

.nav a:hover {
	background-color: #DA6;
	color: navy;
}

@media screen and (min-width: 600px) {
	.mast img {
		max-width: 49.5%;
	}
	.nav {
		max-width: 49.5%:
	}
}


#content h1, #content h2, #content h3, #content p {
	text-align: center;
}

#content2 {
	margin: auto 2em;
}

#content2 h1, #content2 h2 {
	text-align: center;
}

/*Responsive Form CSS */

* {
    box-sizing: border-box;
}

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

label {
    padding: 12px 12px 12px 0;
    display: inline-block;
}

input[type=submit] {
    background-color: navy;
	border: 3px outset #DA6;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    /* float: right; */
	width: 100%;
}

input[type=submit]:hover {
    background-color: #DA6;
	border: navy;
}

.container {
    border-radius: 5px;
    background-color: #eee;
	border: 1px solid navy;
    padding: 20px;
}

.col-25 {
    float: left;
    width: 25%;
    margin-top: 6px;
}

.col-75 {
    float: left;
    width: 75%;
    margin-top: 6px;
}

/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}

/* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
    .col-25, .col-75, input[type=submit] {
        width: 100%;
        margin-top: 0;
    }
}

/*	Responsive Image Gallery	*/

div.gallery {
    border: 1px solid #ccc;
}

div.gallery:hover {
    border: 1px solid #777;
}

div.gallery img {
    width: 100%;
    height: auto;
}

div.desc {
    padding: 15px;
    text-align: center;
}

* {
    box-sizing: border-box;
}

.responsive {
    padding: 0 6px;
    float: left;
    width: 24.99999%;
}

@media only screen and (max-width: 700px) {
    .responsive {
        width: 49.99999%;
        margin: 6px 0;
    }
}

@media only screen and (max-width: 500px) {
    .responsive {
        width: 100%;
    }
}

.clearfix:after {
    content: "";
    display: table;
    clear: both;
}

/*	End of Responsive Image Gallery	*/

.footer {
	margin: auto 0;
	background-color: navy;
	color: white;
	text-align: center;
}