/* InnoPortal v1.4.x Main Style */
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Arabic:wght@100;200;300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Arabic:wght@100..900&display=swap');

:root {
	--mj-accent-color: #33433b;
	--mj-accent-darker-color: #2a3832;
	--bs-primary: #2b3c34;
	--bs-secondary: #fdd9a3;
	--bs-success: #a6bd7f;
	--bs-info: #d9ebb7;
	--bs-warning: #b3bd9a;
	--bs-danger: #ff5000;
	--bs-light: #f5fcdc;
	--bs-dark: #444a2f;
	--mj-border-radius: 1.6rem;
	--bs-border-color: #cbced1;
}
.custom-max-width{
	max-width: 38rem;
	margin: 0 auto;
}
.rounded-custom{
	border-radius: var(--mj-border-radius);
}
::selection {
  background-color: rgba(60, 74, 60, 0.8);
  color: #fff;
}
.bg-graphic{
	background-image: url(../images/header-graphics.png);
	background-repeat: no-repeat;
	background-position: right center;
	background-size: cover;
}
.top-hero{

}
.btn > i {
	vertical-align: middle;
	margin-right: 0.2rem;
}
.btn-primary{
	--bs-btn-color: #fff;
    --bs-btn-bg: #1f2c26;
    --bs-btn-border-color: #1f2c26;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #0c100d;
    --bs-btn-hover-border-color: #0c100d;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #0c100d;
    --bs-btn-active-border-color: #0c100d;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #445c4b;
    --bs-btn-disabled-border-color: #445c4b;
}
.btn-secondary{
	--bs-btn-color: #fff;
    --bs-btn-bg: #ab9f5c;
    --bs-btn-border-color: #ab9f5c;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #948842;
    --bs-btn-hover-border-color: #948842;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #948842;
    --bs-btn-active-border-color: #948842;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #85816b;
    --bs-btn-disabled-border-color: #85816b;
}
.form-check-input:checked {
    background-color: #6d996d;
    border-color: #6d996d;
}
.form-check-input:focus{
	box-shadow: 0 0 0 .25rem rgb(60 74 60 / 15%);
}
body {
	font-family: "Noto Sans Arabic", sans-serif;
	background: #ced9b1;
	background: #fbfff1;
	background: #fff;
	
}
body.main-body{
	padding-top: 74px;
}
.force-font,.force-font * {
	font-family: "Noto Sans Arabic", sans-serif !important;
}
header{
	position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 99999;
}
.bg-cover{
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.slider-sm{
	margin-left: -0.5rem;
	margin-right: -0.5rem;
}
.slider-sm .slick-slide{
	margin-left: 0.5rem;
	margin-right: 0.5rem;
}

.slider-sm .slick-slide img{
	width: 100%;
	min-height: 12rem;
    object-fit: cover;
	border-radius: var(--mj-border-radius);
}
.slider-sm .slick-dots {
	text-align: center;
    list-style: none;
    padding: 0;
    margin: 0;
}
.slider-sm .slick-dots li {
    display: inline-block;
    margin: 0 0.2rem;
}
.slider-sm .slick-dots li button {
    width: 7px;
    height: 7px;
    padding: 0;
    border-radius: 0.5rem;
    background-color: #33433b;
    opacity: 0.4;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 0;
    color: rgba(255, 255, 255, 0);
    transition: all 0.3s ease-in-out;
}
.slider-sm .slick-dots li.slick-active button {
    opacity: 1;
    width: 20px;
}
.row {
    --bs-gutter-x: 3.2rem;
}
.form-control:focus{
    color: var(--bs-body-color);
    background-color: var(--bs-body-bg);
    border-color: #809980;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgb(60 74 60 / 15%);
}
.dropdown-menu {
    --bs-dropdown-link-active-bg: #465f46;
}
.card.main-card {
	min-height: 24rem;
    background-position: center;
    background-size: cover;
    border-radius: var(--mj-border-radius);
    border: 0;
	transition: filter 0.3s ease-in-out;
	position: relative;
}
.card.main-card .card-info{
	padding-top: 5rem;
	background: linear-gradient(to top, rgba(255,255,255,1), rgba(255,255,255,0));
	text-align: right;
	border-bottom-left-radius: var(--mj-border-radius);
	border-bottom-right-radius: var(--mj-border-radius);
	/*backdrop-filter: blur(2px);*/
}
.card.main-card .card-info h5{
	font-weight: 700;
	color: #455b45;
	margin: 0;
	padding: 1.5rem;
	transition: padding 0.3s ease-in-out;
}
.card.main-card .card-info h5 i{
	margin-left: 0.5rem;
	color: #344434;
}
.card-container{

}
.card-container .items-list{
	background-color: #6b7c74;
	border-radius: var(--mj-border-radius);
	padding: 4.5rem 1.4rem 0.8rem 1.4rem;
    margin-bottom: 1rem;
    margin-top: -3rem;
}
.card-container .items-list h6{
	color: #FFF;
	font-weight: 700;
	margin-bottom: 0.5rem;
}
.card-container .items-list ul{
	color: #102010;
	padding-right: 1.4rem;
}
.card-container .items-list ul a{
	color: #102010;
	text-decoration: none;
	font-weight: 500;
	font-size: 1rem;
	transition: color 0.3s ease-in-out;
}
.card-container .items-list ul a:hover,
.card-container .items-list ul a:focus {
	color: #bfdabf;
}
.card-container .cat-list{
	margin-bottom: 1rem;
}
.card-container .cat-list a{
	border-radius: 1.6rem;
	display: block;
	padding: 0.8rem 1.4rem;
	color: #0D220D;
	text-decoration: none;
	font-weight: 700;
	font-size: 1rem;
	transition: background-color 0.3s ease-in-out;
	margin-bottom: 0.5rem;

}
.card-container .cat-list a::after{
	color: #536d53;
}
.card-container .cat-list a:nth-child(1){
	background-color: #aab9b2;
}
.card-container .cat-list a:nth-child(1):hover,
.card-container .cat-list a:nth-child(1):focus {
	background-color: #bac9c2;
}
.card-container .cat-list a:nth-child(2){
	background-color: #cad5d0;
}
.card-container .cat-list a:nth-child(2):hover,
.card-container .cat-list a:nth-child(2):focus {
	background-color: #d6e0dc;
}
.card-container .cat-list a:nth-child(3){
	background-color: #dfe7e3;
}
.card-container .cat-list a:nth-child(3):hover,
.card-container .cat-list a:nth-child(3):focus {
	background-color: #edf3f0;
}
.card-container.h-layout{
	display: flex;
	margin-bottom: 2rem;
	background-color: #dbe3df;
    border-radius: var(--mj-border-radius);
    padding: 1rem;
}
.card-container.h-layout .items-list {
    flex: 1;
    background-color: transparent;
    border-radius: var(--mj-border-radius);
    padding: 1.4rem 4.5rem 1.4rem 1.4rem;
	margin-bottom: 0;
    margin-right: -3rem;
	margin-top: 0;
}
.card-container.h-layout .card.main-card{
	height: 100%;
	min-width: 23rem;
}
.card-container.h-layout .cat-list{
	margin-bottom: 0;
}
.main-card-link:hover .card.main-card, 
.main-card-link:focus .card.main-card{
	filter: saturate(0.5) brightness(1.1);
}
.main-card-link:hover .card-info h5, 
.main-card-link:focus .card-info h5{
	padding: 2rem 1.5rem;
}
.arrow-link{
	position: relative;
}
.arrow-link::after {
    position: absolute;
    left: 1.4rem;
    top: 50%;
    content: "\f053";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-top: -0.8rem;
	transition: left 0.2s ease-in-out;
}
.arrow-link:hover::after,
.arrow-link:focus::after {
    left: 1.2rem;
}
.other-options-bar{
	background-color: var(--mj-accent-color);
    color: #fff;
}
.other-options-bar .form-control{
	--bs-border-width: 0;
	--bs-body-bg: #687c68;
	--bs-body-color: #fff;
}
ul.social-media{
	list-style: none;
	margin: 0;
	padding: 0;
}
ul.social-media li{
	display: inline-block;
}
ul.social-media li:last-child{
	margin-left: 0;
}
ul.social-media li a{
	display: flex;
    align-items: center;
	color: #ffffff;
	transition: color 0.3s ease-in-out;
}
ul.social-media li a:hover, ul.social-media li a:focus{
	opacity: 0.8;
}
ul.social-media li a i{
	font-size: 1.2rem;
}
footer ul.social-media{
	text-align: center;
}
footer ul.social-media li{
	margin: 0 0.5rem;
}
.navbar-brand img{
		height: 3rem;
}
.navbar-nav{
	--bs-nav-link-font-weight: 600;
}
nav.navbar{
	background-color: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(7px);
	border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.marquee-container {
	background-color: #a6bd7f;
}
p{
	font-size: 1rem;
}
.news_cat_box{
    overflow: hidden;
}
.news_cat_box p{
	margin-bottom: 0;
}
.news_cat_box > div{
	background: #E8E8E8;
	border-radius: var(--mj-border-radius);
	padding: 1.5rem;
}
.news_cat_box.list-w-img{
	
}
.news_cat_box.list-w-img .item-list{
	background-color: transparent;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
}
@media (max-width: 992px) {
	.news_cat_box.list-w-img .item-list {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 576px) {
	.news_cat_box.list-w-img .item-list {
		grid-template-columns: 1fr;
	}
}
.news_cat_box.list-w-img .item-list .article-in-cat{
	border: 1px solid #d6d6d6;
	border-radius: var(--mj-border-radius);
	padding: 0.5rem;
	margin-bottom: 0 !important;
}
.main-slider .slide{
	position: relative;
}
.main-slider .slide .container-fluid::before{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, #000 100%);
	z-index: 0;
}
.main-slider .slide .container-fluid{
	padding-top: 4rem;
	padding-bottom: 4rem;
}
.main-slider .slide > .container-fluid > .container{
	position: relative;
}
.main-slider .slide-content{
	min-height: 25rem;
}
.main-slider .slide h2{
	margin-bottom: 0.5rem;
}
.main-slider .slide h2 a{
	font-size: 1.6rem;
	font-weight: 600;
	color: #fbdc98;
}
.main-slider .slide p{
	color: #ffffff;
}
.main-slider .slick-dots{
	position: absolute;
	bottom: 1.8rem;
	left: 50%;
	transform: translateX(-50%);
	list-style: none;
	padding: 0;
	margin: 0;
}
.main-slider .slick-dots li{
	display: inline-block;
	margin: 0 0.2rem;
}
.main-slider .slick-dots li button{
	width: 7px;
	height: 7px;
	padding: 0;
	border-radius: 0.5rem;
	background-color: #ffffff;
	opacity: 0.4;
	border: none;
	outline: none;
	cursor: pointer;
	font-size: 0;
	color: rgba(255,255,255,0);
	transition: all 0.3s ease-in-out;
}
.main-slider .slick-dots li.slick-active button{
	opacity: 1;
	width: 20px;
}
footer{
	background-color: var(--mj-accent-color);
    color: #88a196;
}
.footer-bottom{
	background-color: var(--mj-accent-darker-color);
}
.footer-bottom a{
	color: #88a196;
	opacity: 0.7;
	transition: all 0.3s ease-in-out;
}
.footer-bottom a:hover, .footer-bottom a:focus{
	opacity: 0.6;
}
.footer-links{
	margin-bottom: 1.5rem;
}
.footer-links h6{
	color: #e1c69d;
	font-size: 1rem;
	font-weight: 700;
	margin-bottom: 1rem;
}
.footer-links ul{
	list-style: none;
	padding: 0;
	margin: 0;
}
.footer-links ul li{
	margin-bottom: 0.3rem;
}
.footer-links ul li a{
	color: #88a196;
	text-decoration: none;
	font-size: 0.9rem;
	transition: all 0.3s ease-in-out;
}
.footer-links ul li a:hover, .footer-links ul li a:focus{
	color: #b2c9be;
}
.cat-title-article a{
	background-color: #f7f7f7;
    border-radius: var(--mj-border-radius);
	padding: 0.5rem 1.5rem;
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #8b8b8b;
}

.article-box{
	border: 1px solid #d6d6d6;
	border-radius: var(--mj-border-radius);
	align-self: stretch;
}
.article-img-container{
	width: 30%;
}
.article-img-container img{
	object-fit: cover;
	height: 100%;
	width: 100%;
	border-radius: var(--mj-border-radius);
}
.article-info{
	width: 70%;
}
.article-meta{
	font-size: 0.9rem;
	color: #979797;
}
.top-article-title a{
	display: block;
	border-radius: var(--mj-border-radius);
	padding: 0.5rem 1rem;
	background-color: #efefef;
}
article.full-article{
	max-width: 45rem;
    margin: 1rem auto;
}
.article-content{

}
.article-content iframe,.article-content object,.article-content embed {
	width: 100%;
}
.article-content p, .article-content p span{
	font-family: "Noto Sans Arabic", sans-serif !important;
	font-size: 1.2rem !important;
}
.search-form{
	background-color: #f7f7f7;
}
.visitor-numbers{
	font-size: 0.8rem;
	padding: 1rem;
	border-radius: var(--mj-border-radius);
	background-color: rgba(255,255,255,0.04);
}
.visitor-numbers strong{
	font-weight: 600;
}
.accordion-item{
	border: 0;
}
/* old code \/ */
table {

}
hr {
	height: 1px;
	border: 1px dashed #e3ebc6;
	display: block;
	clear: right;
	border-top-color: #9eb165;
	margin: 15px;
}
.page {
	width: 100%;
	max-width: 960px;
	margin: 0 auto;
	background-color: #e3ebc6;

}
.page_content {
	padding-left: 0;
	padding-right: 0;
}
#header {
	height: 170px;
}
#main_con{
	padding-right: 8px;
}
#menu {

	color: #444a2f;
	margin-bottom: 0px;
}

.mrq-title{
        color: #8B0000;
        font-weight: 700;
}
.menu_box {
	color: #000000;
	margin-bottom: 1rem;
	border-radius: var(--mj-border-radius);
	border: 1px solid rgba(0, 0, 0, 0.2);
}
.menu_box.fullimg {

}
.menu_box.fullimg .menu_content{
	padding: 0;
}
.menu_box.fullimg .menu_content > div > br{
	display: none !important;
}
.menu_box.fullimg .menu_content > div > a{
	display: block;
}
.menu_box.fullimg .menu_content > div > a:hover,
.menu_box.fullimg .menu_content > div > a:focus{
	opacity: 0.8;
}
.menu_box.fullimg .menu_content > div > a >img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.page_title {
	text-align: center;
	background-color: #efefef;
	background-color: #f7f7f7;
	border-radius: var(--mj-border-radius);
}
.page_title a {
	text-decoration: none;
	color: #102010;
	
}
.page_title a:hover {
	color: #102010;
}

/* comments */
#comment_body {
	border-radius: var(--mj-border-radius);
	padding: 0;
}
.comment {
	border: 1px solid #92ab9f;
	border-radius: var(--mj-border-radius);
}
.comment_info {
	color: #1f2c26;
    font-weight: 600;
    background: #e1ede7;
	border-radius: var(--mj-border-radius);
}
.comment_text {
	color: #3e5048;
	padding: 6px;
}
.comment_text br:nth-child(3n + 3) { 
	display: none; 
}

/* end comments */

/* poll style */
.poll {
	display: block;
	margin: 0px 0px 10px 10px;
	clear: both;
}
.poll_info {
	float: right;
	margin: 5px;
}
.poll_question {
	color: #f14a00;
}
.poll_percent {
	color: #444a2f;
	font-size: 10px;
}
/* end poll style */
#pagenum {
	width: 100%;
	text-align: center;
	margin-bottom: 2rem;
}
#pagenum a{
	display: inline-block;
	padding: 5px 12px;
    background-color: #ededed;
    color: #5f5f5f;
	text-decoration: none;
	border-radius: var(--mj-border-radius);
	margin-right: 2px;
	transition: all 0.3s ease-in-out;
}
#pagenum a:hover, #pagenum a:focus{
	background-color: var(--mj-accent-color);
    color: #dff1b2;
}
#pagenum a[name="pages"]:hover{
	background-color: #ededed;
    color: #5f5f5f;
}
#pagenum a[href="#"]{
	background-color: var(--mj-accent-color);
	color: #fff;
}
.home_text {
	color: #353a1f;
	text-align: justify;
}
.right_c{
	border-left: 1px dashed #b3bd9a;
	padding-left: 10px;
}
.left_c{
	padding-right: 10px;
	padding-left: 10px;
	
}

#small_text {
	font-size: 10pt;
	display: inline;
	color: red;
	font-weight: normal;
	margin-right: 4px;
}
#small_b {
	font-size: 10px;
	display: inline;
	color: #4b542b;
}
.di{
	border-bottom: 1px dotted #9cce35;
	text-align: left;
	margin-top: 5px;
	margin-bottom: 8px;
	clear: both;
}

/* writer */
.writer_name {
	background: url(images/news_icon.gif) no-repeat right;
	color: #CC3300;
	padding-right: 15px;
	margin: 4px 0px 8px 0px;
}
.writer_name a{
	text-decoration: none;
}
.writer_name a:hover {
	color: #ff5000;
}
.writer_pic {
	border: 1px solid #b3bd9a;
	padding: 1px 1px 1px 1px;
	margin: 3px 2px 1px 2px;
}
.writer_info {
	color: #444a2f;
	font-size: 12px;
	padding-right: 7px;
	line-height: 16px;
}
/* end writer */
.main_article {
	background: #eaf1ce;
	background: #f0f3e6;
	border-radius: var(--mj-border-radius);
}
.main_article_more {
	padding:2px;
		border-top: 1px dotted #f5fcda;
	border-bottom: 1px dotted #b3bd9a;
	display: block;
}
.main_article_first {
	padding: 4px;
	border-left: 1px dashed #bfc7a6;
	}
.main_article_first div.main_article_title {
	text-align: center;
}
.main_article_title {
	text-align: right;
	color: #8B0000;
}
.adv1_left {
	color: #8B0000;
	
	font-size:11px; 
	margin-top: 4px;
	margin-left: 4px;
}
.adv1_left a {
	color: #8B0000;
	
	font-size:11px; 
	
}

.main_article_title a {
	color: #8B0000;
	text-decoration: none;
}

.main_article_title a:hover {
	color: #ff5000;
}
.main_article_link {
	text-align: left;
	margin-top: 4px;
	clear: both;
}
.main_article_info {
	color: #8B7547;
	height: 12px;
	line-height: 19px;
	margin-bottom: 2px;
}
/* start headlines */
.headline {
	padding: 6px;

	color: #464b24;
		background: #e9f1cc url(images/adv2.jpg) repeat-x top;
}
.headline h2 { padding: 4px 0px;  margin: 0px;  text-align: center;  color: #0002ca;    }
.headline h1 { padding: 4px 0px;  margin: 0px;  text-align: center;  color: #b90000;  margin-bottom: 6px;  }
.headline h1 a { color: #b90000; margin-bottom: 6px; }
.headline h1 a:hover { color: #ff5000; }
.headline_image { 
	width: 250px;
	width: calc(52% - 5px);
	height: 150px; 
	overflow: hidden; 
	position: relative; 
	display: block; 
	text-align: center;
	float: right;
	border: 1px solid #a0ad78;
	padding: 1px;
	
	background-color: #f4ffd0;
}
.headline_image a{
    display: inline-block;
    width: 100%;
}
.headline_image img {
	border: 0px;
	width: 100%;
}
.headline_text {
 	overflow: hidden; 
	height: 150px;
	float: left;
	width: 235px;
	width: calc(48% - 5px);
	font-size: 13px;
}
.headline_text a {
	color: #fd4600;
}
.headline_article {
	width: 100%;
	overflow:hidden;
	display: none;
	}
.headline_image div.image_caption { 
	position: absolute; 
	bottom: 0; 
	left: 0;
	width: 244px; 
	text-align: right;
	font-size: 12px; 
	color: #FFFFFF; 
	background-color: #1e1e1e;
	padding: 3px;
	z-index: 80;
	opacity: .60;               /* Standard style for transparency */
	-moz-opacity: .60;          /* Transparency for older Mozillas */
	filter: alpha(opacity=60);  /* Transparency for IE */
}
.headline_body { padding: 6px 2px 6px 6px;   text-align: justify;  }

.player {
	padding-top: 6px;
	padding-bottom: 6px; 
	margin: 6px 0px;
	border-top: 1px solid #b3bd9a;
}
.player ul {
	margin-top: 4px;
	margin-bottom: 6px;
	padding-bottom: 2px; 
}
.player ul li {display: inline;  margin-right: 5px;  float: left; }
.player ul li a {
  float: left;
	padding: 2px 6px;


}
.player ul li a:link, .player a:visited {
	color: #444a2f;
	background-color: #b3bd9a;
	text-decoration: none;
}
.player ul li a:hover {
	color: white;
	background-color: #9fb841;
	text-decoration: none;
}
.player ul li a.active, .player ul li a:visited.active {
	background-color: #b3bd9a;
	color: #FFFFFF;
	font-weight: bold;
}
/* end headlines */


.info {
	color: #74823d ;
}
#last_news {
	display: block;
}
.news_text {
	color: #8da857;
	padding-top: 7px;
	padding-bottom: 5px;
   	}
.news_text a {
	color: #444a2f;
	text-decoration: none;
	}
.news_text a:hover {
	color: #ff5000;
}
.news_title {

}
.news_title a {
	color: #41491b;
	text-decoration: none;
}
.news_title a:hover {
	color: #8eb600;
}
.cat-container {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1rem;
	margin-bottom: 2rem;
}

@media (max-width: 1200px) {
	.cat-container {
		grid-template-columns: repeat(3, 1fr);
	}
}
@media (max-width: 900px) {
	.cat-container {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 600px) {
	.cat-container {
		grid-template-columns: 1fr;
	}
}
.cat-container .news_title a{
	padding: 1rem;
	background-color: #f7f7f7;
	border-radius: 1rem;
	display: block;
	font-weight: 500;
	transition: all 0.3s ease-in-out;
}
.cat-container .news_title a:hover,
.cat-container .news_title a:focus{
	background-color: #ececec;
	color: #2c2f19;
}
.sub_news_title {
	color: #0002bb;
	clear: both;
	text-align: center;
	margin-bottom: 2px;
	}

.page_con {
	padding-left: 15px;
	text-align: justify;
	color: #2c2f19;
	}


.news_cat_title {
	text-align: right;
	border-style: solid;
	border: 0;
	font-weight: 700;
	margin-bottom: 0.8rem;
}
.news_cat_title img {
	margin-left: -3px;
	margin-right: -4px;
}
.news_cat_title a {
	display: block;
	color: #000;
	text-decoration: none;
}
.news_cat_title a:hover,
.news_cat_title a:focus {
	color: #000;
	opacity: 0.5;
}

/* article */
.article-in-cat:last-child {
	margin-bottom: 0 !important;
}
.note {
	color: #626e47;
	margin-bottom: 15px;
}
.article_pic {

	border-radius: 1.3rem;
}
.news_pic img{
	width: 100%;
}
.pic_info {
	font-size: 12px;
	color: #444a2f;
	display: block;
	padding: 1px 1px 1px 1px;
	background-color: #eff7d2;
	margin-top: 1px;
	border: 1px solid #d2ce9a;
}
.pic_comment {
	border: 1px solid #e3ebc6;
	padding: 1px 1px 1px 1px;
	margin: 3px 2px 1px 2px;
}
.article_info {
	background-image: url(images/info.gif);
	background-repeat: no-repeat;
	background-position: right;
	color: #515d2a;
	font-size: 12px;
	display: block;
	padding: 2px 13px 2px 3px;
	margin-bottom: 2px;
}
.article_info a {
	color: #648100;
	text-decoration: none;
}

/* end article */

/* quote */
.open_quote {
	float: left;
	width: 140px;
	background: url(images/open_quote.gif) no-repeat right;
}
.quote {
	float: left;  
	width: 140px;  
	text-align: justify;
	margin-right: 5px;
	margin-left: 5px;
	margin-bottom: 5px;
	margin-top: 5px;
	border: 1px dotted #b3bd9a;
	padding: 3px 3px 3px 3px;
	background-color: #f0f8d4;
}
.close_quote {
	float: left;
	width: 140px;
	background: url(images/close_quote.gif) no-repeat left;
}
/* end quote */

a {
	color: #0D220D;
	text-decoration: none;
	
	}
a:hover {
	color: #3f5e3f;
}

.left {
  float: left;
  
  
}
.right {
  float: right;
}
/* guest book color */
.main_g_table {

	color: #546a2d;
	margin-bottom: 0px;
	border: 1px solid #B3BD9A;
	background-color: #f2f3d6;
	width: 99.7%;
}
.g_header {
	padding: 4px;
	color: #58642d;
	background: #d9ebb7 url(images/b.jpg) repeat-x top;
	border-bottom: #bfcd8a solid 1px;
}
.g_comment {
	padding: 8px;
	background: #e9f1cc url(images/adv2.jpg) repeat-x top;
}
/* end guest book color */

/* form color */
.f_color {

	color: #4d5a1b;
	background: #f3fbd4 url(images/y.jpg) repeat-x top;
}
.s_color {
	color: #5B5B5B;
	background: #ecf4d9 url(images/g.jpg) repeat-x top;
}
.form_input {
	border: 1px solid #bfcd8a;
}
.form_bot {
	border: 1px solid #a7b964;
	color: #464d24;
	background-color: #eaf5c3;
}
/* end form color */
.search-container{
	max-width: 20rem;
}

.s_menu_l {
	padding-bottom: 2px;
	padding-top: 2px;
	padding-left: 0px;
	padding-right: 2px;
}
.sound-con {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

@media (max-width: 900px) {
	.sound-con {
		grid-template-columns: 1fr;
	}
}
.sound-options-links{
	display: inline-block;
}
.sound-options-links li {
	display: inline-block;
	margin-right: 0.5rem;
}
.sound-options-links li a{
	display: flex;
    width: 2rem;
    height: 2rem;
    justify-content: center;
    align-items: center;
    background-color: #e4daa1;
    color: #33433b;
    border-radius: var(--mj-border-radius);
    transition: all 0.3s ease-in-out;
}
.sound-options-links li a:hover,
.sound-options-links li a:focus {
	background-color: #dace8a;
    color: #33433b;
}
#sound_content{
	
}
#sound_content.sound-content{
	position: fixed;
	bottom: 1rem;
	left: 1rem;
	background: #FFF;
	z-index: 9999;
	animation: zoomInUp 0.3s ease-in-out 1;
    padding: 2rem;
    border-radius: var(--mj-border-radius);
    box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.3);
}

@keyframes zoomInUp {
	0% {
		opacity: 0;
		transform: scale(0.8) translateY(60px);
	}
	100% {
		opacity: 1;
		transform: scale(1) translateY(0);
	}
}
#sound_content.sound-content audio{
	width: 100%;
}
.sound-list{
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1rem;
}

@media (max-width: 1200px) {
	.sound-list {
		grid-template-columns: repeat(3, 1fr);
	}
}
@media (max-width: 900px) {
	.sound-list {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 600px) {
	.sound-list {
		grid-template-columns: 1fr;
	}
}
.sound-library {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 1.5rem;
}
@media (max-width: 900px) {
	.sound-library {
		grid-template-columns: 1fr;
	}
}
.sound-library ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.sound-library .audio-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
}
@media (max-width: 900px) {
	.sound-library .audio-list {
		display: grid;
		grid-template-columns: 1fr;
		gap: 1rem;
	}
}
.sound-library .audio-list a{
	border-radius: 1.3rem;
	border: 1px solid #dcdcdc;
}
.sound-pic{
	width: 75px;
    height: 75px;
    object-fit: cover;
	border-radius: 1.3rem;
}
.sound-library .cat-list{
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
.sound-library .cat-list a{
	color: #2a3832;
    background-color: #e8e8e8;
		border-radius: var(--mj-border-radius);
		padding: 1rem 2rem 1rem 3.5rem;
		width: 100%;
		display: block;
}
.maq_list {
	background-color: #e7dda3;
	padding: 0.5rem 1rem;
	color: var(--mj-accent-color);
	border-bottom: var(--mj-accent-color);
	border-radius: 1rem;
}
.maq_list a {
	color: var(--mj-accent-color);
	text-decoration: none;
	transition: all 0.3s ease-in-out;
}
.maq_list a:hover {
	opacity: 0.7;
}
.sha_list a {
	color: var(--mj-accent-color);
	text-decoration: none;
	transition: all 0.3s ease-in-out;
}
.sha_list a:hover {
	opacity: 0.5;
}
.player_border {
	border: 1px solid #b5bc9a;
}
.text {
	padding-right: 6px;
	padding-left: 16px;
	padding-bottom: 3px;
	padding-top: 3px;
}
.text_frame {
	height: 350px;
	border: 1px solid #b3bd9a;
	overflow: auto;
	padding: 6px;
	margin-left: 6px;
	margin-right: 6px;
	text-align: justify;
	background-color: #eff4db;
}
.sounds-cats-container{

}
.bot {
    border-radius: var(--mj-border-radius);
    border: 1px solid #749182;
    color: #33433b;
	cursor: pointer;
}
.bot a {
	color: #233029;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}
.bot a:hover {
		color: #44584e;
}
.bot .title a{
	display: block;
	    border-radius: calc(var(--mj-border-radius) - 0.2rem);
    text-align: right;
    margin-bottom: 1rem;
    padding: 0;
    color: #33433b;
    background: #749182;
    font-weight: 600;
	    padding: 0.5rem 1rem;
		transition: all 0.3s ease-in-out;
}
.bot:hover .title a, .bot:focus .title a {
	background: #8cac9b;
}
.cat-container {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
	margin-bottom: 2rem;
}

@media (max-width: 900px) {
	.cat-container {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 600px) {
	.cat-container {
		grid-template-columns: 1fr;
	}
}
.cat {
border-radius: var(--mj-border-radius);
border: 1px solid #749182;
	color: #33433b;
}
.cat_pic {
	float: right;
	margin-left: 4px;
	border: 1px solid #dcdcdc;
	margin-bottom: 2px;
	margin-right: 2px;
	margin-top: 2px;
}
.cat_pic img {

}
.cat_title {

	border-radius: calc(var(--mj-border-radius) - 0.2rem);
	text-align: right;
	margin-bottom: 1rem;
	padding: 0;
	color: #33433b;
	background: #749182;
	font-weight: 600;
}
.cat_title a {
	color: #233029;
	text-decoration: none;
	transition: all 0.3s ease-in-out;
}
.cat_title a:hover {
	color: #44584e;
}
.cat_title img{
	object-fit: cover;
	width: 4rem;
	height: 4rem;
	border-radius: calc(var(--mj-border-radius) - 0.2rem);
	margin-left: 0.5rem;
}
.perview {

	border: 1px solid #e3ebc6;
	width:240px;	
	height:140px;
	margin: 9px 9px 5px 9px;
	background-color: Black;
	background-position: -2px -2px;
}
.bar {

	text-align: right;
	height: 10px;
	font-size: 8px;
	display: inline;
	background-color: #d7e2af;
}
.m_title {


	padding: 4px 4px 4px;
	color: #d00000;
	border-bottom: 1px solid #b3bd9a;
	background: #ecf0d7;
}
.menu_title {
	padding: 0.5rem 1rem;
	color: #000;
	font-weight: 600;
	text-align: center;
	border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.menu_content{
	padding: 1rem;
	color: #000;
}
.menu_content .news_title a {
	font-size: 12px;
	font-weight: 200;
		}
.menu_content .news_title {
	padding-right: 0px;
	border-right: 0px;
}

.right_content {

}
.gallery_pic_frame {
	margin-bottom: 1rem;
}
.gallery_pic_frame a img{
    width: 100%;
	border-radius: var(--mj-border-radius);
}
.links {
	margin: 0;
	padding: 0;
	margin-top: 4px;
}
.links li {
	list-style-type: none;
	background: no-repeat right;
	margin-bottom: 4px;
}
.row-custom-g{
	--bs-gutter-x: 1.2rem !important;
}
/* start gallery style */
.gallery-sm-img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 1rem;
}
.gallery_small_img {
	cursor: pointer;
	cursor:hand; 
	display: block;
	background-position: center;
	background-repeat: no-repeat;
	height: 70px;
	width: 70px;
	margin: 2px;
	
}
.gallery_nav {
	height: 76px;
	width: 148px;
	clear: both;
}
.gallery_pic {
	border-radius: var(--mj-border-radius);
	text-align: center;
	background-color: #e8efe8;
	background-color: #e8efe8;
}
.gallery_pic > a{
	display: block;
	margin-bottom: 0.5rem;
}
.gallery_pic > a img{
	width: 100%;
	border-radius: var(--mj-border-radius);
}
.gallery_picf {

}
.gallery_pic .img {
	display: block;
}
.gallery_pic .title {
	margin-bottom: 0.2rem;
	display: block;
}
.gallery_pic .title a{
	display: block;
	font-weight: 600;
}
.gallery_pic .pics{
	font-size: 0.9rem;
    color: #596059;
}
.gallery_picinfo {
	display: block;
	text-align: center;
	color: #657139;
	margin-top: 4px;
	border-top: 1px solid #c8d78f;
	padding-top: 3px;
}
/* end gallery style */

/* new writer style */
.shadetabs {
	color: #77a600;
	border-bottom: 1px solid #a9b58a;
	background-color: #ecf4d9;
	PADDING-RIGHT: 0px;
	MARGIN-TOP: 0px;
	PADDING-LEFT: 0px;
	MARGIN-BOTTOM: 0px;
	PADDING-BOTTOM: 0px;
	PADDING-TOP: 5px;
	LIST-STYLE-TYPE: none;
	margin-right: 0px;
	display: block;
	width: 100%;
	float: right;
}
.shadetabs li {
	DISPLAY: inline;
	MARGIN: 0px;
}
.shadetabs li a {

	float: right;
	PADDING-RIGHT: 7px;
	PADDING-LEFT: 7px;
	COLOR: #444a2f;
	PADDING-BOTTOM: 4px;
	PADDING-TOP: 4px;
	TEXT-DECORATION: none;
	margin-right: 6px;
	background-color: #f0f7d7;

	margin-bottom: -1px;
}
.shadetabs li a:hover {
	background-color: #eef7cf;
	COLOR: #84aa00;
}
.shadetabs li.selected a {
	background-color: #eff7d1;
	color: #6a8119;
}
.shadetabs li.selected A:hover {
	TEXT-DECORATION: none;
}
.tabcontentstyle {
	width: 100%;
	display: block;
	clear: both;
}
.tabcontent {
	DISPLAY: none;
}
/* end writer style */
.cal-body{
	flex: 30%;
}
.cal-table{
	border-collapse: collapse;
	border: 1px solid #d6d6d6;
	box-shadow: 0 0 1px 1px #d6d6d6;
	border-radius: 1rem;
	width: 100%;
	overflow: hidden;
}
.cal-table th, .cal-table td {
	padding: 0.2rem;
}
.cal_cborder {
	border: 1px solid #d6d6d6;
	margin: 0;
	text-orientation: mixed;
    writing-mode: sideways-lr;
    font-size: 0.8rem;
    font-weight: 700;
	color: #626262;
}
.cal_endate {
	color: #767676;
}
.cal_month{
	color: #707070;
	font-weight: 600;
	margin-bottom: 0.7rem;
}
.cal_obox {
	border: 1px solid #d6d6d6;
	background-color: #bfddce;
}
.cal_obox a, .cal_ebox a, .cal_box a, .cal_tbox a {
	font-size: 12px;
	color: #23461e;
}
.cal_obox, .cal_ebox, .cal_box, .cal_tbox {

}
.cal_ebox {
	border: 1px solid #d6d6d6;
	background-color:#f5f5f5;
	color: #384117;
	position: relative;
}
.cal_ebox:before{
	content: "";
	position: absolute;
	width: 0.5rem;
	height: 0.5rem;
	left: 0.3rem;
    top: 0.7rem;
	border-radius: 0.5rem;
	background-color: #d3b78e;
}
.cal_box {
	border: 1px solid #d6d6d6;
}
.cal_tbox {
	border: 1px solid #d6d6d6;
	background-color: #b0cdbe;
}
.cal-note{
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: #707070;
}
.cal-events{
	/*border: 1px solid #d6d6d6;
    padding: 1rem;
    border-radius: var(--mj-border-radius);*/
}
.cal-event{
	margin-bottom: 0.5rem;
	background-color: #f5f5f5;
    border-radius: 1rem;
}
.event-date{
	text-align: center;
	padding: 0.5em 1rem;
	color: #000;
	width: 16%;
	min-width: 126px;
	border-left: 1px solid #c9c9c9;
}
.event-title{
	padding: 0.5em 1rem;
	width: 84%;
}
.row1 td {

	background-color: #eff5d9;
	color: #464646;
}
.row2 td {
	background-color: #e6eec9;
	color: #464646;
}
.header_menu {
	display: block;
	border-top: 1px solid #afbe77;
}
.header_menu ul {
	padding: 1px 5px 1px 1px;
	margin: 0px;
	float: right;
}
.header_menu ul li {
	list-style-type: none;
	padding: 0px;
	height: 28px;
	line-height: 28px;
	float: right;
	padding-left: 5px;
}

.header_menu ul li a {
	padding-left: 8px;
	padding-right: 8px;
	display: block;
	color: #404040;
}

.header_menu ul li a:hover, .header_menu ul li a.current  {
	background: #d9ebb7 url(images/b.jpg) repeat-x top;
	text-decoration: none;
	color: #ff5000;
}

@media (max-width: 1200px) {
	.cal-body{
		flex: 45%;
	}
}
@media (max-width: 992px) {
	.cal-body{
		flex: 100%;
	}
}
@media (max-width: 768px) {
	.cal-container{
		flex-direction: column;
	}
	.article-box{
		flex-direction: column !important;
	}
	.article-info{
		width: 100%;
	}
	.article-img-container{
		width: 100%;
	}
}
@media (max-width: 575px) {
		.top-hero{
		flex-direction: column;
	}

	.top-hero > *{
		width: 100% !important;
	}
	.search-box{
		margin-bottom: 1rem;
	}
}