/*
Theme Name: Empower
Theme URI: https://wordpress.org/themes/twentythirteen/
Author: the WordPress team
Author URI: https://wordpress.org/
Description: The 2013 theme for WordPress takes us back to the blog, featuring a full range of post formats, each displayed beautifully in their own unique way. Design details abound, starting with a vibrant color scheme and matching header images, beautiful typography and icons, and a flexible layout that looks great on any device, big or small.
Version: 2.5
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: blog, one-column, two-columns, right-sidebar, custom-header, custom-menu, editor-style, featured-images, footer-widgets, microformats, post-formats, rtl-language-support, sticky-post, translation-ready, accessibility-ready
Text Domain: twentythirteen

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.
*/


/**
 * Table of Contents:
 *
 * 1.0 - Reset
 * 2.0 - Repeatable Patterns
 * 3.0 - Basic Structure
 * 4.0 - Header
 *   4.1 - Site Header
 *   4.2 - Navigation
 * 5.0 - Content
 *   5.1 - Entry Header
 *   5.2 - Entry Meta
 *   5.3 - Entry Content
 *   5.4 - Galleries
 *   5.5 - Post Formats
 *   5.6 - Attachments
 *   5.7 - Post/Paging Navigation
 *   5.8 - Author Bio
 *   5.9 - Archives
 *   5.10 - Search Results/No posts
 *   5.11 - 404
 *   5.12 - Comments
 *   5.13 - Multisite
 * 6.0 - Sidebar
 *   6.1 - Widgets
 * 7.0 - Footer
 * 8.0 - Media Queries
 * 9.0 - Print
 * ----------------------------------------------------------------------------
 */


/**
 * 1.0 Reset
 *
 * Modified from Normalize.css to provide cross-browser consistency and a smart
 * default styling of HTML elements.
 *
 * @see http://git.io/normalize
 * ----------------------------------------------------------------------------
 */

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing:    border-box;
	box-sizing:         border-box;
}

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

audio,
canvas,
video {
	display: inline-block;
}

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

[hidden] {
	display: none;
}

html {
	font-size: 100%;
	overflow-y: scroll;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}

html,
button,
input,
select,
textarea {
	font-family: 'Lato', sans-serif;
}

body {
	color: #414141;
	line-height: 1.5;
	margin: 0;	
	font-size: 18px;
}

a {
	color: #ca3c08;
	text-decoration: none;
}

a:visited {
	color: #1f71b4;
}
a:active,
a:hover {
	color: #000;
	outline: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
	font-family: 'Lato', sans-serif;
	line-height: 1.3;
}

h1 {
	font-size: 48px;
	margin: 33px 0;
}

h2 {
	font-size: 30px;
	margin: 25px 0;
}

h3 {
	font-size: 22px;
	margin: 22px 0;
}

h4 {
	font-size: 20px;
	margin: 25px 0;
}

h5 {
	font-size: 18px;
	margin: 30px 0;
}

h6 {
	font-size: 16px;
	margin: 36px 0;
}

address {
	font-style: italic;
	margin: 0 0 24px;
}

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

b,
strong {
	font-weight: bold;
}

dfn {
	font-style: italic;
}

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

p {
	margin: 0 0 15px;
}

code,
kbd,
pre,
samp {
	font-family: monospace, serif;
	font-size: 14px;
	-webkit-hyphens: none;
	-moz-hyphens:    none;
	-ms-hyphens:     none;
	hyphens:         none;
}

pre {
	background: #f5f5f5;
	color: #666;
	font-family: monospace;
	font-size: 14px;
	margin: 20px 0;
	overflow: auto;
	padding: 20px;
	white-space: pre;
	white-space: pre-wrap;
	word-wrap: break-word;
}

blockquote,
q {
	-webkit-hyphens: none;
	-moz-hyphens:    none;
	-ms-hyphens:     none;
	hyphens:         none;
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
	content: none;
}

blockquote {
	font-size: 18px;
	font-style: italic;
	font-weight: 300;
	margin: 24px 40px;
}

blockquote blockquote {
	margin-right: 0;
}

blockquote cite,
blockquote small {
	font-size: 14px;
	font-weight: normal;
	text-transform: uppercase;
}

blockquote em,
blockquote i {
	font-style: normal;
	font-weight: 300;
}

blockquote strong,
blockquote b {
	font-weight: 400;
}

small {
	font-size: smaller;
}

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

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

dl {
	margin: 0 20px;
}

dt {
	font-weight: bold;
}

dd {
	margin: 0 0 20px;
}

menu,
ol,
ul {
	margin: 16px 0;
	padding: 0 0 0 40px;
}

ul {
	list-style-type: disc;
}

nav ul,
nav ol {
	list-style: none;
	list-style-image: none;
}

li > ul,
li > ol {
	margin: 0;
}

img {
	-ms-interpolation-mode: bicubic;
	border: 0;
	vertical-align: middle;
}

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

figure {
	margin: 0;
}

form {
	margin: 0;
}

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

legend {
	border: 0;
	padding: 0;
	white-space: normal;
}

button,
input,
select,
textarea {
	font-size: 100%;
	margin: 0;
	max-width: 100%;
	vertical-align: baseline;
}

button,
input {
	line-height: normal;
}

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

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

input[type="checkbox"],
input[type="radio"] {
	padding: 0;
}

input[type="search"] {
	-webkit-appearance: textfield;
	padding-right: 2px; /* Don't cut off the webkit search cancel button */
	width: 100%;
	padding: 8px;
}

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

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

textarea {
	overflow: auto;
	vertical-align: top;
}

table {
	border-bottom: 1px solid #ededed;
	border-collapse: collapse;
	border-spacing: 0;
	font-size: 14px;
	line-height: 2;
	margin: 0 0 20px;
	width: 100%;
}

caption,
th,
td {
	font-weight: normal;
	text-align: left;
}

caption {
	font-size: 16px;
	margin: 20px 0;
}

th {
	font-weight: bold;
	text-transform: uppercase;
}

td {
	border-top: 1px solid #ededed;
	padding: 6px 10px 6px 0;
}

del {
	color: #333;
}

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

hr {
	background: url(images/dotted-line.png) repeat center top;
	background-size: 4px 4px;
	border: 0;
	height: 1px;
	margin: 0 0 24px;
}


/**
 * 2.0 Repeatable Patterns
 * ----------------------------------------------------------------------------
 */

.genericon:before,
.menu-toggle:after,
.featured-post:before,
.date a:before,
.entry-meta .author a:before,
.format-audio .entry-content:before,
.comments-link a:before,
.tags-links a:first-child:before,
.categories-links a:first-child:before,
.edit-link a:before,
.attachment .entry-title:before,
.attachment-meta:before,
.attachment-meta a:before,
.comment-awaiting-moderation:before,
.comment-reply-link:before,
.comment-reply-login:before,
.comment-reply-title small a:before,
.bypostauthor > .comment-body .fn:before,
.error404 .page-title:before {
	-webkit-font-smoothing: antialiased;
	display: inline-block;
	font: normal 16px/1 Genericons;
	vertical-align: text-bottom;
}

/* Clearing floats */
.clear:after,
.attachment .entry-header:after,
.site-footer .widget-area:after,
.entry-content:after,
.page-content:after,
.navigation:after,
.nav-links:after,
.gallery:after,
.comment-form-author:after,
.comment-form-email:after,
.comment-form-url:after,
.comment-body:after {
	clear: both;
}

.clear:before,
.clear:after,
.attachment .entry-header:before,
.attachment .entry-header:after,
.site-footer .widget-area:before,
.site-footer .widget-area:after,
.entry-content:before,
.entry-content:after,
.page-content:before,
.page-content:after,
.navigation:before,
.navigation:after,
.nav-links:before,
.nav-links:after,
.gallery:before,
.gallery:after,
.comment-form-author:before,
.comment-form-author:after,
.comment-form-email:before,
.comment-form-email:after,
.comment-form-url:before,
.comment-form-url:after,
.comment-body:before,
.comment-body:after {
	content: "";
	display: table;
}

/* Assistive text */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	overflow: hidden;
	position: absolute !important;
	height: 1px;
	width: 1px;
}

.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-weight: bold;
	height: auto;
	line-height: normal;
	padding: 15px 23px 14px;
	position: absolute;
	left: 5px;
	top: 5px;
	text-decoration: none;
	width: auto;
	z-index: 100000; /* Above WP toolbar */
}

/* Form fields, general styles first. */
button,
input,
textarea {
	border: 2px solid #d4d0ba;
	font-family: inherit;
	padding: 5px;
}

input,
textarea {
color: #888;
font-size: 15px;
font-weight: 300;
line-height: 1.625
}

input:focus,
textarea:focus {
	border: 2px solid #c3c0ab;
	outline: 0;
}

/* Buttons */
button,
input[type="submit"],
input[type="button"],
input[type="reset"] {
	background: #e05d22; /* Old browsers */
	background: -webkit-linear-gradient(top, #e05d22 0%, #d94412 100%); /* Chrome 10+, Safari 5.1+ */
	background:   linear-gradient(to bottom, #e05d22 0%, #d94412 100%); /* W3C */
	border: none;
	border-radius: 2px;
	color: #fff;
	display: inline-block;
	padding: 11px 24px 10px;
	text-decoration: none;
}

button:hover,
button:focus,
input[type="submit"]:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:focus,
input[type="button"]:focus,
input[type="reset"]:focus {
}

button:active,
input[type="submit"]:active,
input[type="button"]:active,
input[type="reset"]:active {
}

.post-password-required input[type="submit"] {
	padding: 7px 24px 4px;
	vertical-align: bottom;
}

.post-password-required input[type="submit"]:active {
	padding: 5px 24px 6px;
}

/* Placeholder text color -- selectors need to be separate to work. */
::-webkit-input-placeholder {
	color: #7d7b6d;
}

:-moz-placeholder {
	color: #7d7b6d;
}

::-moz-placeholder {
	color: #7d7b6d;
}

:-ms-input-placeholder {
	color: #7d7b6d;
}

/*
 * Responsive images
 *
 * Fluid images for posts, comments, and widgets
 */
.entry-content img,
.entry-summary img,
.comment-content img,
.widget img,
.wp-caption {
	max-width: 100%;
}

/* Make sure images with WordPress-added height and width attributes are scaled correctly. */
.entry-content img,
.entry-summary img,
.comment-content img[height],
img[class*="align"],
img[class*="wp-image-"],
img[class*="attachment-"] {
	height: auto;
}

img.size-full,
img.size-large,
img.wp-post-image {
	height: auto;
	max-width: 100%;
}

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

/* Override the Twitter embed fixed width. */
.entry-content .twitter-tweet-rendered {
	max-width: 100% !important;
}

/* Images */
.alignleft {
	float: left;
}

.alignright {
	float: right;
}

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

figure.wp-caption.alignleft,
img.alignleft {
	margin: 5px 20px 5px 0;
}

.wp-caption.alignleft {
	margin: 5px 10px 5px 0;
}

figure.wp-caption.alignright,
img.alignright {
	margin: 5px 0 5px 20px;
}

.wp-caption.alignright {
	margin: 5px 0 5px 10px;
}

img.aligncenter {
	margin: 5px auto;
}

img.alignnone {
	margin: 5px 0;
}

.wp-caption .wp-caption-text,
.entry-caption,
.gallery-caption {
	color: #220e10;
	font-size: 18px;
	font-style: italic;
	font-weight: 300;
	margin: 0 0 24px;
	text-align:center;
}

div.wp-caption.alignright img[class*="wp-image-"] {
	float: right;
}

div.wp-caption.alignright .wp-caption-text {
	padding-left: 10px;
}

img.wp-smiley,
.rsswidget img {
	border: 0;
	border-radius: 0;
	box-shadow: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

.wp-caption.alignleft + ul,
.wp-caption.alignleft + ol {
	list-style-position: inside;
}


/**
 * 3.0 Basic Structure
 * ----------------------------------------------------------------------------
 */
.site {
  width: 100%;
  float: left;
}
.site-main {
  position: relative;
  width: 100%;
  float: left;
}

.site-main .sidebar-container {
	height: 0;
	position: absolute;
	top: 40px;
	width: 100%;
	z-index: 1;
}

.site-main .sidebar-inner {
	margin: 0 auto;
	max-width: 1040px;
}


/**
 * 4.0 Header
 * ----------------------------------------------------------------------------
 */

/**
 * 4.1 Site Header
 * ----------------------------------------------------------------------------
 */
.site-header {
	position: relative;
	width: 100%;
	float: left;
	padding: 11px 0;
	background: #fff;
}
.site-header .home-link {
	color: #141412;
	display: block;
	margin: 0 auto;
	max-width: 1080px;
	min-height: 230px;
	padding: 0 20px;
	text-decoration: none;
	width: 100%;
}

.site-header .site-title:hover {
	text-decoration: underline;
}

.site-title {
	font-size: 60px;
	font-weight: bold;
	line-height: 1;
	margin: 0;
	padding: 58px 0 10px;
}

.site-description {
	font: 300 italic 24px "Source Sans Pro", Helvetica, sans-serif;
	margin: 0;
}


/**
 * 4.2 Navigation
 * ----------------------------------------------------------------------------
 */

.main-navigation {
	clear: both;
	margin: 0 auto;
	max-width: 1080px;
	min-height: 45px;
	position: relative;
}
ul.nav-menu, div.nav-menu > ul {
	margin: 3px 0;
	padding: 0 0px 0 0;
}
.nav-menu li {
	display: inline-block;
	position: relative;
	text-align: left;
}

.nav-menu li > a:after {
content: "";
background-image: url("images/arrow.png");
font-size: 25px;
line-height: 24px;
position: absolute;
color: #000;
margin-left: 8px;
height: 11px;
width: 11px;
margin-top: 10px;
background-repeat: no-repeat;
}

.nav-menu li > a:only-child:after {
    content: "";
	background-image:none; 
}

.nav-menu li li > a:after {
    content: "\21E2";
    position: absolute;
    right: 5px;
}


#primary-menu li a:nth-child(1), #primary-menu li a:nth-child(2){
color: #1f71b4;	
}
#primary-menu li.current-menu-item a{
/* color: #ea9629; */  
text-decoration: none;
}

.nav-menu li a {
	display: block;
	font-size: 16px;
	color: #1f71b4;
	padding: 5px 18px; 
	text-decoration: none;
	text-transform: capitalize;
	letter-spacing: 1px;
	font-weight:bold;
}

.nav-menu li:hover > a,
.nav-menu li a:hover,
.nav-menu li:focus > a,
.nav-menu li a:focus {
	color: #000s;
}

.nav-menu .sub-menu,
.nav-menu .children {
	background-color: #0071BA;
	border-top: 0;
	padding: 0;
	position: absolute;
	left: -2px;
	z-index: 99999;
	height: 1px;
	width: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
}

.nav-menu .sub-menu ul,
.nav-menu .children ul {
	border-left: 0;
	left: 100%;
	top: 0;
}

ul.nav-menu ul a,
.nav-menu ul ul a {
	color: #fff;
	margin: 0;
	width: 232px;
}
#menu-item-476 ul a {
	color: #fff;
	margin: 0;
	width: 282px;
}

ul.nav-menu ul a:hover,
.nav-menu ul ul a:hover,
ul.nav-menu ul a:focus,
.nav-menu ul ul a:focus {
}

ul.nav-menu li:hover > ul,
.nav-menu ul li:hover > ul,
ul.nav-menu .focus > ul,
.nav-menu .focus > ul {
	clip: inherit;
	overflow: inherit;
	height: inherit;
	width: inherit;
}

.nav-menu .current_page_item > a,
.nav-menu .current_page_ancestor > a,
.nav-menu .current-menu-item > a,
.nav-menu .current-menu-ancestor > a {
}

.menu-toggle {
	display: none;
}
#primary-menu .sub-menu li a{ 
color:#fbcf47;
text-transform: none;
font-weight:normal;		
}
#primary-menu .sub-menu li:hover{ 
background:#000 ;	
}
#primary-menu .sub-menu li a:hover{ 
color: #fbcf47;	
}
/* Navbar */

.site-header .search-form {
	position: absolute;
	right: 20px;
	top: 1px;
}

.site-header .search-field {
	background-color: transparent;
	background-image: url(images/search-icon.png);
	background-position: 5px center;
	background-repeat: no-repeat;
	background-size: 24px 24px;
	border: none;
	cursor: pointer;
	height: 37px;
	margin: 3px 0;
	padding: 0 0 0 34px;
	position: relative;
	-webkit-transition: width 400ms ease, background 400ms ease;
	transition:         width 400ms ease, background 400ms ease;
	width: 1px;
}

.site-header .search-field:focus {
	background-color: #fff;
	border: 2px solid #c3c0ab;
	cursor: text;
	outline: 0;
	width: 230px;
}


/**
 * 5.0 Content
 * ----------------------------------------------------------------------------
 */

.entry-header,
.entry-content,
.entry-summary,
.entry-meta {
	width: 100%;
}

.sidebar .entry-header,
.sidebar .entry-content,
.sidebar .entry-summary,
.sidebar .entry-meta {
	max-width: 1040px;
	padding: 0 376px 0 60px;
}


/**
 * 5.1 Entry Header
 * ----------------------------------------------------------------------------
 */

.sidebar .entry-header .entry-meta {
	padding: 0;
}

.entry-thumbnail img {
	display: block;
	margin: 0 auto 10px;
}

.entry-header {
	margin-bottom:20px;
}

.entry-title {
    width: 100%;
    float: left;
    font-size: 25px;
    text-transform: capitalize;
    letter-spacing: 1px;
    margin: 0px 0 10px 0;
    color: #000;
    font-weight: bold;
}

.entry-title a {
	width: 100%;
	float: left;
	font-size: 23px;
	text-transform: capitalize;
	letter-spacing:1px;
	margin: 0px 0 10px 0;
	color: #000;
	font-weight: bold;
}
.single-post .entry-content h1{
font-size: 24px;	
}
.single-post .entry-content h2{
font-size: 23px;	
}
.single-post .entry-content h3{
font-size: 21px;	
}
.entry-title a:hover {
	color: #000;
}


/**
 * 5.2 Entry Meta
 * ----------------------------------------------------------------------------
 */

.entry-meta {
	clear: both;
	font-size: 14px;
}

.entry-meta a {
	color: #1e71b4;
}

.entry-meta a:hover {
	color: #000;
}

.entry-meta > span {
	margin-right: 20px;
}

.entry-meta > span:last-child {
	margin-right: 0;
}

.featured-post:before {
	content: "\f308";
	margin-right: 2px;
}

.entry-meta .date a:before {
	content: "\f303";
}

.comments-link a:before {
	content: "\f300";
	margin-right: 2px;
	position: relative;
	top: -1px;
}

.entry-meta .author a:before {
	content: "\f304";
	position: relative;
	top: -1px;
}

.categories-links a:first-child:before {
	content: "\f301";
}

.tags-links a:first-child:before {
	content: "\f302";
	position: relative;
	top: -1px;
}

.edit-link a:before {
	content: "\f411";
	position: relative;
	top: -1px;
}

.single-author .entry-meta .author,
.sticky.format-standard .entry-meta .date,
.sticky.format-audio .entry-meta .date,
.sticky.format-chat .entry-meta .date,
.sticky.format-image .entry-meta .date,
.sticky.format-gallery .entry-meta .date {
	display: none;
}


/**
 * 5.3 Entry Content
 * ----------------------------------------------------------------------------
 */

.entry-content a,
.comment-content a {
	color: #245074;
}

.entry-content a:hover,
.comment-content a:hover {
	color: #000;
}

.entry-content .more-link {
	white-space: nowrap;
}

.entry-content blockquote {
	font-size: 24px;
}

.entry-content blockquote cite,
.entry-content blockquote small {
	font-size: 16px;
}

.entry-content img.alignleft,
.entry-content .wp-caption.alignleft {
	margin-left: -60px;
}

.entry-content img.alignright,
.entry-content .wp-caption.alignright {
	margin-right: -60px;
}

.format-standard footer.entry-meta {
	margin-top: 0;
}

/* Page links */
.page-links {
	clear: both;
	font-size: 16px;
	font-style: italic;
	font-weight: normal;
	line-height: 2.2;
	margin: 20px 0;
	text-transform: uppercase;
}

.page-links a,
.page-links > span {
	background: #fff;
	border: 1px solid #fff;
	padding: 5px 10px;
	text-decoration: none;
}

.format-status .entry-content .page-links a,
.format-gallery .entry-content .page-links a,
.format-chat .entry-content .page-links a,
.format-quote .entry-content .page-links a,
.page-links a {
	background: #e63f2a;
	border: 1px solid #e63f2a;
	color: #fff;
}

.format-gallery .entry-content .page-links a:hover,
.format-audio .entry-content .page-links a:hover,
.format-status .entry-content .page-links a:hover,
.format-video .entry-content .page-links a:hover,
.format-chat .entry-content .page-links a:hover,
.format-quote .entry-content .page-links a:hover,
.page-links a:hover {
	background: #fff;
	color: #e63f2a;
}

.format-status .entry-content .page-links > span,
.format-quote .entry-content .page-links > span {
	background: none;
}

.page-links .page-links-title {
	background: transparent;
	border: none;
	margin-right: 20px;
	padding: 0;
}

/* Mediaelements */
.hentry .mejs-mediaelement,
.hentry .mejs-container .mejs-controls {
	background: #220e10;
}

.hentry .mejs-controls .mejs-time-rail .mejs-time-loaded,
.hentry .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current {
	background: #fff;
}

.hentry .mejs-controls .mejs-time-rail .mejs-time-current {
	background: #ea9629;
}

.hentry .mejs-controls .mejs-time-rail .mejs-time-total,
.hentry .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total {
	background: #595959;
}

.hentry .mejs-controls .mejs-time-rail span,
.hentry .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total,
.hentry .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current {
	border-radius: 0;
}


/**
 * 5.4 Galleries
 * ----------------------------------------------------------------------------
 */

.gallery {
	margin-bottom: 20px;
	margin-left: -4px;
}

.gallery-item {
	float: left;
	margin: 0 4px 4px 0;
	overflow: hidden;
	position: relative;
}

.gallery-columns-1.gallery-size-medium,
.gallery-columns-1.gallery-size-thumbnail,
.gallery-columns-2.gallery-size-thumbnail,
.gallery-columns-3.gallery-size-thumbnail {
	display: table;
	margin: 0 auto 20px;
}

.gallery-columns-1 .gallery-item,
.gallery-columns-2 .gallery-item,
.gallery-columns-3 .gallery-item {
	text-align: center;
}

.gallery-columns-4 .gallery-item {
	max-width: 23%;
	max-width: -webkit-calc(25% - 4px);
	max-width:         calc(25% - 4px);
}

.gallery-columns-5 .gallery-item {
	max-width: 19%;
	max-width: -webkit-calc(20% - 4px);
	max-width:         calc(20% - 4px);
}

.gallery-columns-6 .gallery-item {
	max-width: 15%;
	max-width: -webkit-calc(16.7% - 4px);
	max-width:         calc(16.7% - 4px);
}

.gallery-columns-7 .gallery-item {
	max-width: 13%;
	max-width: -webkit-calc(14.28% - 4px);
	max-width:         calc(14.28% - 4px);
}

.gallery-columns-8 .gallery-item {
	max-width: 11%;
	max-width: -webkit-calc(12.5% - 4px);
	max-width:         calc(12.5% - 4px);
}

.gallery-columns-9 .gallery-item {
	max-width: 9%;
	max-width: -webkit-calc(11.1% - 4px);
	max-width:         calc(11.1% - 4px);
}

.gallery-columns-1 .gallery-item:nth-of-type(1n),
.gallery-columns-2 .gallery-item:nth-of-type(2n),
.gallery-columns-3 .gallery-item:nth-of-type(3n),
.gallery-columns-4 .gallery-item:nth-of-type(4n),
.gallery-columns-5 .gallery-item:nth-of-type(5n),
.gallery-columns-6 .gallery-item:nth-of-type(6n),
.gallery-columns-7 .gallery-item:nth-of-type(7n),
.gallery-columns-8 .gallery-item:nth-of-type(8n),
.gallery-columns-9 .gallery-item:nth-of-type(9n) {
	margin-right: 0;
}

.gallery-columns-1.gallery-size-medium figure.gallery-item:nth-of-type(1n+1),
.gallery-columns-1.gallery-size-thumbnail figure.gallery-item:nth-of-type(1n+1),
.gallery-columns-2.gallery-size-thumbnail figure.gallery-item:nth-of-type(2n+1),
.gallery-columns-3.gallery-size-thumbnail figure.gallery-item:nth-of-type(3n+1) {
	clear: left;
}

.gallery-caption {
	background-color: rgba(0, 0, 0, 0.7);
	box-sizing: border-box;
	color: #fff;
	font-size: 14px;
	line-height: 1.3;
	margin: 0;
	max-height: 50%;
	opacity: 0;
	padding: 2px 8px;
	position: absolute;
	bottom: 0;
	left: 0;
	text-align: left;
	-webkit-transition: opacity 400ms ease;
	transition:         opacity 400ms ease;
	width: 100%;
}

.gallery-caption:before {
	box-shadow: 0 -10px 15px #000 inset;
	content: "";
	height: 100%;
	min-height: 49px;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
}

.gallery-item:hover .gallery-caption {
	opacity: 1;
}

.gallery-columns-7 .gallery-caption,
.gallery-columns-8 .gallery-caption,
.gallery-columns-9 .gallery-caption {
	display: none;
}


/**
 * 5.5 Post Formats
 * ----------------------------------------------------------------------------
 */

/* Aside */
.format-aside {
	background-color: #f7f5e7;
}

.blog .format-aside:first-of-type,
.single .format-aside:first-of-type,
.format-aside + .format-aside,
.format-aside + .format-link,
.format-link + .format-aside {
	box-shadow: inset 0 2px 2px rgba(173, 165, 105, 0.2);
}

.format-aside .entry-meta {
	margin-top: 0;
}

.format-aside blockquote {
	font-size: 100%;
	font-weight: normal;
}

.format-aside cite {
	font-size: 100%;
	text-transform: none;
}

.format-aside cite:before {
	content: "\2014";
	margin-right: 5px;
}

/* Audio */
.format-audio {
	background-color: #db572f;
}

.format-audio .entry-title {
	font-size: 28px;
	font-weight: bold;
}

.format-audio .entry-content:before {
	content: "\f109";
	float: left;
	font-size: 64px;
	position: relative;
	top: 4px;
}

.format-audio .entry-content a,
.format-audio .entry-meta a,
.format-audio .entry-content a:hover,
.format-audio .entry-meta a:hover {
	color: #fbfaf3;
}

.format-audio .audio-content {
	background: url(images/dotted-line.png) repeat-y left top;
	background-size: 4px 4px;
	float: right;
	padding-left: 35px;
	width: 80%;
	width: -webkit-calc(100% - 85px);
	width:         calc(100% - 85px);
}

.format-audio .wp-audio-shortcode {
	height: 30px !important; /* Override mediaelement.js style */
	margin: 20px 0;
	max-width: 400px !important; /* Override mediaelement.js style */
}

.format-audio audio {
	max-width: 100% !important; /* Avoid player width overflow. */
}

/* Chat */
.format-chat {
	background-color: #eadaa6;
}

.format-chat .entry-title {
	font-size: 28px;
	font-weight: bold;
}

.format-chat .entry-meta a,
.format-chat .entry-content a {
	color: #722d19;
}

.format-chat .entry-meta .date a:before {
	content: "\f108";
	margin-right: 2px;
}

.format-chat .entry-meta .author {
	display: none;
}

.format-chat .chat {
	margin: 0;
}

.format-chat .chat .chat-timestamp {
	color: #722d19;
	float: right;
	font-size: 12px;
	font-weight: normal;
	margin: 5px 10px 0;
}

.format-chat .chat .fn {
	font-style: normal;
}

/* Gallery */
.format-gallery {
	background-color: #fbca3c;
}

.format-gallery .entry-header {
	margin-bottom: 15px;
}

.format-gallery .entry-title {
	font-size: 50px;
	font-weight: 400;
	margin: 0;
}

.format-gallery .entry-meta a,
.format-gallery .entry-content a {
	color: #722d19;
}

/* Image */
.format-image .entry-title {
	font-size: 28px;
	font-weight: bold;
}

.format-image .categories-links,
.format-image .tags-links {
	display: none;
}

/* Link */
.format-link {
	background-color: #f7f5e7;
}

.blog .format-link:first-of-type,
.single .format-link:first-of-type {
	box-shadow: inset 0 2px 2px rgba(173, 165, 105, 0.2);
}

.format-link .entry-header,
.format-link .entry-content p:last-child {
	margin-bottom: 0;
}

.format-link .entry-title {
	color: #ca3c08;
	display: inline;
	font: 300 italic 20px "Source Sans Pro", Helvetica, sans-serif;
	margin-right: 20px;
}

.format-link .entry-title a {
	color: #bc360a;
}

.format-link div.entry-meta {
	display: inline;
}

/* Standard */
.format-standard .wp-video,
.format-standard .wp-audio-shortcode,
.format-audio .wp-audio-shortcode,
.format-standard .video-player {
	margin-bottom: 24px;
}

/* Quote */
.format-quote {
	background-color: #210d10;
}

.format-quote .entry-content,
.format-quote .entry-meta {
	color: #f7f5e7;
}

.format-quote .entry-content blockquote {
	font-size: 28px;
	margin: 0;
}

.format-quote .entry-content a,
.format-quote .entry-meta a,
.format-quote .linked {
	color: #e63f2a;
}

.format-quote .entry-content cite a {
	border-bottom: 1px dotted #fff;
	color: #fff;
}

.format-quote .entry-content cite a:hover {
	text-decoration: none;
}

.format-quote blockquote small,
.format-quote blockquote cite {
	display: block;
	font-size: 16px;
}

.format-quote blockquote {
	font-style: italic;
	font-weight: 300;
	padding-left: 75px;
	position: relative;
}

.format-quote blockquote:before {
	content: '\201C';
	font-size: 140px;
	font-weight: 400;
	line-height: .8;
	padding-right: 25px;
	position: absolute;
	left: -15px;
	top: -3px;
}

.format-quote .entry-meta .author {
	display: none;
}

/* Status */
.format-status {
	background-color: #722d19;
	padding: 0;
}

.format-status .entry-content,
.format-status .entry-meta {
	padding-left: 35px;
	position: relative;
}

.format-status .entry-content a {
	color: #eadaa6;
}

.format-status .entry-meta a {
	color: #f7f5e7;
}

.sidebar .format-status .entry-content,
.sidebar .format-status .entry-meta {
	padding-left: 95px;
}

.format-status .entry-content:before,
.format-status .entry-meta:before {
	background: url(images/dotted-line.png) repeat-y left bottom;
	background-size: 4px 4px;
	content: "";
	display: block;
	height: 100%;
	position: absolute;
	left: 10px;
	top: 0;
	width: 1px;
}

.sidebar .format-status .entry-content:before,
.sidebar .format-status .entry-meta:before {
	left: 70px;
}

.format-status .categories-links,
.format-status .tags-links {
	display: none;
}

/* Ensures the dots in the dot background are in lockstep. */
.format-status .entry-meta:before {
	background-position: left top;
}

.format-status .entry-content {
	color: #f7f5e7;
	font-size: 24px;
	font-style: italic;
	font-weight: 300;
	padding-bottom: 30px;
	padding-top: 40px;
	position: relative;
}

.format-status .entry-content p:first-child:before {
	background-color: rgba(0, 0, 0, 0.65);
	content: "";
	height: 3px;
	margin-top: 13px;
	position: absolute;
	left: 4px;
	width: 13px;
}

.sidebar .format-status .entry-content > p:first-child:before {
	left: 64px;
}

.format-status .entry-content p:last-child {
	margin-bottom: 0;
}

.format-status .entry-meta {
	margin-top: 0;
	padding-bottom: 40px;
}

.format-status .entry-meta .date a:before {
	content: "\f105";
}

/* Video */
.format-video {
	background-color: #db572f;
}

.format-video .entry-content a,
.format-video .entry-meta a,
.format-video .entry-content a:hover,
.format-video .entry-meta a:hover {
	color: #fbfaf3;
}

.format-video .entry-title {
	font-size: 50px;
	font-weight: 400;
}

.format-video .entry-meta {
	color: #220e10;
}


/**
 * 5.6 Attachments
 * ----------------------------------------------------------------------------
 */

.attachment .hentry {
	background-color: #e8e5ce;
	margin: 0;
	padding: 0;
}

.attachment .entry-header {
	margin-bottom: 0;
	max-width: 1040px;
	padding: 30px 0;
}

.attachment .entry-title {
	display: inline-block;
	float: left;
	font: 300 italic 30px "Source Sans Pro", Helvetica, sans-serif;
	margin: 0;
}

.attachment .entry-title:before {
	content: "\f416";
	font-size: 32px;
	margin-right: 10px;
}

.attachment .entry-meta {
	clear: none;
	color: inherit;
	float: right;
	max-width: 604px;
	padding: 9px 0 0;
	text-align: right;
}

.hentry.attachment:not(.image-attachment) .entry-meta {
	max-width: 104px;
}

.attachment footer.entry-meta {
	display: none;
}

.attachment-meta:before {
	content: "\f307";
}

.full-size-link a:before {
	content: "\f402";
}

.full-size-link:before {
	content: none;
}

.attachment .entry-meta a,
.attachment .entry-meta .edit-link:before,
.attachment .full-size-link:before {
	color: #ca3c08;
}

.attachment .entry-content {
	background-color: #fff;
	max-width: 100%;
	padding: 40px 0;
}

.image-navigation {
	margin: 0 auto;
	max-width: 1040px;
	position: relative;
}

.image-navigation a:hover {
	text-decoration: none;
}

.image-navigation .nav-previous,
.image-navigation .nav-next {
	position: absolute;
	top: 50px;
}

.image-navigation .nav-previous {
	left: 0;
}

.image-navigation .nav-next {
	right: 0;
}

.image-navigation .meta-nav {
	font-size: 32px;
	font-weight: 300;
	vertical-align: -4px;
}

.attachment .entry-attachment,
.attachment .type-attachment p {
	margin: 0 auto;
	max-width: 724px;
	text-align: center;
}

.attachment .entry-attachment .attachment {
	display: inline-block;
}

.attachment .entry-caption {
	text-align: left;
}

.attachment .entry-description {
	margin: 20px auto 0;
	max-width: 604px;
}

.attachment .entry-caption p:last-child,
.attachment .entry-description p:last-child {
	margin: 0;
}

.attachment .site-main .sidebar-container {
	display: none;
}

.attachment .entry-content .mejs-audio {
	max-width: 400px;
	margin: 0 auto;
}

.attachment .entry-content .wp-video {
	margin: 0 auto;
}

.attachment .entry-content .mejs-container {
	margin-bottom: 24px;
}

/**
 * 5.7 Post/Paging Navigation
 * ----------------------------------------------------------------------------
 */

.navigation .nav-previous {
	float: left;
}

.navigation .nav-next {
	float: right;
}

.navigation a {
	color: #bc360a;
}

.navigation a:hover {
	color: #ea9629;
	text-decoration: none;
}

.paging-navigation {
padding: 10px 0;
float: left;
width: 100%;
}

.paging-navigation .nav-links {
	margin: 0 auto;
	max-width: 604px;
	width: 100%;
}

.sidebar .paging-navigation .nav-links {
	max-width: 1040px;
	padding: 0 376px 0 60px;
}

.paging-navigation .nav-next {
	padding: 13px 0;
}

.paging-navigation a {
	font-size: 22px;
	font-style: italic;
	font-weight: 300;
	color:#0070c0;
}
.paging-navigation a:hover {
color:#000;	
}

.paging-navigation .meta-nav {
	background-color: #0070c0;
	border-radius: 50%;
	color: #fff;
	display: inline-block;
	font-size: 26px;
	padding: 3px 0 8px;
	text-align: center;
	width: 50px;
}

.paging-navigation .nav-previous .meta-nav {
	margin-right: 10px;
}

.paging-navigation .nav-next .meta-nav {
	margin-left: 10px;
}

.paging-navigation a:hover .meta-nav {
	background-color: #000;
	text-decoration: none;
}

.post-navigation {
	background-color: #fff;
	color: #ca3c08;
	font-size: 20px;
	font-style: italic;
	font-weight: 300;
	padding: 20px 0;
}

.post-navigation .nav-links {
	margin: 0 auto;
	max-width: 1040px;
}

.sidebar .post-navigation .nav-links {
	padding: 0 376px 0 60px;
}

.post-navigation a[rel="next"] {
	float: right;
	text-align: right;
}


/**
 * 5.8 Author Bio
 * ----------------------------------------------------------------------------
 */

.author-info {
	margin: 0 auto;
	max-width: 604px;
	padding: 30px 0 10px;
	text-align: left; /* gallery & video post formats */
	width: 100%;
}

.author.sidebar .author-info {
	max-width: 1040px;
	padding: 30px 376px 10px 60px;
}

.single .author-info {
	padding: 50px 0 0;
}

.author-avatar .avatar {
	float: left;
	margin: 0 30px 30px 0;
}

.single-format-status .author-description {
	color: #f7f5e7;
}

.author-description .author-title {
	clear: none;
	font: 300 italic 20px "Source Sans Pro", Helvetica, sans-serif;
	margin: 0 0 8px;
}

.author-link {
	color: #ca3c08;
	margin-left: 2px;
}

.author.archive .author-link {
	display: none;
}


/**
 * 5.9 Archives
 * ----------------------------------------------------------------------------
 */


.archive-title,
.archive-meta {
margin: 0 auto;
max-width: 100%;
padding:0 0 20px 0;
width: 100%;
font-size: 24px;
color: #0071B9;
text-transform: uppercase
}

.archive-meta {
	font-size: 16px;
	font-style: normal;
	font-weight: normal;
	margin-top: -15px;
	padding: 0 0 11px;
}

.sidebar .archive-meta {
	padding-right: 316px;
}


/**
 * 5.10 Search Results/No posts
 * ----------------------------------------------------------------------------
 */

.page-header {
	background-color: #e8e5ce;
}

.page-title {
	font: 300 italic 30px "Source Sans Pro", Helvetica, sans-serif;
	margin: 0 auto;
	max-width: 1040px;
	padding: 30px 0;
	width: 100%;
}

.page-content {
	margin: 0 auto;
	max-width: 604px;
	padding: 40px 0;
	width: 100%;
}

.sidebar .page-content {
	margin: 0 auto;
	max-width: 1040px;
	padding: 40px 376px 40px 60px;
}


/**
 * 5.11 404
 * ----------------------------------------------------------------------------
 */

.error404 .page-header {
	background-color: #fff;
}

.error404 .page-title {
	line-height: 0.6;
	margin: 0;
	padding: 300px;
	position: relative;
	text-align: center;
	width: auto;
}

.error404 .page-title:before {
	color: #e8e5ce;
	content: "\f423";
	font-size: 964px;
	line-height: 0.6;
	overflow: hidden;
	position: absolute;
	left: 7px;
	top: 28px;
}

.error404 .page-wrapper {
	background-color: #e8e5ce;
}

.error404 .page-header,
.error404 .page-content {
	margin: 0 auto;
	max-width: 1040px;
	padding-bottom: 40px;
	width: 100%;
}


/**
 * 5.12 Comments
 * ----------------------------------------------------------------------------
 */

.comments-title,
.comment-list,
.comment-reply-title,
.must-log-in,
.comment-respond .comment-form,
.comment-respond iframe {
	display: block;
	margin-left: auto;
	margin-right: auto;
	max-width: 604px;
	width: 100%;
}

.sidebar .comments-title,
.sidebar .comment-list,
.sidebar .must-log-in,
.sidebar .comment-reply-title,
.sidebar .comment-navigation,
.sidebar .comment-respond .comment-form {
	max-width: 1040px;
	padding-left: 60px;
	padding-right: 376px;
}

.comments-title {
	font: 300 italic 28px "Source Sans Pro", Helvetica, sans-serif;
}

.comment-list,
.comment-list .children {
	list-style-type: none;
	padding: 0;
}

.comment-list .children {
	margin-left: 20px;
}

.comment-list > li:after,
.comment-list .children > li:before {
	background: url(images/dotted-line.png) repeat left top;
	background-size: 4px 4px;
	content: "";
	display: block;
	height: 1px;
	width: 100%;
}

.comment-list > li:last-child:after {
	display: none;
}

.comment-body {
	padding: 24px 0;
	position: relative;
}

.comment-author {
	float: left;
	max-width: 74px;
}

.comment-author .avatar {
	display: block;
	margin-bottom: 10px;
}

.comment-author .fn {
	word-wrap: break-word;
}

.comment-author .fn,
.comment-author .url,
.comment-reply-link,
.comment-reply-login {
	color: #bc360a;
	font-size: 14px;
	font-style: normal;
	font-weight: normal;
}

.says {
	display: none;
}

.no-avatars .comment-author {
	margin: 0 0 5px;
	max-width: 100%;
	position: relative;
}

.no-avatars .comment-metadata,
.no-avatars .comment-content,
.no-avatars .comment-list .reply {
	width: 100%;
}

.bypostauthor > .comment-body .fn:before {
	content: "\f408";
	vertical-align: text-top;
}

.comment-list .edit-link {
	margin-left: 20px;
}

.comment-metadata,
.comment-awaiting-moderation,
.comment-content,
.comment-list .reply {
	float: right;
	width: 79%;
	width: -webkit-calc(100% - 124px);
	width:         calc(100% - 124px);
	word-wrap: break-word;
}

.comment-meta,
.comment-meta a {
	color: #a2a2a2;
	font-size: 13px;
}

.comment-meta a:hover {
	color: #ea9629;
}

.comment-metadata {
	margin-bottom: 20px;
}

.ping-meta {
	color: #a2a2a2;
	font-size: 13px;
	line-height: 2;
}

.comment-awaiting-moderation {
	color: #a2a2a2;
}

.comment-awaiting-moderation:before {
	content: "\f414";
	margin-right: 5px;
	position: relative;
	top: -2px;
}

.comment-reply-link:before,
.comment-reply-login:before {
	content: "\f412";
	margin-right: 3px;
}

/* Comment form */
.comment-respond {
	background-color: #f7f5e7;
	padding: 30px 0;
}

.comment .comment-respond {
	margin-bottom: 20px;
	padding: 20px;
}

.comment-reply-title {
	font: 300 italic 28px "Source Sans Pro", Helvetica, sans-serif;
}

.comment-reply-title small a {
	color: #131310;
	display: inline-block;
	float: right;
	height: 16px;
	overflow: hidden;
	width: 16px;
}

.comment-reply-title small a:hover {
	color: #ed331c;
	text-decoration: none;
}

.comment-reply-title small a:before {
	content: "\f406";
	vertical-align: top;
}

.sidebar .comment-list .comment-reply-title,
.sidebar .comment-list .comment-respond .comment-form {
	padding: 0;
}

.comment-form .comment-notes {
	margin-bottom: 15px;
}

.comment-form .comment-form-author,
.comment-form .comment-form-email,
.comment-form .comment-form-url {
	margin-bottom: 8px;
}

.comment-form [for="author"],
.comment-form [for="email"],
.comment-form [for="url"],
.comment-form [for="comment"] {
	float: left;
	padding: 5px 0;
	width: 120px;
}

.comment-form .required {
	color: #ed331c;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"] {
	max-width: 270px;
	width: 60%;
}

.comment-form textarea {
	width: 100%;
}

.form-allowed-tags,
.form-allowed-tags code {
	color: #686758;
	font-size: 12px;
}

.form-allowed-tags code {
	font-size: 10px;
	margin-left: 3px;
}

.comment-list .pingback,
.comment-list .trackback {
	padding-top: 24px;
}

.comment-navigation {
	font-size: 20px;
	font-style: italic;
	font-weight: 300;
	margin: 0 auto;
	max-width: 604px;
	padding: 20px 0 30px;
	width: 100%;
}

.no-comments {
	background-color: #f7f5e7;
	font-size: 20px;
	font-style: italic;
	font-weight: 300;
	margin: 0;
	padding: 40px 0;
	text-align: center;
}

.sidebar .no-comments {
	padding-left: 60px;
	padding-right: 376px;
}


/**
 * 5.13 Multisite
 * ----------------------------------------------------------------------------
 */

.site-main .mu_register {
	margin: 0 auto;
	max-width: 604px;
	width: 100%;
}

.mu_alert {
	margin-top: 25px;
}

.site-main .mu_register input[type="submit"],
.site-main .mu_register #blog_title,
.site-main .mu_register #user_email,
.site-main .mu_register #blogname,
.site-main .mu_register #user_name {
	font-size: inherit;
	width: 270px;
}

.site-main .mu_register input[type="submit"] {
	width: auto;
}


/**
 * 6.0 Sidebar
 * ----------------------------------------------------------------------------
 */

.site-main .widget-area {
	float: right;
	width: 300px;
}


/**
 * 6.1 Widgets
 * ----------------------------------------------------------------------------
 */
.widget .widget-title {
	margin: 0 0px 20px 0px !important;
	font-weight: normal;
	color: #000;
	font-size: 21px;
}
.widget {
margin-bottom: 26px;	
}
.widget ul,
.widget ol {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

.widget li {
	padding: 5px 0;
	font-size: 16px;
}
.widget li a{
color:#0071BA;
}
.widget-title li a{
color:#414141;	
}
.widget .children li:last-child {
	padding-bottom: 0;
}

.widget li > ul,
.widget li > ol {
	margin-left: 20px;
}

/* Search widget */
.search-form .search-submit {
	display: none;
}

/* RSS Widget */
.widget_rss .rss-date {
	display: block;
}

.widget_rss .rss-date,
.widget_rss li > cite {
	color: #a2a2a2;
}

/* Calendar Widget */
.widget_calendar table,
.widget_calendar td {
	border: 0;
	border-collapse: separate;
	border-spacing: 1px;
}

.widget_calendar caption {
	font-size: 14px;
	margin: 0;
}

.widget_calendar th,
.widget_calendar td {
	padding: 0;
	text-align: center;
}

.widget_calendar a {
	display: block;
}

.widget_calendar a:hover {
	background-color: rgba(0, 0, 0, 0.15);
}

.widget_calendar tbody td {
	background-color: rgba(255, 255, 255, 0.5);
}

.site-footer .widget_calendar tbody td {
	background-color: rgba(255, 255, 255, 0.05);
}

.widget_calendar tbody .pad, .site-footer .widget_calendar tbody .pad {
	background-color: transparent;
}
.read_more{
background: #0070c0;
font-size: 14px;
font-weight: 400;
color: #fff !important;
padding: 8px 14px;
text-transform: uppercase;
margin-bottom: 40px;  
float: left;
margin-top: 6px;	
}
.read_more:hover{
background:#000;	
}
.blog article, .archive article{
border-bottom: 1px solid gray !important;
float: left;
margin-bottom: 30px;
}
.blog article:last-child, .archive article:last-child{
border-bottom: none !important;	 
}
.sign-up-n .wpcf7-form-control-wrap.your-email {
    float: left;
    width: 69%;
    margin-right: 1%;
}
.sign-up-n .wpcf7-submit {
    background: #2B88C4;
    float: left; 
    padding: 0;
    width: 30%;
    height: 48px;
    text-transform: capitalize;
    font-size: 16px;
	border: none;
}
.sign-up-n .wpcf7-email{
padding: 10px;	
}
.sign-up-n span.wpcf7-not-valid-tip {
    color: #f00;
    font-size: 12px;
    font-weight: normal;
    display: block;
    float: left;
}
.right_sidebar .wpcf7-response-output{
margin: 0 0.5em 2em;	
}
.right_sidebar .wpcf7-validation-errors {
    color: #c4690e;
    background: #fffdf3;
    text-align: center;
    border: 1px solid #fad7b5;
    font-weight: 400;
	margin-left: 0;
	margin-right: 0;
}
.right_sidebar  .wpcf7 .wpcf7-mail-sent-ok {
    margin: 0 0 20px 0;
    padding: 10px;
    background: #edfdd3;
    border: 1px solid #c4dba0;
    text-align: center;
    color: #657e3c;
    font-weight: 400;
}
.right_sidebar .widget_black_studio_tinymce .textwidget{
text-align: justify;	
}
.right_sidebar .widget_black_studio_tinymce .widget-title{
text-align:center;
color: #1f71b4;	
}
.search .page-title {
font-family:'Lato', sans-serif;
padding: 5px 0;
font-size: 26px;
margin: 0px 0 30px 19px;	
}
.screen-reader-response{
display:none;	
}
.entry-content .become_partner {
background: #1f71b4;
border: 0px;
color: #fff;
float: none;
text-transform: uppercase;
font-weight: bold;
font-size: 19px;
padding: 10px 35px;
letter-spacing: 3px;
border-radius: 50px;
cursor: pointer;
margin-top: 15px;
display: inline-block;
}
.entry-content .become_partner:hover {
background:#000;
color: #fff;	
}
.success_stories h1{
text-transform: uppercase;
font-size: 28px;
text-align: left;
padding: 0px;
color:#1f71b4;
text-transform: none;	
}
.entry-content .success_stories img{
margin-bottom:15px !important;	
}
.success_stories h2{
text-transform: uppercase;
font-size: 22px;
text-align: left;
padding: 0px;
color:#1f71b4;
text-transform: none;	
}
.success_stories h3{
text-transform: uppercase;
font-size: 18px;
text-align: left;
padding: 0px;
color:#1f71b4;
text-transform: none;	
}
/**
 * 7.0 Footer
 * ----------------------------------------------------------------------------
 */

#wpstats {
	display: block;
	margin: -10px auto 0;
}
.auto_sections .vc_col-sm-4 .vc_column-inner {
 /*    padding: 0px 20px 20px 20px;
    margin: 20px;
    background: #fff; */
}
.auto_sections_head h2{
text-align:center;	 
}
.auto_sections .no_hover img{
margin:0px;
width:100%;
}
.auto_sections .section_c img{
width: auto;
margin-top: 15px;
display: inline-block;
}
.section_c{
padding: 10px 20px;	
}
.section_c p{
min-height:80px;	
}
.section_c img{
margin-top: 30px;	
}
.with_hover{
background:#f7f5f5 !important;
position: absolute;
top: 0;
height: 100%;
color:#1f71b4;	
padding: 15px;
display:none;	
}
.auto_sections .vc_col-sm-4{
padding-top:0px !important;
padding-bottom:0px !important;	
}
.section_c a{
float: left;
width: 1000%;
margin-top: 10px;
font-weight:bold; 	
}
.stay_up .gform_button{
background: #2b88c4;
float: left;
text-transform: capitalize;
font-size: 16px;
border: none;
padding: 10px 20px;
margin-bottom: 30px !important;	
}
.gform_confirmation_message{
color:green;	
}

.gform_wrapper.gravity-theme .gfield_label {
width: 100%;
float: left;
text-transform: uppercase;
font-size: 14px !important;
letter-spacing: 2px;
color: #414141;
margin: 0 0 3px 0;
font-weight: normal !important;
}
.gform_wrapper.gravity-theme .gfield input.large, .gform_wrapper.gravity-theme .gfield select.large {
border: 1px solid #1f71b4 !important
}
.gform_button {
    background: #fbcf47 !important;
    border: 0px !important;
    color: #000 !important;
    margin-bottom: 20px !important;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 19px;
    padding: 10px 95px !important;
    letter-spacing: 3px !important;
    border-radius: 50px !important;
    cursor: pointer !important;
}
.gform_button:hover {
    background: #000 !important;
    color: #fff !important;
}
.gform_required_legend{
display:none;
}
.grecaptcha-badge{
bottom: 86px !important;	
}

.multi_serach_main {
margin-top: 10px;
  text-align: center;
  margin-bottom: 10px;
}
.multi_serach_box {
	width: auto;
	display: inline-block;
	text-align: center;
	border: 1px solid #afb6c7;
	border-radius: 4px;
	padding: 6px 20px;
	margin-left: 2.5%;
	position: relative;
	vertical-align: top;
}
.multimedia2 .multi_serach_box{
margin-left:1.7%;	
}
.multimedia2 .multi_serach_box:first-child {
margin-left: 0px;
  width: 55%;
    background: #eceef1;
  border: 1px solid #D4D4D4;
padding: 11px 0px;
}
.multimedia2 .multi_serach_box:first-child #txt_search {  
margin: 0;
  font-weight: 500;
  height: auto;
  color: #828282;
  font-size: 16px;
}
.multimedia2 .multi_serach_box:first-child .icon_search_field {
background: url(images/111.png);
width: 40px;
  float: left;
  padding: 0px;
  height: 40px;
  border-radius: 0 4px 4px 0px;
  position: absolute;
  right: 5px;
  top: 4px;
  background-repeat: no-repeat;
}
.multimedia2 .multi_serach_box:nth-child(2) {
width: 20%;
}
.multimedia2 .multi_serach_box:last-child {
	width: 20%;
}
.multimedia2 .multi_serach_box select {
background: transparent;
  float: left;
  color: #000;
  padding: 10px 11px;
  width: 100%;
  text-transform: capitalize;
  font-weight: 500;
}
.multimedia2 .multi_video_box{
border:none;	 
}
.multimedia2 .multi_video_box img {
  width: 100%;
  float: left;
  margin: 0;
  border-bottom: none;
  border-radius: 5px;
}
.multimedia2 .video_title {
width: auto;
  float: left;
  min-height: 117px;
  padding: 12px 0px 15px;
  font-weight: bold;
  font-size: 20px;
  margin-top: 10px;
  color: #000
}
.multimedia2 .author_d img{
display: inline;
  float: none;
  margin-right: 11px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
}
.multimedia2 .author_d h3{
display: inline;
text-transform: capitalize;
  color: #414141;
  font-weight: 600;
  font-size: 18px;
}
.multimedia2 .author_d{
float: left;
  width: 50%;	
}
.multimedia2 .button_d{
float: right;
  width: 50%;	
}
.multimedia2 .button_d a{ 
background: #1F71B4;
  color: #fff;
  float: right;
  font-weight: 500;
  font-size: 17px;
  padding: 8px 30px;
  border-radius: 20px;
  width: auto;
  text-align: center;
}
.multimedia2 .button_d a:hover{
background: #000;
color:#fff;	
}
.multi_serach_box label {
	margin: 0 5px 0 0;
}
.multi_serach_box select {
	border: 0px;
}
.multi_serach_box select {
	border: 0;
	color: #3ea9f5;
	font-weight: bold;
	text-transform: uppercase;
	font-size: 14px;
}
.multi_serach_box select option {
	text-transform: uppercase;
	font-size: 14px;
}
.multi_serach_box .multi_search_field {
	border: 0;
	width: 100%;
	float: left;
	padding: 0 0 0 15px;
	height: 43px;
	margin: -7px 0;
	background: #eceef1;
	font-weight: bold;
	font-size: 14px;
}
.multi_serach_box .icon_search_field {
	background:url(/wp-content/themes/empower/images/icon_search.jpg);
	width: 42px;
	float: left;
	padding: 0px;
	height: 42px;
	border-radius: 0 4px 4px 0px;
	position: absolute;
	right: -1px;
	top: -1px;
}

.multi_serach_box:last-child {
/* 	border: 1px solid #eceef1;
	background: #eceef1; */
}
.multi_video_main {
	width: 100%;
	margin: 0px 0 0;
	float: left;
	text-align: center;
	padding-bottom: 40px;
	flex: 1;
	flex-wrap: wrap;
	display: flex;
}
.single_video{
display: inherit;	
}
.multi_video_box {
	width: 31.5%;
	display: inline-block;
	border: 1px solid #afb6c7;
	border-radius: 4px;
	padding: 0px 0;
	margin-left: 2.5%;
	position: relative;
	vertical-align: top;
	text-align: left;
	margin-top:40px;
}
.multi_video_box { position: relative; }

.multi_video_box .you_tube_icon{
    position: absolute;
	display: block;
	background: url(//wdsinc.com/wp-content/themes/wds/images/uicon.png);
	height: 20%;
	width: 21%;
	top: 40%;
	left: 40%;
	background-repeat: no-repeat;
	background-size: 100%;
}
.you .you_tube_icon {
    position: absolute;
	display: block;
	background: url(//wdsinc.com/wp-content/themes/wds/images/uicon.png);
	height: 20%;
	width: 19%;
	top: 40%;
	left: 41%;
	background-repeat: no-repeat;
	background-size: 100%;
}
.multi_video_box a {
	position: relative;
	width: 100%;
	float: left;
}
.multi_video_box .cat_t{
margin-top:20px;
font-size: 13px;	
}
.multi_video_box .tag_t{
margin-top:10px;
font-size: 13px;	
}
.multi_video_box .cat_t span{
font-weight:bold;	
}
.multi_video_box .cat_t a {
width: auto;
float: none;
display: inline-block;	
}
.multi_video_box:nth-child(3n+1) {
    margin-left:0px;
}
.multi_video_box img {
	width: 100%;
	float: left;
	margin: 0;
	border-bottom: 1px solid #afb6c7;
	border-radius: 4px 4px 0 0;
}
.multi_cat {
	width: 100%;
	float: left;
	padding: 25px 20px 12px;
}
.multi_cat p {
	width: auto;
	float: left;
	padding: 0 5px;
	font-size: 13px;
	font-weight: 700;
	color: #aab1bc;
	margin: 0px;
}
.multi_cat .video{
	color: #ef7c9d;
}
.multi_cat .production{
	color: #f4a935;
}

.video_title {
	width: auto;
	float: left;
	padding: 0px 25px 15px;
	font-weight: bold;
	font-size: 18px;
	margin-top: 10px ;
}
.malti_para {
	padding: 10px 25px 30px;
	width: auto;
	float: left;
}
.vc_row .container {
  width: 1230px;
  margin: 0 auto;
  float: none;
}
.page_banner h1 {
  font-weight: 300;
  color: #212C3E;
  font-size: 54px;
  text-align: center;
  padding: 1.5% 0 0;
}
#searchResult {
  list-style: none;
  padding: 0;
  width: 100%;
  position: absolute;
  margin: 0;
  z-index: 99;
  top: 44px;
  display: none;
  border: 1px solid gray;
  box-shadow: 3px 3px 3px;
}
.read_s h3{
width: 100%;
  float: left;
  font-size: 40px;
  text-transform: uppercase;
  letter-spacing: 8px;
  margin: 0px 0 30px 0 !important;
  color: #1e71b4;
  font-weight: 400;
  text-align: left;	
}
.photo_section{
padding:4% 0 0 !important;	
}
.click_image{
text-align: center;
  font-size: 13px;
  margin-top: 8px;	
}
.POWERFUL_FEATURES i{
color: #fbce47 !important;
margin-right: 12px;
}
.featured_story h3 {
font-size: 32px;
  color: #fff;
  text-align: left;
  margin-top: 0px;
  font-weight: 400;
  letter-spacing: 8px;
  font-family: 'Lato', sans-serif;
  margin-bottom: 3px !important;
}
.featured_story p{
font-size: 16px !important;
  color: #fff;
  max-width: 370px!important;
  width: inherit !important;
  text-align: left !important;
  padding: 0 !important;
  min-height: auto !important;
  text-transform: inherit !important;
  letter-spacing: 0 !important;
  display: inherit !important;
}	
.featured_story .vc_column-inner{
margin: 0 auto;
max-width: 861px;
padding: 0 !important;	
}
.featured_story img{
display:inline-block;	
}
.featured_story .story{
display:inline-block;
width: 68%;	
padding: 2.2% 4% 2.2% 10%;
vertical-align: middle;
z-index: 1;
position: relative;
}
.featured_story .img_part{
width: auto;
margin-top: -24px !important;
display: inline-block;
vertical-align: middle;
margin-right: -55px !important;
z-index: 999;
position: relative;
margin-bottom:0px !important;
}
.featured_story .img_part img{
height: 300px;
width: auto;	
}
.featured_story a{
font-size: 18px;
color: #fff;
margin-top: 18px;
display: inherit;
}
.featured_story a:hover{
color:#fff;
}
.featured_story a i:hover{
color:#fff;
background: #000;	
}
.featured_story a i{
width: auto;
  display: inline-block;
  color: #444444;
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  background: #fbcf47;
  padding: 6px 30px 9px;
  border-radius: 20px;
  font-style: normal;
}

.margin_minus { 
margin-top: -17em;
}
.featured_story .wpb_wrapper{
text-align:center;	
}
.yellow_section .wpb_single_image {
  margin: -77px 0 0 0;
  margin-bottom: 0px;
}
.yellow_section .ERP_INTEGRAT {
text-align: center;
  color: #1F71B4;
  font-size: 20px;
  margin-bottom: 8px;
  text-transform: uppercase;
  font-weight: 400;
  padding-left: 10px;
  padding-right: 10px;
  letter-spacing: 2px;
}
.yellow_section .ERP_INTEGRAT:after {
height: 2px;
  display: block;
  width: 73px;
  background: #1F71B4;
  content: '';
  margin: 8px auto;
}

.yellow_section {
overflow:visible !important;
padding-top: 50px;
padding-bottom: 60px;	
}
.yellow_section p {
  padding: 0 15px 15px 15px;
  font-size: 16px;
  text-align: center;
  min-height: 144px; 
  width: 100%;
  color:#414141;
  display: inline-block;
}


/* .auto_sections .vc_col-sm-4:hover .with_hover{
display:block;	
} */ 
/**
 * 8.0 Media Queries
 * ----------------------------------------------------------------------------
 */

/* Does the same thing as <meta name="viewport" content="width=device-width">,
 * but in the future W3C standard way. -ms- prefix is required for IE10+ to
 * render responsive styling in Windows 8 "snapped" views; IE10+ does not honor
 * the meta tag. See https://core.trac.wordpress.org/ticket/25888.
 */
@-ms-viewport {
	width: device-width;
}
@viewport {
	width: device-width;
}

@media (max-width: 1599px) {
	.site {
		border: 0;
	}
}

@media (max-width: 1069px) {
	.sidebar img.alignleft,
	.sidebar .wp-caption.alignleft {
		margin-left: 0;
	}

	.sidebar img.alignright,
	.sidebar .wp-caption.alignright {
		margin-right: 0;
	}

	.error404 .page-header {
		margin-left: auto;
		max-width: 604px;
		width: 100%;
	}

	.archive-header,
	.search .page-header,
	.archive .page-header,
	.blog .page-header,
	.error404 .page-content,
	.search .page-content,
	.archive .page-content,
	.attachment .entry-header,
	.attachment .entry-content,
	.post-navigation .nav-links,
	.sidebar .site-info,
	.site-footer .widget-area {
		padding-left: 0;
		padding-right: 0;
	}

	.error404 .page-title {
		font-size: 24px;
		padding: 180px;
	}

	.error404 .page-title:before {
		font-size: 554px;
	}

	.attachment .image-navigation {
		max-width: 724px;
	}

	.image-navigation .nav-previous,
	.image-navigation .nav-next {
		position: static;
	}

	.site-main .widget-area {
		margin-right: 60px;
	}
}

@media (max-width: 999px) {
	.sidebar .entry-header,
	.sidebar .entry-content,
	.sidebar .entry-summary,
	.sidebar .entry-meta,
	.sidebar .comment-list,
	.sidebar .comment-reply-title,
	.sidebar .comment-navigation,
	.sidebar .comment-respond .comment-form,
	.sidebar .featured-gallery,
	.sidebar .post-navigation .nav-links,
	.author.sidebar .author-info {
		max-width: 604px;
		padding-left: 0;
		padding-right: 0;
	}

	.sidebar .site-info,
	.search.sidebar .page-content,
	.blog.sidebar .page-content,
	.attachment .entry-header,
	.sidebar .comments-title {
		max-width: 604px;
	}

	.sidebar .archive-meta,
	.attachment .entry-header,
	.search.sidebar .page-content,
	.blog.sidebar .page-content,
	.sidebar .site-info,
	.sidebar .comments-title,
	.sidebar .no-comments {
		padding-left: 0;
		padding-right: 0;
	}

	.attachment .entry-meta {
		float: left;
		text-align: left;
		width: 100%;
	}

	.attachment .entry-content {
		max-width: 100%;
		padding: 40px 0;
	}

	.format-status .entry-content {
		padding-top: 40px;
	}

	.format-status .entry-meta {
		padding-bottom: 40px;
	}

	.sidebar .format-status .entry-content,
	.sidebar .format-status .entry-meta {
		padding-left: 35px;
	}

	.sidebar .format-status .entry-content:before,
	.sidebar .format-status .entry-meta:before {
		left: 10px;
	}

	.sidebar .format-status .entry-content p:first-child:before {
		left: 4px;
	}

	.sidebar .paging-navigation .nav-links {
		padding: 0 60px;
	}

	.site-main .sidebar-container {
		height: auto;
		margin: 0 auto;
		max-width: 604px;
		position: relative;
		top: 20px;
	}

	.site-main .widget-area {
		float: none;
		margin: 0;
		width: 100%;
	}

	.sidebar .site-footer .widget-area {
		max-width: 100%;
		left: 0;
	}
}

/* Collapse oversized image and pulled images after iPad breakpoint. */
@media (max-width: 767px) {
	.site-header .home-link {
		min-height: 0;
	}
	.site-title {
		font-size: 36px;
		padding: 8px 0 10px;
	}
	.entry-content img.alignleft,
	.entry-content .wp-caption.alignleft {
		margin-left: 0;
	}

	.entry-content img.alignright,
	.entry-content .wp-caption.alignright {
		margin-right: 0;
	}

	.attachment .image-navigation,
	.attachment .entry-attachment .attachment {
		max-width: 604px;
		padding: 0;
		width: 100%;
	}

	.gallery-caption {
		display: none;
	}
	
}

@media (max-width: 767px) {
	.site-title {
		font-size: 30px;
	}

	#content .entry-header,
	#content .entry-content,
	#content .entry-summary,
	#content footer.entry-meta,
	#content .featured-gallery,
	.search.sidebar .page-content,
	.blog.sidebar .page-content,
	.sidebar .post-navigation .nav-links,
	.paging-navigation .nav-links,
	#content .author-info,
	.comments-area .comments-title,
	.comments-area .comment-list,
	.comments-area .comment-navigation,
	.comment-respond,
	.sidebar .site-info,
	.sidebar .paging-navigation .nav-links {
		padding-left:15px;
		padding-right: 15px;
	} 

	#content .format-status .entry-content,
	#content .format-status .entry-met {
		padding-left: 35px;
	}

	/* Small menu */
.menu-toggle {
	cursor: pointer;
	margin: 0;	
	display: inline-block;
}
.menu-toggle, .menu-toggle:hover, .menu-toggle:focus, .menu-toggle:active {
	background: none;
	border: none;
	color: #1f71b4;
	padding: 5px 20px 10px;
	width:auto;
	float: none;
	display: inline-block;
}
.nav-menu li > a:after {
background-image: none;
}
	.menu-toggle:after {
/* 		content: "\f502";
		font-size: 12px;
		padding-left: 8px;
		vertical-align: -4px; */
	}

	.toggled-on .menu-toggle:after {
	/* 	content: "\f500";
		vertical-align: 2px; */
	}

.toggled-on .nav-menu, .toggled-on .nav-menu > ul {
	display: inline-block;
	padding: 0 0 5px 0;
	width: 100%;
	margin: 0px;
	height: 400px;
    overflow: scroll;
/* 	background: #efefef; */
}



	.toggled-on li,
	.toggled-on .children {
		display: block;
	}

	.toggled-on .nav-menu li > ul {
		background-color: transparent;
		display: block;
		float: none;
		margin-left: 0px;
		position: relative;
		left: auto;
		top: auto;
	}

	#primary-menu .sub-menu li a {
		color: #1f71b4;
		width: auto;
	}
	#primary-menu .sub-menu li:hover {
		background: none;
	}
	.nav-menu .sub-menu, .nav-menu .children{
	border:none;	
	}
     
	.toggled-on .nav-menu li:hover > a,
	.toggled-on .nav-menu .children a {
		background-color: transparent;
		color: #141412;
	}

	ul.nav-menu,
	div.nav-menu > ul {
		display: none;
	}

	#content .featured-gallery {
		padding-left: 24px;
	}

	.gallery-columns-1 .gallery-item {
		margin-right: 0;
		width: 100%;
	}

	.entry-title,
	.format-chat .entry-title,
	.format-image .entry-title,
	.format-gallery .entry-title,
	.format-video .entry-title {
		font-size: 22px;
		font-weight: bold;
	}

	.format-quote blockquote,
	.format-status .entry-content {
		font-size: 18px;
	}

	.format-quote blockquote small,
	.format-quote blockquote cite {
		font-size: 13px;
	}

	.error404 .page-title {
		padding: 40px 0 0;
	}

	.error404 .page-title:before {
		content: normal;
	}

	.comment-author {
		margin-right: 30px;
	}

	.comment-author .avatar {
		height: auto;
		max-width: 100%;
	}

	.comment-metadata,
	.comment-content,
	.comment-list .reply {
		width: 70%;
		width: -webkit-calc(100% - 104px);
		width:         calc(100% - 104px);
	}

	.comment-form input[type="text"],
	.comment-form input[type="email"],
	.comment-form input[type="url"] {
		width: -webkit-calc(100% - 120px);
		width:         calc(100% - 120px);
	}

	.comment-form textarea {
		height: 80px; /* Smaller field for mobile. */
	}

	/* Audio */
	.format-audio .entry-content:before {
		display: none;
	}

	.format-audio .audio-content {
		background-image: none;
		float: none;
		padding-left: 0;
		width: auto;
	}
	.sign-up-n .wpcf7-email {
    width: 100%;
   }

}

/* Mobile devices */
@media (max-width: 359px) {
	.site-title {
		font-weight: normal;
	}
	.site-description {
	    clip: rect(1px, 1px, 1px, 1px);
	    position: absolute;
	}
	.gallery {
		margin-left: 0;
	}

	.gallery .gallery-item,
	.gallery-columns-2.gallery-size-thumbnail .gallery-item {
		max-width: none;
		width: 49%;
		width: -webkit-calc(50% - 4px);
		width:         calc(50% - 4px);
	}

	.gallery-columns-1.gallery-size-medium,
	.gallery-columns-1.gallery-size-thumbnail,
	.gallery-columns-2.gallery-size-thumbnail,
	.gallery-columns-3.gallery-size-thumbnail {
		display: block;
	}

	.gallery-columns-1 .gallery-item,
	.gallery-columns-1.gallery-size-medium .gallery-item,
	.gallery-columns-1.gallery-size-thumbnail .gallery-item {
		text-align: center;
		width: 98%;
		width: -webkit-calc(100% - 4px);
		width:         calc(100% - 4px);
	}

	.gallery-columns-3 .gallery-item:nth-of-type(3n),
	.gallery-columns-5 .gallery-item:nth-of-type(5n),
	.gallery-columns-7 .gallery-item:nth-of-type(7n),
	.gallery-columns-9 .gallery-item:nth-of-type(9n) {
		margin-right: 4px;
	}

	.gallery br {
		display: none;
	}

	.gallery .gallery-item:nth-of-type(even) {
		margin-right: 0;
	}

	/* Comments */
	.comment-author {
		margin: 0 0 5px;
		max-width: 100%;
	}

	.comment-author .avatar {
		display: inline;
		margin: 0 5px 0 0;
		max-width: 20px;
	}

	.comment-metadata,
	.comment-content,
	.comment-list .reply {
		width: 100%;
	}
}


/**
 * 9.0 Print
 * ----------------------------------------------------------------------------
 */

/* Retina-specific styles. */
@media print,
	(-o-min-device-pixel-ratio: 5/4),
	(-webkit-min-device-pixel-ratio: 1.25),
	(min-resolution: 120dpi) {

	.site-header .search-field {
		background-image: url(images/search-icon-2x.png);
	}

	.format-audio .audio-content,
	.format-status .entry-content:before,
	.format-status .entry-meta:before,
	.comment-list > li:after,
	.comment-list .children > li:before {
		background-image: url(images/dotted-line-2x.png);
	}
}

@media print {
	body {
		background: none !important;
		color: #000;
		font-size: 10pt;
	}

	footer a[rel="bookmark"]:link:after,
	footer a[rel="bookmark"]:visited:after {
		content: " [" attr(href) "] "; /* Show URLs */
	}

	.site {
		max-width: 98%;
	}

	.site-header {
		background-image: none !important;
	}

	.site-header .home-link {
		max-width: none;
		min-height: 0;
	}

	.site-title {
		color: #000;
		font-size: 21pt;
	}

	.site-description {
		font-size: 10pt;
	}

	.author-avatar,
	.site-footer,
	.comment-respond,
	.comments-area .comment-edit-link,
	.comments-area .reply,
	.comments-link,
	.entry-meta .edit-link,
	.page-links,
	.site-content nav,
	.widget-area,
	.main-navigation,
	.navbar,
	.more-link {
		display: none;
	}

	.entry-header,
	.entry-content,
	.entry-summary,
	.entry-meta {
		margin: 0;
		width: 100%;
	}

	.page-title,
	.entry-title {
		font-size: 21pt;
	}

	.entry-meta,
	.entry-meta a {
		color: #444;
		font-size: 10pt;
	}

	.entry-content img.alignleft,
	.entry-content .wp-caption.alignleft {
		margin-left: 0;
	}

	.entry-content img.alignright,
	.entry-content .wp-caption.alignright {
		margin-right: 0;
	}

	.format-image .entry-content .size-full {
		margin: 0;
	}

	/* Remove colors from post formats */
	.hentry {
		background-color: #fff;
	}

	/* Comments */
	.comments-area > li.comment {
		background: none;
		position: relative;
		width: auto;
	}

	.comment-metadata {
		float: none;
	}

	.comment-author .fn,
	.comment-reply-link,
	.comment-reply-login {
		color: #333;
	}
}

.container {
	width: 1200px;
	margin: 0 auto;
}
.entry-content .container_section {
	width:1095px;
	margin: 0 auto !important;
	float: none;
}
.gform_confirmation_message {
  color: green;
  text-align: center;
  width: 100%;
   min-height: 400px;
}
.logo {
	width: auto;
	float: left;
}
.navbar {
	width: auto;
	float: left;
	margin: 0 0 0 30px;
}
.head_right {
	width: auto;
	float: right;
}
.head_right a {
	width: auto;
	display: inline-block;
	color: #1f71b4;
	font-size: 18px;
	font-weight: 600;
	margin: 9px 0;
	letter-spacing: 2px;
}
.head_right .btn_head {
	width: auto;
	display: inline-block;
	color: #444444;
	font-size: 16px;
	font-weight: 400;
	margin: 3px 0px 0 30px;
	background: #fbcf47;
	padding: 6px 30px 9px;
	border-radius: 20px;
}
.head_right .btn_head:hover {
	background: #000;
	color:#fff;
}
.head_right .widget{
margin:0px;	
}
.home .entry-header {
	display: none;
}
.home .hentry {
	padding:0px 0;
}
.banner .metaslider .caption-wrap {
	bottom: auto;
	left: 0;
	background: none;
	opacity: 1;
	top: 30%;
}
.banner  .metaslider .caption {
	padding: 0px;
	width: 1200px;
	margin: 0 auto;
}
.banner h1 {
	width: 100%;
	float: left;
	font-size: 34px;
	text-transform: uppercase;
	letter-spacing: 6px;
	margin: 0px 0 30px 0;
	color: #fbce47;
}
.banner .metaslider .flexslider .slides p {
	font-size: 18px;
	width: 100%;
	float: left;
	margin: 0px 0 30px;
	line-height: 30px;
}
.banner h2 {
	width: 100%;
	float: left;
	font-size: 20px;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin: 0px 0 30px 0;
	color: #fbce47;
	line-height: 32px;
}
.our_solutions {
	padding: 60px 0 70px;
	background-size: 100%;
}
.our_solutions h1 {
	width: 100%;
	float: left;
	font-size: 40px;
	text-transform: uppercase;
	letter-spacing: 8px;
	margin: 0px 0 0px 0;
	color: #1e71b4;
	font-weight: 400;
	text-align: center;
}
.our_solutions.our_customers h1 {
	color: #245074;
}
.our_solutions h2 {
	width: 100%;
	float: left;
	font-size: 22px;
	text-transform: uppercase;
	letter-spacing:1px;
	margin: 20px 0 12px 0;
	padding: 0 20px;
	color: #245074;
	font-weight: 600;
	text-align: center;
}
.our_solutions .vc_col-sm-6 {
	margin: 90px 0 0 0;
	padding: 0 25px;
	display: inline-block;
}
.our_solutions .vc_col-sm-6:first-child {
	padding-left:0px;
}
.our_solutions .vc_col-sm-6:last-child {
	padding-right:0px;
}
.our_solutions p {
	padding: 0 40px 22px;
	font-size: 16px;
	text-align: center;
	min-height: 120px;
	width: 100%;
	display: inline-block;
}
.our_solutions .wpb_single_image {
	margin: -95px 0 0 0;
}
.our_solutions .vc_col-sm-4 {
	padding: 0 15px;
	margin:110px 0 0 0;
}
.our_solutions .vc_col-sm-4:first-child {
	padding-left: 0px;
}
.our_solutions .vc_col-sm-4:last-child {
	padding-right: 0px;
}
.our_solutions.our_customers h2 {
	min-height: 58px;
}
.our_solutions.our_customers p {
	padding: 0 25px 22px;
	min-height: 143px;
}
.our_solutions .vc_col-sm-4 .vc_column-inner{
min-height: 270px;	
}
.why_part img {
	width: 100%;
	margin: 0px;
}
.page-id-1881 .empower_rm{
	padding:240px 0 120px;	
}
.page-id-1881 .benefit{
padding: 70px 0 134px;	
}
.why_main {
	padding:80px 0 120px;
	background-size: 100%;
}
.why_main h1 {
	width: 100%;
	float: left;
	font-size: 40px;
	text-transform: uppercase;
	letter-spacing: 8px;
	margin: 0px 0 0px 0;
	color: #1e71b4;
	font-weight: 400;
	text-align: center;
}
.why_main h4 {
	font-size: 19px;
	color: #245074;
	text-align: center;
	font-weight: bold;
	font-style: italic;
	line-height: 28px;
	display: inline-block;
	width: 100%;
	margin: 12px 0 0 0;
}
.why_main h2 {
	width: 100%;
	float: left;
	font-size: 22px;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin: 20px 0 12px 0;
	padding: 0 20px;
	color: #245074;
	font-weight: 600;
	text-align: center;
}
.why_main p {
	padding: 0 25px 22px;
	font-size: 16px;
	text-align: center;
	min-height: 144px;
	width: 100%;
	display: inline-block;
}
.why_main .wpb_single_image {
	margin: -77px 0 0 0;
}
.why_main .vc_col-sm-4 {
	padding: 0 15px;
	margin: 90px 0 0 0;
}
.why_main .vc_col-sm-4:first-child {
	padding-left: 0px;
}
.why_main .vc_col-sm-4:last-child {
	padding-right: 0px;
}
.why_main h1 img {
	margin: -9px 15px 0 20px;
}
.why_main .vc_col-sm-6 {
	padding: 0 15px;
	margin: 75px 0 0 0;
}
.why_main .vc_col-sm-6:first-child {
	padding-left: 0px;
}
.why_main .vc_col-sm-6:last-child {
	padding-right: 0px;
}
.why_main .vc_col-sm-6 p {
	min-height: 95px;
}
.benefit h1{
	width: 100%;
	float: left;
	font-size: 40px;
	text-transform: uppercase;
	letter-spacing: 8px;
	margin: 0px 0 0px 0;
	color: #fff;
	font-weight: 400;
	text-align: center;
}
.benefit {
	padding:70px 0 90px;
	background-size: 100%;
}
.benefit_icon {
	width: auto;
	display: inline-block;
	vertical-align: middle;
	margin: 0 15px 0 0;
}
.benefit p {
	display: inline-block;
	font-size: 18px;
	color: #ffffff;
	text-transform: uppercase;
	letter-spacing: 2px;
	width: 240px;
	vertical-align: middle;
}
.benefit .vc_col-sm-4 {
	padding: 0 15px;
	margin: 55px 0 0 0;
}
.benefit .vc_col-sm-4:first-child {
	padding-left: 0px;
}
.benefit .vc_col-sm-4:last-child {
	padding-right: 0px;
}
.empower_rm{
	padding:70px 0;
}
.home .empower_rm .container_section {
padding-bottom:81px;
border-bottom:1px solid #000;	
}
.testimonial_s {
padding: 0px 0 70px;	
}
.empower_rm p {
	font-size: 19px;
	color: #245074;
	text-align: center;
	font-weight: bold;
	font-style: italic;
}
.empower_rm h2 {
	width: 100%;
	float: left;
	font-size: 22px;
	text-transform: uppercase;
	letter-spacing:3px;
	margin: 20px 0 12px 0;
	padding: 0 20px;
	color: #1f71b4;
	font-weight: 600;
	text-align: center;
}
.empower_rm h2 a {
	text-transform: none;
}
.empower_rm h3 {
	width: 100%;
	float: left;
	font-size: 22px;
	text-transform: uppercase;
	letter-spacing: 3px;
	margin: 20px 0 35px 0;
	padding: 0 20px;
	color: #1f71b4;
	font-weight: 600;
	text-align: center;
}
.empower_rm .rm_btn {
	width: auto;
	display: inline-block;
	color: #444444;
	font-size: 20px;
	font-weight: 600;
	margin: 3px 0px 0 30px;
	background: #fbcf47;
	padding: 6px 30px 8px;
	border-radius: 20px;
	font-style: normal;
	letter-spacing: 2px;
}
.empower_rm .rm_btn:hover {
	background: #000;
	color:#fff;
}
.site-footer {
	background-color: #1f71b4;
	color: #fff;
	float: left;
	text-align: center;
	width: 100%;
}
.footer_text {
	font-size: 16px;
	letter-spacing: 1px;
	padding: 20px 0;
}
.footer_text .widget{
margin:0px;
}
.footer_text p{
float: left;
width: 85%;
margin-bottom: 6px;
margin-top: 3px;
}
.footer_text .cnss-social-icon {
text-align: left;
float: left;
width: 32px;	
}
.footer_text .IN-widget{
float: left;	
}
.footer_text a {
	color: #fff;
}
.footer_text span {
	padding: 0 20px;
}
.footer_text a:hover {
	color: #000;
}
.page-id-82,
.page-id-799,
.page-id-859
{ 
    background: #efefef; 
}
.main_contact {
    padding: 0px;
}
.cont_main {
    width: 100%;
    float: left;
    margin: 22px 0 0 0;
}
.cont_main_left {
    width: 49%;
    float: left;
}
.wpcf7-form-control-wrap {
    position: relative;
}
.cont_main .wpcf7-text {
    width: 100%;
    float: left;
    border: 0px !important;
    box-shadow: none !important;
    height: 45px;
    background: #fff !important;
    padding: 5px 10px;
}
.cont_main_left:last-child {
    float: right;
}
.cont_main label {
    width: 100%;
    float: left;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 2px;
    color: #414141;
    margin: 0 0 3px 0;
    font-weight: normal;
}
.cont_main1 .wpcf7-submit {
    background: #fbcf47;
    border: 0px;
    color: #000;
	margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 19px;
    padding: 10px 95px;
    letter-spacing: 3px;
    border-radius: 50px;
    cursor: pointer;
}
div.wpcf7-response-output {
    margin: 2em 0.5em 1em;
    padding: 0.2em 1em;
    float: left;
}
.cont_main1 .wpcf7-submit:hover {
    background: #000;
	color:#fff;
}
.cont_main .wpcf7-textarea {
    width: 100%;
    float: left;
    border: 0px !important;
    box-shadow: none !important;
    height: 130px;
    background: #fff !important;
}
.cont_main1 {
	width: 100%;
	float: left;
	text-align: center;
	margin: 55px 0 90px 0;
}
div.wpcf7-validation-errors, div.wpcf7-acceptance-missing {
    border: 2px solid #f7e700;
	width: 100%;
    float: left;
	font-size: 14px;
}
span.wpcf7-not-valid-tip {
    color: #f00;
    font-size: 1em;
    font-weight: normal;
    display: block;
	float: left;
}
div.wpcf7-mail-sent-ok {
    border: 2px solid #398f14;
    float: left;
	font-size: 14px;   
    width: 100%; 
}
.cont_main span.wpcf7-not-valid-tip {
	font-size: 13px;
}
.main_contact div.wpcf7 {
	margin: 0 auto;
	padding: 0;
	width: 790px;
}
.cont_text {
	padding: 0px 0 20px;
}
.cont_text p {
	font-size: 20px;
	color: #245074;
	text-align: center;
	font-weight: bold;
	font-style: italic;
}
.cont_text h2 {
	width: 100%;
	float: left;
	font-size: 22px;
	text-transform: uppercase;
	letter-spacing: 3px;
	margin: 15px 0 10px 0;
	padding: 0 20px;
	color: #1f71b4;
	font-weight: 600;
	text-align: center;
	line-height: 35px;
}
.cont_text h3 {
	width: 100%;
	float: left;
	font-size: 18px;
	text-transform: uppercase;
	letter-spacing: 3px;
	margin: 20px 0 35px 0;
	padding: 0 20px;
	color: #1f71b4;
	font-weight: 600;
	text-align: center;
}
.cont_text h3 a{
color: #1f71b4;	
}
.blog .site-content, .single .site-content, .category .site-content, .archive .site-content{
	width: 1200px;
	margin: 0 auto;
	min-height:500px;  
}
.blog .site-main, .single .site-main, .category .site-main, .archive .site-main{ 
	background: #efefef;
	padding: 40px 0 50px;
}
.page-id-82 .site-main,
.page-id-799 .site-main
{
padding: 40px 0 50px;	
}
.site-main{
	background:transparent;
	padding: 0;
}
.home .site-content{
	width: 100%;
	margin: 0 auto;
}
.blog .entry-content p,.single-post .entry-content p  {
	font-size: 16px;
}
.blog .entry-content li,.single-post .entry-content li {
	font-size: 16px;
	margin: 8px 0 0;
}
.blog .entry-content li:first-child,.single-post .entry-content li:first-child  {
	margin-top:0px;
}
#comments {
	display: none;
}
.left_bar{
    width: 68%;
    float: left;
}
.right_sidebar{
    float: right;
    width: 27%;
}
.entry-content .inner_container{
padding: 0px;
width: 1200px;
margin: 0 auto;
float: none;	
}
.about_us_banner .inner_container h1 {
    width: 100%;
    float: left;
    font-size: 34px;
    text-transform: inherit;
    letter-spacing: 6px;
    margin: 0px 0 30px 0;
    color: #fbce47;
}
.about_us_banner .inner_container p{
	color: #fff;
    font-size: 18px;
    width: 614px;
    float: left;
    margin: 0px 0 30px;
    line-height: 30px;
}
.about_us_banner {
    padding: 6% 60px 9%;
    background-size: 100% 100%;
}
.left_content p{
padding-right: 106px;	
}
.left_content ul{
padding:0px;	
}
.left_content ul li{
list-style:none;
font-weight:600;
color:#1f71b4;
margin-bottom: 10px;
font-size: 20px;
}
.photo_section{
padding-top:20px;
padding-bottom:20px;	
}
.color_section h1{
font-size: 22px;
letter-spacing: 2px;
margin: 20px 0 18px 0;
color: #fff;
font-weight: 600;
}
.color_section p{
color: #fff;
}
.color_section ul li{
color: #fff;
margin: 0 0 15px;	
}
.color_section .vc_column-inner{
/* min-height:680px;	 */
padding-bottom: 100%;
margin-bottom: -100%;
}
.empower_rm_about {
    padding: 70px 0;
}
.empower_rm_about p{
font-size: 19px;
color: #245074;
text-align: center;
font-weight: bold;
font-style: italic;
letter-spacing: 1px;
}
.empower_rm_about h3{
width: 778px;
margin:26px auto;
float: none;
font-size: 21px;
text-transform: uppercase;
letter-spacing: 3px;
/* margin: 20px 0 35px 0; */
padding: 0 20px;
color: #fff;
font-weight: 600;
text-align: center;
background:#1F71B4;
padding: 14px 20px;
/* border-radius: 5px;	 */
}
.empower_rm_about h3 a{
color: #fff;	
}
.color_section .change .vc_column-inner{
padding-top: 50px;
padding-right: 7% !important;
padding-left: 11% !important;	
}
.color_section .keys .vc_column-inner{
padding-top: 50px;
padding-right: 12% !important;
padding-left: 11% !important;	
}
.steps .inner_container h1{
text-transform: uppercase;
font-weight:bold;
margin-bottom: 20px;
color: #FFCE06;	 
}
.steps .inner_container .light {
font-weight: normal;
margin-bottom: 0px;
}
.about_us_banner .inner_container p{
text-align: justify;
width: 586px;	
}
.bar {
height: 72px;
width: 100%;
background-color: #1f71b4;
font-weight: 600;
line-height: 50px;
text-align: center;
font-size: 20px;
position: relative;
}
.bar::after {
content: '';
position: absolute;
right: -38px;
top: 0px;
width: 0;
height: 0;
border-top: 36px solid transparent;
border-left: 38px solid #1f71b4;
border-bottom: 36px solid transparent;
}
.bar .circle{
padding: 1px 16px;
background: #FFCE06;
border-radius: 50%;
margin-top: 13px;
float: left;
margin-left: -18px;
font-size: 26px;
font-weight: normal;
display: inline-block;
line-height: 44px;
}
.main-text{
margin-top: 15px;
float: left;
margin-left: 24px;
text-transform: uppercase;
color: #fff;
letter-spacing: 1px;
line-height: normal;
text-align: left;
font-size: 18px;
}
.text-content{
margin-left: 30px;
display: table-cell;
vertical-align: bottom;
height: 80px;
color: #4b4b4b;
}
.top_signs .bar{
margin-top: 10px;	
}
.right-side {
float: left;
margin-right: 74px;
width: 20%;
}
.change_color .bar{
background-color: #FFCE06;	
}
.change_color .circle{
background:#1f71b4;
color:#fff;	
}
.change_color .bar::after{
border-left: 38px solid #FFCE06;	
}
.change_color  .main-text{
color:#000;	
}
.right-side:last-child {
 margin-right: 0%;
}
.indication{
width: 104%;
margin-left: -16px;
margin-top: 0px;
margin-bottom: 10px;
}
.indication img{
width: 100%;
margin-top: 0px;	
}
.bottom_signs .text-content{
margin-top: 10px;
vertical-align: top;	
}
.pcenter .main-text{
margin-top: 26px;	
}
.bottom_signs .bar{
margin-bottom:10px;	
}
.color_steps{
padding-top:40px;	
padding-bottom:90px;
}
.contract .inner_container h1{
text-transform:uppercase;	
}
.contract .inner_container p {
    text-align: left;
    width: 618px;
}
.build{
padding-top: 40px; 
padding-bottom: 40px;	 
}
.build h6{
font-size: 19px;
color: #245074;
font-weight: bold;
font-style: italic;
letter-spacing: 1px;
margin:36px 0 14px;
}
.build p{  
width:100%;
}
.build p:nth-child(1){
margin:0 0 34px;	
}
.img_section{
padding-top: 25px;
padding-bottom: 20px;		
}
.img_section img{
width:100%;	
}
.img_section h1 {
width: 100%;
float: left;
font-size: 22px;
text-transform: none;
letter-spacing: 2px;
color: #1f71b4;
font-weight: 600;
margin-top: 45px;
margin-bottom: 20px;
}
.img_section h2 {
width: 100%;
float: left;
font-size: 22px;
text-transform: uppercase;
letter-spacing: 2px;
margin: 20px 0 4px 0;
color: #1f71b4;
font-weight: 600;
}
.four-col .wpb_content_element{
margin-bottom: 20px;	
}
.four-col .wpb_content_element .wpb_wrapper{
padding-right: 15%;	
}
.the_days{
padding-top:25px;
padding-bottom:25px;	
}
.pharmaceutical .inner_container h1 {
text-transform:uppercase;	
}
.pharmaceutical .inner_container p {
text-align: left;
width: 686px;
}
.pharmaceutical  {
padding: 3.5% 60px 9%;
background-size: 100% 100%;
}
.banner_m{
padding: 5% 60px 6%;
}
.banner_m .inner_container p {
  text-align: left;
  width: auto;
}
.banner_m .inner_container h1 {
  text-align: left;
  width: auto;
}
.banner_m h3{
width: 100%;
  float: left;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0px 0 30px 0;
  color: #fbce47;
  line-height: 32px;	
}
.steps {
padding: 5.7% 60px 9%;
background-size: 100% 100%;	
}
.features .f-content h2 {
	text-align: left;
	padding: 0px;
	color: #1f71b4;
	text-transform: none;
	font-size: 22px;
}
.features .f-content p{
text-align:left;
padding:0px;
font-size: inherit;	
min-height: inherit;
}
.benefit_main h2{
width: 100%;
float: left;
font-size: 23px;
text-transform: none;
letter-spacing: 2px;
color: #1f71b4;
font-weight: 600;
margin-top: 45px;
margin-bottom: 20px;	
}
.benefit_main p{
color: #245074;	
}
.features  {
padding: 40px 0 65px;
background-size: 100%;
}
.features .vc_col-sm-4{
margin: 90px 0 0 0;	
}
.benefit_main{
padding: 40px 0 90px;	
}
.icon_section .ERP_INTEGRAT {
	text-align: center;
	text-transform: uppercase;
}
.ground_breaking {
	padding-top: 0px;
	margin-top: -46px;
	padding-bottom: 45px;
}
.data_collection {
	padding-bottom: 30px;
}
.features .f-content.ground-_breaking h2 {
	text-transform: uppercase;
	font-size: 22px;
}
.vendors_box p {
	display: inline-block;
	font-size: 17px;
	color: #1f71b4;
	letter-spacing: 2px;
	width: 81%;
	vertical-align: middle;
}
.vendors_box .vc_col-sm-6:first-child .vc_column-inner{
	padding-left:0px;
}
.vendors_box .vc_col-sm-6:last-child .vc_column-inner{
	padding-right:0px;
}
.box_blue .vc_col-sm-6 {
	margin-top: 20px;
	margin-bottom: 20px;
}
.benefit p:first-child {
	text-align: left;
	padding: 0px;
	font-size: 16px;
	font-size: inherit;
	min-height: inherit;
	width: 100%;
	text-transform: inherit;
	color: #414141;
}
.its_time h2 {
	text-align: left;
	padding: 0px;
	color: #1f71b4;
	text-transform: none;
	font-size: 22px;
	letter-spacing:2px;
}
.its_time {
	margin-bottom: 20px;
}
.entry-content .container_short {
	width: 1200px;
	margin: 0 auto;
	float: none;
}
.click_download h3{
text-align: center;
font-weight: initial;
}
.click_download h3 a{
padding: 8px 15px;
color: #fff;
background: #0e476b;
font-size: 16px;
}
.click_download h3 a:hover{
background:#fbcf47;
color: #fff;	
}
.short_solutions .take_control {
vertical-align: middle;
display: table-cell;
float: none;
background-size:100% 100%;
background-image: url(images/fornt_emp.jpg);
}
.short_solutions .our_s {
vertical-align: top;
display: table-cell;
float: none;
}
.short_solutions .take_control .vc_column-inner {
/* 	padding: 95px 0 152px; */
}
.short_solutions .our_solution {
	letter-spacing: 3px;
	margin: 0 0 15px 0;
	color: #ffce01;
	text-align: left;
	padding: 0 90px 0 30px;
}
.short_solutions .take_control p {
	width: 100%;
	clear: both;
	padding: 0 40px 0 30px;
	color: #fff;
	margin: 0px 0 25px 0;
}
.short_solutions h2 {
	letter-spacing: 1px;
	margin: 0 0 23px 0;
	color: #0070b9;
	text-align: left;
	padding: 0 20px 0 50px;
	font-size: 24px;
}
.short_box_icon {
	width: 70px;
	display: inline-block;
	vertical-align: middle;
	margin: 0 3% 0 -38px;
}
.short_box {
	width: 100%;
	float: left;
	margin: 0 0 20px 0;
}
.short_box_text {
	width: 77%;
	display: inline-block;
	vertical-align: middle;
}
.short_solutions h4 {
	color: #0e476b;
	font-size: 17px;
	margin: 0px 0 8px 0;
	letter-spacing: 2px;
	padding: 0 30px 0 0;
}
.short_solutions .our_s p {
	width: 100%;
	clear: both;
	padding: 0 0px 0 0px;
	color: #4e4e4e;
	font-size: 15.5px;
	margin: 0px 0 25px 0;
}
.short_solutions .take_control strong {
	color: #ffce01;
	font-size: 16px;
	font-weight: 800;
	width: 85%;
	display: inline-block;
}
.short_solutions .our_s .vc_column-inner {
padding-bottom: 33px;
padding-top: 33px;
}
.short_solutions {
	padding: 40px 0 0 0;
	display: table;
}
.short_inner {
	padding: 0 20px 30px;
}
.short_customers .our-customers {
	font-size: 30px;
	letter-spacing: 1px;
	color: #0070b9;
	font-weight: 400;
	padding: 0 0 25px 30px;
	text-align: center;
	margin: -10px 0 0px !important;
}
.short_customers .vc_col-sm-4 {
	padding: 0 10px;
	display: inline-block;
	width: 33.33333333%;
	vertical-align: top;
}
.short_customers .wpb_single_image.vc_align_center {
	text-align: center;
}
.short_customers .wpb_single_image img {
	max-width: 100px;
}
.short_customers .our_solution {
	margin: 20px 0 12px 0;
	padding: 0 0px;
	color: #0e476b;
	text-align: center;
}
.short_customers p {
	color: #4e4e4e;
	text-align: center;
}
.short_back .vc_col-sm-8 {
	width: 63%;	
	display: inline-block;
	vertical-align: top;
}
.short_back .vc_col-sm-4 {
	width: 37%;	
	display: inline-block;
	vertical-align: top;
}
.short_back .Why-RM {
	letter-spacing: 3px;
	text-align: left;
	padding: 0 30px;
	margin: 10px 0 0 0;
}
.short_back .vc_col-sm-8 h4 {
	font-size: 16px;
	margin: 15px 0 0 0;
	padding: 0 240px 0 30px;
	font-weight: 400;
	font-style: italic;
	clear: both;
	display: inline-block;
	color: #0e476b;
}
.short_why_box {
	width: 100%;
	float: left;
	padding: 0 20px 0 25px;
	margin: 25px 0 -5px 0;
}
.short_wny_bg {
	width: 100%;
	float: left;
	margin: 0px;
	padding: 0px 0 43px 0;
}
.short_why_icon {
	max-width: 45px;
	display: inline-block;
	vertical-align: top;
	min-width: 14%;
}
.short_why_text {
	width: 84%;
	display: inline-block;
	vertical-align: top;
	padding: 0 0 0 10px;
}
.short_back h5 {
	color: #0e476b;
	font-size: 18px;
	margin: 0px 0 5px 0;
	letter-spacing: 1px;
	padding: 0 0px 0 0;
}
.short_back .vc_col-sm-8 p {
	width: 100%;
	clear: both;
	padding: 0 0px 0 0px;
	color: #4e4e4e;
	font-size: 16px;
	margin: 0px 0 25px 0;
}
.short_benefit{
	padding: 0 30px;
}
.short_benefit .bene-fits {
	font-size: 20px;
	letter-spacing: 2px;
	margin: 0px 0 0px 0;
	text-align: left;
}
.short_bene_box {
	width: 100%;
	float: left;
	margin: 34px 0 0 0;
}
.short_benefit p {
	width: 82%;
	display: inline-block;
	color: #fff;
	font-size: 17px;
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: 1px;
	vertical-align: middle;
	padding: 0 0 0 10px;
}
.short_back .vc_col-sm-4 .bene-fits {
	font-size: 30px;
	letter-spacing: 2px;
	color: #fff;
	text-align: left;
	padding: 0 30px;
	margin: 12px 0 0 0;
}
.short_bene_box .benefit_icon {
	max-width: 25px;
	display: inline-block;
	vertical-align: middle;
	margin: 0 0px 0 0;
	min-width: 15%;
}
.short_benefit {
	padding: 0 30px 76px;
	width: 100%;
	float: left;
}
.short_back .vc_col-sm-4 .vc_column-inner {
	padding-bottom:50px;
	margin-bottom: -50px;
}
.short_back .vc_col-sm-4 .vc_column-inner {
	background-size: 100% 100%;
	padding-bottom: 365px;
	margin-bottom: -365px;
}
.back_text_revenue h2 {
	font-size: 19px;
	color: #0e476b;
	text-align: center;
	font-weight: bold;
	font-style: italic;
	margin: 0px 0 25px 0;
	padding: 0 180px;
}
.short_back {
	margin-top: 0px;
}
.back_text_revenue h3 {
	width: 100%;
	float: left;
	font-size: 22px;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin: 0px 0 25px 0;
	padding: 0 260px;
	color: #0070b9;
	font-weight: 600;
	text-align: center;
}
.back_text_revenue h4 {
	width: 100%;
	float: left;
	font-size: 22px;
	letter-spacing:1px;
	margin: 0px 0;
	padding: 0 20px;
	color: #0070b9;
	font-weight: 600;
	text-align: center;
}
.back_text_revenue {
	padding: 25px 0 28PX;
}
.back_call p {
	color: #fff;
	font-size: 16px;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 1px;
}
.back_call .vc_column_container .vc_column-inner {
	padding: 15px 10px;
}
.back_call p a{
	color: #ffce07;
}
.back_call p a:hover{
	color: #fff;
}
.back_call {
	margin: 0 0 28px 0;
}
.short_solutions .take_control .vc_column-inner {
	background-size: 100% 100%;
}
.short_back .vc_col-sm-8 .vc_column-inner {
	padding-bottom: 100px;
	margin-bottom: -100px;
}
.about_us_banner.referral_prog p {
	text-align: left;
	width: 686px;
}
.Partner_prog {
	padding: 5px 0;
}
.Partner_prog p {
	width: 755px;
}
.Partner_prog h4 {
	font-size: 18px;
	margin: 0 0 15px 0;
	font-weight: 400;
}
.Partner_prog h3 {
	padding: 0px;
	color: #1f71b4;
	text-transform: uppercase;
	font-size: 24px;
	letter-spacing: 3px;
}
.vertical-align .vc_col-sm-4,
.vertical-align .vc_col-sm-8 
{
vertical-align: middle;
display: inline-block;
float: none;
}
.Partner_prog li {
	margin: 5px 0;
}
.process_prog h1 {
	padding: 0px;
	color: #fff;
	text-transform: uppercase;
	font-size: 24px;
	letter-spacing: 3px;
	margin: 22px 0;
}
.process_prog .become_an h1{
color: #1f71b4;	
}
.process_prog .become_an h5{
color: #414141;
}
.process_prog h5 {
	color: #fff;
	font-size: 18px;
	margin: 0 0 40px 0 !important;
	font-weight: 400;
}
.process_prog .white_wrap{
background: #fff;
border-radius: 50px;
width: 318px;
float: left;
margin-right: 30px;	
margin-bottom: 40px !important;
}
.white_wrap .benefit_icon img{
margin:0px;	
}
.process_prog {
	padding: 50px 0 15px 0;
}
.process_prog p {
	display: inline-block;
	letter-spacing: 1px;
	width: 76%;
	vertical-align: middle;
}
.process_prog .process_prog_box1 p {
	width: 65%;
}
.process_prog .white_wrap p {
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 600;
}
.process_prog .process_prog_box2 p {
	width: 145px;
}
.process_step_prog h3 {
	padding: 0px;
	color: #1f71b4;
	text-transform: uppercase;
	font-size: 22px;
	letter-spacing: 1px;
	margin: 0 0 6px 0;
}
.process_step_prog {
padding: 30px 0 60px;
}
.cont_text_referral .cont-info{
	letter-spacing: 2px;
} 
.process_prog .benefit_icon {
	max-width: 65px;
	display: inline-block;
	vertical-align: middle;
	margin: 0 4% 0 0;
}
.step_left
{
width: 55%;
float:left;
}
.step_right
{
width: 45%;
float:left;
}
.step_wrap{
float: left;
width: 100%;
min-height: 90px;
margin-bottom: 30px;
}
.cont_main .wpcf7-text,
.cont_main .wpcf7-textarea
{
border:1px solid #1f71b4 !important;
}
.cont_main .select_txt{
height:auto;
color:#888;
font-size: 15px;
font-weight: 300;	
}
.process_step_prog p {
width: 100%;
text-transform: uppercase;
font-size: 15px;
font-weight: 600;
}
.step_wrap .s_icon {
max-width: 65px;
display: inline-block;
vertical-align: middle;
margin: 0 4% 0 0;
float: left;
}
.step_wrap .s_icon img{
margin:0px;	
}
.step_wrap .s_text {
text-transform: uppercase;
font-size: 15px;
font-weight: 600;
float: left;
}
.cont_text.cont_text_referral {
	padding-top: 30px;
}
.cont_text_referral h2 {
	text-transform: none;
}
.referral_prog {
	padding: 3.5% 60px 9%;
	background-size: 100% 100%;
}
.become_an .eg-overlay-layout-2 .eg-overlay-wrapper .eg-mask{
background:none !important	
}
.become_an .eg-overlay-layout-2 .eg-mask{
opacity: 1 !important;
visibility: visible !important;	
}
div.pp_default .pp_next,
div.pp_default .pp_previous,
.ppt,
.pp_gallery .selected
{
opacity: 0 !important;
display:none !important;	
}
.o_testimonials{
display: flex;
width: 100%;
}
.o_testimonials .testimonial-meta {
    padding: 0 25px 22px;
}
.o_testimonials p{
text-align:left;
min-height: 358px;
}
.o_testimonials .vc_col-sm-4 {
margin:60px 0 0 0;
display: flex;
}
.o_testimonials .vc_col-sm-4 .vc_column-inner{
min-height: auto;	
}
.o_testimonials .testimonial-meta h3{
margin-top: 0px;
color: #000;
font-size: 1em;
font-weight: 600;
text-align: left;
margin-bottom: 2px;
}
.o_testimonials .testimonial-meta h5 {
color: #93c94f;
font-size: 12px;
font-style: italic;
margin-top: 0px;
margin-bottom: 0;
text-align: left;
}
.pom-small-custom{ 
background-image: url('images/social32/print.png');
background-repeat: no-repeat;
width: 32px;
height: 32px;
float: left;
margin-top: 5px;
margin-right: 8px;
}
.hupso-share-buttons {
    padding: 0px !important;
    float: left;
    width: auto;
}
.get_author {
color:#1e71b4;
display: inline;
margin-right: 20px;
}
.social_post {
vertical-align: middle;
display: inline-block;	
}
.mail_post_icon {
    background-image: url('images/mail_post.png');
    background-repeat: no-repeat;
    width: 32px;
    height: 34px;
    display: inline-block;
    margin: 4px 8px 0px 0px;
    float: left;
}
.post_content_single {
    padding: 0 0 0 50px;
}
.share_article {
    width: 100%;
    float: left;
}
.share_article h3 {
    width: 100%;
    float: left;
    border-bottom: 2px solid #d3d4d6;
    margin: 0px 0 10px 0;
    padding: 0 0 5px 0;
    clear: both;
}
.included_text {
    clear: both;
	font-size: 16px;
}
.post_message {
    width: 100%;
    float: left;
    border: 1px solid #d4d4d6;
    padding: 10px;
    margin: 20px 0 0;
    border-radius: 5px;
    background: #fafafa;
}
.post_message h2 {
    margin: 4px 0 0;
    color: #1d608d;
    font-weight: 500;
    font-size: 24px;
}
.post_message p {
    margin: 5px 0 0;
	font-size: 16px;
}
.return_article {
    width: 100%;
    float: left;
    display: none;
    margin: 15px 5px 0px;
}
.article_form {
    width: 100%;
    float: left;
    margin: 30px 0 0 0;
}
.article_form strong {
    font-size: 17px;
    color: #404040;
}
.article_form label {
    width: 100%;
    float: left;
    font-weight: 700;
    margin: 12px 0 0 0;
    font-size: 14px;
    color: #aeaaa9;
}
.text_input_article {
    width: 100%;
    float: left;
    border: 1px solid #d4d4d6;
    border-radius: 5px;
    padding: 5px 10px;
    margin: 0 0 3px 0;
	color: #414141;
}
.input_textarea {
    height: 130px;
    border-radius: 5px;
	width: 100%;
    border: 1px solid #e0e0e0;
	color: #414141;
}
#article_form .input_btn {
    background: #be151d;
    font-size: 17px;
    color: #fff;
    width: auto;
    border-radius: 5px;
    border: 0px;
    padding: 8px 14px 8px;
    margin: 20px 0 0 0;
}
.text_input_article:focus, .input_textarea:focus {
    border: 1px solid #d4d4d6;
    outline: 0;
}
#article_form .input_btn:hover {
    background: #444;
}
.success_message {
    width: 100%;
    float: left;
    border: 1px solid #69a045;
    color: #69a045;
    padding: 10px;
    border-radius: 5px;
    background: #f1f7ed;
}
.success_message h3 {
    margin: 0px;
}
.success_message p {
    margin: 5px 0 0;
}
.return_article a {
    color: #1d6097;
}
.page-template-template-send-email .site-main {
    background: #efefef;
    padding: 40px 0 50px;
}
.hupso_c img{
padding-top:0px !important;	
}
.hupso_c #toolbar_hupso_toolbar_0{
float: left;	
}
.social_post .hupso_c > div > a {
    line-height: normal;
	margin-right: 5px;
}
.social_post .hupso_c > div > a:nth-of-type(2) {
float:left;
}
.slide_left {
	width: 100%;
	float: left;
	max-width: 780px;
}
.slide_right {
	width: 100%;
	float: left;
	max-width: 250px;
	padding: 0 0 0 30px;
	text-align: center;
}
.slide_logo {
	width: 100%;
	float: left;
}
.slide_logo a {
	display: inline-block;
	box-shadow: 0px 0px 8px #000 !important;
}
.banner .leran_slide {
	background: #fbce47;
	padding: 3px 10px 6px;
	display: inline-block;
	border-radius: 4px;
	margin: 15px 0 0 0;
	color: #000;
	font-size: 15px;
}
.banner .leran_slide:hover {
	background: #000;
	color: #fff;
}
.metaslider .caption-wrap .caption .slide_logo img {
	height: 220px;
}

.cio_review .container {
	max-width:970px;
	margin:0 auto;
	float:none;
}
.review_section2 .wpb_text_column {
	padding:7%;
	background: #7ea5cc;
	width: 100%;
	float: left;
}
.review_section2 h1 {
	margin: 0px;
	font-family: 'Univers Condensed';
	color: #fff;
	font-size: 176px;
	line-height: 135px;
	padding: 0 0 60px 0;
	font-weight: bold;
	text-shadow: 0px 5px 9px rgba(0, 0, 0, 0.50);
}
.review_section2 h3 {
	margin: 0px;
	font-family: 'Univers Condensed';
	color: #15506f;
	font-size: 90px;
	line-height: 90px;
	padding: 0 0 0px 0;
	font-weight: normal;
}
.review_section3 .wpb_text_column {
	background: #a4b4cd; /* Old browsers */
	background: -moz-linear-gradient(top,  #a4b4cd 3%, #4b5269 69%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top,  #a4b4cd 3%,#4b5269 69%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom,  #a4b4cd 3%,#4b5269 69%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a4b4cd', endColorstr='#4b5269',GradientType=0 ); /* IE6-9 */
	width: 100%;
	float: left;
	padding: 0 0px;
}
.white_line {
	width: 100%;
	float: left;
	background: #FFF;
	height: 5px;
	margin:20px 0 30px !important;
}
.in_the_text {
	width: 90%;
	margin: 0 auto;
	clear: both;
}
.in_the_text_inner{
	width:100%;
	background: #fff;
	float: left;
	padding: 20px 20px;
}
.in_the_one {
	width: 50%;
	float: left;
	padding: 0 10px;
	font-family: 'TimesNewRomanPSMT';
	text-align: justify;
	font-size: 21px;
}
.in_the_one strong {
	font-size: 70px;
	float: left;
	line-height: 46px;
	position: relative;
	top: 10px;
	padding: 0 6px 0 0;
}
.logo10 {
	width: 100%;
	padding:20px 5% 0;
	float: left;
	text-align: right;
}
.logo10 img{
	margin:0px;
}
.review_section4 .wpb_text_column {
	position: absolute;
	top: 0;
	z-index: 1;
	width: 100%;
	float: left;
	color: #fff;
	padding: 7% 25px 0;
}
.matthew_left {
	width: 100%;
	max-width: 150px;
	line-height: normal;
	float: left;
	margin: 46% 0 0 12%;
	font-family: 'Univers Condensed';
	font-size: 20px;
}
.matthew_right {
	width: 100%;
	max-width: 298px;
	float: right;
	text-align: right;
	font-family: 'Impact';
	color: #c3e9fc;
	font-size: 32px;
	letter-spacing: 1px;
	line-height: normal;
}
.qout_image {
	width: 100%;
	float: left;
	padding: 0 0 20px;
}
.review_section5 .container {
	clear: both;
	background: #fff;
	display: block;
}
.review_section5 .wpb_text_column {
	width: 90%;
	margin: -20px 5% 0;
	background: #fff;
	position: relative;
	z-index: 5;
	border-radius: 20px;
	float: left;
	padding: 15px 15px 50px;
}
.erp_left {
	width: 50%;
	float: left;
	padding: 0 10px;
	font-family: 'TimesNewRomanPSMT';
	text-align: justify;
}
.section_last,.review_section5  {
	padding: 10px 0 0 0;
}
.inter_font  {
	font-family: 'Inter', sans-serif;
}
.mistake_page_banner {
	padding:100px 15px 300px;
}
.mistake_page_banner h1 {
	font-family: 'Inter', sans-serif;
	font-weight: 600;
	text-transform: uppercase;
	width: 100%;
	float: left;
	letter-spacing: 6px;
	margin: 0px 0 20px 0; 
	font-size:34px;
}
.yellow_btn {
	background: #FBCF47;
	border: 0px;
	color: #003C66;
	float: none;
	text-transform: uppercase;
	font-weight: bold;
	font-size: 26px;
	padding: 7px 25px;
	letter-spacing: 3px;
	border-radius: 20px;
	cursor: pointer;
	display: inline-block;
}
body .banner_video {
	margin: -250px 0 0 0;
	text-align: center;
}
.text_center {
	text-align:center;
}
.chargeback_mistakes {
	padding: 40px 0;
	text-align: center;
}
.chargeback_mistakes h3.vc_custom_heading  {
	letter-spacing: 6px;
	width: 100%;
	max-width: 860px;
	display: inline-block;
	font-weight: 700;
	font-family: 'Inter', sans-serif;
	margin: 0px;
	padding: 0 0 30px;
}
.chargeback_mistakes .wpb_text_column   {
	text-align:left;
}
.chargeback_perabg {
	background: #EFEFEF;
	border-left: 14px solid #003C66;
	color: #003C66;
	font-weight: 700;
	padding: 15px 20px;
}
.chargeback_mistakes p {
	margin: 0 0 25px;
}
.edi_documents h3.vc_custom_heading {
	max-width: 620px;
	padding: 0 0 15px;
}
.edi_documents h5.vc_custom_heading{
	max-width: 630px;
	padding: 0 0 10px;
	display: inline-block;
	font-weight: 600;
	margin: 0px;
}
.mistake_three_box h4 {
	background: #FBCF47;
	margin: 0px;
	text-align: center;
	font-weight: 600;
	font-size: 20px;
	font-style: italic;
	padding: 15px 20px;
	font-family: 'Inter', sans-serif;
	color:#003C66;
}
.mistake_three_box h4 img {
	margin: 0px;
	display: inline-block;
	vertical-align: middle;
	margin-right: 8px;
}
.mistake_three_box {
	padding-bottom: 10px;
}
.mistake_three_box .wpb_text_column:last-child {
	padding: 25px 30px 35px;
}
.edi_documents  {
	padding: 0px 0;
}
.edi_compliance {
	padding:30px 0;
}
.edi_compliance .wpb_single_image  .wpb_wrapper.vc_figure, .edi_compliance .vc_single_image-wrapper, .edi_compliance .wpb_single_image img {
	width:100%;
}
.edi_compliance_image {
	margin-bottom: 35px;
	display: flex;
	align-items: center;
	justify-content: center; 
}
.edi_compliance_image .vc_column_container.vc_col-sm-6:last-child {
	padding:30px;
	text-align: center;
}
.edi_compliance_image p {
	color: #fff;
	display: inline-block;
	width: 100%;
}
.edi_compliance_image h3.vc_custom_heading {
	font-family: 'Inter', sans-serif;
	font-weight: 700;
	width: 100%;
	float: left;
	letter-spacing: 6px;
	margin: 0px 0 15px 0;
}
.highlighted_text, .covered_mistake_text {
	padding: 35px 0;
}
.highlighted_text .wpb_text_column   {
	border-left: 14px solid #FBCF47;
	padding: 0px 0 0 35px;
}
.highlighted_text strong   {
	color:#1F71B4;
	font-weight:600;
}
.covered_mistake_text strong {
	color:#003C66;
	font-weight:600;
}
.entry-content  .blue_btn {
	background: #003C66;
	border: 1px solid #828282;
	color: #fff;
	float: none;
	text-transform: uppercase;
	font-weight: bold;
	font-size: 26px;
	padding: 7px 25px;
	letter-spacing: 3px;
	border-radius: 20px;
	cursor: pointer;
	display: inline-block;
}
.entry-content  .blue_btn:hover {
	color: #ddd;
}
.mistake_page_banner.charg_formula {
	padding: 50px 15px 100px;
}
.contract_price {
	text-align: center;
	margin: -90px 0 30px;
}
.contract_price .contract_price_inner {
	width: 100%;
	display: inline-block;
	max-width: 480px;
	background: #1F71B4;
	padding: 20px 25px;
}
.contract_price h2.vc_custom_heading {
	font-weight: 500;
	font-size: 28px;
	font-family: 'Inter', sans-serif;
	margin: 6px 0;
	width: 100%;
	float: left;
}
.contract_price h3.vc_custom_heading {
	font-weight: 500;
	font-size: 28px;
	font-family: 'Inter', sans-serif;
	margin: 12px 0 0px;
	border-top: 1px solid #fff;
	width: 100%;
	float: left;
	padding-top: 17px;
}
.now_basically  {
	padding-bottom:30px;
}
.now_basically h3.vc_custom_heading {
	max-width: 730px;
}
.now_basically h4 strong {
	max-width: 210px;
	display: inline-block;
	width: 100%;
	font-weight: 600;
	vertical-align: middle;
}
.now_basically  p strong {
	font-weight: 700;
	color:#003C66;
}
.yellow_border  {
	border-color:#FBCF47;
}
.mistake2_two_box {
	margin-top: 51px;
	margin-bottom: 15px;
}
.chargeback_mistakes .mistake2_two_box .wpb_text_column {
	text-align: center;
	padding: 25px 30px 35px;
}
.so_when_pera {
	margin: 25px 0; 
}
.so_when_icon {
	width: 6%;
	display: inline-block;
	vertical-align: middle;
	max-width:72px;
}
.so_when_pera p {
	width: 93%;
	display: inline-block;
	vertical-align: middle;
	font-style: italic;
	font-weight: 600;
}
.edi_compliance   h3.vc_custom_heading  {
	letter-spacing: 6px;
	font-weight: 700;
	font-family: 'Inter', sans-serif;
	margin: 0px;
	padding: 0 0 30px;
}
.main_ways h3.vc_custom_heading, .main_ways_right_image h3.vc_custom_heading { 
	background: #FBCF47;
	padding: 0px;
	width: 100%;
	max-width: 88px;
	height: 88px;
	border-radius: 50%;
	font-size: 36px;
	float: none;
	letter-spacing: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 25px;
}
.edi_compliance_image.main_ways .vc_column_container.vc_col-sm-6 {
	width: 53%;
	padding: 10px 40px;
}
.main_ways .vc_column_container.vc_col-sm-6:first-child {
	width: 47%;
	padding: 0px;
}
.main_ways_right_image .vc_column_container.vc_col-sm-6{
	width: 47%;
}
.main_ways_right_image .vc_column_container.vc_col-sm-6:first-child {
	width: 53%;
	padding: 10px 40px;
	text-align: center;
}
.main_ways_right_image .vc_column_container.vc_col-sm-6:last-child {
	padding: 0px;
	text-align: center;
}
.edi_compliance_image.main_ways_right_image   p {
	color: #414141;
}
.covered_mistake_text h3.vc_custom_heading  {
	letter-spacing: 6px;
	width: 100%;
	display: inline-block;
	font-weight: 700;
	font-family: 'Inter', sans-serif;
	margin: 0px;
	padding: 0 0 30px;
}
.so_prevent {
	padding-top: 10px;
}
.edi_compliance_image.main_ways:last-child {
	margin: 0px;
}
.mistake2_list_icon ul {
	padding: 0px;
	list-style: none;
	margin: 0px;
}
.mistake2_list_icon ul li:first-child::after ,.mistake2_list_icon ul li:nth-child(2)::after {
	content: "";
	height: 100%;
	position: absolute;
	width: 1px;
	left: 31px;
	top: 10px;
	border-left: 1px dashed #488FF7;
	z-index: 1;
}
.mistake2_list_icon ul li {
	color: #003C66;
	padding: 10px 0 10px 80px;
	position: relative;
	text-align: left;
	min-height:105px; 
}
.mistake2_list_icon ul li:first-child::before {
	background: url(images/check_icon1.png) no-repeat;
	content: "";
	height: 62px;
	position: absolute;
	width: 62px;
	left: 0px;
	z-index: 9;
}
.mistake2_list_icon ul li:last-child::before {
	background: url(images/check_icon2.png) no-repeat;
	content: "";
	height: 62px;
	position: absolute;
	width: 62px;
	left: 0px;
	z-index: 9;
}
.mistake2_list_icon ul li::before {
	background: url(images/check_icon3.png) no-repeat;
	content: "";
	height: 62px;
	position: absolute;
	width: 62px;
	left: 0px;
	z-index: 9;
}
.mistake2_list_icon ul li:last-child::ater {
	display:none;
}
.padding_bootom_none {
	padding-bottom:0px;
}
.now_lets_look p {
	font-weight: 600;
	font-size: 20px;
	width: 100%;
	max-width: 430px;
}
.edi_compliance_image.now_lets_look {
	margin-bottom: 0px;
}
.macksson_logo_main {
	padding:0px;
}
.macksson_logo {
	border-top: 1px solid #1F71B4;
	padding: 35px 0 10px 0;
}
.macksson_logo_main h3.vc_custom_heading {
	padding: 0 12% 0 0;
}
.mcksson_comment {
	padding: 30px 30px 30px 35px;
	font-style: italic;
	font-weight: 600;
	margin-bottom: 25px;
}
.chargeback_mistakes .mcksson_comment .wpb_text_column {
	padding-right: 7%;
}
.mcksson_comment .wpb_text_column::after {
	background: url(images/coment_icon.png) no-repeat;
	content: "";
	height: 28px;
	position: absolute;
	width: 36px;
	right: 0px;
	z-index: 9;
	top: 0px;
}
.wow_five_color p:first-child {
	color:#1F71B4;
	font-weight: 600;
}
.in_addition_text  {
	border-left: 14px solid #1F71B4;
	padding: 15px 20px;
}
.recommendations .wpb_text_column {
	width: 100%;
	display: inline-block;
	max-width: 480px;
	padding-bottom:10px;
}
.so_today {
	padding: 0 0 35px 0;
	font-weight: 600;  
	color: #003C66;
}
.acb_system  .wpb_text_column {
	max-width: 850px;
}
.acb_system .wpb_text_column:last-child {
	font-weight:600;
}
.no_system {
	border-top: 1px solid #1F71B4;
	padding:30px 0 35px 0;
	margin-top: 18px;
}
.no_system h3.vc_custom_heading {
	padding: 0 0 15px;
}
.no_system .wpb_text_column {
	width: 100%;
	display: inline-block;
	max-width: 940px;
}
.no_system .wpb_text_column:last-child {
	margin-top: 30px;
	max-width: 100%;
}
.manual_data_title {
	padding: 3.5% 0;
}
.data_number  {
	border: 3px solid #FBCF47;
	font-weight:600;
	padding: 0px;
	width: 100%;
	max-width: 100px;
	height: 100px;
	border-radius: 50%;
	font-size: 40px;
	color:#fff;
	float: none;
	letter-spacing: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: 'Inter', sans-serif;
	vertical-align: middle;
}
.manual_data_title h2 {
	font-family: 'Inter', sans-serif;
	font-weight: 600;
	width: 100%;
	display: inline-block;
	max-width: 290px;
	letter-spacing: 6px;
	margin: 0px 0 0px 20px;
	font-size: 34px;
	color: #FBCF47;
	vertical-align: middle;
	text-align: center;
}
.manual_data_para {
	padding: 35px 0;
}
.yellow_border_left {
	border-left: 14px solid #FBCF47;
	padding: 0px 20px;
	color:#1F71B4; 
	font-weight:600;
}
.heading_h3 h3.vc_custom_heading {
	letter-spacing: 6px;
	width: 100%;
	max-width: 860px;
	display: inline-block;
	font-weight: 700;
	font-family: 'Inter', sans-serif;
	margin: 0px;
	padding: 0 0 15px;
}
.mistake5_list_icon {
	padding: 20px 0 20px 0;
}
.mistake5_list_text .wpb_text_column {
	width: 100%;
	display: inline-block;
	max-width: 700px;
}
.black_border_left {
	padding: 0px 20px;
	color:#1F71B4;
}
.no_disputes p {
	color: #000;
	padding: 0 6%;
}
.no_disputes {
	margin-top: 25px;
}
.blue_text {
	width: auto;
	display: inline-block;
	color: #1F71B4;
	font-weight: 600;
}



@media (min-width:1300px) and (max-width:1500px) {
.banner .metaslider .caption-wrap {
	top: 26%;
}
.banner .metaslider .flexslider .slides p {
	margin: 10px 0 43px;
}	
}
@media (min-width:1251px) and (max-width:1299px) {
.about_us_banner {
padding: 6% 0 9%;
}
.blog .site-content, .single .site-content, .category .site-content, .archive .site-content {
    width: 92%;
}
.right-side {
float: left;
margin-right: 74px;
width: 20%;
}
.main-text{
font-size: 14px;
margin-top: 20px;	
}
.pcenter .main-text {
    margin-top: 29px;
}
.build p {
    width: 100%;
}
}
@media (min-width:1111px) and (max-width:1250px) {
.container, .entry-content .container_section, .banner .metaslider .caption, .site-content,
.entry-content .inner_container
{
	width:1050px;
	margin: 0 auto;
}
.benefit p {
	display: inline-block;
	font-size: 18px;
	text-transform: uppercase;
	letter-spacing: 2px;
	width: 228px;
	vertical-align: middle;
}
.banner .metaslider .caption-wrap {
	top: 18%;
}
.our_solutions.our_customers p {
min-height: 165px;
}
.why_main p {
	min-height: 168px;
}
.about_us_banner {
padding: 6% 0 9%;
}
.blog .site-content, .single .site-content, .category .site-content, .archive .site-content {
    width: 92%;
}
.right_sidebar .widget_black_studio_tinymce .textwidget {
    text-align: center;
}
.right-side {
float: left;
margin-right: 74px;
width: 19%;
}
.main-text{
font-size: 14px;
margin-top: 19px;	
}
.pcenter .main-text {
margin-top: 28px;
}
.text-content{
font-size: 16px;
}
.build p {
    width: 100%;
}
.nav-menu li a {  
display: block;
font-size: 16px;
color: #1f71b4;
text-decoration: none;
text-transform: capitalize;
letter-spacing: 2px;
}
.head_right {
    width: 100%;
    text-align: center;
    margin: 10px 0 0 0;
}
.vendors_box p {
	width: 80%;
}
.entry-content .container_short {
	width: 95%;
}	
.back_text_revenue h2,.back_text_revenue h3,.back_text_revenue h4 {
	padding: 0 0px;
}
.step_left,
.step_right
{
width: 100%;
margin-bottom:30px;
}
.our_solutions .o_testimonials p {
    text-align: left;
    min-height: auto;
}	
.slide_right {
	max-width: 270px;
}
 .vc_row .container {
    width: 95%;
  }
  .banner_m .inner_container p {
  text-align: left;
  width: auto;
}
.banner_m .inner_container h1 {
  text-align: left;
  width: auto;
}
}

@media (min-width:980px) and (max-width:1110px) {
.container, .entry-content .container_section, .banner .metaslider .caption, .site-content,
.entry-content .inner_container
{
	width: 900px;
	margin:0 auto;
}
.banner .metaslider .caption-wrap {
	top: 15%;
}
.our_solutions p {
	min-height: 145px;
}
.our_solutions.our_customers p {
	min-height: 190px;
}
.our_solutions .o_testimonials p{
text-align:left;
min-height: auto;	
}
.why_main p {
	min-height: 190px;
}
.features p {
min-height: 190px;
}
.why_main .vc_col-sm-6 p {
	min-height: 120px;
}
.benefit p {
	font-size: 15px;
	letter-spacing: 1px;
	width: 180px;
}
.vertical-middle .vc_col-sm-8, .vertical-middle .vc_col-sm-4 {
    vertical-align: middle;
    float: none;
    display: inline-block;
}
.head_right .btn_head{
padding: 6px 20px 9px;		
}
.blog .site-content, .single .site-content, .category .site-content, .archive .site-content {
    width: 92%;
}
.right_sidebar .widget_black_studio_tinymce .textwidget {
    text-align: center;
} 
.right-side {
float: left;
margin-right: 74px;
width: 18%;
}
.main-text{
font-size: 12px;
margin-left: 7px;
margin-top: 22px;	
}
.pcenter .main-text {
margin-top: 30px;
}
.text-content{
font-size: 13px;	
}
.build p {
    width: 100%;
}
.head_right {
    width: 100%;
    text-align: center;
    margin: 10px 0 0 0;
}
.vendors_box p {
	width: 77%;
}
.entry-content .container_short {
	width: 95%;
}	
.back_text_revenue h2,.back_text_revenue h3,.back_text_revenue h4 {
	padding: 0 0px;
}
.step_left,
.step_right
{
width: 100%;
margin-bottom:30px;
}
.banner h1 {
	font-size: 28px;
}
.slide_left {
	max-width: 650px;
}
.slide_right {
	max-width: 240px;
}
.vc_row .container {
    width: 95%;
}
.banner_m .inner_container p {
  text-align: left;
 width: 90%;
}
.banner_m .inner_container h1 {
  text-align: left;
  width: 90%;
}
.edi_compliance_image {
	display: inline-block;
}
.edi_compliance_image .wpb_column.vc_column_container {
	width:100%;
}
.edi_compliance .wpb_single_image .wpb_wrapper.vc_figure, .edi_compliance .vc_single_image-wrapper, .edi_compliance .wpb_single_image img {
	width: 500px;
	margin-top: 10px;
}
.edi_compliance_image.main_ways .vc_column_container.vc_col-sm-6 {
	width: 100%;
	padding: 30px 40px;
}
.main_ways .vc_column_container.vc_col-sm-6:first-child {
	width: 100%;
	padding: 0px;
}
.main_ways_right_image .vc_column_container.vc_col-sm-6:first-child {
	width: 100%;
	padding: 25px 40px 0;
}
.main_ways_right_image .vc_column_container.vc_col-sm-6:last-child {
	padding: 0px 0 30px;
	text-align: center;
}
.multimedia2 .author_d {
  width: 100%;
  margin-bottom: 20px;
}
.multimedia2 .button_d {
  width: 100%;
}
.multimedia2 .button_d a {
float:left;	
}
.multimedia2 .video_title {
  min-height: inherit;
}
}

@media (min-width:768px) and (max-width:979px) {
.container,.entry-content .container_section,.banner .metaslider .caption, .site-content,
.entry-content .inner_container
{
	width: 95%;
	margin:0 auto;
}
.entry-content .container_short {
	width: 95%;
}	
.navbar {
    margin: 0 0 0 10px;
}
.head_right .btn_head {
margin: 3px 0px 0 10px;
padding:6px 16px 9px;
}
.main_contact div.wpcf7 {
	width: 730px;
}	
.cont_text p {
	font-size: 17px;
}
.banner h1 {
	font-size: 19px;
	margin: 0px 0 20px 0;
}
.banner .metaslider .flexslider .slides p {
	font-size: 15px;
}
.banner h2 {
	font-size: 18px;
}
.banner .metaslider .slides img {
	height:320px;
}
.banner .metaslider .flexslider .slides p {
	margin: 0px 0 20px;
}
.banner .metaslider .caption-wrap {
	top: 7%;
}
.our_solutions h2 {
	font-size: 20px;
}
.our_solutions p {
	min-height: 192px;
}
.our_solutions.our_customers p {
	min-height: 240px;
}
.our_solutions .o_testimonials p{
text-align:left;
min-height: auto;	
}
.why_main h2 {
font-size: 18px;
}
.features  h2 {
min-height: 48px;
}
.why_main p {
	min-height: 265px;
}
.features p {
min-height: 265px;
}
.why_main .vc_col-sm-6 p {
	min-height: 145px;
}
.benefit p {
	font-size: 14px;
	letter-spacing: 1px;
	width: 130px;
}
.vertical-middle .vc_col-sm-8, .vertical-middle .vc_col-sm-4 {
    vertical-align: middle;
    float: none;
    display: inline-block;
}
.about_us_banner {
padding: 6% 0 9%;
}
.empower_rm_about h3{
width: 80%;	
}
.blog .site-content, .single .site-content, .category .site-content, .archive .site-content {
    width: 92%;
}
.right_sidebar .widget_black_studio_tinymce .textwidget {
    text-align: center;
}
.right-side {
float: left;
margin-right: 74px;
width: 43%;
margin-bottom: 30px;
}
.right-side:nth-child(3), .right-side:nth-child(4){
margin-bottom: 0px;	
}
.right-side:nth-child(2), .right-side:nth-child(4)
{
margin-right: 0px;	
}
.indication {
width: 102%;
margin-bottom: 10px;
}
.color_steps {
padding-bottom: 0;
}
.build p {
    width: 100%;
}
.img_section h2{
font-size: 18px;	
}
.head_right {
    width: 100%;
    text-align: center;
    margin: 0px 0 0 0;
}
.benefit .vc_col-sm-4 {
	padding: 0 6px;
}
.vendors_box p {
	width: 70%;
}
.short_back .vc_col-sm-8 h4 {
	padding: 0 30px 0 30px;
}
.short_back .Why-RM {
	font-size: 32px;
}
.back_text_revenue h2,.back_text_revenue h3,.back_text_revenue h4 {
	padding: 0 0px;
}
.short_bene_box {
	margin: 64px 0 0 0;
}
.process_prog p {
/* 	width: 63%;
	font-size: 15px; */
}
.process_prog .process_prog_box1 p {
	width: 62%;
}
.step_left,
.step_right
{
width: 100%;
margin-bottom:30px;
}
.logo {
width: 100%;
float: left;
text-align: center;
}
.navbar {
margin: 5px auto 0px;
text-align: center;
float: none;
}	
.slide_left {
	max-width: 495px;
}
.slide_right {
	max-width: 230px;
}
.review_section2 h1 {
	font-size: 140px;
	line-height: 105px;
}
.matthew_left {
	margin: 42% 0 0 9%;
}
.vc_row .container {
    width: 97%;
}
.multi_serach_box, .multi_serach_box:first-child {
    width: auto;
    padding: 6px 20px;
    margin: 0 1.5% 3%; 
}
.banner_m .inner_container p {
  text-align: left;
 width: 90%;
}
.banner_m .inner_container h1 {
  text-align: left;
  width: 90%;
}
.POWERFUL_FEATURES {
  text-align: center;
  font-size: 20px !important;
}
	.POWERFUL_FEATURES i {
  margin-right: 0;
  text-align: center;
  width: 100%;
}
.four-col p{
  text-align: center;
}
.edi_compliance_image {
	display: inline-block;
}
.edi_compliance_image .wpb_column.vc_column_container {
	width:100%;
}
.edi_compliance_image.main_ways .vc_column_container.vc_col-sm-6 {
	width: 100%;
	padding: 30px 40px;
}
.edi_compliance .wpb_single_image .wpb_wrapper.vc_figure, .edi_compliance .vc_single_image-wrapper, .edi_compliance .wpb_single_image img {
	width: 500px;
	margin-top: 10px;
}
.main_ways .vc_column_container.vc_col-sm-6:first-child {
	width: 100%;
	padding: 0px;
}
.main_ways_right_image .vc_column_container.vc_col-sm-6:first-child {
	width: 100%;
	padding: 25px 40px;
}
.main_ways_right_image .vc_column_container.vc_col-sm-6:last-child {
	padding: 0px 0 30px;
	text-align: center;
}
.macksson_logo {
	padding: 25px 0 25px 0;
}
.multimedia2 .author_d {
  width: 100%;
  margin-bottom: 20px;
}
.multimedia2 .button_d {
  width: 100%;
}
.multimedia2 .button_d a {
float:left;	
}
.multimedia2 .video_title {
  min-height: inherit;
}
}

@media (max-width: 767px) {
.container,.entry-content .container_section, .site-content
{
	width: 95%;
	margin:0 auto;
}
.entry-content .container_short {
	width: 95%;
}	
.entry-content .inner_container{
width:86%;	
}
.banner .metaslider .caption  {
	width: 95%;
}
.main_contact div.wpcf7 {
	width: 100%;
}
.page .vc_column_container .vc_column-inner {
	padding-left: 0px;
	padding-right: 0px;
}
.cont_text {
	padding: 30px 0 20px;
}
.cont_main1 {
	margin: 35px 0 35px 0;
}
.left_bar {
    width: 100%;
    float: left;
}
.right_sidebar {
    float: left;
	width: 100%;
	margin-top: 40px;
	padding-left: 15px;
	padding-right: 15px;
}
.archive-title, .archive-meta {
    margin: 0 auto;
    max-width: 100%;
    padding: 0 0 8px 14px;
    width: 100%;
    font-size: 24px;
    color: #0071B9;
    text-transform: uppercase;
}
.read_more{
margin-left: 15px;	
}
.left_content p {
    padding-right: 0;
}
.photo_section .wpb_single_image.vc_align_right {
    text-align: center;
}
.color_section .change .vc_column-inner,
.color_section .keys .vc_column-inner
{
    padding-top: 50px;
    padding-right: 7% !important;
    padding-left: 7% !important;
}
.about_us_banner .inner_container p {
    width: 100%;

}
.about_us_banner {
padding: 3% 0px 10%;
}
.about_us_banner .vc_column-inner{
padding-top:0px;	
}
.empower_rm_about h3 {
width: 80%;
font-size: 18px
}
.blog .site-content, .single .site-content, .category .site-content, .archive .site-content {
    width: 92%;
}
.build p {
    width: 100%;
}
/* .four-col .vc_column_container {
    padding-left: 15px;
    padding-right: 15px;
} */
.ground_breaking {
	padding-bottom: 5px;
}
.benefit_main .avoid.vendors_yellow {
	padding-top: 0px;
}
.benefit_main.yellow_main {
	padding: 40px 0 30px;
}
.toggled-on .nav-menu li > ul {
    clip: inherit;
    overflow: inherit;
    height: inherit;
    width: inherit;
}
#primary-menu a {
    color: #555;
    display: block;
    border-top: 1px solid #eee;
	padding: 10px 20px 10px 20px;
}
#primary-menu .sub-menu li a {
padding-left:30px;
}
.back_text_revenue h2,.back_text_revenue h3,.back_text_revenue h4 {
	padding: 0 0px;
}
.short_back .Why-RM {
	font-size: 30px;
}
.short_back .Why-RM img {
	margin: -9px 5px 0 5px;
	width: 200px;
}
.Partner_prog p {
	width: 100%;
}
.process_prog .vc_col-sm-3,.process_prog .vc_col-sm-4{
	margin-top:30px;
}
.step_left,
.step_right
{
width: 100%;
margin-bottom:30px;
}
.become_an .eg-overlay-wrapper{
width: 400px;	
}
.process_step_prog {
padding: inherit;
}
.short_solutions .take_control {
display: inherit;
}
.short_solutions .our_s{
display: inherit;	
}
.short_box_icon {
margin: 0 20px 0 20px;
}
.short_solutions .take_control .vc_column-inner{
padding: 95px 0 95px;	
}
.si{
float: left;
width: 100%;
text-align: center;
margin-top:10px;	
}
.footer_text .cnss-social-icon {
    text-align: left;
    float: none;
    width: auto;
    display: inline-block;
}
.footer_text .IN-widget {
    float: none;
}
.footer_text p {
    float: left;
    width: 100%;
    margin-bottom: 6px;
    margin-top: 3px;
}
.section_c p {
    min-height: auto;
}	
.slide_right {
	max-width: 100%;
	text-align: center;
	padding: 0 0 0 0px;
}
.banner .leran_slide {
	padding: 0px 10px 0px;
	margin: 10px 0 0 0;
	font-size: 12px;
}
.metaslider .caption-wrap .caption .slide_logo img {
	height: 80px;
	margin: 10px 0 0 0;
}
.slide_left {
	max-width: 100%;
}
.benefit h1 {
	margin: 0px 0 30px 0 !important;
}
.banner .metaslider .caption {
	width: 456px;
}
.banner .metaslider .caption-wrap {
	top: 6%;
	text-align: center;
}
.banner .metaslider .slides img {
	height:360px;
}
.banner h1 {
	width: 100%;
	font-size: 18px;
	letter-spacing: 2px;
	margin: 0px 0 15px 0;
}
.banner .metaslider .flexslider .slides p {
	font-size: 13px;
	margin: 0px 0 20px;
	line-height: 22px;
}
.banner h2 { 
	font-size: 14px;
	margin: 0px 0 0px 0;
	line-height: 19px;
}
.review_section2 h1 {
	font-size: 85px;
	line-height: 70px;
	padding: 0 0 28px 0;
}
.review_section2 h3 {
	font-size: 40px;
	line-height: normal;
}
.in_the_one,.erp_left {
	width: 100%;
	padding: 0 0px;
	text-align: center;
}
.in_the_one:last-child ,.erp_left:last-child{
	padding: 20px 0 0 0;
}
.review_section4 .wpb_text_column {
	padding: 4% 15px 0;
}
.matthew_left {
	max-width: 100px;
	margin: 47% 0 0 4%;
	font-size: 14px;
}
.qout_image img {
	width: 60px;
}
.matthew_right {
	max-width: 180px;
	font-size: 19px;
	margin-top: 15%;
	text-shadow: 0px 5px 9px rgba(0, 0, 0, 0.50);
}
  .vc_row .container {
    width: 100%;
  }
    .multi_video_box, .multi_video_box:nth-child(3n+1) {
    width: 278px;
    margin-left: 1.5%;
    margin-right: 1.5%;
  }
    .multi_serach_box, .multi_serach_box:first-child {
    width: auto;
    padding: 6px 20px;
    margin: 0 1.5% 3%;
  }
    .page_banner h1 {
    font-size: 30px;
  }
  .responsive_video .wpb_wrapper {
  width: 100% !important;
}
  .text_se{
   margin-bottom:30px;	  
  }
  .read_s h3 {
  text-align: center;
   }
   .btn_sr{
	 display: inherit !important;  
	 text-align: center;   
   }
.featured_story .img_part {
  width: 100%;
  margin: 0 auto !important;
  margin-top: 10px !important;
  margin-bottom: -48px !important;
  text-align: center !important; 
}
.featured_story .story {
  padding: 60px 4% 3.2% 5%; 
}
.featured_story h3 {
  font-size: 35px;
}
.yellow_section  .vc_col-sm-3 {
margin-bottom:70px;	
}
.yellow_section  .last_c  {
margin-bottom:0px;	
}
.yellow_section {
padding-bottom: 60px;	
}
	.build{
padding-top: 20px; 
padding-bottom: 50px;	 
}
.mistake_page_banner {
	padding-top: 50px;
}
.mistake_page_banner h1 {
	font-size: 24px;
	letter-spacing: 2px;
}
.chargeback_mistakes h3.vc_custom_heading {
	letter-spacing: 1px;
}
.chargeback_mistakes p, .edi_compliance, .highlighted_text, .covered_mistake_text    {
	text-align: center;
}
.chargeback_mistakes {
	padding: 30px 0;
}
.edi_compliance_image {
	display: inline-block;
}
.edi_compliance_image .vc_column_container.vc_col-sm-6:last-child {
	padding: 30px 15px;
}
.edi_compliance {
	padding: 0px 0 30px;
}
.highlighted_text .wpb_text_column {
	border-left: 0px solid #FBCF47;
	padding: 0px 0 0 0px;
}
.chargeback_mistakes.edi_documents {
	padding:0px 0 25px;
}
.contract_price h2.vc_custom_heading, .contract_price h3.vc_custom_heading {
	font-size: 24px;
}
.mistake_three_box h4 img {
	margin: 0 8px 8px;
}
.edi_compliance_image.main_ways .vc_column_container.vc_col-sm-6:first-child {
	width: 100%;
	padding: 0px;
}
.edi_compliance_image.main_ways .vc_column_container.vc_col-sm-6 {
	width: 100%;
	padding: 25px 15px;
}
.edi_compliance_image.main_ways_right_image .vc_column_container.vc_col-sm-6:first-child {
	width: 100%;
	padding: 25px 15px;
}
.edi_compliance_image.main_ways_right_image .vc_column_container.vc_col-sm-6 {
	width: 100%;
	padding: 0px;
}
.mistake2_two_box .vc_column_container.vc_col-sm-6:last-child {
	margin-top: 51px;
}
.edi_compliance h3.vc_custom_heading, .covered_mistake_text h3.vc_custom_heading, .heading_h3 h3.vc_custom_heading {
	letter-spacing: 0px;
}
.so_when_icon {
	width: 10%;
}
.so_when_pera p {
	width: 87%;
}
.macksson_logo_main {
	padding: 0px;
}
.macksson_logo_main h3.vc_custom_heading {
	padding: 0px;
	text-align: center !important;
	margin-top: -14px;
}
.chargeback_mistakes .mcksson_comment .wpb_text_column {
	padding-right: 12%;
}
.recommendations .mistake2_two_box .wpb_column.vc_column_container {
	margin-bottom: 50px;
}
.recommendations .mistake2_two_box .wpb_column.vc_column_container:last-child {
	margin-bottom:0px;
}
.padding_bootom_none, .chargeback_mistakes.edi_documents.padding_bootom_none_mob, .chargeback_mistakes.mistake5_aggregated  {
	padding-bottom: 0px;
}
.agree_text ,.text_center_mobile {
	text-align: center;
}
.edi_compliance_image {
	margin-top: 25px;
}
.main_ways {
	margin: 0px 0 10px;
}
.so_prevent {
	padding-top: 0px;
}
.mistake5_leftimg {
	padding-top:30px;
}
.mistake2_list_icon ul li {
	text-align: center;
}
.multimedia2 .author_d {
  width: 100%;
  margin-bottom: 20px;
}
.multimedia2 .button_d {
  width: 100%;
}
.multimedia2 .button_d a {
float:left;	
}
.multimedia2 .video_title {
  min-height: inherit;
}
.multimedia2 .multi_serach_box:first-child {
 width: 94%;
 margin: 0 auto 15px;
}
.multimedia2 .multi_serach_box:nth-child(2) {
  width: 40%;
}
.multimedia2 .multi_serach_box:last-child {
  width: 40%;
} 
}

@media (min-width:640px) and (max-width:767px) {
.navbar {
	width: 55%;
	float: right;
	text-align: center;
}
.head_right a {
	margin: 8px 0 0;
	vertical-align: middle;
}
.head_right {
	width: 100%;
	text-align: center;
	margin:10px 0 0 0;
}
.toggled-on .nav-menu, .toggled-on .nav-menu > ul {
	width: 100%;
	text-align: left;
	margin-top:15px;
}
.banner .metaslider .caption {
	width: 608px;
	text-align: center;
}
.benefit .vc_col-sm-4 {
	padding: 0 0px;
	margin: 15px 0 0 0;
	text-align: center;
	clear: both;
	display: inline-block;
}
.benefit p {
	text-align: left;
}
.benefit h1 {
	margin: 0px 0 30px 0 !important;
}
.benefit_main  .avoid {
padding-top: 40px;
float: left;
width: 100%;
}
.our_solutions .vc_col-sm-6 {
	margin: 120px 0 0 0;
	padding: 0 8px;
	width: 50%;
	vertical-align: top;
}
.our_solutions .vc_col-sm-4 {
	padding: 0 7px;
	margin: 130px 0 0 0;
	width: 50%;
	display: inline-block;
	vertical-align: top;
}
.our_solutions h2 {
	font-size: 17px;
}
.why_main .vc_col-sm-4 {
	padding: 0 7px;
	width: 50%;
	display: inline-block;
	vertical-align: top;
}
.why_main .vc_col-sm-6 {
	padding: 0 7px;
	display: inline-block;
	width: 50%;
	vertical-align: top;
}
.our_solutions p {
	min-height: 215px;
}
.our_solutions.our_customers p {
	min-height: 165px;
}
.our_solutions .o_testimonials p{
text-align:left;
min-height: auto;	
}
.o_testimonials .vc_col-sm-4 {
    display: flex;
	margin: 60px 0 0 0;
}
.why_main p {
min-height: 165px;
}
.features p {
min-height: 165px;;
}
.why_main h2 {
	font-size: 15px;;
}
.why_main .vc_col-sm-6 p {
	min-height: 170px;
}
.our_solutions,.why_main {
	text-align: center;
}
.right-side {
float: left;
margin-right: 74px;
width: 42%;
margin-bottom: 30px;
}
.right-side:nth-child(3), .right-side:nth-child(4){
margin-bottom: 0px;	
}
.right-side:nth-child(2), .right-side:nth-child(4)
{
margin-right: 0px;	
}
.indication {
width: 104%;
margin-bottom:10px;
}
.main-text{
margin-top: 20px;	
font-size: 14px;
margin-left: 16px;	
}
.pcenter .main-text {
margin-top: 29px;
}
.text-content{
font-size: 16px;	
}
.color_steps {
padding-bottom: 0;
}
.logo {
    width: 100%;
    float: left;
    text-align: center;
}
.navbar {
    width: 100%;
    margin: 10px 0 0;
    text-align: center;
}
.short_solutions h2 {
	font-size: 24px;
}
.short_customers .our_solution {
	font-size: 18px;
}
.short_back .vc_col-sm-8 h4 {
	padding: 0 30px 0 30px;
}
.short_benefit p {
	font-size: 15px;
}
.short_bene_box {
	margin: 92px 0 0 0;
}
.o_testimonials {
    display: block;
    width: 100%;
}
.o_testimonials .vc_col-sm-4{
display: inline-block;
margin: 50px 0 0 0;
width: 100%;	
}
.our_solutions  .o_testimonials p {
    text-align: left;
    min-height: auto;
	padding: 0 25px 22px;
}
  .multi_video_main {
    width: 595px;
    margin: 0 auto;
    margin-bottom: 0px;
    float: none;
  }		
}

@media (min-width:480px) and (max-width:639px) {
.navbar {
	width: 55%;
	float: right;
	text-align: center;
}
.toggled-on .nav-menu, .toggled-on .nav-menu > ul {
	width: 100%;
	text-align: left;
	margin-top:15px;
}
.head_right a {
	margin: 8px 0 0;
	vertical-align: middle;
}
.head_right {
	width: 100%;
	text-align: center;
	margin: 4px 0 0 0;
}
.our_solutions .vc_col-sm-6 {
	margin: 120px 0 0 0;
	padding: 0 8px;
	width: 50%;
	vertical-align: top;
}
.our_solutions .vc_col-sm-4 {
	padding: 0 7px;
	margin: 130px 0 0 0;
	width: 50%;
	display: inline-block;
	vertical-align: top;
}
.our_solutions h2 {
	font-size: 18px;
}
.why_main .vc_col-sm-4 {
	padding: 0 7px;
	width: 100%;
	display: inline-block;
	vertical-align: top;
}
.why_main .vc_col-sm-6 {
	padding: 0 7px;
	display: inline-block;
	width: 100%;
	vertical-align: top;
}
.our_solutions,.why_main {
	text-align: center;
}
.our_solutions p {
	padding: 0 10px 22px;
	min-height: 215px;
}
.our_solutions.our_customers p {
	padding: 0 10px 22px;
	min-height: 215px;
}
.why_main p {
min-height: auto; 
}
.features  p {
min-height: auto;
}
.why_main .vc_col-sm-6 p {
min-height: auto;
}
.features .vc_col-sm-6 p {
min-height: auto;
}
.benefit .vc_col-sm-4 {
	padding: 0 0px;
	margin: 15px 0 0 0;
	text-align: center;
	clear: both;
	display:inline-block;
}
.benefit p {
	text-align: left;
}
.about_us_banner .inner_container h1 {
    font-size: 28px;
}
.right-side {
float: left;
margin-right: 74px;
width: 39%;
margin-bottom: 30px;
}
.right-side:nth-child(3), .right-side:nth-child(4){
margin-bottom: 0px;	
}
.right-side:nth-child(2), .right-side:nth-child(4)
{
margin-right: 0px;	
}
.indication {
width: 103%;
margin-bottom:10px;
}
.main-text{
margin-top: 20px;	
font-size: 11px;
margin-left: 16px;	
}
.pcenter .main-text {
margin-top: 29px;
}
.text-content{
font-size: 14px;	
}
.color_steps {
padding-bottom: 0;
}
.benefit_main .avoid {
    padding-top: 40px;
    float: left;
    width: 100%;
}
.vendors_box p {
	width: 74%;
}
.logo {
    width: 100%;
    float: left;
    text-align: center;
}
.navbar {
    width: 100%;
    margin: 10px 0 0;
    text-align: center;
}	
.short_solutions .take_control {
	width: 100%;
}
.short_solutions .take_control .vc_column-inner {
	background-size: 100%;
}
.short_solutions .our_s {
	width: 100%;
}
.short_box_icon {
	margin: 0 3% 0 3%;
}
.short_box_text {
	width: 76%;
}
.short_customers .vc_col-sm-4:first-child {
	margin-top: 0px;
}
.short_customers .vc_col-sm-4 {
	margin:25px 0 0 0;
	width: 100%;
	float: left;
}
.short_customers .our-customers, .short_customers .wpb_single_image.vc_align_center, .short_customers .our_solution, .short_customers p {
	text-align: center;
	padding-left: 0px;
}
.short_back .vc_col-sm-8,.short_back .vc_col-sm-4 {
	width: 100%;
}
.back_text_revenue h2,.back_text_revenue h3 {
	padding: 0 0px;
}
.short_solutions h2 {
	padding: 0 20px 0 15px;
	text-align: center;
}
.short_bene_box {
	margin: 20px 0 0 0;
}
.short_benefit {
	padding: 0 30px 45px;
}
.short_back .vc_col-sm-8 h4 {
	padding: 0 30px 0 30px;
}
.o_testimonials {
    display: block;
    width: 100%;
}
.o_testimonials .vc_col-sm-4{
display: inline-block;
margin: 50px 0 0 0;
width: 100%;	
}
.our_solutions  .o_testimonials p {
    text-align: left;
    min-height: auto;
	padding: 0 25px 22px;
}
  .multi_video_main {
    align-items: center;
    flex-direction: column;
  }
 .chargeback_mistakes .mcksson_comment .wpb_text_column {
	padding-right: 15%;
} 
}

@media (min-width:50px) and (max-width:479px) {
.logo {
	width: 100%;
	float: left;
	text-align: center;
}
.navbar {
	width: 100%;
	margin: 10px 0 0;
	text-align: center;
}
.main-navigation {
	width: 100%;
}
.head_right {
	width: 100%;
	text-align: center;
}
.head_right .btn_head {
	margin: 3px 0px 0 0px;
}
.head_right a {
	width: 100%;
}
.site-header {
	padding: 11px 0 15px;
}
.footer_text span {
	padding: 0 10px;
	display: inline-block;
}
.cont_main_left {
	width: 100%;
}
.cont_main_left:last-child {
	margin: 22px 0 0 0;
}
.cont_main1 .wpcf7-submit {
	padding: 10px 80px;
}
.cont_text p {
	font-size: 18px;
}
.cont_text h2,.cont_text h3 {
	font-size: 18px;
}
.banner .metaslider .caption {
	width: 304px;
}
.banner .metaslider .caption-wrap {
	top:3%;
	text-align: center;
}
.banner .metaslider .slides img {
	height: 400px;
}
.banner h1 {
	width: 100%;
	font-size: 14px;
	letter-spacing: 2px;
	margin: 0px 0 5px 0;
}
.banner .metaslider .flexslider .slides p {
	font-size: 13px;
	margin: 0px 0 5px;
	line-height: 22px;
}
.banner h2 {
	font-size: 10px;
	margin: 0px 0 0px 0;
	line-height: 19px;
}
.our_solutions h1 {
	font-size: 30px;
}
 .read_s h3 {
    font-size: 30px;
  }
.our_solutions .vc_col-sm-6 {
	margin: 120px 0 0 0;
	padding: 0 0px;
}
.our_solutions .vc_col-sm-4 {
	padding: 0 0px;
	margin: 130px 0 0 0;
}
.why_main .vc_col-sm-4 {
	padding: 0 0px;
}
.why_main .vc_col-sm-6 {
	padding: 0 0px;
}
.benefit .vc_col-sm-4 {
	padding: 0 0px;
	margin: 15px 0 0 0;
	text-align: center;
	clear: both;
	display:inline-block;
}
.benefit p {
	text-align: left;
}
.benefit h1 {
	margin: 0px 0 30px 0 !important;
}
.benefit p {
	font-size: 15px;
	width: 200px;
}
.our_solutions.our_customers h1 {
    color: #245074;
    margin-bottom: 20px !important;
    float: left;
}
.about_us_banner {
padding: 1% 0px 8%;
}
.about_us_banner .inner_container h1 {
font-size: 22px;
text-align: center;
}
.about_us_banner .inner_container p {
text-align: center;
}
.right_sidebar .widget_black_studio_tinymce .textwidget {
    text-align: left;
}
.top_signs, .bottom_signs{
text-align: center;
width: 100%;
display: inline-block;	
}
.right-side {
float: none;
display: inline-block;
margin-right: 0;
width: 60%;
margin-bottom: 30px;
}
.main-text{ 
font-size: 13px;
margin-top: 19px;
margin-left: 16px;	
}
.pcenter .main-text {
margin-top: 29px;
}
.text-content {
margin-left: 0;
color: #4b4b4b;
text-align: center;
width: 100%;
height: auto;
display: inline;
}
.indication{
width:68%;
margin: 18px auto; 
}
.color_steps{
padding-bottom: 0;	
}
.steps .inner_container p, .steps .inner_container h1 {
text-align: center;	
}
.benefit_main .avoid {
padding-top: 40px;
float: left;
width: 100%;
}
.features .vc_col-sm-4 {
margin-top: 90px;
}
.box_blue .benefit_icon {
	width: 25%;
}
.vendors_box p {
	width: 68%;
}
.toggled-on .nav-menu, .toggled-on .nav-menu > ul {
	width: 100%;
	text-align: left;
	margin-top:15px;
}
.short_solutions .take_control {
	width: 100%;
}
.short_solutions .take_control .vc_column-inner {
	background-size: 100%;
}
.short_solutions .our_s {
	width: 100%;
}
.short_box_icon {
	margin: 0 3% 0 3%;
}
.short_box_text {
	width: 68%;
}
.short_customers .vc_col-sm-4:first-child {
	margin-top: 0px;
}
.short_customers .vc_col-sm-4 {
	margin:25px 0 0 0;
	width: 100%;
	float: left;
}
.short_customers .our-customers, .short_customers .wpb_single_image.vc_align_center, .short_customers .our_solution, .short_customers p {
	text-align: center;
	padding-left: 0px;
}
.short_back .vc_col-sm-8,.short_back .vc_col-sm-4 {
	width: 100%;
}
.short_why_text {
	width: 81%;
}
.short_solutions h2 {
	padding: 0 20px 0 15px;
	text-align: center;
}
.back_text_revenue h2,.back_text_revenue h3 {
	padding: 0 0px;
}
.short_bene_box {
	margin: 20px 0 0 0;
}
.short_benefit {
	padding: 0 30px 45px;
}
.short_back .vc_col-sm-8 h4 {
	padding: 0 30px 0 30px;
}
.become_an .eg-overlay-wrapper{
width: 100%;	
}
.o_testimonials {
    display: block;
    width: 100%;
}
.o_testimonials .vc_col-sm-4{
display: inline-block;
margin: 50px 0 0 0;
width: 100%;	
}
.our_solutions  .o_testimonials p {
    text-align: left;
    min-height: auto;
	padding: 0 25px 22px;
}
.our_solutions.our_customers p {
    padding: 0 25px 22px;
    min-height: auto;
}
.social_post {
vertical-align: middle;
display: inline-block;
margin-top: 5px;
width: 100%;
margin-bottom: 5px;
}
.review_section2 h1 {
	font-size: 55px;
	line-height: 45px;
	padding: 0 0 20px 0;
}
.review_section2 h3 {
	font-size: 40px;
	line-height: normal;
}
.in_the_one,.erp_left {
	width: 100%;
	padding: 0 0px;
	text-align: center;
}
.in_the_one:last-child ,.erp_left:last-child{
	padding: 20px 0 0 0;
}
.review_section4 .wpb_text_column {
	padding: 4% 15px 0;
}
.matthew_left {
	max-width: 100px;
	margin: 38% 0 0 0%;
	font-size: 14px;
}
.qout_image img {
	width: 60px;
}
.matthew_right {
	max-width: 180px;
	font-size: 19px;
	margin-top: 5%;
	text-shadow: 0px 5px 9px rgba(0, 0, 0, 0.50);
}
  .multi_video_main {
    align-items: center;
    flex-direction: column;
  }
.chargeback_mistakes .mcksson_comment .wpb_text_column {
	padding-right: 15%;
}
}