* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body {
	color: #333;
	overflow-x: hidden;
	overflow-y: auto;
	line-height: 1.5;
	font-family: "Open Sans", sans-serif;
	font-weight: 400;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Nunito", sans-serif;
	font-weight: 600;
}
ul {
	list-style-type: none;
	padding: 0 !important;
}
a {
	text-decoration: none;
}
.nav {
	background: #f6f9ff;
	z-index: 1000;
}
nav a {
	color: inherit;
}
.nav-item.active {
	font-weight: bold;
}
.hero-section {
	min-height: 400px;
}
.hero-section .hero-img img {
	min-width: 105%;
}
/* FAQs PAGE */
.faq-hero-section {
	width: 100%;
	min-height: 300px;
}


/* SUPPORT PAGE */
.support-hero-section {
	width: 100%;
	min-height: 400px;
	background: url('../images/img-3.jpg') no-repeat center center/cover;
}
.support-hero-section::after {
	content: '';
	background: rgba(0, 0, 0, 0.5);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}
.form-control::placeholder {
	color: #999;
}
/* MEDIA QUERIES */
@media (max-width: 991px) {
	nav .navbar-nav .nav-item {
		margin: 5px 0 !important;
	}
}
@media (max-width: 767px) {
	.support-hero-section form {
		width: 75% !important;
	}
}