
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1.0 - Normalize
2.0 - Typography
3.0 - Elements
	3.1 - Common Elements
	3.2 - WordPress Elements
	3.3 - Theme's Elements
4.0 - Header
5.0 - Navigations
6.0 - Content
	6.1 - Posts and pages
	5.2 - Comments
7.0 - Widgets
8.0 - Footer
9.0 - Media Queries
--------------------------------------------------------------*/

/*--------------------------------------------------------------
1.0 - Normalize
--------------------------------------------------------------*/
* {
  box-sizing: border-box;
}
html {
  font-family: 'Open Sans', Arial, sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;font-family: 'Open Sans', Arial, sans-serif;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}
audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
[hidden],
template {
  display: none;
}
a {
  background: transparent;
}
a:active,
a:hover {
  outline: 0;
}
abbr[title] {
  border-bottom: 1px dotted;
}
b,
strong {
  font-weight: bold;
}
dfn {
  font-style: italic;
}
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
mark {
  background: #ff0;
  color: #000;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
img {
  border: 0;
}
svg:not(:root) {
  overflow: hidden;
}
figure {
  margin: 1em 40px;
}
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}
pre {
  overflow: auto;
}

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  margin: 0;
}
button {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
button[disabled],
html input[disabled] {
  cursor: default;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
input {
  line-height: normal;
}
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
input[type="search"] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
legend {
  border: 0;
  padding: 0;
}
textarea {
  overflow: auto;
}
optgroup {
  font-weight: bold;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td,
th {
  padding: 0;
}
/*--------------------------------------------------------------
2.0 - Typography
--------------------------------------------------------------*/
body {
  color: #a7a6a6;
  font-size: 14px;
  font-family: 'Open Sans', Arial, sans-serif;
  line-height: 1.6;
  background: #fff;
  word-wrap: break-word;
  overflow-x: hidden;
}
a {
  transition: 0.5s;
  color: #233859;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
a img {
  border: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
  font-family: 'Open Sans', Arial, sans-serif;
  line-height: 1.2;
  color: #323232;
}
h1 {
  font-size: 36px;
}
h2 {
  font-size: 30px;
}
h3 {
  font-size: 24px;
}
h4 {
  font-size: 18px;
}
h5 {
  font-size: 14px;
}
h6 {
  font-size: 12px;
}
/*--------------------------------------------------------------
3.0 - Elements
--------------------------------------------------------------*/
/**
 * 3.1 - Common Elements
 */
img {
  max-width: 100%;
  height: auto;
}
input[type=text],
textarea {
  border: 1px solid #555;
  background: #fff;
}
blockquote {
  font-style: italic;
  border-left: #233859;
  margin-left: 30px;
  margin-right: 30px;
  padding: 20px;
  position: relative;
}
blockquote p {
  color: #233859;
}
blockquote:before {
  content: '\f10d';
  position: absolute;
  font-family: FontAwesome;
  font-size: 30px;
  color: #233859;
  left: -30px;
  top: 16px;
}
.clearfix {
  zoom: 1;
}
.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}
.clearfix:after {
  clear: both;
}
.tp-caption.tp_button_1,
.tp-caption.button_2 {
  position: relative;
  transition: all 500ms !important;
}
.tp-caption.tp_button_1:before,
.tp-caption.button_2:before {
  position: absolute;
  content: '';
  width: 1px;
  height: 100%;
  top: 0;
  left: 69%;
  opacity: 0.3;
  transition: all 500ms !important;
}
.tp-caption.tp_button_1 i,
.tp-caption.button_2 i {
  padding-right: 2px !important;
  padding-left: 25px!important;
}
.tp-caption.tp_button_1:before {
  background: #111;
}
.tp-caption.tp_button_1:hover:before {
  background: #e5d844;
}
.tp-caption.button_2:before {
  background: #e5d844;
}
.tp-caption.button_2:hover:before {
  background: #111;
}
.tp-caption .fa {
  color: #f0e246;
  padding-right: 5px !important;
}
.tp-caption.tp_layer_5 i {
  padding: 0 4px 0 4px !important;
}
.entry-desc blockquote {
  padding: 20px 20px 20px 35px;
}
.container {
  padding-left: 0;
  padding-right: 0;
}
.container .container {
  width: 100%;
}
.page-container {
  width: 70%;
  margin: 0 auto;
}
.boxed .site {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: 1445px;
  margin: 0 auto;
  background-color: #fff;
  position: relative;
}
.boxed .page-container {
  width: 100%;
  padding-left: 60px;
  padding-right: 60px;
}
.boxed .topbar:before,
.boxed .topbar:after {
  display: none;
}
.boxed.header-transparent.admin-bar .topbar {
  top: 0;
}
.boxed.header-transparent.admin-bar .site-header {
  top: 55px;
}
.vc_row-no-padding.vc_row[data-vc-full-width] {
  overflow: inherit;
}
.boxed .vc_row.row-full-width.row-stretch-content.vc_row-no-padding .container-fluid {
  padding-left: 15px;
  padding-right: 15px;
}
/**
 * 3.2 - WordPress Elements
 */
.alignnone {
  margin: 0;
}
.aligncenter,
div.aligncenter,
.aligncenter img {
  display: block;
  margin: 1em auto;
}
.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}
.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}
.wp-caption {
  background: #fff;
  border: 1px solid #555;
  padding: 5px;
  max-width: 100%;
  text-align: center;
}
.wp-caption img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
}
.wp-caption-text {
  font-size: small;
  margin: 0;
  padding: 5px 0 0;
}
.gallery-caption {
  display: block;
}
.bypostauthor {
  display: block;
}
.sticky {
  display: block;
}
.off-canvas-layer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 999999;
  cursor: pointer;
  display: none;
  background-color: rgba(0, 0, 0, 0.5);
}
.off-canvas-panel {
  -webkit-overflow-scrolling: touch;
  -webkit-backface-visibility: hidden;
  -webkit-perspective: 1000;
  transition: 0.5s;
  width: 380px;
  height: 100%;
  padding: 30px;
  background-color: #fff;
  position: fixed;
  right: -380px;
  top: 0;
  color: #aaa;
  z-index: 999999;
  overflow-y: auto;
  overflow-x: hidden;
}
.off-canvas-panel .widget-panel-header {
  overflow: hidden;
  margin-bottom: 40px;
}
.off-canvas-panel .widget-panel-header h2 {
  float: left;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  text-transform: uppercase;
  line-height: 40px;
  margin: 0;
  padding-top: 12px;
}
.off-canvas-panel .widget-panel-header a {
  float: right;
  color: #fff;
  font-size: 40px;
}
.off-canvas-panel.main-nav {
  padding: 0;
  display: block;
  background-color: #233859;
}
.off-canvas-panel.main-nav .widget-nav-header {
  padding: 20px 40px;
  margin-bottom: 0;
  color: #fff;
}
.off-canvas-panel.main-nav .primary-nav .menu {
  float: none;
}
.off-canvas-panel.main-nav .primary-nav .menu li.menu-item .sub-menu {
  position: static !important;
  top: 0 !important;
  left: 0 !important;
}
.off-canvas-panel.main-nav .primary-nav .menu li.menu-item:hover .sub-menu {
  display: none;
}
.off-canvas-panel.main-nav .nav ul ul {
  width: 100%;
  background-color: transparent;
  transform: scaleX(1);
}
.off-canvas-panel.main-nav .primary-nav .menu {
  margin: 0;
  padding: 0;
}
.off-canvas-panel.main-nav .primary-nav .menu > li {
  padding-left: 40px;
  padding-right: 40px;
  width: 100%;
  display: block;
}
.off-canvas-panel.main-nav .primary-nav .menu > li > a {
  margin-bottom: 0;
  padding: 15px 0 13px;
  color: #fff;
  font-weight: 600;
  position: relative;
  background-color: transparent;
  box-shadow: none;
}
.off-canvas-panel.main-nav .primary-nav .menu > li.extra-menu-item {
  display: none;
}
.off-canvas-panel.main-nav .primary-nav .menu > li li {
  padding: 10px 0;
}
.off-canvas-panel.main-nav .primary-nav .menu > li li a {
  color: #fff;
  font-weight: 400;
  border-top: none;
}
.off-canvas-panel.main-nav .primary-nav .menu > li li a:before {
  display: none;
}
.off-canvas-panel.main-nav .primary-nav .menu > li.menu-item-has-children {
  position: relative;
}
.off-canvas-panel.main-nav .primary-nav .menu > li.menu-item-has-children .toggle-children {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 13px;
  color: #fff;
  padding: 18px 0 18px;
}
.off-canvas-panel.main-nav .primary-nav .menu > .menu-item-has-children > a:after {
  display: none;
}
.off-canvas-panel.main-nav .nav ul.menu > .menu-item-mega {
  position: relative;
}
.off-canvas-panel.main-nav .nav .mega-menu-container,
.off-canvas-panel.main-nav .nav ul ul {
  position: static;
  top: 0;
  opacity: 1;
  display: none;
  box-shadow: none;
}
.off-canvas-panel.main-nav .primary-nav .menu li.menu-item.show-children .mega-menu-container,
.off-canvas-panel.main-nav .primary-nav .menu li.menu-item.show-children .sub-menu {
  display: block;
  padding-bottom: 20px;
  padding-left: 30px;
}
.off-canvas-panel.main-nav .primary-nav .menu li.menu-item.show-children .mega-menu-container .sub-menu,
.off-canvas-panel.main-nav .primary-nav .menu li.menu-item.show-children .sub-menu .sub-menu {
  padding-left: 20px;
}
.off-canvas-panel.main-nav .primary-nav .menu li.menu-item.show-children .toggle-children:before {
  content: "\f077";
}
/*--------------------------------------------------------------
6.0 - Content
--------------------------------------------------------------*/
/**
 * 6.1 Posts and Pages
 */
.comments-area .comments-title {
  margin-top: 100px;
  font-size: 30px;
  color: #323232;
  text-transform: none;
}
.comments-area .comment-body {
  border-top: none !important;
  position: relative;
}
.comments-area .comment-body .comment-content {
  padding-top: 0;
}
.comments-area .comment-body .comment-content blockquote {
  position: relative;
}
.comments-area .comment-body .comment-content blockquote p {
  color: #233859;
  font-weight: 600;
  font-size: 14px;
}
.comments-area .comment-body .comment-content blockquote:before {
  content: "\f10d";
  position: absolute;
  font-family: FontAwesome;
  top: 18px;
  left: -30px;
  font-size: 24px;
  color: #233859;
}
.comments-area .comment-body .comment-content h1 {
  font-size: 22px;
}
.comments-area .comment-body .comment-content h2 {
  font-size: 20px;
}
.comments-area .comment-body .comment-content h3 {
  font-size: 18px;
}
.comments-area .comment-body .comment-content h4 {
  font-size: 16px;
}
.comments-area .comment-body .comment-content h5 {
  font-size: 14px;
}
.comments-area .comment-body .comment-content h6 {
  font-size: 12px;
}
.comments-area .comment-body .comment-metadata a {
  text-decoration: none;
}
.comments-area .comment-body .comment-metadata .fn {
  float: left;
  color: #323232;
  font-weight: 700;
  font-size: 18px;
  font-style: normal;
}
.comments-area .comment-body .comment-metadata .fn a {
  font-size: 18px;
  color: #323232;
  font-weight: 700;
}
.comments-area .comment-body .comment-metadata .meta-data {
  float: right;
}
.comments-area .comment-body .comment-metadata .meta-data .date {
  float: left;
  padding-right: 14px;
  color: #c1c1c1;
  position: relative;
  font-size: 14px;
}
.comments-area .comment-body .comment-metadata .meta-data .date:before {
  content: "\f017";
  position: absolute;
  color: #c1c1c1;
  font-family: FontAwesome;
  top: 0;
  left: -20px;
  font-size: 14px;
}
.comments-area .comment-body .comment-metadata .meta-data .reply {
  float: right;
  padding-left: 10px;
  font-weight: 600;
}
.comments-area .comment-body .comment-metadata .meta-data .reply .comment-reply-link {
  position: relative;
}
.comments-area .comment-body .comment-metadata .meta-data .reply .comment-reply-link:before {
  content: "";
  position: absolute;
  width: 2px;
  height: 13px;
  background: #c1c1c1;
  margin-left: 8px;
  top: 4px;
  left: -20px;
}
.comments-area .comment-body .comment-metadata .meta-data .comment-edit-link {
  margin-right: 0;
  padding-left: 20px;
  position: relative;
}
.comments-area .comment-body .comment-metadata .meta-data .comment-edit-link:before {
  content: "";
  position: absolute;
  width: 2px;
  height: 13px;
  background: #c1c1c1;
  margin-left: 8px;
  top: 5px;
  left: 0;
}
.comments-area .comment-body .comment-content {
  margin-top: -25px;
}
.comments-area .comment-body .comment-content p {
  color: #c1c1c1;
  margin-bottom: 5px;
}
.comments-area .comment-body .comment-author > img {
  border: 1px solid transparent;
  border-radius: 50%;
}
.comments-area ol li article {
  padding: 15px 0;
}
.post-author-box {
  border: 1px solid #f8f6f6;
  background: #fcfcfc;
  padding: 30px;
}
.post-author-box .post-author-avatar {
  float: left;
  padding-right: 30px;
}
.post-author-box .post-author-avatar img {
  width: 150px;
  height: 150px;
}
.post-author-box .post-author-desc .post-author-name {
  color: #323232;
  font-weight: 600;
  font-size: 18px;
}
.post-author-box .post-author-desc .post-author-name p {
  color: #c1c1c1;
  font-size: 14px;
  margin-top: 10px;
  margin-bottom: 0;
}
.page-header {
  margin-top: 0;
}
.page-header h1 {
  margin-top: 0;
}
.single-post .blog-wrapper {
  padding-bottom: 60px;
  position: relative;
}
.single-post .blog-wrapper .entry-header {
  position: relative;
  margin-top: 40px;
  margin-bottom:20px
}
.single-post .blog-wrapper .entry-header:before {
  content: "";
  position: absolute;
  width: 3px;
  height: 75%;
  background-color: #497ca7;

  left: 0;
  opacity: 0.7;
}
.single-post .blog-wrapper .entry-header h1 {
  margin-top: 0;
  font-size: 24px;
  margin-bottom: 5px;
  padding-left: 20px;
}
.single-post .blog-wrapper .entry-header h1 a {
  color: #323232;
}
.single-post .blog-wrapper .entry-header .post-meta {
  padding-left: 10px;
  padding-bottom: 15px;
}
.single-post .blog-wrapper .entry-header .post-meta .meta,
.single-post .blog-wrapper .entry-header .post-meta .entry-date {
  padding-right: 10px;
  padding-left: 10px;
  color: #006699;
  position: relative;
}
.single-post .blog-wrapper .entry-header .post-meta .meta:after,
.single-post .blog-wrapper .entry-header .post-meta .entry-date:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 13px;
  background: #497ca7;
  margin-left: 8px;
  top: 3px;
}
.single-post .blog-wrapper .entry-header .post-meta .meta a,
.single-post .blog-wrapper .entry-header .post-meta .entry-date a {
  color:#006699;
}
.single-post .blog-wrapper .entry-header .post-meta .meta:last-child:after,
.single-post .blog-wrapper .entry-header .post-meta .entry-date:last-child:after {
  display: none;
}
.single-post .blog-wrapper .entry-header .post-meta .meta .fa,
.single-post .blog-wrapper .entry-header .post-meta .entry-date .fa {
  padding-right: 5px;
  color: #233859;
}
.blog-classic .post-categories {
  display: none;
}
.blog-classic .format-audio .format-audio iframe {
  width: 100%;
  height: auto;
}
.blog-classic .format-quote blockquote {
  background: #233859;
  margin: 0;
  color: #fff;
  padding: 40px 20px 40px 70px;
}
.blog-classic .format-quote blockquote:before {
  color: #f0e246;
  font-size: 28px;
  left: 25px;
  top: 35px;
}
.blog-classic .format-quote blockquote cite a {
  color: #f0e246;
}
.blog-classic .format-gallery .format-gallery .owl-controls {
  position: relative;
  z-index: 9999;
}
.blog-classic .format-gallery .format-gallery .owl-controls .owl-pagination {
  position: absolute;
  top: -25px;
  left: 45%;
}
.blog-classic .format-gallery .format-gallery .owl-controls .owl-pagination .owl-page span {
  background: #fff;
  height: 10px;
  width: 10px;
}
.blog-classic .format-gallery .format-gallery .owl-controls .owl-pagination .owl-page.active span {
  background: #f0e246;
}
.blog-manasony .content-area {
  width: 100%;
}
.blog-manasony .blog-sidebar {
  display: none;
}
.blog-manasony .post-categories {
  padding-left: 0;
}
.blog-manasony .post-categories li {
  display: inline-block;
  list-style: none;
}
.blog-manasony .post-categories li a {
  padding-right: 5px;
  font-weight: 600;
}
.blog-manasony .post-categories li a:after {
  content: ',';
}
.blog-manasony .post-categories li:last-child a:after {
  display: none;
}
.blog-manasony .blog-wrapper,
.blog-manasony .blog-wrapper-sizer {
  width: 33.33%;
  float: left;
  overflow: hidden;
}
.blog-manasony .blog-wrapper.format-gallery,
.blog-manasony .blog-wrapper-sizer.format-gallery {
  position: relative;
}
.blog-manasony .blog-wrapper.format-gallery .entry-format,
.blog-manasony .blog-wrapper-sizer.format-gallery .entry-format {
  position: relative;
}
.blog-manasony .blog-wrapper.format-gallery .entry-format:before,
.blog-manasony .blog-wrapper-sizer.format-gallery .entry-format:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.65);
  z-index: 3;
}
.blog-manasony .blog-wrapper.format-gallery .entry-image ul,
.blog-manasony .blog-wrapper-sizer.format-gallery .entry-image ul {
  list-style: none;
}
.blog-manasony .blog-wrapper.format-gallery .entry-header > a,
.blog-manasony .blog-wrapper-sizer.format-gallery .entry-header > a {
  color: #f0e246;
  display: block;
  padding-bottom: 5px;
}
.blog-manasony .blog-wrapper.format-gallery .owl-controls,
.blog-manasony .blog-wrapper-sizer.format-gallery .owl-controls {
  position: relative;
  z-index: 9;
}
.blog-manasony .blog-wrapper.format-gallery .owl-controls .owl-pagination,
.blog-manasony .blog-wrapper-sizer.format-gallery .owl-controls .owl-pagination {
  position: absolute;
  top: -25px;
  left: 36%;
}
.blog-manasony .blog-wrapper.format-gallery .owl-controls .owl-pagination .owl-page.active span,
.blog-manasony .blog-wrapper-sizer.format-gallery .owl-controls .owl-pagination .owl-page.active span {
  background: #f0e246;
  border-color: #f0e246;
  padding: 4px;
}
.blog-manasony .blog-wrapper.format-gallery .owl-controls .owl-pagination .owl-page span,
.blog-manasony .blog-wrapper-sizer.format-gallery .owl-controls .owl-pagination .owl-page span {
  background: #fff;
  padding: 4px;
}
.blog-manasony .site-main {
  margin-right: -15px;
  margin-left: -15px;
}
.blog-manasony .blog-wrapper {
  height: auto;
  padding-bottom: 40px;
  padding-left: 15px;
  padding-right: 15px;
}
.blog-manasony .blog-wrapper .entry-header > a {
  font-weight: 600;
  display: block;
  padding-bottom: 5px;
}
.blog-manasony .blog-wrapper .entry-header:before {
  display: none;
}
.blog-manasony .blog-wrapper .entry-header .entry-title {
  padding: 0;
  font-size: 18px;
  padding-bottom: 10px;
  line-height: 25px;
}
.blog-manasony .blog-wrapper .entry-header .entry-title a {
  padding-left: 0;
  font-weight: 600;
  color: #323232;
}
.blog-manasony .blog-wrapper .entry-header .entry-title a:before {
  display: none;
}
.blog-manasony .blog-wrapper .entry-header .post-meta {
  padding: 0;
}
.blog-manasony .blog-wrapper .entry-header .post-meta .meta,
.blog-manasony .blog-wrapper .entry-header .post-meta .entry-date {
  padding-right: 10px;
  padding-left: 10px;
  color: #c1c1c1;
  position: relative;
}
.blog-manasony .blog-wrapper .entry-header .post-meta .meta:after,
.blog-manasony .blog-wrapper .entry-header .post-meta .entry-date:after {
  content: "";
  position: absolute;  padding-right: 10px;
  padding-left: 10px;
  width: 1px;
  height: 13px;
  background: #c1c1c1;
  margin-left: 8px;
  top: 3px;
}
.blog-manasony .blog-wrapper .entry-header .post-meta .meta a,
.blog-manasony .blog-wrapper .entry-header .post-meta .entry-date a {
  color: #c1c1c1;padding-left: 10px;
}
.blog-manasony .blog-wrapper .entry-header .post-meta .meta:last-child:after,
.blog-manasony .blog-wrapper .entry-header .post-meta .entry-date:last-child:after {
  display: none;
}
.blog-manasony .blog-wrapper .entry-header .post-meta .meta .fa,
.blog-manasony .blog-wrapper .entry-header .post-meta .entry-date .fa {
  padding-right: 15px;
  color: #233859;
}
.blog-manasony .blog-wrapper .entry-header .post-meta .user {
  padding-left: 0;
}
.blog-manasony .blog-wrapper .entry-header .post-meta .tag {
  display: none;
}
.blog-manasony .blog-wrapper .entry-desc {
  padding-top: 20px; padding-bottom:20px
}
.blog-wrapper .entry-desc p{
font-size:1em
}
.blog-manasony .blog-wrapper .entry-desc:before {
  display: none;
}
.blog-manasony .blog-wrapper .entry-footer {
  padding-top: 20px;
}
.blog-manasony .blog-wrapper .entry-footer .social-links {
  display: none;
}
.blog-manasony .blog-wrapper .entry-footer a {
  margin-left: 0;
  background: transparent;
  padding: 0;
  color: #323232;
}
.blog-manasony .blog-wrapper .entry-footer a:hover {
  background: transparent;
  color: #f0e246;
}
.blog-manasony .blog-wrapper .entry-footer a:hover:after {
  color: #f0e246;
}
.blog-manasony .blog-wrapper .entry-footer a:after {
  color: #323232;
}
.blog-manasony .blog-wrapper .entry-footer a:before {
  display: none;
}
.blog-manasony .blog-wrapper .entry-footer > a {
  padding-right: 15px;
}
.blog-manasony .blog-wrapper .entry-footer > a:after {
  right: 0;
  top: -2px;
}
.blog-manasony .blog-wrapper.format-quote {
  padding-bottom: 20px;
}
.blog-manasony .blog-wrapper.format-quote .post-categories {
  display: none;
}
.blog-manasony .blog-wrapper.format-quote blockquote {
  background: #233859;
  color: #fff;
  position: relative;
  text-align: center;
  padding: 60px 20px 40px 20px;
  margin: 0;
  font-size: 14px;
  line-height: 25px;
  transition: all 500ms;
}
.blog-manasony .blog-wrapper.format-quote blockquote:before {
  content: "\f10d";
  position: absolute;
  font-family: FontAwesome;
  top: 20px;
  left: 44%;
  font-size: 24px;
  color: #3d4c66;
}
.blog-manasony .blog-wrapper.format-quote blockquote cite {
  display: block;
  font-size: 14px;
  padding-top: 30px;
}
.blog-manasony .blog-wrapper.format-quote blockquote cite a {
  color: #fff;
  border-bottom: 1px solid #fff;
}
.blog-manasony .blog-wrapper.format-quote .entry-header > a {
  display: none;
}
.blog-manasony .blog-wrapper.format-quote .entry-header .entry-title {
  display: none;
}
.blog-manasony .blog-wrapper.format-quote .entry-desc {
  display: none;
}
.blog-manasony .blog-wrapper.format-quote .post-meta {
  display: none;
}
.blog-manasony .blog-wrapper.format-quote .entry-footer {
  display: none;
}
.blog-manasony .blog-wrapper.format-link {
  margin-top: 0;
  padding-bottom: 0;
}
.blog-manasony .blog-wrapper.format-link .post-categories {
  display: none;
}
.blog-manasony .blog-wrapper.format-link .format-link {
  margin-top: 0;
  padding: 40px 20px 40px 40px;
}
.blog-manasony .blog-wrapper.format-link .format-link:before {
  font-size: 22px;
  top: 10px;
  left: 20px;
}
.blog-manasony .blog-wrapper.format-link .format-link:after {
  font-size: 22px;
  bottom: 5px;
  right: 15px;
}
.blog-manasony .blog-wrapper.format-link .format-link a {
  font-size: 14px;
  padding-top: 25px;
  padding-left: 0;
}
.blog-manasony .blog-wrapper.format-link .entry-header > a {
  display: none;
}
.blog-manasony .blog-wrapper.format-link .entry-header .entry-title {
  display: none;
}
.blog-manasony .blog-wrapper.format-link .entry-desc {
  display: none;
}
.blog-manasony .blog-wrapper.format-link .post-meta {
  display: none;
}
.blog-manasony .blog-wrapper.format-link .entry-footer {
  display: none;
}
.blog-manasony .blog-wrapper.format-audio .format-audio {
  margin-bottom: 40px;
}
.blog-manasony .blog-wrapper.format-audio iframe {
  width: 100%;
  height: auto;
}
.blog-without-image .content-area {
  width: 100%;
}
.blog-without-image .content-area .blog-wrapper {
  width: 50%;
  float: left;
}
.blog-without-image .content-area .blog-wrapper:nth-child(odd) {
  clear: left;
  padding-right: 15px;
}
.blog-without-image .content-area .blog-wrapper:nth-child(odd) .entry-footer,
.blog-without-image .content-area .blog-wrapper:nth-child(odd) .format-quote,
.blog-without-image .content-area .blog-wrapper:nth-child(odd) .format-link {
  position: relative;
}
.blog-without-image .content-area .blog-wrapper:nth-child(odd) .entry-footer:after,
.blog-without-image .content-area .blog-wrapper:nth-child(odd) .format-quote:after,
.blog-without-image .content-area .blog-wrapper:nth-child(odd) .format-link:after {
  content: '';
  position: absolute;
  bottom: -75px;
  right: 0;
  width: 100%;
  height: 1px;
  background: #f2f2f2;
}
.blog-without-image .content-area .blog-wrapper:nth-child(even) {
  clear: right;
  padding-left: 15px;
}
.blog-without-image .content-area .blog-wrapper:nth-child(even) .entry-footer,
.blog-without-image .content-area .blog-wrapper:nth-child(even) .format-quote,
.blog-without-image .content-area .blog-wrapper:nth-child(even) .format-link {
  position: relative;
}
.blog-without-image .content-area .blog-wrapper:nth-child(even) .entry-footer:after,
.blog-without-image .content-area .blog-wrapper:nth-child(even) .format-quote:after,
.blog-without-image .content-area .blog-wrapper:nth-child(even) .format-link:after {
  content: '';
  position: absolute;
  bottom: -75px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #f2f2f2;
}
.blog-without-image .blog-sidebar {
  display: none;
}
.blog-without-image .blog-wrapper {
  padding-bottom: 50px;
  padding-top: 40px;
}
.blog-without-image .blog-wrapper .post-categories {
  padding-left: 0;
}
.blog-without-image .blog-wrapper .post-categories li {
  display: inline-block;
  list-style: none;
}
.blog-without-image .blog-wrapper .post-categories li a {
  padding-right: 5px;
  font-weight: 600;
}
.blog-without-image .blog-wrapper .post-categories li a:after {
  content: ',';
}
.blog-without-image .blog-wrapper .post-categories li:last-child a:after {
  display: none;
}
.blog-without-image .blog-wrapper .entry-format .entry-image {
  display: none;
}
.blog-without-image .blog-wrapper .entry-header {
  margin-top: 0;
}
.blog-without-image .blog-wrapper .entry-header > a {
  font-weight: 500;
  display: block;
}
.blog-without-image .blog-wrapper .entry-header:before {
  display: none;
}
.blog-without-image .blog-wrapper .entry-header .entry-title {
  padding: 0;
  margin-top: 5px;
  font-size: 30px;
  line-height: 30px;
}
.blog-without-image .blog-wrapper .entry-header .entry-title a {
  padding-left: 0;
  font-weight: 500;
  color: #323232;
}
.blog-without-image .blog-wrapper .entry-header .entry-title a:before {
  display: none;
}
.blog-without-image .blog-wrapper .entry-header .post-meta {
  padding: 0;
}
.blog-without-image .blog-wrapper .entry-header .post-meta .meta,
.blog-without-image .blog-wrapper .entry-header .post-meta .entry-date {
  padding-right: 10px;
  padding-left: 10px;
  color: #c1c1c1;
  position: relative;
}
.blog-without-image .blog-wrapper .entry-header .post-meta .meta:after,
.blog-without-image .blog-wrapper .entry-header .post-meta .entry-date:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 13px;
  background: #c1c1c1;
  margin-left: 8px;
  top: 3px;
}
.blog-without-image .blog-wrapper .entry-header .post-meta .meta a,
.blog-without-image .blog-wrapper .entry-header .post-meta .entry-date a {
  color: #c1c1c1;
}
.blog-without-image .blog-wrapper .entry-header .post-meta .meta:last-child:after,
.blog-without-image .blog-wrapper .entry-header .post-meta .entry-date:last-child:after {
  display: none;
}
.blog-without-image .blog-wrapper .entry-header .post-meta .meta .fa,
.blog-without-image .blog-wrapper .entry-header .post-meta .entry-date .fa {
  padding-right: 5px;
  color: #233859;
}
.blog-without-image .blog-wrapper .entry-header .post-meta .user {
  padding-left: 0;
}
.blog-without-image .blog-wrapper .entry-header .post-meta .tag {
  display: none;
}
.blog-without-image .blog-wrapper:first-child {
  margin-top: 0;
}
.blog-without-image .blog-wrapper:first-child .entry-header {
  margin-top: 0;
  padding-top: 0;
}
.blog-without-image .blog-wrapper .entry-desc {
  padding-top: 10px;
  padding-left: 0;
}
.blog-without-image .blog-wrapper .entry-desc:before {
  display: none;
}
.blog-without-image .blog-wrapper .entry-footer {
  padding-top: 20px;
  position: relative;
}
.blog-without-image .blog-wrapper .entry-footer .social-links {
  float: left;
}
.blog-without-image .blog-wrapper .entry-footer .social-links a {
  padding-right: 15px;
}
.blog-without-image .blog-wrapper .entry-footer a {
  margin-left: 0;
  background: transparent;
  padding: 0;
  color: #323232;
}
.blog-without-image .blog-wrapper .entry-footer a:hover {
  background: transparent;
  color: #f0e246;
}
.blog-without-image .blog-wrapper .entry-footer a:hover:after {
  color: #f0e246;
}
.blog-without-image .blog-wrapper .entry-footer a:after {
  color: #323232;
}
.blog-without-image .blog-wrapper .entry-footer a:before {
  display: none;
}
.blog-without-image .blog-wrapper .entry-footer > a {
  float: right;
  margin-top: 4px;
  padding-right: 15px;
}
.blog-without-image .blog-wrapper .entry-footer > a:after {
  right: 0;
  top: 0;
}
.blog-without-image .format-link {
  margin-top: 0;
}
.blog-without-image .format-link .format-link {
  margin-bottom: 0;
  min-height: 213px;
  padding-top: 70px;
  padding-left: 70px;
}
.blog-without-image .format-link .format-link:before {
  top: 70px;
}
.blog-without-image .format-quote .post-categories,
.blog-without-image .format-link .post-categories {
  display: none;
}
.blog-without-image .format-quote .entry-header > a,
.blog-without-image .format-link .entry-header > a {
  display: none;
}
.blog-without-image .format-quote .entry-header .entry-title,
.blog-without-image .format-link .entry-header .entry-title {
  display: none;
}
.blog-without-image .format-quote .entry-desc,
.blog-without-image .format-link .entry-desc {
  display: none;
}
.blog-without-image .format-quote .post-meta,
.blog-without-image .format-link .post-meta {
  display: none;
}
.blog-without-image .format-quote .entry-footer,
.blog-without-image .format-link .entry-footer {
  display: none;
}
.blog-without-image .format-quote {
  padding-bottom: 0;
}
.blog-without-image .format-quote .format-quote {
  margin-bottom: 40px;
}
.blog-without-image .format-quote blockquote {
  min-height: 213px;
  background: #233859;
  margin: 0;
  color: #fff;
  padding: 60px 20px 40px 70px;
}
.blog-without-image .format-quote blockquote:before {
  color: #f0e246;
  font-size: 28px;
  left: 25px;
  top: 35px;
}
.blog-without-image .format-quote blockquote:after {
  position: absolute;
  content: '\f10e';
  color: #f0e246;
  font-size: 28px;
  right: 25px;
  bottom: 35px;
  font-family: FontAwesome;
}
.blog-without-image .format-quote blockquote cite a {
  color: #f0e246;
}
.blog-without-image .format-audio {
  display: none;
}
.blog-without-image .format-audio .format-audio {
  margin-bottom: 40px;
}
.blog-without-image .format-audio iframe {
  width: 100%;
  height: auto;
}
.blog-without-image .navigation {
  padding-top: 50px;
  clear: both;
}
.blog-without-image .navigation .next {
  top: 38px;
}
.blog-without-image .navigation .prev {
  top: 38px;
}
.blog-without-image .tp-blog .blog-wrapper .entry-header {
  margin-top: 25px;
}
/**
 * 6.3 Comments
 */
.bypostauthor {
  display: block;
}
.comments-area {
  clear: both;
}
.comments-title {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 30px;
}
.comment-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.comment-list .children {
  list-style: none;
  padding: 0 0 0 80px;
}
.comment-list .children article {
  border-top-width: 0;
}
.comment-list .children:last-child {
  margin-bottom: 0;
}
.comment-list > .comment:first-child article {
  border: none;
}
.comment {
  zoom: 1;
  float: left;
  clear: both;
  width: 100%;
}
.comment:before,
.comment:after {
  content: "";
  display: table;
}
.comment:after {
  clear: both;
}
.comment article {
  padding: 23px 0;
  border-top: 1px solid #ccc;
  overflow: hidden;
}
.comment .comment-author {
  padding-right: 15px;
  float: left;
}
.comment .comment-edit-link {
  float: right;
  margin-right: 20px;
}
.numeric-navigation {
  clear: both;
  display: table;
  margin: 30px auto;
  float: none;
}
.comment-respond {
  margin-top: 50px;
}
.comment-content {
  word-break: break-all;
  padding-top: 8px;
  margin-left: 80px;
}
.comment-content a {
  word-wrap: break-word;
}
.comment-awaiting-moderation {
  display: block;
}
.post-author-box .post-author-desc .post-author-name {
  font-weight: 500;
}
.post-author-box .post-author-desc .post-author-name p {
  line-height: 2;
  font-weight: 500;
  margin-left: 180px;
}
/*--------------------------------------------------------------
7.0 - Widgets
--------------------------------------------------------------*/
.widget {
  margin-bottom: 30px;
}
.widget .widget-title {
  font-size: 24px;
  font-weight: 200;

  margin-top: 0;
  color: #323232;
  padding-bottom: 10px;
}

.widget ul {
  margin: 0;
  padding: 0;
}
.widget ul li {
  list-style: none;
  padding-left: 20px;
  position: relative;
  font-weight: 400;
  transition: all 500ms;
  color: #a7a6a6;
}
.widget ul li a {
  color: #a7a6a6;
}
.widget ul li a:before {
  content: "\f105";
  position: absolute;
  font-family: FontAwesome;
  color: #a7a6a6;
  left: 0;
  top: 3px;
  transition: all 500ms;
}
.widget ul li a:hover {
  text-decoration: none;
  color: #233859;
}
.widget ul li a:hover:before {
  color: #f0e246;
  background: #233859;
}
.widget table,
.widget select {
  width: 100%;
}
.widget select {
  border: 1px solid #ccc;
  height: 30px;
  background-color: transparent;
}
.widget select option {
  color: #555;
}
.widget table {
  text-align: left;
  width: 100%;
}
.widget table caption {
  border: 1px solid #ccc;
  border-bottom-width: 0;
  text-align: center;
}
.widget table tr {
  border: 1px solid #ccc;
  border-bottom-width: 0;
  padding: 3px 0;
}
.widget table tr td,
.widget table tr th {
  padding: 0 5px;
  border-bottom: 1px solid #ccc;
  border-left: 1px solid #ccc;
}
.widget_calendar {
  line-height: 26px;
}
.widget_categories li,
.widget_recent_comments li,
.widget_rss li,
.widget_pages li,
.widget_archive li,
.widget_nav_menu li,
.widget_recent_entries li,
.widget_meta li,
.widget-recent-comments li {
  padding: 8px 0;
}
.widget_categories .children,
.widget_recent_comments .children,
.widget_rss .children,
.widget_pages .children,
.widget_archive .children,
.widget_nav_menu .children,
.widget_recent_entries .children,
.widget_meta .children,
.widget-recent-comments .children {
  margin-top: 10px;
  margin-left: 15px;
}
.widget_categories .children li a,
.widget_recent_comments .children li a,
.widget_rss .children li a,
.widget_pages .children li a,
.widget_archive .children li a,
.widget_nav_menu .children li a,
.widget_recent_entries .children li a,
.widget_meta .children li a,
.widget-recent-comments .children li a {
  padding-left: 10px;
}
.widget_categories .children li:last-child,
.widget_recent_comments .children li:last-child,
.widget_rss .children li:last-child,
.widget_pages .children li:last-child,
.widget_archive .children li:last-child,
.widget_nav_menu .children li:last-child,
.widget_recent_entries .children li:last-child,
.widget_meta .children li:last-child,
.widget-recent-comments .children li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.widget_rss li,
.widget_recent_comments li {
  padding-left: 0px !important;
}
.widget_rss li a:before,
.widget_recent_comments li a:before {
  display: none;
}
.widget_tag_cloud a {
  padding: 8px 10px;
  margin: 0 3px 6px 0;
  display: inline-block;
  font-size: 14px !important;
  font-weight: 400;
  background-color: #fcfcfc;
  color: #a7a6a6;
  border: 1px solid #f8f6f6;
}
.widget_tag_cloud a:hover {
  background-color: #233859;
  color: #fff;
  text-decoration: none;
}
.tabs-widget .tabs-nav li {
  width: 33%;
  border-bottom: none;
  padding-bottom: 0;
}
.tabs-widget .tabs-nav li:last-child {
  width: 34%;
}
.tabs-widget .tabs-nav li:before {
  display: none;
}
.tabs-widget .tabs-nav li a {
  background: #555;
  border: 1px solid #ccc;
  color: #646464;
  padding: 8px 0;
  text-align: center;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
  font-family: 'Open Sans', "Roboto", sans-serif;
}
.tabs-widget .tabs-nav li a.active {
  color: #fff;
  text-decoration: none;
  border-color: transparent;
  background: #f0e246;
}
.tabs-widget .tabs-nav li a.active:hover {
  color: #233859;
}
.tabs-widget .tabs-nav li a:hover {
  text-decoration: none;
  color: #f0e246;
}
.tabs-widget .tabs-panel {
  margin-top: -1px;
  padding: 15px 0 20px;
}
.tabs-widget .tab-comments .comment {
  border-bottom: solid 1px #ccc;
  padding: 10px 0;
  overflow: hidden;
}
.tabs-widget .tab-comments .comment-summary {
  font-style: italic;
  margin-bottom: 5px;
}
.recent-post a img {
  width: 75px;
  height: auto;
}
.recent-post a.widget-thumb {
  width: 75px; height:auto
}
.recent-post .post-text a {
  line-height: 1.4;
}
.recent-post,
.popular-post {
  border-bottom: solid 1px #ccc;
  padding: 10px 0;
  overflow: hidden;
}
.recent-post:last-child,
.popular-post:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.recent-post .widget-thumb,
.popular-post .widget-thumb {
  float: left;
  width: 60px; height:auto
}
.recent-post .post-text,
.popular-post .post-text {
  margin-left: 75px;
  margin-top: 5px;
}
.recent-post .post-text .post-title,
.popular-post .post-text .post-title {
  display: block;
  padding-bottom: 5px;
  font-weight: 500;
}
.recent-post .post-text .post-date,
.popular-post .post-text .post-date {
  color: #ccc;
  font-size: 12px;
}
.recent-post .post-text .post-comments,
.popular-post .post-text .post-comments {
  display: block;
  color: #ccc;
}
.recent-post .post-text .read-more,
.popular-post .post-text .read-more {
  line-height: 2;
}
.recent-post.no-thumbnail .post-text,
.popular-post.no-thumbnail .post-text {
  margin-left: 0;
  margin-top: 0;
}
.widget-recent-comments li {
  padding: 20px 0;
  color: #ccc;
}
.widget-recent-comments li a,
.widget-recent-comments li p {
  color: #555;
}
.widget_search .search-form {
  position: relative;
  padding: 0 5px;
  border: 1px solid #ccc;
}
.widget_search .search-form .screen-reader-text {
  display: none;
}
.widget_search .search-form ::-webkit-input-placeholder {
  color: #ccc;
}
.widget_search .search-form :-moz-placeholder {
  color: #ccc;
}
.widget_search .search-form ::-moz-placeholder {
  color: #ccc;
}
.widget_search .search-form :-ms-input-placeholder {
  color: #ccc;
}
.widget_search .search-field {
  padding: 5px 0;
  background-color: transparent;
  font-weight: 400;
  border-width: 0;
  width: 90%;
}
.search-form:before {
  content: '\f002';
  position: absolute;
  top: 6px;
  right: 10px;
  font-family: FontAwesome;
  font-size: 18px;
}
.search-form .search-submit {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  opacity: 0;
}
.search-form label {
  width: 87%;
}
.search-form label input[placeholder] {
  width: 100%;
  margin-top: 5px;
}
.widget {
  margin-bottom: 30px;
}
.widget .widget-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  margin-top: 0;
  color: #323232;
  padding-bottom: 10px;
}
.widget ul {
  margin: 0;
  padding: 0;
}
.widget ul li {
  list-style: none;
  padding-left: 20px;
  padding-bottom: 15px;
  position: relative;
  font-weight: 400;
  transition: all 500ms;
  color: #a7a6a6;
}
.widget ul li a {
  color: #a7a6a6;
  padding-left: 30px;
  display: inline-block;
}
.widget ul li a:before {
  content: "\f105";
  position: absolute;
  font-family: FontAwesome;
  color: #a7a6a6;
  left: 0;
  top: 2px;
  transition: all 500ms;
  border: 1px solid #f8f6f6;
  padding: 5px 15px;
  background: #fcfcfc;
}
.widget ul li a:hover {
  text-decoration: none;
  color: #233859;
}
.widget ul li a:hover:before {
  color: #f0e246;
  background: #233859;
}
.widget_categories,
.recent-posts-widget,
.widget_tag_cloud,
.flickr-widget {
  padding-top: 0;
}
.flickr-widget .flickr-photos .flickr_badge_image {
  float: left;
  width: 90px;
  height: 80px;
  margin: 0;
}
.flickr-widget .flickr-photos .flickr_badge_image a img {
  width: 90px;
  height: 80px;
}
.recent-post,
.popular-post {
  border-bottom: none;
}
.recent-post .widget-thumb,
.popular-post .widget-thumb {
  padding-top: 5px;
}
.recent-post .post-text,
.popular-post .post-text {
  margin-top: 0 !important;
  margin-left: 90px !important;
}
.recent-post .post-text .post-date,
.popular-post .post-text .post-date,
.recent-post .post-text .post-comments,
.popular-post .post-text .post-comments {
  display: inline-block !important;
  font-size: 12px;
  padding-left: 20px;
  position: relative;
}
.recent-post .post-text .post-date:before,
.popular-post .post-text .post-date:before {
  position: absolute;
  content: '\f017';
  font-family: FontAwesome;
  color: #233859;
  top: -2px;
  left: 0;
  font-size: 14px;
  padding-left: 1px;
}
.recent-post .post-text .post-comments,
.popular-post .post-text .post-comments {
  padding-left: 23px;
}
.recent-post .post-text .post-comments:before,
.popular-post .post-text .post-comments:before {
  position: absolute;
  content: '\f075';
  font-family: FontAwesome;
  color: #233859;
  top: -2px;
  left: 5px;
  font-size: 14px;
}
.recent-post .post-text .meta .fa,
.popular-post .post-text .meta .fa {
  color: #233859; padding-right:5px
}
.post-text .meta a,
.post-text .meta {
  color: #006699;
}
/*--------------------------------------------------------------
8.0 - Footer
--------------------------------------------------------------*/
.site-footer {
  background-color: #497CA7;
  padding-top: 25px;
bottom:0px;
}
.copyright {
  background-color: #284269;
  color: #233859;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: 500;
  padding: 20px; margin:0px
}
.copyright .copyright-content {
  color: #fff;
  font-weight: 300;
  position: relative;
  font-size: 12px;
}
.copyright .copyright-content p {
  margin-bottom: 0;
  color: #fff;
}
.copyright .footer-menu ul {
  list-style: none;
  float: right;
  margin-bottom: 0;
}
.copyright .footer-menu ul li {
  display: inline-block;
  padding-left: 30px;
}
.copyright .footer-menu ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  transition: all 500ms;
}
.copyright .footer-menu ul li a:hover {
  color: #f0e246;
}
.footer-sidebar {
  padding-bottom: 20px;
}
.footer-sidebar .widget {
  color: #fff;
}
.footer-sidebar .widget .widget-title {
  color: #fff;
  margin-bottom: 40px;
  font-size: 24px;
  margin-top: 9px;
}
.footer-sidebar .widget ul li {
  border-bottom: none;
  margin-bottom: 10px;
  padding: 0;
  padding-left: 5px;
  color: #fff;
}
.footer-sidebar .widget ul li p {
  margin: 0;
}
.footer-sidebar .widget ul li i {
  padding-right: 15px;
  padding-bottom: 10px;
  float: left;
}
.footer-sidebar .widget ul li a {
  color: #fff;
  padding-left: 0;
}
.footer-sidebar .widget ul li a:hover {
  color: #f0e246;
  text-decoration: none;
}
.footer-sidebar .widget .contact-details {
  margin-top: -30px;
}
.footer-sidebar .widget.social-links-widget a {
  color: #fff;
  margin-right: 25px;
}
.footer-sidebar .widget.social-links-widget a:hover {
  color: #f0e246;
}
.footer-sidebar .widget .textwidget p {
  margin-top: 17px;
  line-height: 2;
  color: #fff;
}
.footer-sidebar .widget_nav_menu ul li {
  border-bottom: none;
  margin-bottom: 10px;
  padding: 0;
  padding-left: 5px;
}
.footer-sidebar .widget_nav_menu ul li p {
  margin: 0;
}
.footer-sidebar .widget_nav_menu ul li a {
  color: #fff;
  padding-left: 0;
}
.footer-sidebar .widget_nav_menu ul li a:before {
  content: "\f00c";
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: translate(0, 0);
  margin-right: 15px;
  font-size: 12px;
  width: 15px;
  height: 15px;
  background-color: #f0e246;
  text-align: center;
  line-height: 15px;
  color: #233859;
  border-radius: 3px;
  position: static;
  padding: 0;
  padding-left: 1px;
  border: none;
}
.contact-details .fa {
  color: #f0e246;
  padding-left: 2px; padding-top:2px; clear:left
}
.contact-details a:before {
  display: none;
}
/*--------------------------------------------------------------
9.0 - Media Queries
--------------------------------------------------------------*/
@media (max-width: 1900px) {
  .page-container {
    padding-left: 30px;
    padding-right: 30px;
    width: 100%;
  }
}
@media (max-width: 1445px) {
  .boxed .site {
    width: 100%;
  }
}
@media (max-width: 1199px) {
  .tp-support .tp-support-title {
    padding-bottom: 14px;
  }
  .tp-support .tp-support-title h2 {
    font-size: 20px;
  }
  .tp-support .tp-support-title .tp-support-icon {
    font-size: 30px;
  }
  .tp-support .tp-support-content {
    font-size: 20px;
  }
  .topbar:before,
  .topbar:after {
    display: none;
  }
  .tp-shipment .reference .ts-content .ts-row .select-mode {
    margin-bottom: 10px;
    width: 100%;
  }
  .tp-shipment .reference .ts-content .ts-row .order-location {
    margin-left: 0;
    display: block;
    float: none;
    clear: both;
    width: 100%;
  }
  .tp-shipment .reference .ts-content .ts-row .txt-reference {
    margin-left: 0;
    display: block;
    float: none;
    clear: both;
    width: 100%;
  }
  .tp-shipment .reference .ts-content .ts-row.ts-between select,
  .tp-shipment .reference .ts-content .ts-row.ts-and select {
    margin-left: 0 !important;
    display: block;
    width: 100%;
    margin-top: 10px;
  }
  .topbar-left {
    width: 100%;
    margin: 0 auto;
  }
  .topbar .topbar-right {
    width: 100%;
    text-align: center;
  }
  .topbar .topbar-right .widget {
    float: none;
  }
  .tp-service-box {
    transform: none;
  }
}
@media (max-width: 991px) {
  .tp-support {
    background-color: #f0e246;
  }
  .tp-support:before,
  .tp-support:after {
    display: none;
  }
  .tp-support .tp-support-title:after {
    display: none;
  }
  .tp-support .container {
    width: 100%;
  }
  .tp-support .tp-support-content {
    padding-left: 30px;
    padding-top: 30px;

  }
  .tp-support .tp-support-content:before {
    display: none;
  }
  .tp-support .tp-support-content .tp-support-link {
    clear: both;
    float: none;
  }
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  .footer-sidebar:nth-child(3) {
    clear: both;
  }
  .tp-team-list .tp-team-items {
    margin-bottom: 20px;
  }
  .tp-team-list .tp-team-items:nth-child( 2n + 1 ) {
    clear: both;
  }
  .tp-provide {
    width: 100%;
  }
  .column-counter {
    width: 50% !important;
  }
  .column-counter:nth-child( 2n + 1 ) {
    clear: both;
  }
  .header-transparent.page-template-template-homepage .topbar {
    position: static;
  }
  .header-transparent.admin-bar .site-header {
    position: static;
  }
}
@media (max-width: 767px) {
  .tp-service-box {
    transform: none;
  }
  .tp-service-box .service-box-detail {
    display: none;
  }
  .vc_tta-container .vc_tta-tabs-position-left .vc_tta-panels-container .vc_tta-panels {
    margin-left: 0;
  }
  .vc_tta.vc_general .vc_tta-panel.vc_active .vc_tta-panel-body {
    padding-left: 30px;
    padding-right: 30px;
  }
  .copyright {
    text-align: center;
    font-size: 14px;
  }
  .copyright .copyright-content {
    font-size: 14px;
  }
  .copyright .footer-menu {
    margin-top: 10px;
  }
  .copyright .footer-menu ul {
    float: none;
    padding-left: 0;
  }
  .copyright .footer-menu ul li a {
    font-size: 14px;
    font-weight: 400;
  }
  .column-counter {
    border: none;
  }
  .column-counter > .vc_column-inner {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .tp-history .tp-history-title,
  .tp-history .tp-history-content {
    padding-left: 37px;
  }
  .tp-history .tp-history-link {
    padding-left: 0;
  }
  .wpcf7-form .form-select-1 {
    padding-left: 0;
  }
  .widgets-area {
    clear: both;
margin-top:0
  }
  .blog-manasony .blog-wrapper,
  .blog-manasony .blog-wrapper-sizer {
    width: 50%;
  }
  .tp-support .tp-support-title .tp-support-icon {
    padding-top: 20px;
  }
  .topbar .widget {
    padding-right: 10px;
  }
  .topbar .topbar-right {
    text-align: left;
    margin-top: 20px;
  }
  .topbar .topbar-right .widget {
    padding-left: 10px;
  }
  .topbar .topbar-right .widget:first-child {
    padding-left: 0;
  }
  .tp-service-box {
    transform: none !important;
  }
  .header-transparent.page-template-template-homepage .topbar {
    background-color: #233859;
  }
}
@media (max-width: 600px) {
  .tp-provide ul:nth-child( 2n + 1 ) {
    padding-left: 0;
  }
  .tp-testimonials {
    margin-top: 30px;
  }
  .tp-testimonials .testi-image {
    float: none;
    margin-bottom: 20px;
  }
  .tp-testimonials .testi-content {
    padding-left: 0;
  }
  .tp-testimonials .testimonials_area .owl-pagination {
    top: -30px;
  }
  .tp-provide ul {
    padding-left: 0;
    clear: both;
  }
  .tp-provide .provide-link .provide-button {
    padding-bottom: 20px;
  }
  .off-canvas-panel.main-nav .primary-nav .menu > li > a {
    font-weight: 400;
  }
  .blog-manasony .blog-wrapper,
  .blog-manasony .blog-wrapper-sizer,
  .blog-without-image .content-area .blog-wrapper {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .tp-icon-box-title h3 {
    font-size: 16px;
  }
  .icon-box {
    padding-left: 0;
  }
  .icon-box .tp-icon {
    left: 0;
  }
  .icon-box .tp-icon:before {
    font-size: 50px;
  }
  .icon-box .icon-content {
    padding-left: 20px;
  }
  .icon-box .icon-content:before {
    display: none;
  }
  .icon-box .icon-content .icon-title:before {
    display: none;
  }
  .navbar-toggle {
    font-size: 30px;
  }
  .off-canvas-panel {
    width: 250px;
  }
  .off-canvas-panel.main-nav .widget-nav-header {
    padding-left: 20px;
  }
  .off-canvas-panel.main-nav .primary-nav .menu > li {
    padding-left: 20px;
    padding-right: 20px;
  }
  .tp-blog .owl-controls .owl-buttons {
    display: none;
  }
  .tp-blog-2 .owl-controls .owl-buttons {
    display: none;
  }
  .topbar .widget {
    padding-right: 0;
  }
  .topbar .topbar-right .widget {
    padding-left: 0;
  }
}

.vc_custom_1456285722682{padding-top: 40px !important;padding-bottom: 50px !important;}.vc_custom_1456285735162{padding-top: 70px !important;padding-bottom: 30px !important;}.vc_custom_1456285743794{padding-bottom: 50px !important;}.vc_custom_1450813931806{padding-bottom: 20px !important;}.vc_custom_1452767554409{padding-top: 57px !important;}.vc_custom_1450826301026{padding-right: 0px !important;}.vc_custom_1450826203466{padding-left: 0px !important;}.vc_custom_1450138809202{padding-top: 20px !important;padding-bottom: 40px !important;}.vc_custom_1456974114467{padding-top: 5px !important;}.vc_custom_1452740098990{margin-right: 0px !important;margin-left: 0px !important;}.vc_custom_1456196102014{padding-top: 60px !important;padding-bottom: 40px !important;}.vc_custom_1456196110678{padding-top: 60px !important;padding-bottom: 40px !important;}.vc_custom_1456196118582{padding-top: 60px !important;padding-bottom: 40px !important;}.vc_custom_1456196125855{padding-top: 60px !important;padding-bottom: 40px !important;}</style><noscript><style type="text/css"> .wpb_animate_when_almost_visible { opacity: 1; }</style></noscript><style id="fit-vids-style">.fluid-width-video-wrapper{width:100%;position:relative;padding:0;}.fluid-width-video-wrapper iframe,.fluid-width-video-wrapper object,.fluid-width-video-wrapper embed {position:absolute;top:0;left:0;width:100%;height:100%;}