/* --- CSS Reset --- */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
html,
body {
	font-family: 'Open Sans', sans-serif !important;
}

/* --- ripple effect --- */
.ripple-btn {
	overflow: hidden;
	position: relative;
	box-sizing: border-box;
	cursor: pointer;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	outline: none;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	user-select: none;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	text-decoration: none;
}
.ripple-btn:after {
	content: '';
	height: 100%;
	left: 0;
	top: 0;
	width: 100%;
	position: absolute;
	background-color: rgba(255, 255, 255, 0.1);
	transition: all 0.3s ease 0s;
	-webkit-transition: all 0.3s ease 0s;
	z-index: -1;
	opacity: 0;
}
.ripple-btn:hover:after {
	opacity: 1;
}
.ripple-effect {
	position: absolute;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.5);
	user-select: none;
	pointer-events: none;
	padding: 0;
	margin: 0;
	opacity: 0.6;
	-webkit-transform: translate3d(-50%, -50%, 0);
	transform: translate3d(-50%, -50%, 0);
}

/* --- top bar --- */
#industries-btn {
	position: relative;
	box-sizing: border-box;
}

#industries-btn:hover {
	background-color: rgba(255, 255, 255, 0.1);
}

.top-bar {
	display: block;
	top: 0px;
	left: 0px;
	width: 100%;
	box-sizing: border-box;
	font-size: 0px;
	z-index: 5;
}

.top-bar-left {
	display: inline-block;
	vertical-align: middle;
	width: 40%;
	width: calc(220px - 0%);
	text-align: left;
}
.nav-home-btn {
	display: inline-block;
	padding: 8px 15px;
}
.nav-home-btn img {
	display: block;
	width: 160px;
}

.top-bar-right {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	width: 60%;
	text-align: right;
	width: calc(100% - 220px);
}
.nav-menu-item {
	display: inline-block;
	vertical-align: middle;
	box-sizing: border-box;
	padding: 19px 30px;
	font-size: 14px;
	line-height: 18px;
	color: #ffffff;
	font-weight: 700;
	text-decoration: none;
}
.top-bar-mobile-nav-btn {
	display: none;
}
.mobile-nav-menu {
	display: none;
}

.top-bar-absolute {
	position: absolute;
}
.top-bar-fixed {
	position: fixed;
	background-color: #ffffff;
	border-bottom: solid 1px #e5e5e5;
}
.top-bar-absolute .top-bar-logo-white {
	display: block;
}
.top-bar-absolute .top-bar-logo-color {
	display: none;
}
.top-bar-fixed .top-bar-logo-white {
	display: none;
}
.top-bar-fixed .top-bar-logo-color {
	display: block;
}
.top-bar-fixed .nav-menu-item {
	color: #525252;
}
.top-bar-absolute .top-bar-mobile-nav-white {
	display: block;
}
.top-bar-absolute .top-bar-mobile-nav-grey {
	display: none;
}
.top-bar-fixed .top-bar-mobile-nav-white {
	display: none;
}
.top-bar-fixed .top-bar-mobile-nav-grey {
	display: block;
}

.main-content {
	display: block;
	position: relative;
	z-index: 2;
}

/* --- footer section --- */
.footer-section {
	position: relative;
	display: block;
	background-color: #2b2d2e;
	padding: 50px 20px 10px 20px;
	z-index: 4;
}

.footer-phone {
	display: block;
	margin-bottom: 30px;
	font-size: 18px;
	font-weight: 200;
	color: #fafafa;
	text-align: center;
}
.footer-phone a {
	color: #10ad74;
	font-weight: 700;
	text-decoration: none;
}
.social-buttons {
	display: block;
	text-align: center;
	padding-bottom: 50px;
}
.social-buttons a {
	display: inline-block;
	vertical-align: middle;
	padding: 0px 12px;
}
.social-buttons .social-grey {
	display: block;
}
.social-buttons .social-white {
	display: none;
}
.social-buttons a:hover .social-grey {
	display: none;
}
.social-buttons a:hover .social-white {
	display: block;
}

.footer-inner {
	display: block;
	margin: 0px auto 50px auto;
	width: 100%;
	max-width: 800px;
	font-size: 0px;
}
.footer-column {
	display: inline-block;
	vertical-align: top;
	width: 33.3%;
	text-align: left;
}
.footer-address {
	text-align: right;
	width: 33.3%;
}
.footer-column-title {
	display: block;
	font-size: 16px;
	font-weight: 700;
	color: #ffffff;
	padding-bottom: 20px;
}
.footer-column-link,
.footer-column span {
	display: block;
	padding: 2px 0px;
	font-size: 14px;
	font-weight: 400;
	color: #bcbcbc;
	text-decoration: none;
}
.footer-column-link:hover {
	color: #ffffff;
}
.footer-bottom {
	display: block;
	margin: auto;
	text-align: center;
	color: #c1c1c1;
	font-size: 14px;
	font-weight: 400;
}
.footer-bottom div {
	display: block;
	padding: 2px;
}
.footer-bottom a {
	color: #557b8e;
	text-decoration: none;
}
.footer-bottom a:hover {
	color: #79a1b6;
}

.ci-popup-section {
	position: fixed;
	top: 0px;
	left: 0px;
	display: none;
	width: 100%;
	height: 100%;
	z-index: 9999;
}
.ci-popup-shadowbox {
	position: absolute;
	display: block;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background-color: #000000;
	opacity: 0.8;
}
.ci-popup {
	position: absolute;
	display: inline-block;
	top: 50%;
	left: 50%;
	box-sizing: border-box;
	border-radius: 3px;
	width: 95%;
	max-width: 500px;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	background-color: #ffffff;
}
.ci-popup-top {
	display: block;
	padding: 20px;
	font-size: 30px;
	font-weight: 400;
	text-align: center;
	color: #525252;
	border-bottom: solid 1px #e5e5e5;
}
.ci-popup-middle {
	display: block;
	padding: 20px;
	text-align: center;
}
.ci-popup-middle img {
	display: inline-block;
	width: 100%;
	max-width: 300px;
}
.ci-popup-bottom {
	display: block;
	padding: 20px;
	text-align: center;
}
.ci-popup-btn {
	display: inline-block;
	vertical-align: middle;
	background-color: #d4d4d4;
	color: #808080;
	box-sizing: border-box;
	font-weight: 700;
	padding: 12px 20px;
	border-radius: 3px;
	cursor: pointer;
	min-width: 140px;
}
.ci-popup-btn-yes {
	background-color: #1394d6;
	color: #ffffff;
}

.ci-popup-btn-divider {
	display: inline-block;
	vertical-align: middle;
	width: 1px;
	height: 40px;
	background-color: #e5e5e5;
	margin: 0px 20px;
}

@media screen and (max-width: 723px), screen and (max-device-width: 723px) {
	.nav-home-btn {
		padding: 10px;
	}
	.nav-home-btn img {
		width: 140px;
	}

	.nav-menu-item {
		display: none;
	}
	.top-bar-mobile-nav-btn {
		display: inline-block;
		vertical-align: middle;
		box-sizing: border-box;
		padding: 18px;
	}
	.top-bar-mobile-nav-btn img {
		width: 22px;
	}
	.mobile-nav-menu {
		position: absolute;
		display: none;
		top: 10px;
		right: 10px;
		text-align: left;
		background-color: #ffffff;
		border-radius: 3px;
		box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
	}
	.mobile-nav-menu-item {
		display: block;
		padding: 20px 30px;
		font-size: 14px;
		font-weight: 400;
		color: #525252;
	}

	.ci-popup-top {
		font-size: 24px;
	}
	.ci-popup-btn {
		font-size: 12px;
		min-width: 100px;
	}
	.ci-popup-btn-divider {
		margin: 0px 8px;
	}
}
