body {
	background: #394750;
	font-family: 'Open Sans';
}

/*Main Navbar Section*/
.main-navbar {
	background: #394750;
	color: #FFF;
}

footer .footer-brand,
.main-navbar .navbar-brand {
	padding: 15px 0;
	font-size: 24px;
	font-family: 'Montserrat';
	font-weight: bolder;
	letter-spacing: .5;
	color: #FFF;
}

footer .footer-brand span,
.main-navbar .navbar-brand span {
	color: #F6C80C;
}
.main-navbar .navbar-nav > * {
	display: inline-block;
	vertical-align: middle;
}
.main-navbar .navbar-toggler {
	outline: none;
}
.main-navbar .navbar-toggler:focus,
.main-navbar .navbar-toggler:active {
	outline: none;
	border: none;
}
.main-navbar .navbar-toggler i {
	color: #FFF;
}
.main-navbar .nav-link {
	position: relative;
	font-family: 'Montserrat';
	font-weight: 500;
	color: #FFF;

	margin: 0 10px;
}
.main-navbar .nav-link::after {
	position: absolute;
	top: 50%;
	right: -10px;
	margin-top: -2.5px;

	background: #F6C80C;
	width: 5px;
	height: 5px;
	border-radius: 100%;
	content: " ";
}
.main-navbar .nav-item:last-child .nav-link {
	margin-right: 0;
}
.main-navbar .nav-item:last-child .nav-link::after {
	display: none;
}
.main-navbar .active .nav-link {
	color: #F6C80C;
	font-weight: bold;
}
.main-navbar .nav-item .separator {
	background: #F6C80C;
	width: 5px;
	height: 5px;
	border-radius: 100%;
}
/*Main Navbar Section End*/

/*Footer Section*/
footer {
	background: #2F3841;
	padding: 15px 0;
}
/*Footer Section End*/

/*Number Cards Section*/
.number-card {
	background: #FFF;
	padding: 20px;
	margin: 20px 0;

	background: #FFF;
	box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.25);
	border-radius: 4px;

	font-family: 'Montserrat';
}
.number-card .number-series {
	display: block;
	font-size: 14px;
	color: #777;
}
.number-card .number-series span {
	font-weight: bold;
	color: darkorange;
}
.number-card .number-title {
	display: block;
	margin: 0;

	font-family: 'NTR';
	font-weight: bold;
	font-size: 26px;
	color: #333;
}
.number-card .number-title span {
	font-family: 'NTR';
	color: #777;
}
.number-card .number-content::after {
	content: "";
	clear: both;
	display: table;
}
.number-card .number-content > * {
	display: inline-block;
	vertical-align: middle;
}
.number-card .number-content .number-price {
	color: orange;
	font-weight: bold;
	font-size: 18px;
}
.number-card .number-content .btn {
	float: right;
	background: #1AA39C;
	color: #FFF;
	padding: 5px 15px;
	border-radius: 4px;
	font-size: 12px;
	text-transform: uppercase;
}
/*Number Cards Section End*/

/*Landing Section*/
section.landing {
	background: #F6C80C;
	overflow: hidden;
}
section.landing .landing-content {
	padding: 100px 0;
	padding-right: 30px;

	color: #FFF;
}
section.landing .landing-content h1 {
	font-family: 'Montserrat';
	font-size: 40px;
	font-weight: bold;
	margin: 0;
}
section.landing .landing-content hr {
	margin: 15px 0;
	border-top: 5px solid #303840;
	border-radius: 1000px;

	max-width: 300px;
}
section.landing .landing-content h2 {
	color: #303840;
	font-family: 'Montserrat';
	font-size: 24px;
	font-weight: 500;
	margin: 0;
	margin-bottom: 30px;
}
section.landing .landing-content .btn {
	padding: 10px 30px;
	background: none;

	border: 2px solid #FFF;
	border-radius: 1000px;

	text-transform: uppercase;
	color: #FFF;
}
section.landing .landing-image {
	position: relative;
	text-align: right;
}
section.landing .landing-image img {
	display: inline-block;
	width: 100%;
	max-width: 350px;
}
/*Landing Section End*/

/*Medium devices (Tablets, 992px and down)*/
@media (max-width: 992px) {
	section.landing .landing-content {
		padding: 30px 0;
	}
	section.landing .landing-image img {
		max-width: 300px;
	}
}
/*Small devices (Phones, 768px and down)*/
@media (max-width: 768px) {
	section.landing .landing-content {
		padding: 50px 0;
		text-align: center;
	}
	section.landing .landing-content hr {
		margin: 15px auto;
	}
	section.landing .landing-image {
		position: relative;
		height: 50px;
	}
	section.landing .landing-image img {
		position: absolute;
		left: 50%;
		bottom: -240px;

		margin-left: -150px;
		width: 300px;
	}

	.main-navbar {
		position: relative;
	}
	.main-navbar .nav-link::after {
		display: none;
	}
	.main-navbar .navbar-collapse {
		position: relative;
		z-index: 1;
	}
	.main-navbar .navbar-overlay {
		position: absolute;
		top: 70px;
		bottom: 0;
		left: 0;
		right: 0;
		background: rgba(0,0,0, .5);
		z-index: 0;
	}
	.main-navbar .navbar-toggler.collapsed ~ .navbar-overlay {
		top: 82px;
		-webkit-transition: top 0.25s ease-out;
		-o-transition: top 0.25s ease-out;
		transition: top 0.25s ease-out;
	}

	.number-card {
		padding: 10px;
		margin: 10px 0;
	}
	.number-card .number-title {
		font-size: 22px;
	}
	.number-card .number-content .number-price {
		font-size: 16px;
	}

}
