html {
	height: 100%;
}

body {
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	height: 100%;
}

::selection {
	background-color: #D0BB5D;
	color: black;
}

::-moz-selection {
	background-color: #D0BB5D;
	color: black;
}



div {
	box-sizing: border-box;
	webkit-box-sizing: border-box;
	moz-box-sizing: border-box;
}

.header-wrapper {
	background-color: #263238;
	padding: 10px;
	color: white;
}



.menu {
	text-align: right;
	display: inline-block;
	width: 70%;
}

.menu a {
	text-decoration: none;
	color: inherit;

	padding: 27px;
}

.menu img {
	display: none;
	cursor: pointer;
}

.menu a:hover {

	background-color: #1c2428;
}

.menu > ul > li {
	display: inline;
}

.logo-wrapper {
	display: inline-block;
	width: 29%;
	vertical-align: middle;
}

.moto-wrapper {
	text-align: center;
	background-color: #CFD8DC;
	padding: 15px;
}

.content-container {
	padding: 15px;

}



footer {
	background-color: #373737;
	color: silver;
	margin-top: auto;
}

.box {
	display: inline-block;
	width: 24%;
	padding: 10px;
	vertical-align: top;
}

.two-boxes {
	display: inline;
}

.res-img {
	width: 270px;
	height: 180px;
	border-style: solid;
	border-color: #1f1e1e;
	display: block;
}

.two-images-wrapper {
	display: inline;
}

.img-container {
	display: inline-block;
	margin: 10px 10px 25px 10px;
	position: relative;
}

.images-wrapper {
	text-align: center;
}

.box ul {
	padding: 0;
	margin: 0;
	list-style-type: none;
}

.box ul a {
	text-decoration: none;
	color: inherit;
}


.box ul a:hover {

	color: white;
}

.box ul li {
	margin-bottom: 7px;
}

.box h4 {
	color: white;
	position: relative;
	padding-bottom: 10px;

	border-bottom: 1px solid black;

}

.box p {
	margin-top: 0;
	margin-bottom: 7px;
}

.box h4::after {
	width: 70px;
	height: 1px;
	content: " ";
	background: white;
	left: 0;
	bottom: -1px;
	position: absolute;
}



.input-form {
	padding: 10px;
	width: 66%;
}

.sub-button {
	width: 67%;
	margin-top: 14px;
	border: 1px solid silver;
	display: inline-block;
	text-align: center;
	padding: 10px;
	cursor: pointer;

}


.sub-button:hover {
	background-color: #A09F9F;
	border: 1px solid #6E6E6E;
	color: black;
}

.social-icon {
	margin-top: 10px;
	width: 35px;
	filter: grayscale(100%);
	-webkit-filter: grayscale(100%);

}

.social-icon:hover {

	filter: none;
	-webkit-filter: none;

}

.active {

	background-color: #1c2428;
}

.container90 {

	width:95%;
	margin: auto;

}

.content-header {

	margin-bottom: 30px;
	text-align: center;

}

.copyright-wrapper {
	background-color: #2F2F2F;
	color: silver;
	padding: 15px;

}

.copyright-wrapper p {
	margin: 0;
}

.mob-menu {
	background-color: #607D8B;
	padding: 0px;
}

.mob-menu ul {
	list-style-type: none;
	padding-left: 0px;
	margin: 0px;
}

.mob-menu li {
	padding-bottom: 14px;
	padding-top: 14px;
	text-align: center;
}
.mob-menu li:hover {
	background-color: #3f535d;
}
.mob-menu a {
	color: white;
	text-decoration: none;
	font-size: 22px;
}

.mob-p {
	display: none;
}

.img-container * {
	box-sizing: border-box;
	webkit-box-sizing: border-box;
	moz-box-sizing: border-box;
}

.breadcrumb-wrapper {
	background: #CFD8DC;
	padding: 15px;
}

.breadcrumb-items {
	padding-left: 0;
}

.breadcrumb-items li {
	display: inline;

}

.breadcrumb-items a {
	display: inline-block;
	vertical-align: middle;
	-webkit-transform: perspective(1px) translateZ(0);
	transform: perspective(1px) translateZ(0);
	box-shadow: 0 0 1px transparent;
}

.breadcrumb-items a:hover {
	  -webkit-animation-name: hvr-pop;
    animation-name: hvr-pop;
    -webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}

.breadcrumb-items li::after {
	content: " /";
}

.breadcrumb-items li:last-child::after {
	content: "";
}

.form {
	padding: 40px;
}

.form-group {
	display:  inline-block;
	width: 30%;
	margin-bottom: 20px;
	vertical-align:top;
}



.form-input {
	padding: 10px;
	width: 85%;
	margin-top:7px;
}

.date-input {
	width: 85%;
	height: 35px;
	margin-top: 7px;
}

textarea {
	width:85%;
	margin-top: 9px;
	margin-bottom: 10px;
	padding: 10px;
}

@-webkit-keyframes hvr-pop {
  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}
@keyframes hvr-pop {
  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}



#submit-btn {
		width: 200px;
    background-color: #263238;
    margin-top: 10px;
    border: 1px solid silver;
    display: inline-block;
    text-align: center;
    padding: 10px;
    cursor: pointer;
    color: white;
		display: inline-block;
}

#submit-btn:hover {
	background-color: #A09F9F;
	color: black;
}

.form-footer {
	width:56.5%;
	text-align: right;
}

.form-footer p {
	color: silver;
}

.err {
	color: red;
	display: inline;
	margin: 0;
	visibility: hidden;
}

.err p {
	margin: 0;
	margin-top: 7px;


}

.success-load, .fail-load {
	display: none;
	min-height: 400px;
	padding: 40px;
}



