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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* CLEARFIX */

.clearfix:before,
.clearfix:after {
    content:"";
    display:table;
}
.clearfix:after {
    clear:both;
}
/* For IE 6/7 (trigger hasLayout) */
.clearfix {
    zoom:1;
}

/* STYLE */

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

body {
	font-size: 16px;
	line-height: 1.35;
	color: #333;
	background: #fff;
	font-family: 'Poppins', sans-serif;
}

.inner {
	max-width: 1170px;
	padding: 0 15px;
	margin: 0 auto;
}

.header {
	z-index: 200;
	position: relative;
	background: #f6f6f6;
}

.main-header {
	border-bottom: 2px solid #fff;
	font-size: 0;
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	transition: all 500ms ease;
}

.main-header.sticky {
	z-index: 5000;
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	width: 100%;
	background: #fff;
	-webkit-box-shadow:0 0 4px 0 rgba(0,0,0,.2);
	-moz-box-shadow:0 0 4px 0 rgba(0,0,0,.2);
	box-shadow:0 0 4px 0 rgba(0,0,0,.2);
}

.logo-section {
	width: 32%;
	display: inline-block;
	vertical-align: middle;
}

.logo-image {
	display: block;
	width: 203px;
}

.logo-image img {
	display: block;
	width: 100%;
	height: auto;
	margin: 0 auto;
}

.menu-section {
	width: 68%;
	display: inline-block;
	vertical-align: middle;
	text-align: right;
}

.menu-section ul, .menu-section ul li {
	display: inline-block;
	vertical-align: middle;
}

.menu-section ul li a {
	display: block;
	padding: 34px 12px;
	color: #888;
	text-decoration: none;
	font-weight: 700;
	text-transform: uppercase;
	font-size: 0.875rem;
}

.menu-section ul li a:hover {
	color: #2196f3;
}

.mobile-menu-background {
	display: none;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(0,0,0,0.3);
	z-index: 20;
}

body.menu-opened {
	overflow-y: hidden;
}

.menu-opened .mobile-menu-background {
	display: block;
}

.open-menu {
	color: #2196f3;
	font-size: 1.375rem;
	border: 0;
	background: transparent;
	cursor: pointer;
	position: absolute;
	top: 0;
	right: 0;
	width: 60px;
	height: 60px;
	display: none;
}

.menu-section .top-cta {
	margin-left: 10px;
	display: inline-block;
	vertical-align: middle;
	color: #fff;
	font-weight: 700;
	font-size: 1.125rem;
	text-decoration: none;
	background: #2196f3;
	padding: 8px 18px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
	-webkit-transition: all 250ms ease;
	-moz-transition: all 250ms ease;
	transition: all 250ms ease;
}

.welcome-area {
	padding: 85px 0;
	background: #f6f6f6;
	overflow: hidden;
	position: relative;
	font-size: 0;
}

.welcome-area:after {
	content: "";
	display: block;
	height: 100%;
	width: 75%;
	position: absolute;
	z-index: 1;
	top: 0;
	right: -30%;
	background: #2196f3;
	transform: skewX(-35deg);
}

.welcome-left {
	display: inline-block;
	vertical-align: middle;
	position: relative;
	z-index: 5;
	width: 55%;
}

.welcome-left h1 {
	font-weight: 700;
	line-height: 1.2;
	color: #363636;
	font-size: 3.25rem;
	text-transform: capitalize;
}

.welcome-left p {
	margin: 15px 0;
	font-weight: 300;
	font-size: 1.25rem;
	color: #666;
	line-height: 1.5;
	width: 85%;
}

.welcome-left a, .get-product-content a, .bottom-cta-btn a {
	font-size: 1.25rem;
	font-weight: 700;
	display: inline-block;
	text-transform: capitalize;
	color: #fff;
	background: #2196f3;
	padding: 14px 25px;
	text-decoration: none;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
	letter-spacing: 1px;
	-webkit-transition: all 250ms ease;
	-moz-transition: all 250ms ease;
	transition: all 250ms ease;
}

.get-product-content a {
	margin-top: 25px;
	border: 2px solid #2196f3;
	padding: 12px 23px;
}

.welcome-left a:hover, .menu-section .top-cta:hover, .get-product-content a:hover, .bottom-cta-btn a:hover {
	background: #fff;
	color: #2196f3;
}

.welcome-left a i {
	margin-right: 10px;
	font-size: 1.5rem;
}

.welcome-left a * {
	display: inline-block;
	vertical-align: middle;
}

.welcome-right {
	display: inline-block;
	vertical-align: middle;
	width: 45%;
	position: relative;
	z-index: 5;
	text-align: right;
}

.welcome-right img {
	display: inline-block;
	height: auto;
	max-width: 100%;
}

.features-area {
	padding: 85px 0;
}

.area-header h2 {
	max-width: 510px;
	margin: 0 auto 15px;
	font-size: 2rem;
	text-transform: uppercase;
	text-align: center;
	font-weight: 700;
	color: #363636;
}

.blue-da-ba-de {
	color: #2196f3;
}

.area-header p {
	max-width: 820px;
	margin: 0 auto;
	line-height: 1.6;
	color: #888;
	font-weight: 300;
	text-align: center;
	font-size: 1.25rem;
	margin-bottom: 15px;
}

.area-header p:last-child {
	margin-bottom: 0;
}

.bold {
	font-weight: 700;
}

.product-feature-box {
	font-size: 0;
	margin-top: 30px;
}

.product-feature-box-image, .product-feature-box-content {
	display: inline-block;
	vertical-align: middle;
	width: 50%;
}

.product-feature-box-image img {
	max-width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;
}

.feature-box {
	display: inline-block;
	vertical-align: middle;
	width: 50%;
	padding: 0 15px;
}

.feature-box.top-box {
	margin-bottom: 30px;
}

.feature-box-content {
	padding: 0 10px;
	height: 196px;
	line-height: 190px;
	width: 100%;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	border: 3px solid #f6f6f6;
	font-size: 1rem;
	text-align: center;
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	transition: all 500ms ease;
}

.feature-box-content:hover {
	border-color: #2196f3;
}

.feature-box-inner {
	display: inline-block;
	vertical-align: middle;
	line-height: 1.4;
}

.feature-box-inner i {
	font-size: 1.875rem;
	color: #2196f3;
}

.feature-box-inner p {
	font-weight: 500;
	font-size: 1.125rem;
	text-transform: capitalize;
	letter-spacing: 0.5px;
	margin: 10px 0;
}

.feature-box-inner span {
	display: block;
	color: #888;
	font-weight: 300;
}

.product-area {
	background: #f6f6f6;
	padding: 85px 0;
	text-align: center;
}

.product-area h2 {
	font-size: 2rem;
	font-weight: 700;
	text-transform: uppercase;
	max-width: 768px;
	margin: 0 auto;
}

.product-area .product-txt {
	font-size: 1.25rem;
	max-width: 820px;
	font-weight: 300;
	letter-spacing: 0.5px;
	margin: 25px auto 0;
	color: #666;
}

.product-area-2 {
	font-size: 0;
	background: #2196f3;
}

.product-area-2-image {
	min-height: 420px;
	border-right: 15px solid #fff;
	width: 50%;
	display: inline-block;
	vertical-align: middle;
	background: #fff url(2.jpg) no-repeat center;
	background-size: cover;
}

.product-area-2-image img {
	display: block;
	width: 100%;
	height: auto;
	margin: 0 auto;
}

.product-area-2-content {
	padding: 0 15px 0 45px;
	width: 50%;
	display: inline-block;
	vertical-align: middle;
	color: #fff;
}

.product-area-2-content-inner {
	max-width: 768px;
	padding: 20px 0;
}

.product-area-2-content-inner h2 {
	font-size: 2rem;
	font-weight: 700;
}

.product-area-2-content-inner p {
	margin-top: 15px;
	line-height: 1.5;
	font-weight: 300;
	font-size: 1.125rem;
}

.product-area-2-content-inner a.cta-btn {
	font-size: 1rem;
	padding: 10px 16px;
	background: #fff;
	display: inline-block;
	margin-top: 15px;
	border: 1px solid #ccc;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
	color: #888;
	font-weight: 500;
	text-decoration: none;
}

.product-area-3, .product-area-5 {
	text-align: center;
	padding: 85px 0;
}

.area-headline {
	font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    max-width: 768px;
    margin: 0 auto 25px;
}

.area-subheadline {
	font-size: 1.75rem;
	font-weight: 700;
	max-width: 768px;
	margin: 25px auto 0;
	text-transform: uppercase;
}

.area-image {
	display: block;
	max-width: 600px;
	width: 100%;
	height: auto;
	margin: 0 auto;
}

.area-txt {
	font-size: 1.25rem;
	max-width: 820px;
	margin: 25px auto 0;
	color: #888;
	font-weight: 300;
	letter-spacing: 0.5px;
}

.product-area-4 {
	background: #f6f6f6;
	padding: 85px 0;
	text-align: center;
}

.product-area-4 .area-txt {
	color: #666;
}

.middle-list-items {
	font-size: 0;
	margin-top: 50px;
	text-align: center;
}

.item-list {
	padding: 0 15px;
	width: 33.3333%;
	vertical-align: top;
	display: inline-block;
}

.item-list h4 {
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: 0.5px;
	margin-bottom: 10px;
}

.item-list img {
	max-width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;
}

.item-list p {
	font-size: 1.125rem;
	margin-top: 15px;
	line-height: 1.5;
	color: #888;
	font-weight: 300;
}

.options-area {
	background: #f6f6f6;
	padding: 85px 0;
}

.options-outer-box {
	margin-top: 30px;
	font-size: 0;
}

.option-box {
	display: inline-block;
	vertical-align: middle;
	width: 33.3333%;
	padding: 0 15px;
}

.top-option-box {
	padding-bottom: 30px;
}

.option-box-inner {
	position: relative;
	padding-left: 49px;
	font-size: 0;
	border: 1px solid #ddd;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	overflow: hidden;
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	transition: all 500ms ease;
}

.option-box-icon {
	position: absolute;
	top: 50%;
	left: 0;
	margin-top: -15px;
	width: 49px;
	text-align: center;
}

.option-box-icon i {
	font-size: 1.25rem;
	color: #888;
	width: 28px;
	height: 28px;
	line-height: 28px;
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	transition: all 500ms ease;
}

.option-box-content {
	min-height: 160px;
	border-left: 1px solid #ddd;
	background: #fff;
	padding: 15px;
	line-height: 130px;
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	transition: all 500ms ease;
}

.option-box-content-inner {
	line-height: 1.35;
	vertical-align: middle;
	display: inline-block;
}

.option-box-content-inner h3 {
	font-size: 1.125rem;
	margin-bottom: 15px;
	font-weight: 500;
	letter-spacing: 0.5px;
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	transition: all 500ms ease;
}

.option-box-content-inner p {
	font-size: 1rem;
	color: #888;
	font-weight: 300;
}

.option-box-inner.active {
	background: #2196f3;
	border-color: #2196f3;
}

.option-box-inner.active .option-box-icon i {
	color: #fff;
}

.option-box-inner.active .option-box-content {
	border-color: #2196f3;
}

.option-box-inner.active .option-box-content-inner h3 {
	color: #2196f3;
}

.get-product {
	padding: 85px 15px;
	font-size: 0;
}

.get-product .inner {
	padding: 30px;
	background: #f6f6f6;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

.get-product-content {
	width: 66.6666%;
	display: inline-block;
	vertical-align: middle;
	padding-right: 30px;
}

.get-product-content > h2 {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 15px;
	max-width: 520px;
}

.get-product-content > p {
	color: #888;
	font-size: 1.125rem;
	margin: 10px 0 15px;
	font-weight: 300;
}

.get-product-content ul li {
	font-size: 1.125rem;
	color: #363636;
	font-weight: 500;
	margin-bottom: 25px;
	position: relative;
	padding-left: 70px;
}

.get-product-content-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 60px;
	height: auto;
}

.get-product-content-title {
	font-weight: 700;
	font-size: 1.25rem;
}

.get-product-content-text {
	color: #888;
	font-weight: 300;
}

.get-product-content ul li:last-child {
	margin-bottom: 0;
}

.get-product-image {
	width: 33.3333%;
	display: inline-block;
	vertical-align: middle;
	text-align: center;
}

.get-product-image img {
	max-width: 260px;
	width: 100%;
	height: auto;
	margin: 0 auto;
	display: block;
}

.reviews {
	border-top: 20px solid #2196f3;
	padding: 85px 0;
}

.reviews .area-header {
	margin-bottom: 55px;
}

.testimonial {
	max-width: 555px;
	margin: 0 auto;
	position: relative;
	padding: 30px 30px 30px 145px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	background: #f6f6f6;
}

.testimonial-image {
	position: absolute;
	top: 30px;
	left: 30px;
	width: 100px;
}

.testimonial-image img {
	display: block;
	margin: 0 auto;
	width: 100px;
	height: 100px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	padding: 3px;
	border: 3px solid #ddd;
}

.testimonial-rating {
	margin-top: 15px;
	text-align: center;
	font-size: 0;
}

.testimonial-rating i {
	color: #ff9800;
	font-size: 0.625rem;
	display: inline-block;
	vertical-align: middle;
}

.testimonial-comment {
	line-height: 1.5;
	color: #888;
	font-weight: 300;
	margin-bottom: 15px;
}

.testimonial-name {
	color: #363636;
	font-weight: 500;
	margin-bottom: 5px;
	text-transform: uppercase;
	font-size: 1.125rem;
	letter-spacing: 1px;
}

.testimonial-city {
	font-size: 0.875rem;
	color: #2196f3;
	font-weight: 300;
	letter-spacing: 1px;
}

.owl-dots {
	margin-top: 20px;
	text-align: center;
}

.owl-dot {
	-webkit-border-radius: 50% !important;
	-moz-border-radius: 50% !important;
	border-radius: 50% !important;
	background: #ddd !important;
	height: 15px;
	width: 15px;
	margin: 0 3px;
	display: inline-block;
	vertical-align: middle;
}

.owl-dot.active {
	background: #2196f3 !important;
}

.bottom-cta-btn {
	text-align: center;
	padding-bottom: 85px;
}

.bottom-cta-btn a {
	border: 2px solid #2196f3;
	padding: 12px 23px;
}

.footer {
	text-align: center;
	padding: 50px 0;
	background: #f6f6f6;
}

.footer ul {
	font-size: 0;
}

.footer ul li {
	display: inline-block;
	vertical-align: middle;
	margin: 0 7px;
}

.footer ul li a {
	font-size: 0.875rem;
	color: #ccc0c0;
	font-weight: 300;
	text-decoration: none;
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	transition: all 500ms ease;
}

.footer ul li a:hover {
	color: #2196f3;
}

.footer p {
	margin-top: 15px;
	color: #888;
	font-weight: 300;
}

.preloader {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: #fff;
	z-index: 50000;
}

.cssload-loader {
	width: 48px;
	height: 48px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	margin: 3em;
	display: inline-block;
	position: absolute;
	vertical-align: middle;
	background: #2196f3;
	z-index: 9;
	top: 50%;
	margin-top: -24px;
	left: 50%;
	margin-left: -24px;
	animation-name: cssload-loader;
	-o-animation-name: cssload-loader;
	-ms-animation-name: cssload-loader;
	-webkit-animation-name: cssload-loader;
	-moz-animation-name: cssload-loader
}

.cssload-loader, .cssload-loader:before, .cssload-loader:after {
	animation: 1.15s infinite ease-in-out;
	-o-animation: 1.15s infinite ease-in-out;
	-ms-animation: 1.15s infinite ease-in-out;
	-webkit-animation: 1.15s infinite ease-in-out;
	-moz-animation: 1.15s infinite ease-in-out
}

.cssload-loader:before,.cssload-loader:after {
	width: 100%;
	height: 100%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	position: absolute;
	top: 0;
	left: 0
}

.cssload-loader {
	animation-name: cssload-loader;
	-o-animation-name: cssload-loader;
	-ms-animation-name: cssload-loader;
	-webkit-animation-name: cssload-loader;
	-moz-animation-name: cssload-loader
}

@keyframes cssload-loader {
	from {
		-webkit-transform: scale(0);
		transform: scale(0);
		opacity: 1;
		-ms-filter: "alpha(opacity=100)"
	}
	to {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 0;
		-ms-filter: "alpha(opacity=0)"
	}
}

@-webkit-keyframes cssload-loader {
	from {
		-webkit-transform: scale(0);
		opacity: 1;
		-ms-filter: "alpha(opacity=100)"
	}
	to {
		-webkit-transform: scale(1);
		opacity: 0;
		-ms-filter: "alpha(opacity=0)"
	}
}

@media screen and (max-width: 1023px) {
	.welcome-area, .features-area, .product-area, .product-area-3, .product-area-4, .product-area-5, .options-area, .reviews {
		padding: 50px 0;
	}

	.welcome-left h1 {
		font-size: 2.625rem;
		line-height: 1.1;
	}

	.welcome-left p {
		font-size: 1.125rem;
	}

	.welcome-left a, .get-product-content a {
		font-size: 1.125rem;
	}

	.welcome-right img {
		max-width: 270px;
	}

	.product-feature-box-image, .product-feature-box-content {
		width: 100%;
		margin: 20px auto 0;
		display: block;
	}

	.feature-box-content {
		height: 176px;
		line-height: 170px;
	}

	.product-area-2-image {
		min-height: 280px;
	}

	.product-area-2-image, .product-area-2-content {
		padding: 0 15px;
		width: 100%;
		border: 0;
	}

	.product-area-2-content-inner h2 {
		font-size: 1.75rem;
	}

	.options-outer-box {
		margin-top: 10px;
	}

	.option-box {
		width: 50%;
		padding-bottom: 0 !important;
		padding-top: 30px;
	}

	.get-product {
		padding: 50px 15px;
	}

	.bottom-cta-btn {
		padding-bottom: 50px;
	}
}

@media screen and (max-width: 767px) {
	.welcome-area, .features-area, .product-area, .product-area-3, .product-area-4, .product-area-5, .options-area, .reviews {
		padding: 40px 0;
	}

	.logo-section {
		width: 75%;
		margin-top: 5px;
	}

	.open-menu {
		display: block;
	}

	.menu-section .top-cta {
		display: none;
	}

	.menu-section {
		text-align: left;
	}

	.menu-section ul {
		background: #2196f3;
		position: absolute;
		display: none;
		width: 100%;
		top: 62px;
		left: 0;
		z-index: 100;
	}

	.menu-section ul li {
		display: block;
		border-bottom: 1px solid #fff;
		width: 100%;
	}

	.menu-section ul li:last-child {
		border-bottom: 0;
	}

	.menu-section ul li a {
		color: #fff;
		padding: 20px 10px;
	}

	.menu-section ul li a:hover {
		color: #fff;
	}

	.header {
		height: 62px;
	}

	.main-header {
		height: 62px;
	}

	.welcome-left {
		display: block;
		width: 100%;
		text-align: center;
		margin-bottom: 20px;
	}

	.welcome-left h1 {
		font-size: 2.125rem;
	}

	.welcome-left p {
		width: 100%;
	}

	.welcome-area:after {
		bottom: 0;
		top: auto;
		height: 25%;
		width: 100%;
		right: 0;
		transform: skewX(0deg);
	}

	.welcome-right {
		display: block;
		width: 100%;
		text-align: center;
	}

	.welcome-right img {
		max-width: 230px;
	}

	.area-header h2 {
		font-size: 1.75rem;
	}

	.area-header p {
		font-size: 1.125rem;
	}

	.product-feature-box-image img {
		max-width: 260px;
	}

	.feature-box {
		padding: 0;
		width: 100%;
		margin-top: 30px;
		margin-bottom: 0 !important;
	}

	.feature-box:first-child {
		margin-top: 0;
	}

	.product-area h2 {
		font-size: 1.75rem;
	}

	.product-area .product-txt {
		font-size: 1.125rem;
	}

	.product-area-2-content-inner h2 {
		font-size: 1.625rem;
	}

	.area-headline {
		font-size: 1.75rem;
	}

	.area-txt {
		font-size: 1.125rem;
	}

	.item-list {
		width: 100%;
		padding: 15px;
	}

	.item-list img {
		max-width: 240px;
	}

	.option-box {
		width: 100%;
	}

	.options-outer-box {
		margin: 0;
	}

	.option-box {
		padding: 20px 0 0;
	}

	.get-product .inner {
		text-align: center;
		padding: 20px;
	}

	.get-product-content, .get-product-image {
		width: 100%;
		padding: 0;
	}

	.get-product-content ul li {
		padding: 0;
	}

	.get-product-content > h2 br {
		display: none;
	}

	.get-product-content-img {
		position: relative;
		width: 100px;
		top: auto;
		left: auto;
		display: block;
		margin: 0 auto 15px;
	}

	.get-product-content-title {
		margin-bottom: 20px;
	}

	.get-product-image {
		margin-top: 20px;
	}

	.get-product-image img {
		max-width: 220px;
	}

	.testimonial {
		padding: 20px;
	}

	.testimonial-image {
		position: relative;
		top: auto;
		left: auto;
		margin: 0 auto 20px;
	}

	.testimonial-image {
		width: 130px;
	}

	.testimonial-image img {
		width: 130px;
		height: 130px;
	}

	.testimonial-rating i {
		font-size: 0.75rem;
	}

	.bottom-cta-btn {
		padding-bottom: 40px;
	}
}

@media screen and (min-width: 768px) {
	.menu-section ul {
		display: inline-block !important;
	}
}