/* 
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
  animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.owl-carousel .owl-animated-in {
  z-index: 0;
}
.owl-carousel .owl-animated-out {
  z-index: 1;
}
.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

/* 
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  -webkit-transition: height 500ms ease-in-out;
  -moz-transition: height 500ms ease-in-out;
  -ms-transition: height 500ms ease-in-out;
  -o-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}

/* 
 *  Core Owl Carousel CSS File
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}
.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
}
.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-controls .owl-nav .owl-prev,
.owl-carousel .owl-controls .owl-nav .owl-next,
.owl-carousel .owl-controls .owl-dot {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: inline-block;
}
.owl-carousel.owl-loaded {
  display: inline-block;
}
.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}
.owl-carousel.owl-hidden {
  opacity: 0;
}
.owl-carousel .owl-refresh .owl-item {
  display: none;
}
.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel .owl-item img {
  display: block;
  width: 100%;
  -webkit-transform-style: preserve-3d;
}
.owl-carousel.owl-text-select-on .owl-item {
  -webkit-user-select: auto;
  -moz-user-select: auto;
  -ms-user-select: auto;
  user-select: auto;
}
.owl-carousel .owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}
.owl-carousel.owl-rtl {
  direction: rtl;
}
.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
.no-js .owl-carousel {
  display: block;
}

/* 
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  -webkit-transition: opacity 400ms ease;
  -moz-transition: opacity 400ms ease;
  -ms-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-item img {
  transform-style: preserve-3d;
}

/* 
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}
.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transition: scale 100ms ease;
  -moz-transition: scale 100ms ease;
  -ms-transition: scale 100ms ease;
  -o-transition: scale 100ms ease;
  transition: scale 100ms ease;
}
.owl-carousel .owl-video-play-icon:hover {
  -webkit-transition: scale(1.3, 1.3);
  -moz-transition: scale(1.3, 1.3);
  -ms-transition: scale(1.3, 1.3);
  -o-transition: scale(1.3, 1.3);
  transition: scale(1.3, 1.3);
}
.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}
.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
  -webkit-transition: opacity 400ms ease;
  -moz-transition: opacity 400ms ease;
  -ms-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
}

/* 
 *  Owl Carousel CSS3 Transitions 
 *  v1.3.2
 */

.owl-origin {
	-webkit-perspective: 1200px;
	-webkit-perspective-origin-x : 50%;
	-webkit-perspective-origin-y : 50%;
	-moz-perspective : 1200px;
	-moz-perspective-origin-x : 50%;
	-moz-perspective-origin-y : 50%;
	perspective : 1200px;
}
/* fade */
.owl-fade-out {
  z-index: 10;
  -webkit-animation: fadeOut .7s both ease;
  -moz-animation: fadeOut .7s both ease;
  animation: fadeOut .7s both ease;
}
.owl-fade-in {
  -webkit-animation: fadeIn .7s both ease;
  -moz-animation: fadeIn .7s both ease;
  animation: fadeIn .7s both ease;
}
/* backSlide */
.owl-backSlide-out {
  -webkit-animation: backSlideOut 1s both ease;
  -moz-animation: backSlideOut 1s both ease;
  animation: backSlideOut 1s both ease;
}
.owl-backSlide-in {
  -webkit-animation: backSlideIn 1s both ease;
  -moz-animation: backSlideIn 1s both ease;
  animation: backSlideIn 1s both ease;
}
/* goDown */
.owl-goDown-out {
  -webkit-animation: scaleToFade .7s ease both;
  -moz-animation: scaleToFade .7s ease both;
  animation: scaleToFade .7s ease both;
}
.owl-goDown-in {
  -webkit-animation: goDown .6s ease both;
  -moz-animation: goDown .6s ease both;
  animation: goDown .6s ease both;
}
/* scaleUp */
.owl-fadeUp-in {
  -webkit-animation: scaleUpFrom .5s ease both;
  -moz-animation: scaleUpFrom .5s ease both;
  animation: scaleUpFrom .5s ease both;
}

.owl-fadeUp-out {
  -webkit-animation: scaleUpTo .5s ease both;
  -moz-animation: scaleUpTo .5s ease both;
  animation: scaleUpTo .5s ease both;
}
/* Keyframes */
/*empty*/
@-webkit-keyframes empty {
  0% {opacity: 1}
}
@-moz-keyframes empty {
  0% {opacity: 1}
}
@keyframes empty {
  0% {opacity: 1}
}
@-webkit-keyframes fadeIn {
  0% { opacity:0; }
  100% { opacity:1; }
}
@-moz-keyframes fadeIn {
  0% { opacity:0; }
  100% { opacity:1; }
}
@keyframes fadeIn {
  0% { opacity:0; }
  100% { opacity:1; }
}
@-webkit-keyframes fadeOut {
  0% { opacity:1; }
  100% { opacity:0; }
}
@-moz-keyframes fadeOut {
  0% { opacity:1; }
  100% { opacity:0; }
}
@keyframes fadeOut {
  0% { opacity:1; }
  100% { opacity:0; }
}
@-webkit-keyframes backSlideOut {
  25% { opacity: .5; -webkit-transform: translateZ(-500px); }
  75% { opacity: .5; -webkit-transform: translateZ(-500px) translateX(-200%); }
  100% { opacity: .5; -webkit-transform: translateZ(-500px) translateX(-200%); }
}
@-moz-keyframes backSlideOut {
  25% { opacity: .5; -moz-transform: translateZ(-500px); }
  75% { opacity: .5; -moz-transform: translateZ(-500px) translateX(-200%); }
  100% { opacity: .5; -moz-transform: translateZ(-500px) translateX(-200%); }
}
@keyframes backSlideOut {
  25% { opacity: .5; transform: translateZ(-500px); }
  75% { opacity: .5; transform: translateZ(-500px) translateX(-200%); }
  100% { opacity: .5; transform: translateZ(-500px) translateX(-200%); }
}
@-webkit-keyframes backSlideIn {
  0%, 25% { opacity: .5; -webkit-transform: translateZ(-500px) translateX(200%); }
  75% { opacity: .5; -webkit-transform: translateZ(-500px); }
  100% { opacity: 1; -webkit-transform: translateZ(0) translateX(0); }
}
@-moz-keyframes backSlideIn {
  0%, 25% { opacity: .5; -moz-transform: translateZ(-500px) translateX(200%); }
  75% { opacity: .5; -moz-transform: translateZ(-500px); }
  100% { opacity: 1; -moz-transform: translateZ(0) translateX(0); }
}
@keyframes backSlideIn {
  0%, 25% { opacity: .5; transform: translateZ(-500px) translateX(200%); }
  75% { opacity: .5; transform: translateZ(-500px); }
  100% { opacity: 1; transform: translateZ(0) translateX(0); }
}
@-webkit-keyframes scaleToFade {
  to { opacity: 0; -webkit-transform: scale(.8); }
}
@-moz-keyframes scaleToFade {
  to { opacity: 0; -moz-transform: scale(.8); }
}
@keyframes scaleToFade {
  to { opacity: 0; transform: scale(.8); }
}
@-webkit-keyframes goDown {
  from { -webkit-transform: translateY(-100%); }
}
@-moz-keyframes goDown {
  from { -moz-transform: translateY(-100%); }
}
@keyframes goDown {
  from { transform: translateY(-100%); }
}

@-webkit-keyframes scaleUpFrom {
  from { opacity: 0; -webkit-transform: scale(1.5); }
}
@-moz-keyframes scaleUpFrom {
  from { opacity: 0; -moz-transform: scale(1.5); }
}
@keyframes scaleUpFrom {
  from { opacity: 0; transform: scale(1.5); }
}

@-webkit-keyframes scaleUpTo {
  to { opacity: 0; -webkit-transform: scale(1.5); }
}
@-moz-keyframes scaleUpTo {
  to { opacity: 0; -moz-transform: scale(1.5); }
}
@keyframes scaleUpTo {
  to { opacity: 0; transform: scale(1.5); }
}



.owl-theme .owl-dots .active span {
    background: #aa2308;
}
.col, .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col-lg, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-md, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-sm, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-xl, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12 {
		padding-right: 10px;
		padding-left: 10px;
}
.row {
		margin-right: -10px;
		margin-left: -10px;
}

/*
 * Row with equal height columns
 * --------------------------------------------------
*/

html {
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	font-size: 16px
}

@media (min-width: 576px){
	.container {
		width: 100%;
		max-width: 100%;
	}
}

@media (min-width: 768px){
	.container {
		width: 100%;
		max-width: 100%;
	}
}
@media (min-width: 1024px){
	.container {
		width: 100%;
		max-width: 100%;
	}
}

@media (min-width: 1250px){
	.container {
		width: 1200px;
		max-width: 100%;
	}
}

#page{overflow: hidden;}
body {
	margin: 0;
    color: #2b2b2b;
    font-family: open sans,sans-serif;
}

.title {
    font-size: 25px;
    margin-bottom: 10px;
    display: block;
    font-weight: bold;
}
a{color:#333;text-decoration:none;}

a:focus {
	outline: thin dotted
}

a:hover{
    color: #aa2308;
}

a:active,
a:hover {
	outline: 0;
	text-decoration:none;
}

.wrapper {
    padding: 30px 0 0;
}

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

q {
	quotes: "\201C" "\201D" "\2018" "\2019"
}


h1,
h2,
h3,
h4,
h5,
h6 {
	color: #1a1a1a;
	line-height: 1.2667;
	margin-top: 0;
	font-weight: normal;
}

.roboto{
	font-family: roboto condensed,sans-serif;
}

#main-header{
    box-shadow: 0px 2px 5px #a0a0a0;
    padding: 10px 10px 0 10px;
    background: #fff;
	margin-bottom: 15px;
}
#main-header a{
    color:#222;
}
#menu-menu {
    margin-bottom: 0;
    padding: 0;
    margin: 0 auto;
    display: inline-block;
    float: none;
}
.menu-item {
display: inline-block;
}

.menu-item a {
    font-weight: 700;
    font-size: 16px;
    transition: .3s color;
	color: #fdfdff!important;
	text-transform: uppercase;

}

.top-bar .menu-item a {
    font-size: 16px;
    transition: .3s color;
	color: #222!important;
	text-transform: uppercase;
}

.menu-item-video a{
    background: #aa2308;
    color: #fff;
    border-radius: 3px;
	padding-bottom:0px!important;
}
.menu-item-video a:hover{
	color:#fff!important;
	background:#222;
}
.menu-bar {
	background: #aa2308;
	padding:5px 0;
}
.heading{
    background-color: #aa2308;
    color: #fff;
    padding: 5px 10px 0px 10px;
    font-size: 25px;
}

.heading a{
    font-weight: normal;
    color: #fff;
    padding: 2px 10px;
	font-size:22px;
}
.img-fit{
    width:100%;
    height:400px;
    object-fit:cover;
}

.sec2{
	background:#f2f2f2;
	padding:5px 0;
}
.more{
	padding:0 5px;
	display:inline;
	color:#f00;
}

h1.entry-title.archive-title {
    font-size: 25px;
    border-bottom: 1px solid #222;
    padding-bottom: 5px;
    font-weight: bold;
}
.post-meta a{
	height:auto;
	display:inline-block;
	font-size:22px;
	font-weight:bold;
	color:#aa2308;
}
.post-meta {
	height:auto;
	display:inline;
	font-size:14px;
}
.post-meta a{
	height:auto;
	display:inline-block;
	font-size:14px;
	font-weight:bold;
	color:#aa2308;
}
.home .wrapper{padding:  0;}

.caption{
  width: 100%;
  left: 0;
  bottom: 0;
  color: #fff;
    z-index:1;
	padding-bottom:40px;
	display:block;
	text-align:center;
	font-weight:bold;
	margin-bottom:0;
	font-size:30px;
	text-shadow:2px 2px 2px #000
}
.entry-content{
    font-size: 16px;
    text-align: justify;
}

.entry-content img{
	width:100%;
	margin:10px 0!important;
}
.entry-title{
	font-weight:bold;
	font-size: 45px;
}
.mh-share-buttons{
    padding:0;
    background:#fff;
    overflow:hidden;
		position: fixed;
    bottom: 0;
    display: block;
    width: 100%;
    margin: 0;
}
.mh-share-buttons a,.mh-share-buttons a:hover{
    color:#fff
}
.mh-share-buttons .fa{
    display:inline-block;
    font-size:1.25em;
    margin-right:10px
}
.mh-share-button{
    font-size:100%;
    padding:5px 0;
    text-align:center;
    text-transform:uppercase;
		display:block;
	  border: none;
    border-radius: 0;
}
.mh-share-button:hover{
    opacity:.7
}
.mh-facebook span{
    background:#3e64ad
}
.mh-twitter span{
    background:#6aadd1
}
.mh-whatsapp span {
    background: #34af23;
}
.mh-pinterest span{
    background:#de010d
}
.mh-googleplus span{
    background:#cd3627
}
#backtop {
    width: 50px;
    height: 50px;
    color: #fff;
    display: block;
    background: #aa2308;
    border: 2px solid #e6e6e6;
    text-align: center;
    line-height: 50px;
    font-size: 40px;
    border-radius: 50%;
    position: fixed;
    right: 20px;
    bottom: 20px;
}

#mobile-share {
    width: 50px;
    height: 50px;
    color: #fff;
    display: block;
    background: #222;
    border: 1px solid #e6e6e6;
    text-align: center;
    line-height: 50px;
    font-size: 30px;
    border-radius: 50%;
    position: fixed;
    right: 20px;
    bottom: 60px;
}

#mobile-share-option{
	  position: fixed;
    z-index: 999;
		width:50px;
		right:10px;
		bottom:110px;
}

.social-button {
    width: 35px;
    height: 35px;
    color: #fff;
    display: block;
    text-align: center;
    line-height: 35px;
    font-size: 20px;
    border-radius: 50%;
		background: #222;
		margin-bottom:10px;
}

.facebook {
  background: #3B5998;
  color: white;
}

.twitter {
  background: #55ACEE;
  color: white;
}

.gplus{
  background: #dd4b39;
  color: white;
}

.whatsapp{
  background: #00ff38;
  color: white;
}

.post-date a{
	height:auto;
	display:inline;
	color:#F00;
	font-size:12px;
}

.post-date{
	color:#444;
	font-size:12px;
}

.post-date ul{
	margin:0px;
	padding:0px;
	list-style:none;
	display: inline-block;
}

.post-date ul li{
	display:inline;
}

.full-story{
	  text-align: center;
    display: block;
    padding: 10px;
    border: 1px solid #222;
    margin: 20px;
}

.text-bold{
	font-weight:bold;
}

figcaption.wp-caption-text {
    display: block;
    padding: 15px;
    font-style: italic;
    overflow: hidden;
    font-size: 15px;
    line-height: 25px;
    margin-bottom: 35px;
    background: #f7f7f7;
    margin-top: -10px;
}

.tags-links a{
    color: #000;
    font-size: 13px;
    font-weight: 600;
    padding: 7px 15px 5px;
    list-style: none;
    margin-bottom: 15px;
    margin-right: 1.5%;
    float: none;
    display: inline-block;
    background: #efefef;
    border-radius: 15px;
    text-transform: capitalize;
}
.tags-links a::before {
		content: '# ';
    color: red;
}
.entry-tag {
	text-align:left!important;
    border-top: 1px dotted #fc7a02;
    padding-top: 15px;
}
.post-views{
	display:none;
}
/*tablet*/
@media (min-width: 768px) and (max-width: 1024px) {
 .cat-post a {
    height: 150px;
	 font-size: 20px;
	 line-height:1.5em;
} 
.cat-post h2 {
    margin: 20px 0;
}
	.heading{
		font-weight:bold;
		font-size:30px
	}
	.sec2,.sec1{
		padding:0 15px 0 0;
	}
	.sec1{
		text-align:center
	}
	.post-meta, .post-meta a{
		font-size:16px!important;
	}
	.entry-title{
    background: #efefef;
    margin:0;
    padding: 10px 15px;
		font-weight:bold;
	}
}
.video{
	background:#222;
		color:#efefef;
	padding:20px 0;
}

.video a{
		color: #fff;
}
.menu-footer-1 ul li, .menu-footer-2 ul li{
    width: 100%;
    display: block;
}

aside#blog_subscription-2 {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: center;
}
.widget{
	margin-bottom:30px;
}


ul.er-controls{
	list-style: none;
	display: none;
	padding: 0;
}
ul.er-controls > li{
	display: inline-block;
	padding: 0 10px;
	background: #f0f0f0;
	margin: 5px;
	border-radius: 5px;
	height: 40px;
	line-height: 40px;
}
ul.er-controls > li:hover{
	background: #f5f5f5;
	cursor: pointer;
}
/* Sub Header */
#sub-header{
		border-top:1px solid #C00;
		position: fixed!important;
    bottom: 0;
    left: 0;
    right: 0;
		z-index:999;
    background: red;
}
#sub-header .col-4{
		text-align:center;
		padding-top:5px;
		font-weight:bold;
		border-left:1px solid #C00;
}
#sub-header .col-4:first-child{
	border:none;
}
#sub-header a{
	color:#fff;
	font-size:20px;
	padding:5px 0;
	display:block;
}
#tag-trending{
    -webkit-box-shadow: 0 1px 1px 0 #cecece;
    box-shadow: 0 1px 1px 0 #cecece;
    height: 30px;
	line-height: 30px;
    overflow: hidden;
    margin-bottom: 10px;
		background:#efefef;
}
#tag-trending{
		margin: 0 -15px;
}
#tag-trending ul{
		list-style: none;
    padding: 0;
    margin: 0px;
    display: flex;
    overflow-x: scroll;
    justify-content: space-between;
}
#tag-trending ul li{
	display:inline-block;
	margin-right:15px;
	float:left;
}
.post-time {
	color: #222;
    font-size: 15px;
    cursor: text;
	display:inline-block;
}
a.item-title {
    font-size: 14px;
    line-height: 18px;
    word-wrap: break-word;
	font-weight:normal;
}
.s-b{
	    box-shadow: 0 1px 1px 0 #cecece;
}
.h-a{
	height:auto!important;
}

.najariya {
   	padding: 10px;
    box-shadow: 0 3px 10px #ccc;
}
.first h5{
    font-weight: bold;
    font-size: 18px;
    line-height: 25px;
}

.najariya h5{
		border-top: 1px dashed #ccc;
		padding-bottom:3px;
}

.najariya .first h5{
		margin-top: 10px;
		margin-bottom: 0;
    font-weight: bold;
    font-size: 20px;
    line-height: 28px;
		border:none;
}

.video {
    background: #404040;
    color: #efefef;
    padding: 10px 0;
    border-top: 4px solid #ffc107;
    border-bottom: 4px solid #ffc107;
}
.video img{
	    border: 3px solid #ffc107;
}
.video .heading {
    background: #404040;
}

.video .heading a{
    font-size:40px;
}

.play {
    width: 40px;
    height: 40px;
    background: #aa2308;
    text-align: center;
    line-height: 40px;
    font-size: 20px;
    color: #fff702;
    position: absolute;
    top: 0px;
}

.cartoons {
    background: #000;
    padding: 1px 5px;
}
.cartoon-heading{
    background: #000;
    margin: 0px;
}

.cartoons .owl-prev, .cartoons .owl-next{
    background: url(https://www.hindustantimes.com/images/app-images/spirit-icon-22.png) no-repeat -263px -65px;
    display: block!important;
    height: 80px;
    width: 40px;
    overflow: hidden;
    margin: 0 auto;
    text-align: center;
    vertical-align: middle;
    top: 41%!important;
    left: 0;
	position:absolute;
}
.cartoons .owl-next{
    background: url(https://www.hindustantimes.com/images/app-images/spirit-icon-22.png) no-repeat -213px -65px;
    right: 0;
    left: auto;
}

.news-box h5 a.item-title {
    border-top: 1px dashed #c7c7c7;
    display: block;
    padding: 5px 0;
    /* font-weight: bold; */
}
.mobile-slider .owl-controls{
		position: absolute;
    top: 10px;
    right: 10px;
}
.mobile-slider {
	border-radius:5px;
	overflow:hidden;
	box-shadow:0 0 10px 1px #efefef;
}
.mobile-slider  .item  h2{
	position:absolute;
    left:0;
	right:0;
	bottom:-10px;
	padding:25px 15px 15px 15px;
	background: rgba(255,255,255,0);
	background: -moz-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(36,36,36,1) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255,255,255,0)), color-stop(100%, rgba(36,36,36,1)));
	background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(36,36,36,1) 100%);
	background: -o-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(36,36,36,1) 100%);
	background: -ms-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(36,36,36,1) 100%);
	background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(36,36,36,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#242424', GradientType=0 );
}

.mobile-slider  .item  h2 a{
	color:#fff;
	width:100%;
	float:left;
}
.mobile-slider  .item  h2 .sep{
	width:150px;
	height:4px;
	background:#FFEB3B;
	float:left;
	margin-bottom:10px;
}

/*m
	bottom:0;
}
/*mobile*/
@media (max-width: 576px){
	.site{
		padding-top:75px;
	}
	#main-header{
		position:fixed;
		right:0;
		left:0px;
		top:0px;
		height:60px;
		z-index:100;
	}
	.wrapper{
		padding-top:0px;
	}
	.mobile-slider{
		margin-bottom:15px;
	}
	
	.mobile-slider .item{
		margin-bottom:15px;
	}
	
	.title{
		width: 100%;
		font-size: 16px;
		line-height: 24px!important;
		text-align: left;
		margin: 0;
		font-weight: bold;
		/* height: 50px; */
		text-overflow: ellipsis;
		overflow: hidden;
		display: block;

	}
	.mobile-slider .item .title{
		font-size: 22px;
		line-height: 28px!important;
		margin-bottom:15px;
	}
	.magazine-section .col:last-child{
		display:none;
	}
	
	.magazine-section .col h4{
		padding:10px;
		font-size:12px;
	}
	
	.magazine-section .mm-b-3{
		margin-bottom:15px;
	}
	
	.magazine-section {
		margin-bottom:0!important;
	}
	.heading2{
		font-size:18px!important;
		font-family: oswald,sans-serif;
	}
	.m-heading{
		font-size:22px;
	}
	.m-title-1{
		font-size:16px;
	}
	.mt-xs-0{
		margin-top:0!important;
	}
	.entry-title{
		font-size:25px;
	}
	.thumb{
		max-height:70px;
	}
}

hr.style1{
	border-top: 1px solid #8c8b8b;
}

hr.style2 {
	border-top: 3px double #8c8b8b;
}

hr.style3 {
	border-top: 1px dashed #8c8b8b;
}

hr.style4 {
	border-top: 1px dotted #8c8b8b;
}

hr.style5 {
	background-color: #fff;
	border-top: 2px dashed #8c8b8b;
}

hr.style6 {
	background-color: #fff;
	border-top: 2px dotted #8c8b8b;
}

hr.style7 {
	border-top: 1px solid #8c8b8b;
	border-bottom: 1px solid #fff;
}

hr.style8 {
	border-top: 1px solid #8c8b8b;
	border-bottom: 1px solid #fff;
}
hr.style8:after {
	content: '';
	display: block;
	margin-top: 2px;
	border-top: 1px solid #8c8b8b;
	border-bottom: 1px solid #fff;
}

hr.style9 {
	border-top: 1px dashed #8c8b8b;
	border-bottom: 1px dashed #fff;
}

hr.style10 {
	border-top: 1px dotted #8c8b8b;
	border-bottom: 1px dotted #fff;
}

hr.style11 {
	height: 6px;
	background: url(http://ibrahimjabbari.com/english/images/hr-11.png) repeat-x 0 0;
    border: 0;
}

hr.style12 {
	height: 6px;
	background: url(http://ibrahimjabbari.com/english/images/hr-12.png) repeat-x 0 0;
    border: 0;
}

hr.style13 {
	height: 10px;
	border: 0;
	box-shadow: 0 10px 10px -10px #8c8b8b inset;
}


hr.style14 { 
  border: 0; 
  height: 1px; 
  background-image: -webkit-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
  background-image: -moz-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
  background-image: -ms-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
  background-image: -o-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0); 
}


hr.style15 {
	border-top: 4px double #8c8b8b;
	text-align: center;
}
hr.style15:after {
	content: '\002665';
	display: inline-block;
	position: relative;
	top: -15px;
	padding: 0 10px;
	background: #f0f0f0;
	color: #8c8b8b;
	font-size: 18px;
}

hr.style16 { 
  border-top: 1px dashed #8c8b8b; 
} 
hr.style16:after { 
  content: '\002702'; 
  display: inline-block; 
  position: relative; 
  top: -12px; 
  left: 40px; 
  padding: 0 3px; 
  background: #f0f0f0; 
  color: #8c8b8b; 
  font-size: 18px; 
}


hr.style17 {
	border-top: 1px solid #8c8b8b;
	text-align: center;
}
hr.style17:after {
	content: '§';
	display: inline-block;
	position: relative;
	top: -14px;
	padding: 0 10px;
	background: #f0f0f0;
	color: #8c8b8b;
	font-size: 18px;
	-webkit-transform: rotate(60deg);
	-moz-transform: rotate(60deg);
	transform: rotate(60deg);
}


hr.style18 { 
  height: 30px; 
  border-style: solid; 
  border-color: #8c8b8b; 
  border-width: 1px 0 0 0; 
  border-radius: 20px; 
} 
hr.style18:before { 
  display: block; 
  content: ""; 
  height: 30px; 
  margin-top: -31px; 
  border-style: solid; 
  border-color: #8c8b8b; 
  border-width: 0 0 1px 0; 
  border-radius: 20px; 
}

.next-loaded-post{
	margin-top:80px;
}

.next-loaded-post hr{
	margin-bottom:20px;
}

.widget_polls-widget{
	border: 1px dashed #aa2308;
}

.widget_polls-widget .heading{
background: #fff;
    border-bottom: 1px dashed #aa2308;
    font-size: 20px;
    padding: 0 10px;
    font-weight: bold;
    color: #aa2308;
}

.widget_polls-widget .wp-polls-form{
    font-size: 14px;
}
.widget_polls-widget .wp-polls-form p{
    margin:0;
}
.widget_polls-widget .wp-polls-form .wp-polls-ans p:last-child{
	display:block;
}
.widget_polls-widget {
    border: 1px dashed #c5c5c5;
}
.widget_polls-widget .heading {
    background: #000000;
    border-bottom: 1px dashed #c5c5c5;
    font-size: 20px;
    padding: 0 10px;
    font-weight: bold;
    text-align: center;
    color: #ffffff;
}
.carttonShare {
    color: #fff;
    padding: 5px 10px 0px 10px;
    right: 0;
    bottom: 0;
    position: absolute;
    background: #000;
}

.banner .category ul li {
    display: inline-block;
    background: #aa2308;
    padding: 0px 10px;
    margin: 10px 5px 0 0;
}

.banner .category ul li a{
    color:#fff;
		font-weight:bold;
}
.mobile-video{
    margin: 0;
    padding: 0;
    position: relative;
    left: 0;
    right: 0;
    border: none;
    background: #fff;
}
.heading2{
	color: #aa2308;
	text-align:left!important;
    overflow: hidden;
    position: relative;
	font-weight:600;
    font-size: 20px;
    line-height: 28px;
    margin: 5px 0 20px 0;
	font-family: oswald,sans-serif!important;
}
.heading2 a {
    font-size: 20px;
}
.heading2 span{
	position: relative;
    z-index: 1;
    background: #fff;
    padding-right: 15px;
}
.heading2:after{
	content: '';
    display: block;
    height: 4px;
    position: absolute;
    top: 50%;
    margin-top: -2px;
    width: 2000px;
    border: 1px solid #aa2308;
}
.mobile-rajniti .mt-4{
	margin-top:0!important;
	margin-bottom:5px;
}
.mobile-video .heading {
    background: #ffffff;
}
.mobile-video .heading .fa{
    display:none;
}
.mobile-video .play{
    width: 40px;
    height: 40px;
    background: #F00;
    text-align: center;
    line-height: 40px;
    font-size: 20px;
    color: #f7f4f4;
    position: absolute;
    top: 42%;
    left:46%;
}
.mobile-video .owl-prev, .mobile-video .owl-next {
    background: #ffffff5c;
    box-shadow: none;
    color: #ffeb3b;
	display:none;
}
ul#menu-footer-1 li.menu-item, ul#menu-footer-2 li.menu-item {
    float: none;
    display: block;
    width: auto;
}
.bottom-footer .col-md-2{
		border-right: 1px solid #f3f3f3;
}
.bottom-credit{
	background: #ddd;
}

.bottom-credit .copyright p{
	  font-size: 12px;
    padding: 10px;
    margin: 0;
}

.archive-title{
    font-size: 22px!important;
    line-height: 2rem!important;
    word-wrap: break-word!important;
    font-weight: bold!important;
    display: block!important;
    margin-bottom: 10px;
}
.carttonShare a{
	color:#fff;
}
div#wrapper-footer {
    padding-top: 20px;
    background: #eaeaea;
}
.mobile-share-option-hide{
	display:none;
}
#mobile-sticky-header{
	background:#fff;
}
.search-form{
    background: #ddd;
    border-radius: 3px;
    padding: 10px;
    position: absolute;
    z-index: 9999;
    width: 250px;
    display: inline-block;
}
.search-site{
		position:relative;
}
#sidebar{
    will-change: min-height;
}

.sidebar-inner-content{
    transform: translate(0, 0); /* For browsers don't support translate3d. */
    transform: translate3d(0, 0, 0);
    will-change: position, transform;
}
.next-story{
	text-align: center;
    display: block;
    margin-bottom: 40px;
    margin-top: 40px;
}
.next-story span{
background: #aa2308;
    color: #fff;
    font-weight: 600;
    padding: 5px 15px;
    position: absolute;
    display: inline-block;
    margin-top: -38px;
    margin-left: -40px;
    font-size: 14px;
    border: 6px double;
    border-radius: 50px;
}
.page-item.active .page-link {
    color: #fff;
    background-color: #aa2308;
    border-color: #ff6d2c;
}
.page-link {
    color: #aa2308;
}
.featured-pic{
	position:relative;
}
.featured-pic img{width:100%;}
.post-publish-date{
	position: absolute;
    top: 0;
    background: #aa2308;
    color: #fff!important;
    padding: 5px 15px;	
}
#content div.sharedaddy, #main div.sharedaddy, div.sharedaddy {
    clear: both;
    margin-bottom: 20px;
    display: block;
    text-align: left;
}
.sd-content ul li a.sd-button:before {
    font: normal 28px/1 social-logos!important;
}
.w-100 {
    width: 100%!important;
    border: 1px solid #e4e4e4;
    box-shadow: 1px 1px 2px #efefef;
    overflow: hidden;
}
.author-name a{
    color: #aa2308;
    text-decoration: none;
    font-size: 18px;
}
.author-name a:hover{
    color: #aa2308;
}
article {
    display: block;
    border-bottom: 1px solid #ffd6bf;
    margin-bottom: 10px;
}
.thumb{
	height: 170px;
    object-fit: cover;
}

.magazine-section{
	background: #f7f8fc;
    border: 1px solid #ececec;
    border-left: 0;
    border-right: 0;
    padding-top: 10px;
	padding-bottom: 20px;
}

.magazine-section  .heading2 {
    font-size: 25px;
    line-height: 28px;
    margin: 5px 0 20px 0;
}

.fa-icon{
    background: #aa2308;
    color: #fff;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px!important;
    border-radius: 50%;
    margin-right: 10px;
}

.magazine-section  .heading2 span{
    background: #f7f8fc;
}

.magazine-book{
    background: #fff;
    border-radius: 6px 6px;
    border: 1px solid #e6e6e6;
	overflow:hidden;
}
.magazine-cover{
	object-fit: cover;
}
.magazine-book-title a{
    line-height: 20px!important;
    display: block;
    font-size: 16px;
}

.magazine-title {
    background: #aa2308;
    text-align: center;
    padding: 10px;
    min-height: 68px;
}

.magazine-title,.magazine-title:hover {
	color:#fff;
}

a.more-archive{
	font-size: 12px;
    color: #fff;
    padding: 0;
    background: #aa2308;
    padding: 3px 10px;
    border: 4px double;
}
.magazine-book h4{
    background: #aa2308;
    text-align: center;
    padding: 10px;
    min-height: 68px;
	color:#fff!important;
	font-size:16px;
	margin: 0;
}

.magazine-book h4 a,
.magazine-book h4 a:hover{
    color:#fff;
}

.bullet {
    color: #aa2308;
    font-size: 14px!important;
}
.post-categories{
	padding: 0px;
    margin: 0;
    list-style: none;
    display: inline-block;
}
.post-categories a{
	font-size:14px;
}
.btn-primary {
    color: #fff;
    background-color: #ff7302;
    border-color: #da6506;
}
.btn-primary:hove {
    background-color: #ff7302;
    border-color: #da6506;
}
.mobile_menu {
	margin:0;
	padding:0px;
}
.mobile_menu li{
	display:block;
	text-align:center;
	padding:0px;
	margin:0px;
}

.blogs {
    padding: 10px;
    background: #e4f9ff;
    border: 1px solid #5bc0de;
}
.blogs .heading2 span {
    background: #e4f9ff;
}
#newsticker-demo { 
	width:310px; 
	background:#EAF4F5; 
	padding:5px 5px 0; 
	font-family:Verdana,Arial,Sans-Serif;
	font-size:12px;
	margin:20px auto;
}

#newsticker-demo a { text-decoration:none; }
#newsticker-demo img { border: 2px solid #FFFFFF; }

#newsticker-demo .title {
	text-align:center;
	font-size:14px;
	font-weight:bold;
	padding:5px;
}

.newsticker-jcarousellite { width:300px; }
.newsticker-jcarousellite ul li{ list-style:none; display:block; padding-bottom:1px; margin-bottom:5px; }
.newsticker-jcarousellite .thumbnail { float:left; width:110px; }
.newsticker-jcarousellite .info { float:right; width:190px; }
.newsticker-jcarousellite .info span.cat { display: block; font-size:10px; color:#808080; }

.clear { clear: both; }

.mobile_menu li{float:none;}
.mobile_menu .menu-item a {
    font-weight: 700;
    font-size: 16px;
    transition: .3s color;
    color: #aa2308!important;
    border: 1px solid;
    text-transform: uppercase;
}