@charset "utf-8";
/*
Theme Name: Impatto - Personal Blog WordPress Theme.
Author: ZedThemes
URL: https://themeforest.net/user/zedwebthemes
Version:1.0
*/

/*===========================
 =  Table of CSS
 	1. General code
		1.1. Typography
		1.2. Button
		1.3. dark-overlay
		1.4. Space margins and padding
		1.5. Form
		1.6. Table
		1.7. Section-background-color & sectino-heading
		1.8 Tabs 
		1.9. Modal
	2. Header
	4. Blog-Posts
		4.1. Post Classic Style
		4.2. Post List Style
		4.3. Post Split Style
		4.4. Post Grid Style
	5. pagination
	6. Sidebar
	7. Post Detail
		7.1. Quote-post-formate
		7.2. Link-post-formate
		7.3. Video-post-formate
		7.4. Audio-post-formate
		7.5. Gallery-post-formate
		7.6. Post Comments
		7.7. Post-tags & Post-share
		7.8. Large-Width-detail
	8. Footer
	9. Inner-pages
		9.1. Contact-Us
		9.2. 404-Error
		9.3. About-us
	10. Responsive CSS
		
===========================*/



/*====================
	1. General code
==========================*/

@font-face {
    font-family: 'AvenirLTStdBook';
    src: url('../fonts/AvenirLTStdBook.eot');
    src: url('../fonts/AvenirLTStdBook.eot') format('embedded-opentype'),
         url('../fonts/AvenirLTStdBook.woff2') format('woff2'),
         url('../fonts/AvenirLTStdBook.woff') format('woff'),
         url('../fonts/AvenirLTStdBook.ttf') format('truetype'),
         url('../fonts/AvenirLTStdBook.svg#AvenirLTStdBook') format('svg');
}

@font-face {
    font-family: 'AvenirLTStdLight';
    src: url('../fonts/AvenirLTStdLight.eot');
    src: url('../fonts/AvenirLTStdLight.eot') format('embedded-opentype'),
         url('../fonts/AvenirLTStdLight.woff2') format('woff2'),
         url('../fonts/AvenirLTStdLight.woff') format('woff'),
         url('../fonts/AvenirLTStdLight.ttf') format('truetype'),
         url('../fonts/AvenirLTStdLight.svg#AvenirLTStdLight') format('svg');
}

@font-face {
    font-family: 'AvenirLTStdRoman';
    src: url('../fonts/AvenirLTStdRoman.eot');
    src: url('../fonts/AvenirLTStdRoman.eot') format('embedded-opentype'),
         url('../fonts/AvenirLTStdRoman.woff2') format('woff2'),
         url('../fonts/AvenirLTStdRoman.woff') format('woff'),
         url('../fonts/AvenirLTStdRoman.ttf') format('truetype'),
         url('../fonts/AvenirLTStdRoman.svg#AvenirLTStdRoman') format('svg');
}

@font-face {
    font-family: 'AvenirLTStdHeavy';
    src: url('../fonts/AvenirLTStdHeavy.eot');
    src: url('../fonts/AvenirLTStdHeavy.eot') format('embedded-opentype'),
         url('../fonts/AvenirLTStdHeavy.woff2') format('woff2'),
         url('../fonts/AvenirLTStdHeavy.woff') format('woff'),
         url('../fonts/AvenirLTStdHeavy.ttf') format('truetype'),
         url('../fonts/AvenirLTStdHeavy.svg#AvenirLTStdHeavy') format('svg');
}

@font-face {
    font-family: 'AvenirLTStdBlack';
    src: url('../fonts/AvenirLTStdBlack.eot');
    src: url('../fonts/AvenirLTStdBlack.eot') format('embedded-opentype'),
         url('../fonts/AvenirLTStdBlack.woff2') format('woff2'),
         url('../fonts/AvenirLTStdBlack.woff') format('woff'),
         url('../fonts/AvenirLTStdBlack.ttf') format('truetype'),
         url('../fonts/AvenirLTStdBlack.svg#AvenirLTStdBlack') format('svg');
}
body {
	font-family: AvenirLTStdBook;
	margin:0px;
	padding:0px;
	overflow-x:hidden;
	font-size:16px;
	color:#333;
	font-weight:400;
	background:#fff;
}
body#BoxWidth {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
  max-width: 1156px;
  overflow: visible;
}
::selection {
	background: #1294b1 ;
	color: #ffffff;
}

::-moz-selection {
 background: #1294b1 ;
 color: #ffffff;
}


/*----------------------
	1.1. Typography
------------------------------*/
h1,  h2,  h3,  h4,  h5,  h6 {
	margin: 0 0 15px 0;
	padding: 0;
	color: #111;
	font-weight:700;
}
h1 a, h1 a:hover, h1 a:active,  h2 a, h2 a:hover, h2 a:active,  h3 a, h3 a:hover, 
h3 a:active,  h4 a, h4 a:hover, h4 a:active,  h5 a, h5 a:hover, h5 a:active,  
h6 a, h6 a:hover, h6 a:active {
	font-weight: inherit;
}
h1 {
	font-size: 38px;
}
h2 {
	font-size: 30px;
}
h3 {
	font-size: 27px;
}
h4 {
	font-size: 24px;
}
h5 {
	font-size: 22px;
}
h6 {
	font-size: 18px;
}
small {
	font-size: 80%;
}
hr {
	clear: both;
	margin: 10px 0 30px;
	height: 0;
	border: solid #ddd;
	border-width: 1px 0 0;
}
pre {
	overflow-x:auto;
	margin: 0 0 20px 0;
	padding: 10px 20px;
	height: auto;
	border: 1px solid #e2e2e2;
	background: #f7f7f7;
	font-family: Consolas, monospace;
}
q {
	display: block;
}
dt {
	font-weight: 700;
}
dl dd {
	margin-left: 15px;
	margin-bottom: 10px;
}
p {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.3px;
  line-height: 26px;
  margin-bottom: 20px;
}
a {
	color:#111!important;
	transition-duration:0.5s;
	-moz-transition-duration:0.5s;
	-o-transition-duration:0.5s;
	-webkit-transition-duration:0.5s;
	-ms-transition-duration:0.5s;
	text-decoration:none;
}
a:hover, a:focus {
	text-decoration:none;
	outline:none;
	color:#111!important;
}
ul, ol {
	margin:0 auto 20px;
}
ul li, ol li {
	font-size: 16px;
	line-height: 26px;
	margin: 0 auto 10px;
}
ul li i, ol li i {
	margin:0 12px 0 0;
}
img {
	max-width:100%;
}
.uppercase {
	text-transform:uppercase;
}
.underline {
	text-decoration:underline;
}
.divider {
	border-bottom: 1px solid #dcd9d9;
	clear: both;
	margin: 40px auto;
}
.divider {
  border-bottom:#333 solid 1px;
  float: left;
  height: 0px;
  margin: 20px 0;
  width: 100%;
}
.divider.dashed {
  border-bottom:#333 dashed 1px;
}
.divider.dotted {
  border-bottom:#333 dotted 1px;
}

.divider.double {
  border-bottom:#333 double 4px;
}
.alignleft {
  float: left;
  margin: 10px 20px 20px 0;
}
.alignright {
  float: right;
  margin: 10px 0 20px 20px;
}



/*-----------------
	1.2. Button
-------------------------*/
.btn {
  background: #1294b1 none repeat scroll 0 0;
  border: medium none;
  border-radius: 0;
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 32px;
  margin: auto;
  padding: 10px 20px;
  transition: all 0.3s linear 0s;
	-moz-transition: all 0.3s linear 0s;
	-o-transition: all 0.3s linear 0s;
	-webkit-transition: all 0.3s linear 0s;
	-ms-transition: all 0.3s linear 0s;
}
.btn .fa {
	margin-left: 5px;
	vertical-align: middle;
}
.btn:hover, .btn:focus {
	color: #ffffff;
	outline:none;
	background:#02748e;
	border-radius:3px;
}

.btn-link {
	font-weight: 800;
	font-size:17px;
	color:#1294b1 ;
}
.btn-link:hover, .btn-link:focus {
	color:#02748e;
}


/*-------------------------
	1.3. dark-overlay
---------------------------------*/
.div_zindex {
	position: relative;
	z-index: 1;
}
.dark-overlay {
	background: rgba(0, 0, 0, 0.9) none repeat scroll 0 0;
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}
.white-text,  .white-text h1, .white-text h2,  .white-text h3, .white-text h4,  .white-text h5, .white-text h6,  .white-text ul, .white-text ul li {
	color:#fff;
}


/*-------------------------------------
	1.4. Space margins and padding
------------------------------------------------*/
.padding_none {
	padding:0px;
}
.padding {
	padding:20px 0;
}
.padding_50px {
	padding:50px 0;
}
.padding_4x4_30 {
	padding:30px;
}
.padding_4x4_40 {
	padding:40px;
}
.space-20 {
	width:100%;
	height: 20px;
	clear:both;
}
.space-30 {
	width:100%;
	height: 30px;
	clear:both;
}
.space-40 {
	width:100%;
	height: 40px;
	clear:both;
}
.space-60 {
	width:100%;
	height: 60px;
	clear:both;
}
.space-80 {
	height: 80px;
	width:100%;
}
.margin-btm-20 {
	margin-bottom: 20px;
	clear:both;
}
.margin-none {
	margin:0px;
}



/*-----------------
	1.5. Form
---------------------------*/
.form-group {
	margin-bottom: 15px;
	position: relative;
}
.form-label, form label {
	color: #111111;
	font-size: 14px;
	font-weight: 400;
	margin: 0 auto 8px;
}
.form-control, form input, textarea {
	background: #fff none repeat scroll 0 0;
	border: #5e5e5e solid 2px;
	border-radius: 0;
	box-shadow: none;
	color: #111;
	font-size: 17px;
	height: 50px;
	line-height: 30px;
	padding: 0 25px;
	width: 100%;
}
textarea.form-control, textarea {
	padding:15px 20px;
}
textarea {
	height:220px;
}
.form-control:hover, .form-control:focus, input:hover,  input:focus, textarea:hover, textarea:focus {
	box-shadow:none;
	outline:none
}
.form-control:focus, input:focus, textarea:focus, select:focus {
	border-color:#000;
}
.select {
	position:relative;
}
.select select {
	appearance: none;
	-moz-appearance: none;
	-o-appearance: none;
	-webkit-appearance: none;
	-ms-appearance: none;
}
.select::after {
	color: #878787;
	content: "";
	cursor: pointer;
	font-family: fontawesome;
	font-size: 15px;
	padding: 12px 0;
	pointer-events: none;
	position: absolute;
	right: 15px;
	top: 0;
}
.form-control option {
	padding: 10px;
}
.control-label {
	color:#555;
	font-size:15px;
	font-weight:700;
}
.radio label, .checkbox label {
	cursor: pointer;
	font-size: 14px;
	font-weight: 400;
	padding-left: 26px;
	position: relative;
}
.radio input[type=radio],  .checkbox input[type=checkbox] {
	display: none;
}
.radio label:before {
	background-color:transparent;
	border-style:solid;
	border-width:1px;
	border-radius:50%;
	content: "";
	display: inline-block;
	height: 15px;
	left: 0;
	top:4px;
	position: absolute;
	width: 15px;
}
.checkbox label::before {
	background-color: rgba(0, 0, 0, 0);
	border: 1px solid #111111;
	content: "";
	display: inline-block;
	height: 16px;
	left: 0;
	position: absolute;
	top: 4px;
	width: 16px;
}
.radio input[type=radio]:checked + label:before {
	content: "\2022";
	font-size: 15px;
	text-align: center;
	line-height: 11px;
}
.checkbox input[type=checkbox]:checked + label:before {
	content: "\2713";
	font-size: 12px;
	text-align: center;
	line-height: 14px;
}
.black_input .form-control {
	background:#222;
	border-radius:3px;
	color:#fff;
	border:#222 solid 1px;
	font-size:17px;
}
.checkbox, .radio {
	padding-top: 5px;
}
input[type="submit"], form button {  
    border: medium none;
    border-radius: 20px;
    background: #cc3845!important;
    color: #fff;   
    font-size: 13px;
    font-weight: 700;
    height: auto;
    letter-spacing: 1px;
    line-height: 32px;
    margin: auto;
    padding: 5px 28px;
    transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    -webkit-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    width: auto;
}
input[type="submit"]:hover, form button:hover {
	color: #ffffff;
	outline:none;
	background:#c03341;
	border-radius:20px;
}


/*-----------------
	1.6. Table
---------------------------*/
table {
	margin:0 0 30px;
	width:100%;
}
table th, table td {
	border: 1px solid #cccccc;
	padding: 15px;
}
table th img, table td img {
	max-width:100%;
}
table thead {
	background:#eee;
}
table thead th, table thead td {
	text-transform:uppercase;
	font-weight:900;
	color:#111;
}



/*-----------------------------------------------------------
	1.7. Section-background-color & sectino-heading
-------------------------------------------------------------------*/
.secondary-bg {
	background-color:#1e2127;
	color:#fff;
}
.primary-bg {
	background: #1294b1 ;
	color:#fff;
}
.section-padding {
	padding: 40px 0;
}


/*--------------------
	1.8 Tabs 
------------------------------*/
.nav.nav-tabs {
	border: medium none;
}
.nav-tabs > li a {
	background: #000000 none repeat scroll 0 0;
	border-radius: 0;
	color: #ffffff;
	font-weight: 800;
	margin-right: 5px;
	padding: 9px 36px;
	text-align:center;
}
.nav-tabs > li.active > a, .nav-tabs > li.active > a:focus, .nav-tabs > li.active > a:hover {
	color: #ffffff;
}
.nav-tabs > li {
	margin-bottom: 0;
}


/*------------------------
	1.9. Modal
--------------------------------*/
.modal-dialog {
	width: 650px;
}
.modal-content {
	padding: 0 32px 22px;
}
.modal-header {
	padding:15px 0;
	margin-bottom:25px;
}
.modal-body {
	padding:10px 0;
}
.modal .modal-header .close {
	background: #000000 none repeat scroll 0 0;
	border-radius: 50%;
	color: #ffffff;
	font-size: 17px;
	height: 31px;
	line-height: 30px;
	margin-top: 5px;
	opacity: 1;
	text-align: center;
	text-shadow: none;
	width: 31px;
}



/*================
	 2. Header
===========================*/
#header {
	background: #fff none repeat scroll 0 0;
	box-shadow: 0 0 11px rgba(0, 0, 0, 0.1);
	position: fixed;
	z-index: 22;
	width:100%;
}
.logo {
	margin: 10px 0;
}
.logo_title, .logo h2 {
	color: #fff;
	font-weight: 700;
	font-size: 30px;
	margin: 0;
	text-transform: capitalize;
	line-height: 26px;
}
.navbar.navbar-default {
	background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
	border: 0 none;
	border-radius: 0;
	margin: 0 auto;
	min-height: inherit;
}
.navbar.navbar-default .nav.navbar-nav {
	float:right;
	margin-right:-15px;
}
.navbar-default .nav.navbar-nav li {
	margin:0;
	overflow:hidden;
	position:relative;
}
.navbar.navbar-default .nav.navbar-nav li:last-child {
	margin-right:0px;
}
.navbar-default .nav.navbar-nav li a {  
  display: block;
  padding: 38px 10px 5px 12px;
  color: #333;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
}

/*----------------
	Drop-Down-Menu
-----------------------*/
header .navbar-default .navbar-nav li.active a, 
header .navbar-default .navbar-nav li > a:hover,
header .navbar-default .navbar-nav li > a:focus, 
header .navbar-default .navbar-nav li.current_page_item  > a,
header .navbar-default .navbar-nav li.active a:hover,
header .navbar-default .navbar-nav li.active a:focus {
  background:none;
  border: none;
  box-shadow: none;
  color: #cc3845;
  outline: 0;  
}
header .navbar-default .navbar-nav li.menu-item-has-children > a::before {
  content: "\f107";
  font-family: "FontAwesome";
  font-size: 16px;
  position: absolute;
  right: 19px;
  top: 74%;
  transform:translateY(-50%);
  -moz-transform:translateY(-50%);
  -o-transform:translateY(-50%);
  -webkit-transform:translateY(-50%);
  -ms-transform:translateY(-50%);
}
header .navbar-default .navbar-nav li.menu-item-has-children > a {
  padding-right:38px !important
}
header .navbar-default .navbar-nav li ul.sub-menu,
header .navbar-default .navbar-nav li ul.children {
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding: 0;
  margin: 0;
  text-align: left;
  z-index: 99;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  box-shadow:rgba(0, 0, 0, 0.05) 0 5px 10px;
}
@media (min-width:768px) {
header .navbar-default .navbar-nav li ul.sub-menu,
header .navbar-default .navbar-nav li ul.children {
  height: 0;
  left: 0;
  min-width: 210px;
  opacity: 0;
  position: absolute;
  top: 100%;
}
header .navbar-default .navbar-nav li:hover ul.sub-menu, 
header .navbar-default .navbar-nav li:hover ul.sub-menu:hover ul.children {
  height: inherit;
  opacity: 1;
}
}

@media (max-width:767px) {
header .navbar-default .navbar-nav li ul.sub-menu,
header .navbar-default .navbar-nav li ul.children {
  display:none;
}

}

header .navbar-default .navbar-nav li:hover {
	overflow:visible;
}
header .navbar-default .navbar-nav li ul.sub-menu li,
header .navbar-default .navbar-nav li ul.children li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  display: block;
  margin:0 !important;
}
header .navbar-default .navbar-nav li ul.sub-menu li a,
header .navbar-default .navbar-nav li ul.children li a {
  background: rgba(255, 255, 255, 0.8);
  display: block;
  color:#111;
  font-size:13px;
  line-height: 20px;
  padding-top:16px;
  padding-bottom:16px;
}
.dropdown-menu {
	border:0px;
}
header .navbar-default .navbar-nav li ul.sub-menu li a:hover,
header .navbar-default .navbar-nav li ul.children li a:hover, 
header .navbar-default .navbar-nav li.current_page_item  ul.sub-menu .current_page_item a {
  background: #cc3845;
  color: #fff!important;
}
header .navbar-default .navbar-nav li ul.sub-menu li:last-child,
header .navbar-default .navbar-nav li ul.children li:last-child {
  border-bottom: none;
}
header .navbar-default .navbar-nav li ul.sub-menu ul.sub-menu,
header .navbar-default .navbar-nav li ul.children ul.sub-menu,
header .navbar-default .navbar-nav li ul.sub-menu ul.children,
header .navbar-default .navbar-nav li ul.children ul.children {
  left: inherit;
  right: -100%;
  top: -1px;
}
/*----------------------
	End- Drop-Down-Menu
-------------------------------*/

.search_link {
  color: #333;
  cursor: pointer;
  float: right;
  font-size: 20px;
  margin: 25px 0 0 30px;
  padding: 10px;
}
.search_wrap_fixed {
  background: #ffffff none repeat scroll 0 0;
}
.search_form {
	margin: 0 auto;
	max-width:1170px;
}
.search_form_wrap_fixed {
  width: 100% !important;
}
.search_wrap_fixed .search_form input {
  background: #ffffff none repeat scroll 0 0;
  border: 0 none;
  color: #111111;
  font-size: 20px;
  height: 80px;
}
.header_image {
/* 	text-align:center; */
	padding-top:89px;
}
.header_image .post-title {
  font-size: 50px;
  text-transform: capitalize;
}
.header_post_m {
	background-image:url(../images/inner_bg.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	background-attachment: fixed;
	padding: 100px 0;
	position: relative;
}
.header_post_m:after {
	position:absolute;
	top:0;
	left:0px;
	right:0px;
	width:100%;
	height:100%;
	content:"";
	background:rgba(0, 0, 0, 0);
}
.header_post_m .post_info {
	background:none;
	padding:0px;
	position:relative;
	z-index:1;
	color:#fff;
}
.header_post_m .post_info h1, .header_post_m .post_info h2, 
.header_post_m .post_info h3, .header_post_m .post_info h4, 
.header_post_m .post_info h5, .header_post_m .post_info h6, 
.header_post_m .post_info p {
	color:#fff;
}

.owl-dot {
	display:inline-block;
	margin:0 2px;
}
.owl-dots span {
	display:inline-block;
	width:12px;
	height:12px;
	border-radius:50%;
	background:rgba(255, 255, 255, 0.6);
}
.owl-dot.active span, #popularpost .owl-dot.active span {
	background: #1294b1  none repeat scroll 0 0;
}


/*=====================
	 4. Blog-Posts
===========================*/
.blog_area, .post-container {
	position:relative;
	overflow:hidden;
}
.content-area.section-padding {
  padding: 0;
}
.blog_area, .sidebar-area {
	padding-top:40px;
	padding-bottom:40px;	
}
.post-container::after {
	position: absolute;
	top: 0;
	right: 376px;
	bottom: 0;
	height: 100%;
	content: "";
	width: 1px;
	border-right: #bfbfbf solid 1px;
}
.post-container.container_left_boder::after {
  left: 376px;
  right: inherit;
}
.container_boder.post-container::after {
	display:none;
}
.col-md-12.blog_area:after {
	display:none;
}
.col-md-12.blog_area .post_detail {
	margin:0 auto;
	max-width:750px;
}
.post_info {
  background-color: #ffffff;
  margin-bottom: 30px;
  padding: 30px 20px 25px;
}
.blog_area.page-no-sidebar {
	width: 100%;
	margin: 0 auto;
	max-width: 980px;
	float: none;
}
.post_img {
	position:relative;
	overflow:hidden;
}
.hover_mask a {
	position:absolute;
	top:0px;
	left:0px;
	right:0px;
	height:100%;
	width:100%;
	content:"";
	background:rgba(255, 255, 255, 0.3);
	transition-duration:0.3s;
	-moz-transition-duration:0.3s;
	-o-transition-duration:0.3s;
	-webkit-transition-duration:0.3s;
	-ms-transition-duration:0.3s;
	opacity:0;
}
.share_toggle {
	border: 2px solid rgba(255, 255, 255, 0.5);
	border-radius: 50%;
	color: #ffffff;
	cursor: pointer;
	display: inline-block;
	height: 40px;
	line-height: 38px;
	text-align: center;
	width: 40px;
	transition-duration:0.3s;
	-moz-transition-duration:0.3s;
	-o-transition-duration:0.3s;
	-webkit-transition-duration:0.3s;
	-ms-transition-duration:0.3s;
	opacity:0;
}
.post_wrap:hover .hover_mask a, .post_wrap:hover .share_toggle {
	opacity:1;
	z-index:1;
}
.post-title a:hover {
	color:#cc3845!important;
}
.post-title a {
	color:#323232;
}
.sticky .post-title a {
	position:relative;
	display:inline-block;
}
.sticky .post-title a::after {
	position: relative;
	bottom: auto;
	margin-left: 8px;
	content: "Featured";
	padding: 0px 10px;
	background: #111;
	color: #fff;
	font-size: 15px;
	border-radius: 3px;
}
.post_info p {
	color:#666;
	font-size:14px;
	line-height:22px;
	margin:0 auto;
}
.post_meta {
	overflow:hidden;
	margin:10px auto;
}
.post_meta ul {
	padding:0px;
	margin:0px;
}
.post_meta ul li {
	color: #777;
	display: inline-block;
	font-size: 14px;
	list-style: outside none none;
	margin: 0 8px 0 0;
	padding-right: 8px;
	position: relative;
}
.post_meta ul li::after {
	content: "-";
	position: absolute;
	right: -3px;
	top: 0;
}
.post_meta ul li:last-child:after {
	display:none;
}
.post_meta ul li a {
	color:#000;
	font-size:14px;
}
.post_meta ul li a:hover {
	color:#cc3745!important ;
}
.post_meta ul li a i {
	margin:0 2px 0 0;
}
.post_cats {
	margin:0 auto 5px;
}
.post_cats a {
	display:inline-block;
	text-transform:uppercase;
	border: 1px solid #333!important;
    border-radius: 3px;
	color:#000!important;
	padding: 5px 15px 3px;
	margin:0 5px 5px 0;
	font-size:12px;
}
.post_cats a:hover {
	background:#cc3745!important;
	color:#fff!important;
	border-color:#cc3745!important;
	text-decoration:underline;
}
.grid_style:nth-child(2n+1) {
	clear: left;
}
.grid-item.grid_style:nth-child(2n+1) {
	clear: none;
}
.grid-item .video_post iframe, .grid-item .audio_post iframe, 
.grid-item iframe, 
.grid_style .video_post iframe, .grid_style .audio_post iframe, 
.grid_style iframe {
	height:237px;
	border:0px;
	margin:0 auto;
}

.quote_post {
	background-color: #222;
	color: #fff;
	margin: 0;
	padding:40px;
	position: relative;
	min-height:242px;
	border:0px;
}
.quote_post blockquote {
	padding:0px;
	background-color: #222;
	border:0px;
}
.quote_post blockquote::before {
	content: "\f10d";
	display: block;
	font-family: fontawesome;
	font-size: 30px;
	height: 20px;
	left: 15px;
	opacity:0.3;
	line-height: 20px;
	position: absolute;
	text-align: center;
	top: 15px;
	width: 20px;
	z-index: 1;
}
.quote_post blockquote p {
	font-size: 20px;
	margin: 0px;
	line-height: 26px;
}
.quote_post blockquote .quote_author {
	display: inline-block;
	font-size: 14px;
	margin: 15px 0 0;
	letter-spacing:2px;
}
.link_post {
	background-color: #1294b1 ;
	color: #fff;
	margin: 0;
	padding:90px 20px;
	position: relative;
	min-height:242px;
	text-align:center;
	border:0px;
}
.link_post .share_url li a:hover {
	color:#000;
}
.link_post .post_link {
	font-size:20px;
	color:#fff;
	white-space:pre-line;
	position:absolute;
	top:50%;
	transform:translateY(-50%);
	-moz-transform:translateY(-50%);
	-o-transform:translateY(-50%);
	-webkit-transform:translateY(-50%);
	-ms-transform:translateY(-50%);
	left:10%;
	right:10%;
}


/*----------------------------------
	4.1. Post Classic Style
---------------------------------------*/
.classic_style h2 {
	font-size: 34px;
}
.classic_style .post_info {
	padding: 40px 40px 50px;
	box-shadow:0 0 5px rgba(0, 0, 0, 0.08);
}
.classic_style .post_info p {
	font-size: 16px;
	line-height: 24px;
}
.classic_style .post_meta ul li,  .classic_style .post_meta ul li a {
	font-size: 14px;
}
.classic_style .quote_post,  .classic_style .link_post {
	padding:100px 40px;
}
.classic_style .quote_post blockquote p {
	font-size:30px;
	line-height:33px;
}
.classic_style .quote_post blockquote::before {
	font-size: 50px;
	left: 40px;
	top: 50px;
}
.classic_style .quote_post blockquote .quote_author {
	font-size:16px;
}
.classic_style .post_link {
	font-size:32px;
}


/*----------------------------------
	4.2. Post List Style
---------------------------------------*/
.list_style.post_wrap {
  background: #ffffff none repeat scroll 0 0;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.08);
  margin: 0 auto 30px;
  overflow: hidden;
  width: 100%;
}
@media (min-width:768px) { .list_style.post_wrap { display:table; } }
.list_style .post_img {
  display:table-cell;
  width: 40%;
  overflow:hidden;
  vertical-align:top;
}
.list_style .video_post iframe, 
.list_style .audio_post iframe, 
.list_style iframe {
	height:320px;
	margin:0px;
	border:0px;
	float:left;
	width:100%;
}
.list_style.gallery_post_m {
	display:block !important;
}
.list_style.gallery_post_m .post_img, .list_style.gallery_post_m .post_info {
	display:inline-block;
	float:left;
}
.list_style.gallery_post_m .post_info {
	width:60%;
}
.format-link .list_style .link_post {
  vertical-align: middle;
  padding:inherit;
}
.format-quote .list_style .quote_post {
  padding: 50px 20px;
  vertical-align:middle;
}
.format-quote .format-link .quote_post blockquote::before {
  left: 22px;
  top: 30px;
}
.format-quote .list_style .quote_post blockquote p {
  font-size: 19px;
  line-height: 25px;
  margin: 0 auto 15px;
}
.format-link .list_style .link_post .post_link {
  font-size: 18px;
}
.list_style .post_info {
    display:table-cell;
	box-shadow:none;
	margin:0 auto;
	vertical-align:top;
}
.list_style .link_post,  .list_style .quote_post {
	min-height:320px;
}
.format-quote .list_style .quote_post blockquote::before {
  font-size: 22px;
  left: 22px;
  top: 30px;
}
.list_style .quote_post blockquote .quote_author {
	font-size: 12px;
}

@media (min-width:992px) {
.page-no-sidebar .list_style .post_img {
  width: 30%;
}
.page-no-sidebar .list_style .post_info {
  width: 69%;
}

}



/*----------------------------------
	4.3. Post Split Style
---------------------------------------*/
.list-split .post_img {
  float: right;
}

.list-no-split .list_style.post_wrap, .list-split .list_style.post_wrap {
  display: block;
}
.list-no-split .list_style .post_img, 
.list-no-split .list_style .post_info, .list-split .list_style .post_info {
  display: block;
  float:left;
}
.list-no-split .list_style .post_info, .list-split .list_style .post_info {
	width:60%;
}
.list-split .list_style .post_img,  {
	float:right;
	display:block;
}	


/*----------------------------------
	4.4. Post Grid Style
---------------------------------------*/
.grid_style .post_info {
  padding: 30px 20px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.08);
}





/*=====================
	 5. pagination
===========================*/
.pagination {
	clear:both;
	padding:15px 0;
}
.pagination ul {
	padding:0px;
	margin:0px;
}
.pagination ul li {
	display:inline-block;
	vertical-align:middle;
	margin:0 auto;
	list-style:none;
}
.pagination ul li .page-numbers {
	display:block;
	padding:5px 15px;
	color:#333;
	background:#eee;
}
.pagination ul li .current, .pagination ul li .page-numbers:hover {
	background:#cc3745!important;
	color:#fff;
}
.wp_nav_links {
  border-bottom: 1px solid #cccccc;
  border-top: 1px solid #cccccc;
  clear: both;
  margin: 50px auto;
  overflow: hidden;
  padding: 20px 1px;
  position: relative;
}
.wp_nav_links a {
  border: 3px solid #111111;
  color: #111111;
  display: block;
  float: left;
  font-size: 22px;
  padding: 15px 20px;
  position: relative;
  width: 48%;
}
.wp_nav_links p span {
  display: block;
  font-size: 16px;
  letter-spacing: 3px;
  margin: 0 auto 9px;
}
.wp_nav_links a p {
	margin:0 auto;
	font-size:22px;
}
.wp_nav_links a.post-nav-next {
	float: right;
	text-align:right;
}
.wp_nav_links a:hover {
	margin-left:10px;	
	color:#fff!important;
	background:#cc3745;
	border:3px solid #cc3745;
}
.wp_nav_links a.post-nav-next:hover {
	margin-left:0px;
	margin-right:10px;
}
.author-bio {
  background: #f9f9f9 none repeat scroll 0 0;
  margin: 40px auto 20px;
  overflow: hidden;
  padding: 20px;
}
.author-bio img {
  border-radius: 50%;
  float: left;
  margin-bottom: 30px;
  margin-right: 20px;
}
.author-info {
  float: right;
  width: calc(100% - 120px);
}
.author-info .author-title {
	margin: 10px 0;
	font-size: 20px;
}
.author-info p {
  font-size: 13px;
  line-height: 23px;
  margin:0 auto 15px;
}
.author-info ul {
	padding:0px;
	margin:0;
	list-style:none;
}
.author-info ul li {
	float:left;
	margin:0 10px 0 0;
}
.author-info ul li a {
	width:40px;
	height:40px;
	color:#fff;
	display:block;
	background:#111;
	border-radius:50%;
	text-align:center;
	line-height:40px;
}
.author-info ul li .fa {
	margin:0 auto;
}
.author-info ul li a:hover {
	background:#1294b1;
}


/*=====================
	 6. Sidebar
===========================*/
.sidebar_widget {
	background-color: #ffffff;
	padding:0 0 20px 20px;
	margin-bottom: 30px;
}
.widget_title {
	margin:0 0 25px -21px;
	padding: 0 21px;
	border-bottom: #0c0d0d solid 2px;
}
.widget_title a {
	color:#fff;
}
.sidebar_title {
	background: #0c0d0d none repeat scroll 0 0;
	letter-spacing: 1px;
	margin: 0;
	padding: 12px 15px 10px;
	color: #fff;
	display: inline-block;
	line-height: 10px;
	font-size: 15px;
	text-transform: uppercase;
}
.sidebar_widget .newsletter_wrap {
  max-width: inherit;
}
.populat_post h4 a {
	color:#111;
}
.populat_post h4 {
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  margin-bottom: 9px;
}
.populat_post {
  border-bottom: 1px dotted #898989;
  margin: 0 auto 15px;
  padding-bottom: 10px;
}
.populat_post:last-child {
	border:0px;
	padding:0px;
	margin:0px;
}
.populat_post .post_meta ul li {
  font-size: 12px;
  margin: 0 3px 0 0;
}
.sidebar_widget .post_meta {
	margin:0 auto;
}
.sidebar_widget .post_meta ul li a {
  color: #777777;
  font-size: 12px;
}
.sidebar_widget .post_meta ul li a:hover {
	color:#02748e;	
}
.about_img {
	margin:0 auto 15px;
}
.about_us small {
  color: #aaaaaa;
  display: block;
  font-style: italic;
  margin-bottom: 10px;
  text-decoration: underline;
}
.sidebar_widget p {
  color: #666666;
  font-size: 16px;
  line-height: 26px;
  margin: 0 auto 15px;
}
.sidebar_widget .post_img {
	margin:0 auto 15px;
}
.sidebar_widget > ul, .sidebar_widget .menu {
	padding:0px;
	margin:0px;
}
.sidebar_widget > ul > li, .sidebar_widget .children li, .sidebar_widget .menu li {
	border-bottom: 1px dotted #9f9f9f;
	list-style: outside none none;
	margin: 0 auto 10px;
	padding-bottom: 10px;
	padding-left: 19px;
	position: relative;
	font-size:15px;
}
.sidebar_widget > ul > li::after, .sidebar_widget .children li:after, .sidebar_widget .menu li:after {
	content:"\f101";
	font-family: fontawesome;
	left: 4px;
	position: absolute;
	top: 0;
}
.sidebar_widget > ul > li:last-child, .sidebar_widget .children li:last-child, .sidebar_widget .menu li:last-child {
	margin:0 auto;
	padding-bottom:0px;
	border:0px;
}
.sidebar_widget >ul > li > a, .sidebar_widget .children li a, .sidebar_widget .menu li a {
	display:inline-block;
	color:#000;
	font-size:15px;
}
.sidebar_widget >ul > li > a:hover, .sidebar_widget .children li a:hover, .sidebar_widget .menu li a:hover {
	color:#cc3745!important;
}
.sidebar_widget li ul.children, .sidebar_widget .menu li ul {
	padding-left:0px;
}
.sidebar_widget ul.children, 
.sidebar_widget li.menu-item-has-children .sub-menu {
	margin-top:10px;
}

.tagcloud a {
	display:inline-block;
	padding:6px 15px;
	border:#eee solid 1px;
	color:#666;
	font-size:14px;
	margin:0 4px 4px 0;
}
.tagcloud a:hover {
	background:#cc3745!important;
	border-color:#cc3745!important;
	color:#fff;
}
.sidebar_widget .search-form {
	overflow:hidden;
}
.sidebar_widget .search-form  > label {
	float:left;
	max-width:66%;
}
.sidebar_widget .search-form .search-field {
	width:100%;
}
.sidebar_widget .search-form .search-submit {
	float:left;
	width:34%;
	padding:5px 0 !important;
}
.sidebar_widget .search-form .search-submit:hover {
	border-radius:0px !important;
}
.sidebar_widget table th, .sidebar_widget table td {
	padding: 10px;
}
.sidebar_widget select {
	background: #fff none repeat scroll 0 0;
	border: #5e5e5e solid 2px;
	border-radius: 0;
	box-shadow: none;
	color: #111;
	font-size: 17px;
	height: 50px;
	line-height: 30px;
	padding: 0 25px;
	width: 100%;
}
.sidebar_widget select option {
	padding: 10px;
}



/*=====================
	 7. Post Detail
===========================*/
.post_detail {
	background:#fff;
}
.post_detail .post_info,  .post_detail .post_img {
	float:none;
	box-shadow:none;
	padding:0px;
	width:100%;
}
.post_detail h2 {
	font-size:28px;
}
.post_detail h3 {
	font-size:24px;
}
.post_detail h4 {
	font-size:22px;
	margin-bottom:6px;
}
.post_detail h5 {
	font-size:20px;
}
.post_detail h6 {
	font-size:18px;
}
.post_detail .post_meta ul li,  .post_detail .post_meta ul li a {
	font-size:14px;
}
.post_detail .post_img {
	margin: 0 -40px 25px;
	width: auto;
}
blockquote {
	font-size: 16px;
	padding: 20px;
	background: #f8f8f8;
	line-height: 25px;
}
.align-left {
	float:left;
	margin:10px 20px 10px 0;
}
.align-right {
	float:right;
	margin:10px 0 10px 20px;
}
.post_detail img {
	margin-bottom:15px;
}
.section-title {
	background:#fff;
	color:#111;
	padding:14px 20px;
	font-weight:500;
	margin:0 auto 20px;
	box-shadow:0 5px 5px rgba(0, 0, 0, 0.03);
}
.highlight {
	color: #1294b1 ;
}



/*----------------------
	7.1 Quote-post-formate
------------------------------*/
.format-quote .quote_post {
	padding:80px;
	min-height:inherit;
}
.format-quote .quote_post blockquote {
	margin:0 auto;
}
.format-quote .quote_post blockquote p {
	font-size: 28px;
	line-height: 35px;
	margin: 0;
}
.format-quote .quote_post blockquote::before {
	font-size: 40px;
	left: 35px;
	top: 60px;
}
.format-quote .quote_post .quote_author {
	font-size: 16px;
}


/*----------------------
	7.2. Link-post-formate
------------------------------*/
.format-link .link_post {
	min-height:inherit;
	padding:100px;
}
.format-link .link_post .post_link {
	position:relative;
	top:inherit;
	left:inherit;
	right:inherit;
	transform:translateY(0);
	-moz-transform:translateY(0);
	-o-transform:translateY(0);
	-webkit-transform:translateY(0);
	-ms-transform:translateY(0);
}
.format-link .link_post .post_link {
	font-size:30px;
}


/*----------------------
	7.3. Video-post-formate
------------------------------*/
.video_post iframe {
	height:500px;
	border:0px;
	float:left;
}


/*----------------------
	7.4. Audio-post-formate
------------------------------*/
.audio_post iframe {
	height:500px;
	border:0px;
	float:left;
}


/*----------------------
	7.5. Gallery-post-formate
------------------------------*/
.gallery_post {
	position:relative;
}


/*----------------------
	7.6. Post Comments
------------------------------*/
#comments {
	padding:0 0 50px 0;
}
#respond {
	padding-top:40px;
}
.all_comments {
	padding: 10px 0;
	overflow: hidden;
	border-bottom: #999 solid 1px;
}
.all_comments ul.commentlist {
	padding:0px;
	margin:0;
}
.all_comments ul li {
	list-style:none;
	margin:0 auto;
}
.all_comments ul li.pingback {
	margin-bottom:15px;
}
.comment-author img {
	border-radius:50%;
	max-width:50px;
	height:auto;
	float:left;
	margin:0 10px 10px 0;
}
.comment-meta {
	clear:both;
}
.comment-metadata a {
	color: #bbb;
	font-size: 13px;
	line-height: 17px;
	display: inherit;
	font-style: italic;
}
.comment-metadata a:hover {
	color:#1294b1 ;
}
.comment-content, .comment .reply {
	padding-top: 0;
	clear: both;
	padding-left: 60px;
}
.comment .reply a {
	font-size:15px;
}
.comment-content p {
	margin: 0 auto 5px;
	font-size: 15px;
	line-height: 24px;
}
.comment article {
	padding: 15px 0;
	border-top: 1px solid #999;
}
.all_comments h4 {
	margin-bottom:15px;
}


/*----------------------
	7.7 Post-tags & Post-share
------------------------------*/
.post_tags {
  margin: 40px 0 0;
  overflow: hidden;
}
.post_tags a {
  background: #eeeeee none repeat scroll 0 0;
  border: 1px solid #eeeeee;
  border-radius: 5px;
  color: #666666;
  display: inline-block;
  font-size: 13px;
  margin: 0 4px 4px 0;
  padding: 5px 15px;
}
.post_tags a:hover {
	background:#1294b1 ;
	border-color:#1294b1 ;
	color:#fff;
}
.post_share {
  background: #ffffff none repeat scroll 0 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  padding: 10px;
  position: fixed;
  right: 0;
  top: 150px;
  width: 90px;
  z-index:222;
}
.post_share > span {
	font-weight:900;
	display:block;
	vertical-align:middle;
	opacity:0.5;
	margin:0 auto 10px;
}
.post_share a {
  background: #111111 none repeat scroll 0 0;
  border-radius: 2px;
  color: #ffffff;
  display: block;
  font-size: 18px;
  margin: 0 0 4px;
  padding: 9px 7px;
  text-align: center;
}
.post_share a.facebook {
	background:#3b5998;
	color:#fff!important;
}
.post_share a.twitter {
	background:#00b6f1;
	color:#fff!important;
}
.post_share a.linkedin {
	background:#0077b5;
	color:#fff!important;
}
.post_share a.google-plus {
	background:#dc4a38;
	color:#fff!important;
}
.post_share a.pinterest {
	background:#bd081b;
	color:#fff!important;
}
.post_share a:hover {
	color:#fff;
}


/*----------------------
	7.8. Large-Width-detail
------------------------------*/
.large_size {
	background:#1294b1;
	padding:125px 0 0;
}
.large_size .post_header {
	margin:0 auto 40px;
	max-width:900px;
}
.large_size .post_img {
	margin:0 auto;
	max-width:900px;
}

.large_size.with_sidebar .post_header, .large_size.with_sidebar .post_img {
	max-width:100%;
}
.large_size .post_header h1 {
	margin-bottom:10px;
	color:#fff;
}
.large_size .post_header .post_cats a {
	border: 1px solid #ffff;
	border-radius: 3px;
	color: #fff;
	font-size: 14px;
	margin-right: 4px;
	padding: 5px 15px 3px;
}
.large_size .post_header .post_cats a:hover {
	background:#111;
	color:#fff;
	text-decoration:none;
	border-color:#111;
}
.large_size .post_cats {
  margin: 0 auto 15px;
}
.large_size .video_post iframe {
  border: 0 none;
  height:500px;
  float:left;
}
.large_size .quote_post {
  padding: 100px;
}
.large_size .quote_post blockquote p {
  font-size: 40px;
  line-height: 46px;
}
.large_size .quote_post blockquote::before {
  font-size: 50px;
  left: 65px;
  top: 45px;
}
.large_size .quote_post blockquote .quote_author {
  font-size: 19px;
}
.large_size .link_post {
  min-height: 370px;
  background:#222;
}
.large_size .link_post .post_link {
  font-size: 40px;
}
.large_size .post_meta ul li, .large_size .post_meta ul li a {
  color: #111;
  font-size: 15px;
}


/*=====================
	 8. Footer
===========================*/
#footer {
  background: #0c0d0d none repeat scroll 0 0;
  padding: 30px 0;
  text-align: center;
}
.copyright_text p {
	margin:0 auto;
	font-size:14px;
	color:#f6f5f5;
}
.follow_us ul {
	padding:0px;
	margin:0px auto 20px;
	list-style:none;
}
.follow_us ul li {
	display:inline-block;
	vertical-align:middle;
	margin: 6px;
}
.follow_us ul li a {
	display:block;
	text-align:center;
	color:#fff;
	width:40px;
	height:40px;
	line-height:38px;
	font-size:18px;
	border:#fff solid 2px;
	border-radius:50%;
	transition-duration:0.3s;
	 -moz-transition-duration:0.3s;
	  -o-transition-duration:0.3s;
	   -webkit-transition-duration:0.3s;
	opacity:0.6;
}
.follow_us ul li a .fa {
	margin:0 auto;
}
.follow_us ul li a:hover {
	opacity:1;
	color:#fff;
}


/*=====================
	 9. Inner-pages
===========================*/
.inner_page_header {
	background-color:#1294b1 ;
	padding:120px 0;
	overflow:hidden;
	position:relative;
	background-position:center;
	background-repeat:no-repeat;
	background-size:cover;
	background-attachment:fixed;
}
.inner_page_header:after {
	background: rgba(0, 0, 0, 0.4) none repeat scroll 0 0;
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}
.breadcrumb {
	background:none;
	padding:0px;
	margin:0 auto;
}
.breadcrumb ul {
	padding:0px;
	padding:0px;
}
.breadcrumb ul li {
	display:inline-block;
	vertical-align:middle;
	list-style:none;
	margin:0 auto;
	position:relative;
}
.breadcrumb ul li::after {
	position: absolute;
	right: -5px;
	content: "-";
	top: 0px;
	opacity: 0.5;
}
.breadcrumb ul li:last-child:after {
	display:none;
}
.breadcrumb ul li a, .breadcrumb ul li span {
	display:block;
	margin:0 12px;
	color:#fff;
}
.breadcrumb ul li a:hover {
	color:#1294b1 ;
}


/*-----------------------
	9.1. Contact-Us
-------------------------*/
.office_info {
	padding:50px 0 20px;
}
.info_m {
	margin:0 auto 15px;
	border:#eee solid 1px;
	font-size:30px;
	position:relative;
	padding:50px 50px 50px 200px;
	line-height:40px;
	font-weight:300;
}
.info_m .fa {
	font-size:120px;
	opacity:0.1;
	position:absolute;
	left:50px;
	top:50%;
	transform:translateY(-50%);
	-moz-transform:translateY(-50%);
	-o-transform:translateY(-50%);
	-webkit-transform:translateY(-50%);
	-ms-transform:translateY(-50%);
}


/*-----------------------
	9.2. 404-Error
-------------------------*/
.error_page {
	text-align:center;
}
.error_page h2 {
	font-size:50px;
}
.error_page p {
	font-size:17px;
}


/*-----------------------
	9.3. About-us
-------------------------*/
.content-area.inner_container {
	padding:60px 0;
}
.error_page .search_form input {
  height: 80px;
  font-size:20px;
}
.owl-nav {
	position:absolute;
	top:50%;
	z-index:1;
	left:10px;
	right:10px;
	transform:translateY(-50%);
	-moz-transform:translateY(-50%);
	-o-transform:translateY(-50%);
	-webkit-transform:translateY(-50%);
	-ms-transform:translateY(-50%);
}
.owl-nav div {
	display:block;
	background:rgba(0, 0, 0, 0.6);
	padding:5px 10px;
	color:#fff;
	text-transform:capitalize;
	float:left;
}
.owl-nav .owl-next {
	float:right;
}
.owl-dots {
	text-align:center;
	position:absolute;
	bottom:15px;
	z-index:1;
	left:0;
	right:0;
}
.owl-dot {
	display:inline-block;
	margin:0 2px;
}
.owl-dots span {
	display:inline-block;
	width:12px;
	height:12px;
	border-radius:50%;
	background:rgba(255, 255, 255, 0.6);
}
.owl-dot.active span {
	background: #ff4422 none repeat scroll 0 0;
}

#back-top {
	position: fixed;
	bottom: 15px;
	right: 15px;
}
#back-top a {
	display:block;
	width:30px;
	height:30px;
	border-radius:0px;
	text-align:center;
	line-height:30px;
	background:#cc3745;
	color:#fff;
	transition-duration:0.3s;
	-moz-transition-duration:0.3s;
	-o-transition-duration:0.3s;
	-webkit-transition-duration:0.3s;
	-ms-transition-duration:0.3s;
}
#back-top a:hover {
	border-radius:50%;
}




/*=====================
	10. Responsive CSS
===========================*/
@media (min-width:992px) and (max-width:1200px) {
.info_m {
	font-size: 25px;
	padding: 40px 50px 40px 160px;
	line-height:35px;
}
.info_m .fa {
	font-size: 100px;
	left: 30px;
}	
.post_detail .post_share a {
	padding: 7px 13px;
	margin: 0 1px 4px;
	font-size: 12px;
	letter-spacing: 0px;
}
.audio_post iframe, .video_post iframe {
	height: 350px;
}
h2 {
  font-size: 22px;
}
.grid-item .video_post iframe, .grid-item .audio_post iframe, .grid-item iframe, .grid_style .video_post iframe, .grid_style .audio_post iframe, .grid_style iframe {
  border: 0 none;
  height: 194px;
  margin: 0 auto;
}
.recent_post {
  margin-bottom: 10px;
  padding-bottom: 10px;
}
.post-container::after {
  right: 308px;
}
.post-container.container_left_boder::after {
	left:308px;	
}
.post_share > span {
  display:none;
}
.post_share a {
  font-size: 14px;
  padding:5px 7px;
}
.post_share {
  width: 50px;
}
.large_size .post_img, .large_size .post_header {
  max-width: 830px;
}

}


@media (min-width:768px) and (max-width:991px) {
header .navbar-default .navbar-nav li.menu-item-has-children > a {
	padding-right: 25px !important;
}
.navbar-default .nav.navbar-nav li a {
	font-size: 14px;
	padding: 28px 16px;
}	
header .navbar-default .navbar-nav li.menu-item-has-children > a::before {
	right: 10px;
}
.inner_page_header {
	padding: 70px 0;
}
.info_m {
	font-size: 25px;
	padding: 50px 50px 50px 160px;
}
.info_m .fa {
	font-size: 100px;
	left: 30px;
}
.grid-item .video_post iframe, .grid-item .audio_post iframe, .grid-item iframe, .grid_style .video_post iframe, .grid_style .audio_post iframe, .grid_style iframe,  {
  height: 360px;
}
.right_side:first-child {
  margin: 10px auto;
}
.post-container::after {
	display:none;
}
.post_share > span {
  display:none;
}
.post_share a {
  font-size: 13px;
  padding: 3px 5px;
}
.post_share {
  padding: 5px;
  width: 35px;
}
.large_size .post_img, .large_size .post_header {
  max-width: 830px;
}

}

@media (max-width:767px) {
.logo {
	margin: 17px 15px;
	float: left;
}
.navbar-default .navbar-header {
	float:left;
	width:94%;
}
.navbar-default .navbar-toggle {
  border-radius: 0;
  margin-bottom: 15px;
  margin-right: 0px;
  margin-top: 38px;
}
.search_link {
  color: #333;
  cursor: pointer;
  float: right;
  font-size: 20px;
  margin: 38px 0 0;
  padding: 2px 2px;
}
.navbar-default .navbar-collapse, .navbar-default .navbar-form {
  border:0px;
  float: none;
  margin: 0 auto;
  width: 100%;
}
.nav > li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
}
.navbar.navbar-default .nav.navbar-nav {
	float: none;
	margin:0 -15px;
}
.navbar-default .nav.navbar-nav li a {
	padding: 18px 15px;
}
li.menu-item-has-children span.arrow {
	position: absolute;
	top: 0;
	right: 0;
	width: 50px;
	height: 100%;
	content: "";
	cursor: pointer;
}
.navbar-default .nav.navbar-nav li.menu-item {
	border-bottom:rgba(0, 0, 0, 0.05) solid 1px;
}
.header_nav, .follow_us {
	text-align:center;
}
header .navbar-default .navbar-nav li ul.sub-menu, header .navbar-default .navbar-nav li ul.children {
	position:relative;
}
header .navbar-default .navbar-nav li ul.sub-menu ul.sub-menu, header .navbar-default .navbar-nav li ul.children ul.sub-menu, header .navbar-default .navbar-nav li ul.sub-menu ul.children, header .navbar-default .navbar-nav li ul.children ul.children {
	left: inherit;
	right:inherit;
	top: -1px;
}
.inner_page_header {
	padding: 70px 0;
}
.info_m {
	font-size: 22px;
	padding: 20px 20px 20px 70px;
	line-height: 30px;
}
.info_m .fa {
	font-size: 40px;
	left: 20px;
}
.sidebar-area {
	margin-top:0px;
	padding-top:20px;
}
.error_page h2 {
	font-size: 32px;
}
p {
	font-size: 15px;
	line-height: 25px;
}
.section-title {
	font-size: 18px;
}
.classic_style .post_info {
  padding: 20px 26px 50px;
}
.classic_style .video_post iframe, classic_style .audio_post iframe, .classic_style iframe, .classic_style .video_post iframe, .classic_style .audio_post iframe, 
.classic_style iframe,  {
  height: 320px;
}
.classic_style h2 {
  font-size: 32px;
}
.recent_post {
  border-bottom: 0;
  float: left;
  margin-bottom: 0;
  overflow: hidden;
  padding-bottom: 0;
  width: 50%;
  padding-right: 14px;
}
.post-container::after {
	display:none;
}
.list_style .post_img, .list_style .post_info {
  float: none;
  min-height: auto;
  width: 100%;
  display:block;
}
.header_image .post-title {
  font-size: 40px;
}
.header_image h3 {
  font-size: 23px;
}
.post_share {
  padding: 0px;
  position: relative;
  top: 0;
  width: auto;
  background:none;
}
.post_share > span {
	display:none;
}
.post_share a {
  border-radius: 0;
  float: left;
  margin: 0;
  width: 20%;
}
.post_detail {
  padding: 0;
}
#comments {
  padding: 20px 0 0;
}
.large_size .video_post iframe, 
.large_size .audio_post iframe {
  height: 300px;
}
.large_size .link_post {
  min-height: 300px;
}
.large_size .link_post .post_link {
  font-size: 22px;
}
.large_size .quote_post {
  padding:80px 40px 40px;
}
.large_size .quote_post blockquote p {
  font-size: 22px;
  line-height: 29px;
}
.large_size .quote_post blockquote::before {
  font-size: 40px;
  left: 45px;
  top: 35px;
}
.large_size .quote_post blockquote .quote_author {
  font-size: 14px;
}
.post_detail table th, .post_detail table td {
	padding: 6px 0px;
}
.sidebar_widget {
	padding-left:0px;
}
.widget_title {
	margin-left:0;
    padding: 0 0;
}
li.comment .children {
	padding-left: 14px;
}
.list-no-split .list_style .post_img, .list-split .list_style .post_img, 
.list-no-split .list_style .post_info, .list-split .list_style .post_info {
  display: block;
  float:none;
  width:100%;
}


}


@media (max-width:480px) { 	
.header_nav li a {
	font-size:12px;
}
.post_header h1 {
  font-size: 32px;
}
.header_nav li {
	padding-right:5px;
}
.list_style.gallery_post_m .post_info, .list_style .post_img, .list_style .post_info {
	float: none;
	width: 100%;
}
.format-link .list_style .link_post {
  padding: 70px 20px;
}
.list_style .post_img img {
	width: 100%;
}
.section-title {
	font-size: 18px;
}
.section-padding {
	padding: 30px 0;
}
.post_detail h3 {
	font-size: 22px;
}
.post_tags a {
	padding: 4px 11px;
	font-size: 11px;
}
.post_tags {
	padding: 8px 8px;
}
.comment-content p {
	font-size: 14px;
	line-height: 22px;
}
.post_detail .post_header .post-title {
	font-size: 28px;
}
.post_detail .post_img {
	margin: 0 -20px 15px;
}
.post_detail .post_share a {
	padding: 6px 10px;
	margin: 0 1px 3px;
	font-size: 11px;
	letter-spacing: 1px;
}
.post_meta ul li {
	margin: 0 4px 0 0;
}
.post_detail .post_meta ul li, .post_detail .post_meta ul li a {
	font-size: 13px;
}
.info_m {
	font-size:17px;
	padding:25px;
	line-height:24px;
	text-align:center;
}
.info_m .fa {
	left:inherit;
	top:0;
	position:relative;
	display:block;
	transform: translateY(0);
	-moz-transform: translateY(0);
	-o-transform: translateY(0);
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
}
.audio_post iframe, .video_post iframe {
	height: 250px;
}
.format-quote .quote_post, 
.classic_style .quote_post, .classic_style .link_post {
	padding: 40px;
}
.format-quote .quote_post blockquote p, 
.classic_style .quote_post blockquote p {
	font-size: 22px;
	line-height: 26px;
	margin: 0 0 16px 0;
}
.format-link .link_post {
	padding: 70px 30PX;
}
.format-link .link_post .post_link, 
.classic_style .post_link {
	font-size: 22px;
}
.classic_style .video_post iframe, classic_style .audio_post iframe, .classic_style iframe, .classic_style .video_post iframe, .classic_style .audio_post iframe, 
.classic_style iframe,  {
  height: 250px;
}
.classic_style h2 {
	font-size: 27px;
}
h2.post-title {
  font-size: 26px;
}
.wp_nav_links a {
  display: block;
  float: none;
  margin-bottom: 15px;
  width: 100%;
}
.author-bio {
  background: #f9f9f9 none repeat scroll 0 0;
  margin: 40px auto 0;
  overflow: hidden;
  padding: 15px;
}
.author-bio img {
  margin-right: 10px;
  max-width: 30px;
}
.author-info {
  width: calc(100% - 40px);
}
.large_size .video_post iframe, 
.large_size .audio_post iframe {
  height: 200px;
}
.large_size .link_post {
  min-height: 200px;
}
.large_size .link_post .post_link {
  font-size: 18px;
}

}

