/********style mac*******/
/********************************************header ***********************/

.form-control{height:30px;border:-1px solid #000;width:100%;border-radius:0px;}
 .header-center-logo{background:#fff; margin-top:5px; margin-bottom:5px;}
 .main-header{ background:#ffffff; margin-top:5px; margin-bottom:10px; border-bottom: 2px solid red;border-top: 1px solid #ECECEC;}

  /***********mac-logo***********/
.mac-logo .banner-top img{height:80px;}
.mac-logo .site-logo img{height:80px;width:190px;}
.nav-header{
   border-bottom: 0px solid lightgray;
    -webkit-box-shadow: 0 1px 1px 1px rgb(0 0 0 / 20%);
    box-shadow: 0 1px 1px 1px rgb(0 0 0 / 20%);
    background: #fff;
    width: 100%;
    z-index: 5;
	margin-bottom:5px;
	
}
.nav-header.fixed-menu {
	border-bottom: 0px solid lightgray;
    width: 100%;
    position: fixed;
	top:0px;
     -webkit-box-shadow: 0 1px 1px 1px rgb(0 0 0 / 20%);
    box-shadow: 0 1px 1px 1px rgb(0 0 0 / 20%);
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
    background: #fff;
    z-index: 20;
}

 /* ----------------------------navbar style -----------------------*/
.navbar-light .navbar-nav .open>.nav-link,.navbar-light .navbar-nav .active>.nav-link,.navbar-light 
.navbar-nav .nav-link.open,.navbar-light .navbar-nav 
.nav-link.active{
padding-top:12px !important;
padding-bottom:15px !important;
padding-left:15px !important;
padding-right:15px !important;
margin:0 5px !important;
background:red !important;
color:#fff!important;
text-align:center;
-moz-transition:all .5s ease;-o-transition:all .5s ease;
-webkit-transition:all .5s ease;
}
.navbar-light .navbar-nav .nav-link{
	color:#000 !important;
	padding-top:10px !important;
	padding-bottom:10px !important;
	padding-left:5px !important;
	padding-right:5px !important;
	margin:0 5px !important;
	-moz-transition:all .5s ease;-o-transition:all .5s ease;
	-webkit-transition:all .5s ease;-ms-transition:all .5s ease;
	transition:all .5s ease;position:relative !important;
}
.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover{
background:#000 !important;
color:#fff !important;
padding-top:12px !important;
padding-bottom:15px !important;
padding-left:20px !important;
padding-right:20px !important;
margin:0 20px;position:relative
}

/**************************************************/
/** -------------------- Pagination --------*/
.pagination {
	overflow: hidden;
	margin-bottom: 25px;
}
.pagination a,
.pagination span.extend,
.pagination span.current {
	float: left;
	margin-right: 3px;
	color: #777;
	padding: 6px 10px 3px;
}
.pagination a:hover {
	color: #000;
}
.pagination span.current {
	color: #FFF;
	background-color: #F88C00;
	padding: 4px 10px 6px;
}
.pagination .pages {
	float: right;
	display: block;
	font-size: 85%;
	padding: 7px 0px 2px;
}
/** -------------------- end Pagination --------*/









/*------------------------------------------------------------------
    Gallery
-------------------------------------------------------------------*/

.gallery-box{
}

.box-gallery{
    text-align: center;
    box-shadow: 0 0 5px #7e7d7d;
    position: relative;
	margin-bottom: 30px;
}
.box-gallery img{
    width: 100%;

}
.box-gallery .box-content{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.5s ease 0s;
}
.box-gallery:hover .box-content{
    background-color: rgba(255, 242, 242, 0.8);
}
.box-gallery .box-content:before,
.box-gallery .box-content:after{
    content: "";
    width: 50px;
    height: 50px;
    position: absolute;
    opacity: 0;
    transform: scale(1.5);
    transition: all 0.6s ease 0.3s;
}
.box-gallery .box-content:before{
    border-left: 2px solid #00cb86;
    border-top: 2px solid #00cb86;
    top: 19px;
    left: 19px;
}
.box-gallery .box-content:after{
    border-bottom: 2px solid #00cb86;
    border-right: 2px solid #00cb86;
    bottom: 19px;
    right: 19px;
}
.box-gallery:hover .box-content:before,
.box-gallery:hover .box-content:after{
    opacity: 1;
    transform: scale(1);
}
.box-gallery .title{
    font-size: 22px;
    color: #333333;
    margin: 0;
    position: relative;
    top: 0;
    opacity: 0;
    transition: all 1s ease 0.01s;
}
.box-gallery:hover .title{
    top: 32%;
    opacity: 1;
    transition: all 0.5s cubic-bezier(1, -0.53, 0.405, 1.425) 0.01s;
	overflow:hidden;
}
.box-gallery .title:after{
    content: "";
    width: 0;
    height: 2px;
    background: #00cb86;
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    margin: 0 auto;
    transition: all 1s ease 0s;
}
.box-gallery:hover .title:after{
    width: 80%;
    transition: all 1s ease 0.8s;
}
.box-gallery .icon{
    width: 100%;
    list-style: none;
    padding: 0;
    margin: 0 auto;
    position: absolute;
    bottom: 0;
    opacity: 0;
    transition-duration: 0.6s;
    transition-timing-function: cubic-bezier(1, -0.53, 0.405, 1.425);
    transition-delay: 0.1s;
}
.box-gallery:hover .icon{
    bottom: 32%;
    opacity: 1;
}
.box-gallery .icon li{
    display: inline-block;
}
.box-gallery .icon li a{
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    font-size: 18px;
    color: #000;
    border: 2px solid #12557f;
    margin-right: 5px;
    transition: all 0.3s ease-in-out 0s;
}
.box-gallery .icon li a:hover{
    background: #00cb86;
    color: #fff;
}
@media only screen and (max-width:990px){
    .box-gallery{ margin-bottom: 30px; }
}

/* ---------------- card-doctor ----------------------------------------------------*/
.card-doctor {
  display: block;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(154, 159, 151, 0.2);
  overflow: hidden;
}

.card-doctor .text-xl {
  font-weight: 500;
}

.card-doctor .header {
  position: relative;
  width: 100%;
  height: 150px;
  overflow: hidden;
}

.card-doctor .header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(52, 53, 49, 0.36);
  opacity: 0;
  transition: opacity .2s linear;
}

.card-doctor:hover .header::before {
  opacity: 1;
}

.card-doctor .header .meta {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100px;
  visibility: hidden;
  opacity: 0;
  transition: all .2s ease;
}

.card-doctor:hover .header .meta {
  bottom: 15px;
  visibility: visible;
  opacity: 1;
}

.card-doctor .header .meta a {
  display: inline-block;
  margin: 3px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  text-align: center;
  background-color: #fff;
  color: #6E807A;
  box-shadow: 0 4px 8px rgba(154, 159, 151, 0.6);
  transition: all .2s ease;
}

.card-doctor .header .meta a:hover {
  text-decoration: none;
  background-color: #6E807A;
  color: #fff;
}

.card-doctor .header img {
  width: 100%;
}

.card-doctor .body {
  padding: 15px 20px;
}
.section-doctor .slick-prev,
.section-doctor .slick-next {top: -26px;width: 28px;height: 28px;z-index: 1;transition: .5s;color: #ffffff;background: #dc3545;border-radius: 4px;}
.section-doctor .slick-prev {right: calc(100% - 63px);}
.section-doctor .slick-next {left: 2px;}
.section-doctor .slick-prev:hover,
.section-doctor .slick-prev:focus,
.section-doctor .slick-next:hover,
.section-doctor .slick-next:focus {color: #ffffff;background: #FF6F61;}
.section-doctor .slick-prev::before,
.section-doctor .slick-next::before {font-family: inherit;font-size: 18px;font-weight: 900;color: #ffffff;}
.section-doctor .slick-prev::before {content: "<";}
.section-doctor .slick-next::before {content: ">";}
/* ---------------- end card-doctor ----------------------------------------------------*/

/* ---------------- card-service ----------------------------------------------------*/
.page-section {
  position: relative;
  padding-top: 80px;
  padding-bottom: 80px;
  overflow: hidden;
}
.custom-img-1 {
  width: auto;
  max-width: 390px;
}

.custom-index {
  z-index: 11;
}
.card-service {
  display: inline-flex;
    padding: 20px;
  margin: 0 auto;
  width: 100%;
  flex-direction: row;
   align-items: center;
  line-height: normal;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(154, 159, 151, 0.2);
  overflow:hidden;
}

.card-service p {
  margin-top: 10px;
  margin-left: 32px;
}
.card-service .title a{
font-size: 16px;
  padding-right: 10px;
 
}
.circle-shape {
  flex-shrink: 0;
  padding: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  text-align: center;
  font-size: 32px;
}
.card-service img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
}

/* ---------------- end card-service ----------------------------------------------------*/
/* ------------------------ card-blog style  -------*/
.card-blog {
  position: relative;
  display: block;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 4px;
  border: 1px solid #E5E5E5;
  overflow: hidden;
}

.card-blog .header {
  width: 100%;
  height: 180px;
  background-color: #9A9F97;
  overflow: hidden;
}

.card-blog .header .post-thumb {
  position: relative;
  overflow: hidden;
}

.card-blog .header .post-thumb img {
  width: 100%;
  transition: transform .2s linear;
}

.card-blog .header .post-thumb:hover img {
  transform: scale(1.2);
}

.card-blog .body {
  padding: 15px 20px;
}

.card-blog .post-category {
  position: absolute;top: 15px;left: 20px;z-index: 9;
}

.card-blog .post-category a {
  display: inline-block;padding: 4px 8px;font-size: 12px;background-color: #4E5AFE;color: #fff;border-radius: 40px;
}

.card-blog .post-category a:hover {
  text-decoration: none;
}

.card-blog .post-title,
.card-blog .post-title a {
  color: #343531;
}

.card-blog .post-title:hover,
.card-blog .post-title a:hover {
  text-decoration: none;
  color: #07be94;
}

.card-blog .site-info {
  margin-top: 12px;
  font-size: 12px;
  color: #6D7170;
}

.card-blog .avatar-img {
  width: 28px;
  height: 28px;
}
.avatar {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
}

.avatar-img {
  margin-right: 6px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  overflow: hidden;
}

.avatar-img img {
  width: 100%;
  height: 100%;
}
/***************************/


/* ------------------------ start style slick slider -------*/
.slick-prev:before {content: '‹';}
.slick-next:before {content: '›';}
.slick-next:before,
.slick-prev:before {font-family: inherit;color: #000;font-size: 30px;    
}
/* ------------------------ end style slick slider -------*/

.post-slick-slider .cn-img {
    position: relative;
    overflow: hidden;
}

.post-slick-slider.cn-img img {
    width: 100%;
}

.post-slick-slider.cn-img:hover img {
    filter: blur(3px);
    -webkit-filter: blur(3px);
}

.post-slick-slider .cn-title {
    position: absolute;
    top: 0; 
    right: 0;
    bottom: 0; 
    left: 0;
    padding: 15px 10px 15px 20px;
    background-image: linear-gradient(rgba(0, 0, 0, .0), rgba(0, 0, 0, .3), rgba(0, 0, 0, .9));
    display: flex;
    align-items: flex-end;
}

.post-slick-slider .cn-title a {
    display: block;
    width: 100%;
    color: #ffffff;
    font-size: 18px;
    font-weight: 400;
    transition: .3s;
}

.post-slick-slider .cn-title a:hover {
    color: #FF6F61;
}
.post-slick-slider .slick-prev,
.post-slick-slider .slick-next {
    top: -26px;
    width: 28px;
    height: 28px;
    z-index: 1;
    transition: .5s;
    color: #ffffff;
    background: #0c80ea;
    border-radius: 4px;
}

.post-slick-slider .slick-prev {
    right: calc(100% - 63px);
}

.post-slick-slider .slick-next {
    left: 2px;
}

.post-slick-slider .slick-prev:hover,
.post-slick-slider .slick-prev:focus,
.post-slick-slider .slick-next:hover,
.post-slick-slider .slick-next:focus {
    color: #ffffff;
    background: #FF6F61;
}

.post-slick-slider .slick-prev::before,
.post-slick-slider .slick-next::before {
    font-family: inherit;
    font-size: 18px;
    font-weight: 900;
    color: #ffffff;
}



/**********************************/
/********** Top News CSS **********/
/**********************************/
.top-news {
    position: relative;
    width: 100%;
}

.top-news .tn-img {
    position: relative;
    overflow: hidden;
}

.top-news .tn-img img {
    width: 100%;
}

.top-news .tn-img:hover img {
    filter: blur(3px);
    -webkit-filter: blur(3px);
}

.top-news .tn-title {
    position: absolute;
    top: 0; 
    right: 0;
    bottom: 0; 
    left: 0;
    padding: 15px 10px 15px 20px;
    background-image: linear-gradient(rgba(0, 0, 0, .0), rgba(0, 0, 0, .3), rgba(0, 0, 0, .9));
    display: flex;
    align-items: flex-end;
}

.top-news .tn-title a {
    display: block;
    width: 100%;
    color: #ffffff;
    font-size: 18px;
    font-weight: 400;
    transition: .3s;
}

.top-news .tn-left .tn-title a {
    font-size: 30px;
    font-weight: 600;
}

.top-news .tn-title a:hover {
    color: #FF6F61;
}

.top-news .tn-left {
    margin-bottom: 30px;
}

.top-news .tn-right {
    margin-bottom: 60px;
    padding: 0 30px;
}

.top-news .tn-right .col-md-6 {
    padding: 0;
}

.top-news .slick-prev,
.top-news .slick-next {
    width: 28px;
    height: 28px;
    z-index: 1;
    transition: .5s;
    color: #ffffff;
    background: #000000;
    border-radius: 4px;
}
[dir='rtl'].top-news .slick-prev {
   
    right: 5px;
    left: auto;
}
[dir='rtl'].top-news .slick-next {
       right: auto;
    left: 5px;
}

.top-news .slick-prev:hover,
.top-news .slick-prev:focus,
.top-news .slick-next:hover,
.top-news .slick-next:focus {
    color: #ffffff;
    background: #FF6F61;
}

.top-news .slick-prev::before,
.top-news .slick-next::before {
    font-family: "Font Awesome 5 Free";
    font-size: 18px;
    font-weight: 900;
    color: #ffffff;
}

.top-news .slick-prev::before {
    content: "<";
}

.top-news .slick-next::before {
    content: ">";
}

/* -------------------breaking news style------------------- */
.ticker-container {
height: 40px; width: 100%;
text-align:center;position: relative;overflow: hidden;background-color: rgba(0,0,0,1);color: white;font-size: 1.1em;
margin-bottom: 10px; margin-top: 10px;
}
.ticker-container .ticker-caption {background-color: #EC0B43;display: table;position: absolute;color: white;font-size: 0.8em;z-index: 1;height: 100%;width: 100px;background:red;}
.ticker-container .ticker-caption p {height: inherit;width: inherit;display: table-cell;vertical-align: middle;font-weight: bold;}
.ticker-container ul {list-style: none;padding: 0px;height: auto;margin-right: 0px;}
.ticker-container ul div {overflow: hidden;position: absolute;z-index: 1;display: inline;min-width: 100%;right: 0;height: auto;transition: 0.25s ease-in-out;}
.ticker-container ul div.ticker-active {top: 5px;}
.ticker-container ul div.not-active {top: 30px;}
.ticker-container ul div.remove {top: 0px;}
.ticker-container ul div li {padding: 5px;}
.ticker-container ul div li a {color: #fff;  text-decoration: none;}
@media  (min-width: 375px) {
	.ticker-container {height: 40px;text-align: right;}
	.ticker-container .ticker-caption {height: 100%;width: 100px;background:red;}
	.ticker-container .ticker-caption p {text-align: center;padding-right: 10px;}
	.ticker-container ul {margin-right: 106px;height: 100%;}
	.ticker-container ul div {height: 100%;right: 106px;}
	.ticker-container ul div.ticker-active {top: 0px;}
	.ticker-container ul div.not-active {top: 30px;}
	.ticker-container ul div.remove {top: -30px;}
}
@media (min-width: 768px) {
  .ticker-container {margin-bottom: 10px;}
 }
 
 /* -------------------breaking news style------------------- */
 /* meta-post*/
.post-meta{
	padding-top:5px;
	color: #777;
    font-size: 12px;
}
.post-meta ul.post-info li {
	display: inline-block;
	margin-right: 0px;
}
.post-meta  a {
	font-size:10px!important;
}
/* related-post  */
.related-post{
margin-bottom:10px;	
}
.related-post .related-content{
	 
 }
 .related-post .related-image{
	 
 }
  .related-post .related-title{
	padding: 5px;
 }
  .related-post .related-title a{
	 font-family:inherit;
	 font-size:inherit;
	 color:#024dbc;
	 overflow:hidden;
 }
  .related-post .related-title a:hover{
	  color:#da0505;
 }
 
 /* ------------------------mac-search popup style-------*/
.openBtn {

  cursor: pointer;
}

.mac-search .overlay {
  height: 100%;
  width: 100%;
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0, 0.9);
}

.mac-search .overlay-content {
  position: relative;
  top: 46%;
  width: 80%;
  text-align: center;
  margin-top: 30px;
  margin: auto;
}

.mac-search .overlay .closebtn {
  position: absolute;
  top: 20px;
  right: 45px;
  font-size: 60px;
  cursor: pointer;
  color: white;
}

.mac-search .overlay .closebtn:hover {
  color: #ccc;
}
.mac-search .overlay input[type=text] {
  padding: 15px;
  font-size: 17px;
  border: none;
  float: right;
  width: 100%;
  background: white;
}

.mac-search .overlay input[type=text]:hover {
  background: #f1f1f1;
}

.mac-search .overlay button {
  float: right;
  width: 20%;
  padding: 15px;
  background: #ddd;
  font-size: 17px;
  border: none;
  cursor: pointer;
}

.mac-search .overlay button:hover {
  background: #bbb;
}
/* ------------------------ end mac-search popup style-------*/
/* social-share*/
.social-share a{
	display: inline-block;
	height: 35px;
	width: 35px;
	background-color: #ffffff;
	border-radius: 50%;
	margin:0 3px;
	text-align: center;
	transition: all 0.3s ease;
}
.social-share a:hover{
	transform: translateY(5px);
}
.share-tags.social-share .fa{line-height: 35px;	}
.share-tags ul.post-share {text-align: right;}
.share-tags ul.post-tags li,
.share-tags ul.post-share li {display: inline-block;}
.share-tags ul.post-tags li:first-child i,
.share-tags ul.post-share li:first-child i {color: #f48840;margin-right: 5px;}
.share-tags ul.post-tags li,
.share-tags ul.post-share li {color: #aaa;}
.share-tags ul.post-tags li a,
.share-tags ul.post-share li a {
	font-size: 14px;
	color: #aaa;
	font-weight: 400;
	transition: all .3s;
}
.share-tags ul.post-tags li a:hover,
.share-tags ul.post-share li a:hover {
	color: #f48840;
}

/* ----------  socail networks style    ----------------*/
.social-links a{
	display: inline-block;
	height: 35px;
	width: 35px;
	background-color: #ffffff;
	border-radius: 50%;
	margin:0 3px;
	text-align: center;
	transition: all 0.3s ease;
}
.social-links a:hover{
	transform: translateY(5px);
}
.social-links .fa{
	line-height: 35px;
	
}
/****************************/

.features .feat-box{	
	display: block;
	padding:0;
	position: relative;
	text-align:justify;
}
.featured-title {
	position: absolute;
	width: 100%;
	bottom: 10%;
	top: 10%;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
	line-height: 20px;
	padding: 20px;
	color: #FFF !important;
	-webkit-transition: all .3s ease-in-out;
	   -moz-transition: all .3s ease-in-out;
		-ms-transition: all .3s ease-in-out;
		 -o-transition: all .3s ease-in-out;
			transition: all .3s ease-in-out;
			
	
}
.featured-title span.mac-date{
	font-size: 9pt;
}
.featured-title h2 a {
     overflow:hidden;
	font-size: 20px!important;
	line-height: 26px;
	color: #FFF !important;
	}
@media (min-width:992px){
	.features .feat-box:first-of-type{
		width: 50%;} 
.features .feat-box:nth-child(2){
		width: 50%;
	}	
.features .feat-box{
	width: 33.3333%;
	}	
.features .feat-box .image-feat{
	opacity:1; height:220px; width:100%; background-size:cover;
	}
}
@media (max-width:600px){
	.features .feat-box:first-of-type{
		width: 100%;}
	.features .feat-box:not(:first-of-type){
		width: 50%;}
	.features .feat-box div:only-of-type{
		opacity:1; height:220px; width:100%; background-size:cover;
	}
	
	.featured-title {
	position: absolute;
	width: 100%;
	bottom: 5%;
	top: 5%;
	overflow:hidden;
	font-size: 14px!important;
	color: #FFF !important;
	}
	.featured-title h2 a {
	overflow:hidden;
	font-size: 15px!important;
	color: #FFF !important;
	}
	
.features .feat-box .image-feat{
		opacity:1; height:150px; width:100%; background-size:cover;
	}
}
	.features-post.feat-box{	
	display: block;
	overflow:hidden;
	border-bottom: 1px solid #DEDEDE;
	    margin-bottom: 10px;
}

@media (min-width:720px){
	.features-post .feat-box:first-of-type{
		width: 100%;
		    margin-bottom: 10px;
		border-bottom: 1px solid #DEDEDE;
		} 
.features-post .feat-box:not(:first-of-type){width: 50%; border-bottom: 1px solid #DEDEDE;     margin-bottom: 10px;}
.features-post .feat-box p:not(:first-of-type){
	display:none;
}	
}
@media (max-width:600px){
	.features-post .feat-box:first-of-type{width: 100%;}
	.features-post .feat-box:not(:first-of-type){width: 50%;}	
}

/******************************/
/* ----------------style overlay post */
.section .item-inner{
	position: relative;
	background-color: #222222;
}
.section .item-inner .img-box{
	position: relative;
}
.section .item-inner img{
	width: 100%;
	display: block;
	position: absolute;
	left:0;
	top:0;
	transition: all 0.3s linear;
	z-index: 10;
}
.section .info-box{
	position: absolute;
	z-index: 50;
	left:0;
	top:0;
	height: 100%;
	width: 100%;
	padding: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	opacity:1;
	transition: all 1.5s ease-in-out;
}
.section .item-inner:hover .info-box{
	opacity: 1;
}
.section .info-box h1{
	font-size: 22px;
	color:#ffffff;
	margin:0 0 15px;
}
.section .info-box p{
	font-size: 14px;
	line-height: 20px;
	color:#eeeeee;
	margin:0 0 20px;
}
.section .info-box .social-links a{
	display: inline-block;
	height: 35px;
	width: 35px;
	background-color: #ffffff;
	border-radius: 50%;
	margin:0 3px;
	text-align: center;
	transition: all 0.3s ease;
}
.section .info-box .social-links a:hover{transform: translateY(5px);}
.section .info-box .social-links .fa{line-height: 35px;color:#222222;}

/************************/
.post{padding:5px;}
.frist-news{margin-bottom:5px;overflow: hidden;	}
.other-news{margin-bottom:8px;overflow: hidden;}
.postimage{width: 100%;}

/************************************** style single-content****/
.single-post-content{width: 100%;padding-top:10px;	}
.single-post-content.single-posts{	margin-top: 20px;margin-bottom: 20px;}
.single-posts .posts-thumb img {width: 100%;overflow: hidden;}
.Breadcrumb{background-color: #ececec;padding: 5px;}
.bg-tag-div{background-color: #29171712;}



/* ------------------------------- style for wedget ------------------------ */
.widget-row{margin-bottom: 5px;	}
#wedget-col{padding-left:0 !important;}
.wedget-title{padding-top: 5px;	}
.wedget-title a{font-size:12px;overflow: hidden;}
.meta-post{font-size:12px;color:#777;}
.wedget-title{font-size: 14px!important;}
.wedget-post-thumbnail {float: right;margin-left: 5px;}
.widget {margin-bottom: 10px;}
.wedget-list{padding:3px 5px 3px 0;border-bottom: 1px solid rgba(0,0,0,.125);	overflow: overlay;		}
.wedget-meta{font-size:12px;color:#777;}
/* News in Picture Widget */
.news-pic-post-thumbnail {display: inline;padding-top:5px;width: 50%;margin: 0px;}
.pic-paddingtop{padding-top:5px;}
/* ---------------News in Picture Widget------------------ */

.widget.news-pic .post-thumbnail {padding: 1px;width: 33.3333333%;max-width: 160px;margin: 0px;}
.widget.news-pic .post-thumbnail img.attachment-mac-small {max-width: 100% !important;}


/* -------------------------------end  style for wedget ------------------------ */



