/*!
Theme Name: qp
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: qp
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

qp is based on Underscores http://underscores.me/, (C) 2012-2016 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal http://necolas.github.io/normalize.css/
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
	## Posts and pages
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
html {
	font-family: sans-serif;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}

body {
	margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
	display: block;
}

audio,
canvas,
progress,
video {
	display: inline-block;
	vertical-align: baseline;
}

audio:not([controls]) {
	display: none;
	height: 0;
}

[hidden],
template {
	display: none;
}

a {
	background-color: transparent;
}

a:active,
a:hover {
	outline: 0;
}

abbr[title] {
	border-bottom: 1px dotted;
}

b,
strong {
	font-weight: bold;
}

dfn {
	font-style: italic;
}

h1 {
	font-size: 2em;
	margin: 0.67em 0;
}

mark {
	background: #ff0;
	color: #000;
}

small {
	font-size: 80%;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

img {
	border: 0;
}

svg:not(:root) {
	overflow: hidden;
}

figure {
	margin: 1em 40px;
}

hr {
	box-sizing: content-box;
	height: 0;
}

pre {
	overflow: auto;
}

code,
kbd,
pre,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
	color: inherit;
	font: inherit;
	margin: 0;
}

button {
	overflow: visible;
}

button,
select {
	text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button;
	cursor: pointer;
}

button[disabled],
html input[disabled] {
	cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

input {
	line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

fieldset {
	border: 1px solid #c0c0c0;
	margin: 0 2px;
	padding: 0.35em 0.625em 0.75em;
}

legend {
	border: 0;
	padding: 0;
}

textarea {
	overflow: auto;
}

optgroup {
	font-weight: bold;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

td,
th {
	padding: 0;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
optgroup,
textarea {
	color: #404040;
	font-family: sans-serif;
	font-size: 16px;
	font-size: 1rem;
	line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
	clear: both;
}

p {
	margin-bottom: 1.5em;
}

dfn, cite, em, i {
	font-style: italic;
}

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: #eee;
	font-family: "Courier 10 Pitch", Courier, monospace;
	font-size: 15px;
	font-size: 0.9375rem;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code, kbd, tt, var {
	font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
	font-size: 15px;
	font-size: 0.9375rem;
}

abbr, acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark, ins {
	background: #fff9c0;
	text-decoration: none;
}

big {
	font-size: 125%;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
	box-sizing: border-box;
}

*,
*:before,
*:after {
	/* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
	box-sizing: inherit;
}

body {
	background: #fff;
	/* Fallback for when there is no custom background color defined. */
}

hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul, ol {
	margin: 0 0 1.5em 3em;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

dt {
	font-weight: bold;
}

dd {
	margin: 0 1.5em 1.5em;
}

img {
	height: auto;
	/* Make sure images are scaled correctly. */
	max-width: 100%;
	/* Adhere to container width. */
}

figure {
	margin: 1em 0;
	/* Extra wide images within figure tags don't overflow the content area. */
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: 1px solid;
	border-color: #ccc #ccc #bbb;
	border-radius: 3px;
	background: #e6e6e6;
	color: rgba(0, 0, 0, 0.8);
	font-size: 12px;
	font-size: 0.75rem;
	line-height: 1;
	padding: .6em 1em .4em;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	border-color: #ccc #bbb #aaa;
}

button:active, button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
	border-color: #aaa #bbb #bbb;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	color: #666;
	border: 1px solid #ccc;
	border-radius: 3px;
	padding: 3px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
	color: #111;
}

select {
	border: 1px solid #ccc;
}

textarea {
	width: 100%;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
	color: royalblue;
}

a:visited {
	color: purple;
}

a:hover, a:focus, a:active {
	color: midnightblue;
}

a:focus {
	outline: thin dotted;
}

a:hover, a:active {
	outline: 0;
}

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
.main-navigation {
    clear: both;
    display: block;
    float: left;
    width: 100%;
    padding: 20px 0 12px;
}

.main-navigation ul {
	display: none;
	list-style: none;
	margin: 0;
	padding-left: 0;
}

.main-navigation ul ul {
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	float: left;
	position: absolute;
	top: 100%;
	left: -999em;
	z-index: 99999;
}

.main-navigation ul ul ul {
	left: -999em;
	top: 0;
}

.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
	left: 100%;
}

.main-navigation ul ul a {
	width: 200px;
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
	left: auto;
}

.main-navigation li {
	float: left;
	position: relative;
}

.main-navigation a {
	display: block;
	text-decoration: none;
}

/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
	display: block;
}

@media screen and (min-width: 37.5em) {
	.menu-toggle {
		display: none;
	}
	.main-navigation ul {
		display: block;
	}
}

.site-main .comment-navigation, .site-main
.posts-navigation, .site-main
.post-navigation {
	margin: 0 0 1.5em;
	overflow: hidden;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
	float: left;
	width: 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
	float: right;
	text-align: right;
	width: 50%;
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
	word-wrap: normal !important;
	/* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
	/* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
	outline: 0;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}

.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
	content: "";
	display: table;
	table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
	clear: both;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
	margin: 0 0 1.5em;
	/* Make sure select elements fit in widgets. */
}

.widget select {
	max-width: 100%;
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
	display: block;
}

.hentry {
	margin: 0 0 1.5em;
}

.updated:not(.published) {
	display: none;
}

.page-content,
.entry-content,
.entry-summary {
	margin: 1.5em 0 0;
}

.page-links {
	clear: both;
	margin: 0 0 1.5em;
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}

/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
	/* Theme Footer (when set to scrolling) */
	display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
	max-width: 100%;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
	display: inline-block;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

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

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
	margin-bottom: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	vertical-align: top;
	width: 100%;
}

.gallery-columns-2 .gallery-item {
	max-width: 50%;
}

.gallery-columns-3 .gallery-item {
	max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
	max-width: 25%;
}

.gallery-columns-5 .gallery-item {
	max-width: 20%;
}

.gallery-columns-6 .gallery-item {
	max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
	max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
	max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
	max-width: 11.11%;
}

.gallery-caption {
	display: block;
}






/*@@@@@@@@@@@@@@@@@@

STYLES ADDED BY ARIF

@@@@@@@@@@@@@@@@@@@@*/







body,
p,
h1,h2,h3,h4,h5,h6,
span,
a,
li,
div{
    font-family: 'Lato', sans-serif;
}
.text-white{
    color: #fff;
}
.display-inline-block{
    display: inline-block;
}

header#masthead .site-branding img {
    margin-top: 0.65rem;
}
header#masthead span.email,
header#masthead span.email a,
header#masthead span.phone {
    font-size: 1.2rem;
    font-weight: 700;
}
header#masthead span.email a,
header#masthead span.phone{
    color: #5e5e5e;
    text-decoration: none;
}
header#masthead span.email .fa,
header#masthead span.phone .fa{
    color: #36cf40;
    margin-right: 10px;
}
header#masthead a.btn.btn-secondary {
    background: #36cf40;
    border: none;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 500;
    padding: 0.7rem 1.5rem;
    text-transform: capitalize;
}
ul#primary-menu > li a {
    color: #5e5e5e;
    font-size: 1.2rem;
}

#menu-item-27 a {
    font-size: 0px;
    position: relative;
    visibility: hidden;
}
#menu-item-27 a:before {
    display: inline-block;
    content: "\f015";
    height: 16px;
    font-family: 'FontAwesome';
    width: 16px;
    font-size: 1.5rem;
    visibility: visible;
    position: absolute;
    left: 30px;
    top: -5px;
    color: #287ddb;
}

#banner > .container {
    height: 100%;
}
h2#banner-heading {
    font-weight: 700;
    font-size: 4.4rem;
    position: absolute;
    right: 5.5%;
    top: 19%;
}
p#banner-sub-heading {
    font-size: 2rem;
    position: absolute;
    right: 4%;
    top: 30%;
}
#banner a.btn {
    position: absolute;
    top: 43%;
    right: 13%;
    padding: 1rem 1.5rem;
    font-size: 1.5rem;
    background: #f39c12;
    color: #fff;
    border: none;
    outline: none;
}
.slicknav_menu{
    display: none;
}
.home #banner {
    height: 620px;
    background-size: cover;
    background-repeat: no-repeat;
}
.list-style-none{
    list-style-type: none;
}
.list-items-inline-block li{
    display: inline-block;
}
#features-detailed-list-row{
    height: 700px;
    position: relative;
    overflow: hidden;
}
#features-detailed-list-row > .container{
    overflow: hidden;
}

.home #testimonials{
    height: 280px;
    background-repeat: no-repeat;
    background-size: cover;
}
#qp-modules-row{
    height: 700px;
    background-repeat: no-repeat;
    background-size: cover;
}
.home #qp-modules-row{
    height: 520px;
}
#qp-intro-row {
    height: 779px;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 105px;
}
ul#primary-menu > li {
    margin-right: 20px;
    float: none !important;
    display: inline-block;
}
ul#primary-menu > li a {
    color: #5e5e5e;
}
ul#primary-menu > li:last-child {
    margin-right:0;
}

h2#about-heading1 {
    color: #36cf40;
    font-weight: 400;
    font-size: 2.3rem;
}
h3#about-heading2 {
    color: #434343;
    font-size: 3em;
    margin-bottom: 5rem;
    font-weight: 700;
}
div#lcd-banner-home {
    position: absolute;
    width: 572px;
    height: 516px;
    background: url(images/lcd-home-banner.png) no-repeat;
    bottom: -25px;
}
.header-flip {
    width: 612px;
    height: 427px;
    background: url(images/header-flip.png) no-repeat;
    position: absolute;
    bottom: -213px;
    left: 52%;
}
.home .header-flip {
    bottom: -213px;
}
ul#about-features-list {
    margin: 0;
    padding: 0;
    overflow: hidden;
    /*columns: 8;
    -webkit-columns: 8;
    -moz-columns: 8;*/
    
}
#about-features-list > li{
    text-align: center;
    padding: 0 0.25rem;
    width: 12.5%;
    float: left;
}
#about-features-list > li,
#about-features-list > li a {
    color: #363636;
    text-transform: uppercase;
}
#about-features-list > li a:hover {
    color: #36cf40;
    text-decoration: none;
}
#about-features-list > li .img-wrap {
    border-right: 1px solid #ccc;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#about-features-list > li:first-child .img-wrap{
    border-left: 1px solid #ccc;
}
#about-features-list > li .title-wrap {
    margin-top: 1.5rem;
}
#about-features-list > li#feature-5 .title-wrap,
#about-features-list > li#feature-6 .title-wrap {
    width: 85px;
    margin-left: auto;
    margin-right: auto;
}

div#features-detailed-list-wrap {
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem 4rem 4rem;
    max-width: 800px;
    /*position: absolute;
    top: 14%;
    left: 12%;*/
    margin: 10px 0 0 70px;
}
div#features-detailed-list-wrap {
    position: static;
    
}
#features-detailed-list {
    margin: 0;
    padding: 0;
}
#features-detailed-list li {
    color: #363636;
    font-size: 1.15rem;
    line-height: 1.9;
}
#features-detailed-list li .fa{
    color: #287ddb;
    margin-right: 1rem;
}
#fdl-wrap {
    padding-left: 2.5rem;
    display: inline-block;
    width: 70%;
}
div#fdl-title-wrap {
    border-right: 2px solid #d9d9d9;
    width: 30%;
    padding-right: 2.5rem;
}
#fdl-title-wrap h3.text-uppercase {
    font-size: 2.5rem;
        font-weight: 700;
    margin-bottom: 2rem;
}
#qp-dfl-logo {
    width: 395px;
    height: 174px;
    background: url(images/qp-all-features-list-logo.png) no-repeat;
    position: absolute;
    right: 0%;
    top: 5%;
}
#testimonials-row h2 {
    color: #434343;
    font-size: 3rem;
    background: url(images/testimonialbg_07.png) no-repeat;
    background-position: bottom center;
    padding-bottom: 30px;
    font-weight: 700;
    margin-bottom: 1.2rem;
}
#testimonials-list {
    color: #fff;
    position: relative;
}
#testimonials-list .slick-list {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
#testimonials-list .message {
    font-size: 1.5rem;
    font-style: italic;
}
#testimonials-list .author {
    font-size: 2rem;
    margin-top: 1.5rem;
}
#testimonials-list .slick-arrow {
    position: absolute;
    top: 50%;
    font-size: 2rem;
    cursor: pointer;
}
#testimonials-list .slick-arrow.fa-chevron-left {
    left: 0;
}
#testimonials-list .slick-arrow.fa-chevron-right {
    right: 0;
}
#qp-modules-row .module{
    width: 360px;
    height: 303px;
    padding-top: 185px;
    position: relative;
}
#qp-modules-row .module#module-subscription{
    background-image: url("images/single-module-bg_subscribe.png");
}
#qp-modules-row .module#module-forum{
    background-image: url("images/single-module-bg_forum.png");
}
#qp-modules-row .module#module-download{
    background-image: url("images/single-module-bg_download.png");
}
#qp-modules-row .module span.version {
    color: #287ddb;
    text-transform: capitalize;
    font-weight: 300;
}
#qp-modules-row .module p.detail {
    font-size: 1.3rem;
    color: #434343;
    font-weight: 300;
    margin-bottom: 8px;
}
#qp-modules-row .module h3 {
    font-weight: 700;
    color: #434343;
}
#qp-modules-row .module a.btn {
    margin-top: 15px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    font-size: 1.25rem;
    border: none;
    outline: none;
}
#qp-modules-row .module#module-subscription a.btn {
    background: #287ddb;
}
#qp-modules-row .module#module-forum a.btn {
    background: #36cf40;
}
#qp-modules-row .module#module-download a.btn {
    background: #f39c12;
}

#qp-intro-row h2.primary-heading {
    color: #fff;
    font-weight: 700;
    font-size: 2.75rem;
}
#qp-intro-row p.sub-heading {
    color: #36cf40;
    font-size: 1.5rem;
}
#qp-intro-row p.intro-text {
    color: #eee;
    text-align: justify;
    font-size: 1.05rem;
}
#qp-intro-row a.btn {
    background: #287ddb;
    border: none;
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    padding: 0.7rem 1rem;
}
.bottom-flip {
    width: 555px;
    height: 386px;
    background: url(images/bottom-flip.png) no-repeat;
    position: absolute;
    bottom: -494px;
    left: -50px;
}
.home .bottom-flip {
    bottom: -466px;
}
.headings-wrap {
    background: url(images/intro-logo.png) no-repeat;
    padding-left: 100px;
    background-position: 0 8px;
}
#qp-intro-row-inner{
    background: url('images/qp-intro-brackets_left.png') no-repeat top left,
                url('images/qp-intro-brackets_right.png') no-repeat top right;
    width: 1140px;
    margin: 0 auto;
    padding: 80px 70px;
}
#qp-intro-row-inner img {
    margin-top: 40px;
}

#popular-links-row h2 {
    font-weight: 700;
    color: #434343;
    background: url(images/popular_links.png) no-repeat right center;
    text-align: right;
    padding-right: 530px;
    margin-bottom: 45px;
    font-size: 2.2rem;
}
ul#popular-links-list {
    text-align: right;
}
ul#popular-links-list li {
    margin-right: 65px;
}
ul#popular-links-list li:last-child {
    margin-right: 0;
}

#footer-social-media {
    margin: 15px 0 0;
    padding: 0;
}
#footer-social-media li {
    margin-right: 7px;
}
#footer-social-media li:last-child {
    margin-right: 0;
}
#footer-social-media li a,
.footer-col-3 ul li span.fa-wrap{
    color: #818181;
    border: 2.5px solid #bbbbbb;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: inline-block;
    text-align: center;
    padding-top: 4px;
    font-size: 1.5rem;
}
.footer-col-3 ul li span.fa-wrap {
    width: 38px;
    height: 38px;
    padding-top: 4px;
    font-size: 1rem;
}
.footer-col-3 ul li > div {
    padding-left: 15px;
}
.footer-col-3 ul li > div a {
    color: #36cf40;
    font-weight: 700;
    text-decoration: none;
}
.footer-col-3 .address > div {
    width: 190px;
    position: relative;
    top: 10px;
}
.footer-col-3 .address > div{
    width: 190px;
}
.footer-col-3 ul li{
    color: #818181;
}
#footer-social-media li a:hover {
    color: #fff;
    border-color: #287ddb;
    background-color: #287ddb;
}
footer.site-footer .footer-upper{
    background-size: cover;
}
ul.footer-menu{
    margin: 0;
    padding: 0;
    list-style: none;
    padding-top: 30px;
}
ul.footer-contacts {
    margin: 0;
    padding: 10px 0 0;
    list-style: none;
}
ul.footer-contacts li {
    margin-bottom: 10px;
}
footer.site-footer .footer-col-2 ul.footer-menu{
    -webkit-columns: 2; /* Chrome, Safari, Opera */
    -moz-columns: 2; /* Firefox */
    columns: 2;
}
ul.footer-menu li{
    position: relative;
    margin-bottom: 10px;
}
footer.site-footer .footer-col-2 ul.footer-menu li:before{
    content: "\f054";
    display: block;
    font-family: FontAwesome;
    height: 16px;
    position: absolute;
    left: 0;
    color: #287ddb;
}
ul.footer-menu li a {
    color: #818181;
    display: inline-block;
    padding-left: 25px;
}
footer.site-footer h3.widget-title {
    text-transform: uppercase;
    font-weight: 700;
    color: #434343;
    margin-top: 1.5rem;
}
span#back-to-top {
    color: #434343;
    font-weight: 700;
    cursor: pointer;
}
#back-to-top span.fa-wrap {
    width: 45px;
    height: 45px;
    display: inline-block;
    border: 2.5px solid #36cf40;
    border-radius: 50%;
    text-align: center;
    padding-top: 3px;
    font-size: 1.3rem;
    color: #36cf40;
    margin-left: 15px;
}
#footer-copyright span.sitename {
    color: #36cf40;
}
#footer-copyright {
    margin: 14px 0 0;
    color: #818181;
}

.main-navigation .search-form {
    display: none;
    position: absolute;
    top: 0px;
    right: 20px;
    width: 205px;
}
.main-navigation .search-form input[type="search"] {
    background: #fff;
    border: 1px solid #ccc;
    font-size: 16px;
    line-height: 1.2;
    padding: 6px 20px 6px 8px;
}
.main-navigation .search-form .search-submit {
    border: none;
    color: #eee;
    padding: 9px;
    position: absolute;
    top: 0px;
    right: -20px;
    color: #36cf40;
    background: #ebebeb;
    font-size: 1rem;
}
.main-navigation .search-form .search-submit:hover {
    outline: none;
    background: #f1f1f1;
}
.main-navigation .search.active .search-form {
        display: block;
}
.main-navigation .search .search-toggle .fa {
        color: #f39c12;
}

/*
INNER PAGES
*/

.page-banner img{
    width: 100%;
    max-width: 100%;
}
header.entry-header h1.entry-title {
    color: #36cf40;
    text-transform: uppercase;
    font-size: 2rem;
}
.single header.entry-header h1.entry-title {
    color: #363636;
}
header.entry-header h2.site-title {
    color: #434343;
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 3rem;
}
.page .entry-content p,
.page .entry-header p{
    color: #363636;
    text-align: justify;
    font-size: 1.1rem;
}
div#support-email {
    margin-top: 6rem;
    word-wrap: break-word;
}
p#support-email-label {
    color: #363636;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0;
    line-height: 1;
    margin-top: 15px;
}
#affiliate-program a {
    color: #36cf40;
    font-size: 1.2rem;
    font-weight: 400;
    display: inline-block;
    max-width: 225px;
    margin-top: 1.7rem;
}

.page-full-width header.entry-header{
    background: url('images/sidebar-logo_03.jpg') no-repeat;
    background-position: top left;
    padding-left: 300px;
    min-height: 200px;
}
body.search-results article header.entry-header{
    background: none;
    padding-left: 0;
    min-height: auto;
}
.single .page-full-width header.entry-header{
    padding-left: 250px;
}
#sidebar-contacts {
    text-align: left;
    margin: 0;
    padding: 0 0 0 3rem;
}
#sidebar-contacts li{
    margin-bottom: 2rem;
}
#sidebar-contacts .fa-wrap{
    width: 36px;
    height: 36px;
    display: inline-block;
    border-radius: 50%;
    background: #36cf40;
    color: #fff;
    text-align: center;
    padding-top: 5px;
    margin-right: 10px;
}
#sidebar-contacts .text{
    display: inline-block;
    width: calc(100% - 50px);
}
#sidebar-contacts li {
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}
#quick-start-guide a {
    color: #36cf40;
    font-size: 2rem;
    font-weight: 600;
}
.blog h2.entry-title a,
body.search-results h2.entry-title a {
    color: #363636;
    font-weight: 600;
}
.blog h2.entry-title a:hover,
body.search-results h2.entry-title a:hover {
    color: #36cf40;
    text-decoration: none;
}
.blog .entry-header .posted-on,
.single header.entry-header .entry-meta,
body.search-results header.entry-header .entry-meta{
    color: #287ddb;
    font-size: 1.2rem;
}
.blog .entry-content,
.single .entry-content{
    font-size: 1.1rem;
    margin-top: 1.2rem;
}
.blog article.hentry {
    margin-bottom: 4rem;
}
.blog .blog-read-more a.btn ,
body.search-results a.btn.read-more {
    text-transform: uppercase;
    color: #d3d3d3;
    font-size: 1.2rem;
    border: 2px solid #d3d3d3;
    padding: 0.6rem 1.2rem;
}
.blog .blog-read-more a.btn:hover,
body.search-results a.btn.read-more:hover {
    background-color: #36cf40;
    color: #fff;
    border-color: #36cf40;
}

.qp-packages .package {
    background-color: #eeeff1;
    border: 2px solid #e0e1e4;
    text-align: center;
    padding: 2rem 0 3rem;
    position: relative;
    max-width: 322px;
}
.qp-packages .package .label-1 p{
    color: #363636;
    font-size: 1.3rem;
    margin-top: 1.6rem !important;
    margin-bottom: 0 !important;
}
.qp-packages .package .label-2 p {
    color: #36cf40;
    font-size: 1.6rem;
    font-weight: 600;
}
.qp-packages .package .price p {
    background: #287ddb;
    color: #fff;
    padding: 0.4rem 0;
    font-size: 1.6rem;
    font-weight: 600;
    margin: 0;
}
.qp-packages .package .btn {
    position: absolute;
    text-transform: uppercase;
    bottom: -25px;
    color: #fff;
    background: #f39c12;
    font-weight: 600;
    font-size: 1.3rem;
    border: none;
    padding: 0.8rem 1rem;
    left: 77px;
    outline: none;
}
.qp-packages .package.package-free .btn {
    background: #36cf40;
}
#qp-pipe_sizing_gallery ul li{
    width: 48%;
}






/*##########################

            RESPONSIVE DESIGN MEDIA QUERIES

##########################*/

@media screen and (min-width: 1200px) {
    .container {
        width: 1170px !important;
    }
}

@media screen and (min-width: 992px){
footer .footer-col-2 {
    -webkit-flex: 0 0 47%;
    -ms-flex: 0 0 47%;
    flex: 0 0 47%;
    max-width: 47%;
}
footer .footer-col-3 {
    -webkit-flex: 0 0 28%;
    -ms-flex: 0 0 28%;
    flex: 0 0 28%;
    max-width: 28%;
}
header#masthead .col-phone {
    -webkit-flex: 0 0 27%;
    -ms-flex: 0 0 27%;
    flex: 0 0 27%;
    max-width: 27%;
    padding-left: 44px;
    padding-right: 0;
}
header#masthead .col-email {
    -webkit-flex: 0 0 23%;
    -ms-flex: 0 0 23%;
    flex: 0 0 23%;
    max-width: 23%;
    text-align: right;
}
}

@media screen and (max-width: 1199px){
    #qp-dfl-logo,
    .bottom-flip {
        display: none;
    }
    h2#banner-heading,
    p#banner-sub-heading{
        text-shadow: 0px 3px 15px #888;
    }
    .footer-col-3 ul li > div {
        padding-left: 5px;
    }
}
@media screen and (min-width: 992px) and (max-width: 1199px){
    
    header#masthead span.email, header#masthead span.email a, header#masthead span.phone {
        font-size: 1rem;
    }
    header#masthead .col-phone {
        padding-left: 35px;
    }
    header#masthead a.btn.btn-secondary {
        font-size: 1rem;
        padding: 0.6rem 1.1rem;
    }
    #qp-modules-row .module {
        width: 310px;
        height: 253px;
        padding-top: 148px;
        background-size: 100%;
    }
    #qp-modules-row .module h3 {
        font-size: 1.5rem;
    }
    #qp-modules-row .module a.btn {
        margin-top: 8px;
        padding: 0.65rem 1.2rem;
        font-size: 1rem;
    }
    #qp-intro-row-inner {
        width: 960px;
        padding: 55px 50px;
    }
    #qp-modules-row {
            height: 470px;
    }
    .home #qp-modules-row {
        height: 450px;
    }
    #qp-intro-row {
        height: 649px;
    }
    footer .footer-col-1,
    footer .footer-col-3 {
        padding-left: 0;
        padding-right: 0;
    }
    .qp-packages .package .btn {
            left: 63px;
    }
    
    .home #banner {
            height: 470px;
    }
    h2#banner-heading {
            top: 26%;
    }
    p#banner-sub-heading {
            top: 40%;
    }
    #banner a.btn {
            top: 54%;
    }
    div#lcd-banner-home {
            width: 410px;
            height: 369px;
            background-size: cover;
            bottom: -19px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1199px){
    ul#primary-menu > li a {
        font-size: 1rem;
    }
    ul#primary-menu > li {
        margin-right: 15px;
    }
}
@media screen and (min-width: 768px) and (max-width: 991px){
    /*ul#about-features-list {
        columns: 4;
        -webkit-columns: 4;
        -moz-columns: 4;

    }
    #about-features-list > li {
        margin-bottom: 40px;
    }
    #about-features-list > li:nth-child(2n) {
        margin-bottom: 0;
    }*/
    div#features-detailed-list-wrap {
        max-width: 750px;
        margin-left: 0;
        padding: 2rem 2rem;
        left: 1%;
    }
    #fdl-title-wrap h3.text-uppercase {
        font-size: 2.0rem;
    }
    #qp-modules-row .module {
        width: 230px;
        height: 193px;
        padding-top: 110px;
        background-size: 100%;
    }
    #qp-modules-row .module h3{
        font-size: 1.1rem;
    }
    #qp-modules-row .module p.detail {
        font-size: 1.0rem;
    }
    #qp-modules-row .module a.btn {
        margin-top: 3px;
        padding: 0.55rem 1.0rem;
        font-size: 1.0rem;
    }
    #qp-modules-row,
    .home #qp-modules-row{
            height: 400px;
    }
    #qp-intro-row-inner {
        width: 720px;
        padding: 20px 10px 50px;
    }
    #qp-intro-row h2.primary-heading {
        font-size: 2.0rem;
    }
    #qp-intro-row p.sub-heading {
        font-size: 1.0rem;
    }
    .headings-wrap {
        padding-top: 15px;
    }
    #qp-intro-row {
        height: 659px;
    }
    #qp-intro-row-inner img {

        margin-top: 100px;

    }
    ul#popular-links-list {
        margin: 0;
        padding: 0;
        text-align: left;
    }
    ul#popular-links-list li {
        margin-right: 15px;
        width: 30.33%;
    }
    ul#popular-links-list li img{
        max-width: 85%;
    }
    #popular-links-row h2 {
        text-align: left;
        padding-right: 500px;
        font-size: 1.4rem;
    }
    #qp-intro-row a.btn {
        font-size: 1.0rem;
        padding: 0.5rem 0.8rem;
    }
    #footer-social-media li:first-child,
    #footer-social-media li:nth-child(1){
        margin-bottom: 10px;
    }
    footer.site-footer .footer-col-2 ul.footer-menu {
        -webkit-columns: 1;
        -moz-columns: 1;
        columns: 1;
    }
    .main-navigation ul{
        display: flex;
    }
    ul#primary-menu > li {
        display: flex;
        flex-grow: 1;
    }
    #about-features-list > li {
        width: 25%;
        margin-bottom: 40px;
    }
    #about-features-list > li:nth-child(5) {
        clear: left;
    }
    #about-features-list > li:nth-child(5) .img-wrap{
        border-left: 1px solid #ccc;
    }
    #about-features-list > li:nth-child(n+5) {
        margin-bottom: 0;
    }
    #features-detailed-list-row {
        padding-bottom: 0 !important;
        height: 650px;
    }
    .main-navigation .search-form {
        top: -4px;
        right: 25px;
    }
    .qp-packages .package .label-2 p,
    .qp-packages .package .price p {
	font-size: 1.4rem;
}
    .qp-packages .package .btn {
            bottom: -19px;
            font-size: 1.1rem;
            padding: 0.6rem 0.8rem;
            left: 35px;
    }
    
    .home #banner {
            height: 300px;
    }
    p#banner-sub-heading {
            top: 41%;
    }
    #banner a.btn {
            top: 65%;
    }
    
}
@media screen and (max-width: 767px){
    .slicknav_menu{
        display: block;
    }
    #about-features-list > li {
        width: 50%;
        margin-bottom: 40px;
    }
    #about-features-list > li:nth-child(odd) {
        clear: left;
    }
    #about-features-list > li:nth-child(3) .img-wrap,
    #about-features-list > li:nth-child(5) .img-wrap,
    #about-features-list > li:nth-child(7) .img-wrap{
        border-left: 1px solid #ccc;
    }
    #about-features-list > li:nth-child(7),
    #about-features-list > li:nth-child(8){
        margin-bottom: 0;
    }
    .header-flip {
        display: none;
    }
    h2#banner-heading {
        font-size: 2.4rem;
        top: 8%;
    }
    p#banner-sub-heading {
        font-size: 1.5rem;
        top: 41%;
        text-align: center;
        line-height: 1;
    }
    .home #banner {
        height: 150px;
        background-size: 100%;
    }
    h3#about-heading2 {
        font-size: 2.5em;
    }
    header#masthead a.btn.btn-secondary {
        padding: 0.6rem 1.1rem;
    }
    
    #features-detailed-list-row {
        height: auto;
        padding: 3.5rem 0;
    }
    div#features-detailed-list-wrap {
        position: static;
        padding: 2rem;
    }
    div#fdl-title-wrap {
        border-right: none;
        width: 100%;
        padding-right: 0;
    }
    #fdl-wrap {
        padding-left: 0rem;
        width: 100%;
    }
    #features-detailed-list li {
        font-size: 1rem;
    }
    #features-detailed-list li .fa {
        margin-right: 0.5rem;
    }
    #testimonials-row h2 {
        font-size: 2.5rem;
    }
    #testimonials-list .message {
        font-size: 1rem;
    }
    #testimonials-list .author {
        font-size: 1.5rem;
    }
    #qp-modules-row .module {
        width: 290px;
        height: 233px;
        background-size: 100%;
        padding-top: 138px;
        margin: 0 auto 70px;
    }
    #qp-modules-row .module h3 {
        font-size: 1.5rem;
    }
    #qp-modules-row,
    .home #qp-modules-row{
	height: auto;
	padding-bottom: 2.5rem;
        background-size: cover;
    }
    #qp-modules-row .module a.btn {
        margin-top: -3px;
    }
    
    #qp-intro-row {
        height: auto;
        background-size: cover;
        padding: 60px 0;
    }
    #qp-intro-row-inner {
        background: none;
        padding: 0;
        width: auto;
    }
    #qp-intro-row-inner img{
        margin-top: 0;
    }
    .headings-wrap {
        background: none;
        padding-left: 0;
        padding-top: 30px;
    }
    #qp-intro-row h2.primary-heading{
        font-size: 2.5rem;
    }
    
    #popular-links-row h2 {
        text-align: left;
        padding-right: 0;
        background: none;
        font-size: 2.5rem;
    }
    ul#popular-links-list {
        margin: 0;
        padding: 0;
        text-align: left;
    }
    ul#popular-links-list li {
        margin-right: 0;
        margin-bottom: 40px;
    }
    ul#popular-links-list li:last-child {
        margin-bottom: 0px;
    }
    #features-detailed-list-wrap {
        margin-left: 0 !important;
    }
    .slicknav_nav .search .search-toggle {
            display: none;
    }
    header.entry-header h2.site-title {
        font-size: 2.5rem;
    }
    .page .entry-content p {
        font-size: 1rem;
    }
    div#support-email {
    margin-top: 4rem;
}
#sidebar-contacts {
    padding: 0;
}
.page-full-width header.entry-header,
.single .page-full-width header.entry-header{
    background: none;
    padding-left: 0px;
    min-height:auto;
}
.blog h2.entry-title {
    margin-top: 2rem;
}
.qp-packages .package{
    margin: 0 auto;
}
.qp-packages .package .btn {
	left: calc(50% - 79px);
}
.page-id-44 #main > div.container ,
.page-id-44 #main > div.container > .page-full-width {
    padding-bottom: 0 !important;
}
#qp-pipe_sizing_gallery ul li{
    width: 100%;
    margin-bottom: 2rem;
}
}
@media screen and (max-width: 575px){
    
}