
/* General CSS */
* {
	outline: none;
}

html {
	font-size: 62.5%;
	margin: 0;
	padding: 0;
}

body {
	font-family: "Roboto", sans-serif;
	font-weight: 400;
	color: #333;
	background-color: #fff;
}

a {
	text-decoration: none !important;
	color: #000;
	transition: all .3s ease-in-out;
}

a:focus {
	outline: 0;
}

small {
	display: block;
}

/* hide broken image icon before image loaded - lazyload */
img:not([src]) {
	visibility: hidden;
}

.container {
	position: relative;
}

.container.content {
	top: 0;
}

.container-full {
	position: relative;
	width: 100%;
	margin: 0 auto;
	padding: 0 1rem;
}

@media (max-width: 575.98px) {
	.container-full {
		padding: 0;
	}
}

/* Vertical Align Center */
.ver-align {
	display: table;
}

@media (max-width: 991.98px) {
	.ver-align {
		display: block;
	}
}

.ver-align-child {
	float: none;
	display: table-cell;
}

@media (max-width: 991.98px) {
	.ver-align-child {
		float: left;
		display: block;
		width: 100%;
	}
}

.text-center {
	text-align: center;
}

.animatable {
	opacity: 0;
}

/* UI */
button:focus, .btn:focus, .btn.focus, .btn:active:focus, .btn:active.focus, .btn.active:focus, .btn.active.focus {
	outline: 0;
	outline-offset: 0;
}

hr {
	margin: 3rem auto 4rem;
	border-color: #d2d2d2;
}

.line {
	width: 50px;
	border-color: #e2464d;
	border-width: 3px;
	margin-bottom: 30px !important;
	margin-top: 15px !important;
}

.caps {
	text-transform: uppercase;
}

.underline {
	display: inline-block;
	padding-bottom: 1rem;
	border-bottom: 3px solid #2f3150;
}

.line-before::before {
	content: "";
	display: block;
	height: 1px;
	width: 100%;
	margin: 2rem auto;
	background-color: #2f3150;
}

/* Preloader */
.pre-loader {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	height: 100%;
	width: 100%;
}

.spinner {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	bottom: 0;
	height: 100%;
	width: 100%;
	text-align: center;
}

.spinner > div {
	width: 1rem;
	height: 1rem;
	background-color: #e6e6e6;
	border-radius: 100%;
	display: inline-block;
	-webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
	animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner .bounce1 {
	-webkit-animation-delay: -.32s;
	animation-delay: -.32s;
}

.spinner .bounce2 {
	-webkit-animation-delay: -.16s;
	animation-delay: -.16s;
}

/* Default 1.0 */
.img-gallery {
	margin-bottom: 30px;
}

.img-hover:hover {
	opacity: .8;
}

.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
	background-color: #fff;
}

.banner-wrap .contact-form--standout {
	background: red;
}

.bottom-stop {
	margin: 0;
	padding: 3rem auto 4rem;
	border: 0;
}
