
/*����� ����� http://www.qyasi.com*/

body {
	margin: 0;
	padding: 0;
	font-size: 24px;
	background-color: #6B8E23;
	display: flex;
	flex-direction: column;
	min-height: 100dvh;
}
#outside {
	width: 100%;
	margin: auto;
	padding: 0;
	background-color: #ffffff;
	flex-grow: 1;
}
hr {
	color: #228B22;
	width: 90%;
	text-align: center;
}
a{
	color: #6B8E23;
	text-decoration: none;
}
a:hover{
	text-decoration: underline;
}
p{
	padding: 0px;
	margin: 1px;
}
h1{
	margin: 0px;
	background-color: #00FF7F;
	padding: 0px;
	font: bold 1.5em/1.2em arial,tahoma;
	color: #006400;
	text-align: center;
}
h2{
	margin: 5px 2px 5px 0px;
	padding: 0px;
	font: bold 1.2em/1.4em arial,tahoma;
	color: #FF4500;
}
h3{
	margin: 5px 2px 5px 0px;
	padding: 0px;
	font: bold 1.1em/1.3em arial,tahoma;
	color: Olive;
}
img{
	border: 0px;
	float: right;
}
#header {
	height: 120px;
	margin: 0 0 0 0;
	padding: 0px;
	/* background: White url(images/banner.jpg) repeat-x center; */
	width: 100%;
}
.ban{
   height: 140px;
	width: 140px;
	z-index: 2;
	position: absolute;
	left: 4%;
	top: 0;
	background: url(images/banback.gif) no-repeat top;
	text-align: center;
}
.ban a{
	color: #556B2F;
	margin: 0;
	font: bold 20px/130px Tahoma,arial;
	text-decoration: none;
}
.ban a:hover{
	color: #6B8E23;
	text-decoration: none;
}
#menu {
	text-align: center;
	padding: 0px;
	background: #32CD32 url(images/menuback.jpg) repeat-x top;
	width: 100%;
	height: 40px;
	display: block;
	border-bottom: 3px solid #28A429;
}
#menu ul
{
   float: right;
	width: 100%;
	text-align: center;
	padding: 0;
	margin: 0;
	list-style-type: none;
	height: 40px;
}
#menu a
{
	float: right;
	border-left: 1px solid #32CD32;
	text-align: center;
	text-decoration: none;
	font: bold .9em/40px tahoma,arial;
	color: #fff;
	background: #6B8E23 url(images/menuback.jpg) repeat-x top;
	margin: 0px;
	padding: 0 10px 0 10px;
}
#menu a:hover 
{ 
   color: #556B2F;
	background: #77F000 url(images/menuback.jpg) repeat-x bottom;
}
#menu li
{
	display:inline;
}
#col1
{
	width: 20%;
	background-color: #fff;
	margin: 0 0 0 0; 
	float: right;
	padding: 0px;
}
.sec
{
	width: 100%;
	height: 1.5em;
	background: #7DFFC0 url(images/menuback.jpg) repeat-x bottom;
	font: bold 1em/1.5em tahoma,arial;
	margin: 0;
	padding: 0;
	text-align: center;
	color: #6B8E23;
}
.nav ul
{
	font: bold 1em/1.2em arial,tahoma;
	padding: 0px;
	margin: 0px;
	list-style: none;
}
.nav il
{
	margin: 0px;
	padding: 0px;
}
.nav {
	width: 99%;
	margin: 0px;
	background-color: #E3FFE6;
}
.nav a {
	display: block;
	background-color: #E3FFE6;
	width: 99%;
	margin: 0px;
	padding: 1%;
	color: #7CA529;
	border-bottom: 1px dashed #32CD32;
	font-weight: bold;
	text-align: right;
	text-decoration: none;
}
.nav a:hover {
	background: #FFF;
	color: #006400;
	text-decoration: none;
	border-bottom: 1px dashed #006400;
}
/*---------------����� ������ ������ --------------*/
#col3
{
	width: 79%;
	background-color: #fff;
	border-right: 1px dotted #708090;
	float: right;
	margin: 0;
	padding-bottom: 2em;
	text-align: right;
	font: normal .9em/1.2em Tahoma,Arial;
}
/*---------------����� ������ ������ --------------*/
#col2
{
	background-color: #fff;
	margin: 0 16% 0 42%;
	padding: 1%;
	text-align: right;
	font: normal .9em/1.2em Tahoma,Arial;
}
/*---------------����� ��� ������---------------*/
#footer {
	clear: both;
	font: bold 1em/2em Arial;
	margin-top: 0.05em;
	padding: 1px;
	background: #32CD32 url(images/menuback.jpg) repeat-x top;
	color: #2F4F4F;
	/* text-align: right; */
	display: flex;
	justify-content: center; /* Centers horizontally */
	align-items: center;     /* Centers vertically */
}
#footerlink {
	/* float: left; */
	/* margin-right: 5px; */
	height: .9em;
	padding: .2em;
}
#footer a {
	color: #fff;
	text-decoration: none;
}
#footer a:hover {text-decoration: underline;}

/* Hamburger Button Styles */
.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    /* padding: 10px;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10; */
	margin: 0 10px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: #556B2F;
    margin: 5px 0;
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    #col1 {
        display: none;
        width: 100%;
        background-color: #E3FFE6;
        list-style: none;
    }
    
    #col1.active {
        display: block;
    }
    
    body {
        font-size: 18px; /* Reduce base font size for mobile */
    }

	#menu {
		position: fixed;
	}
    
    #menu ul {
        float: none;
        text-align: center;
    }
    
    #menu li {
        display: block;
        width: 100%;
    }
    
    #menu a {
        float: none;
        display: block;
        width: 100%;
        border-left: none;
        border-bottom: 1px solid #32CD32;
        padding: 10px;
        line-height: 1.5;
    }
    
    #header {
        height: 140px;
        text-align: center;
		float: none;

    }
    
    .ban {
        position: static;
        width: 100%;
        height: auto;
        background: none;
        text-align: center;
        margin: 10px 0;
    }
    
    .ban a {
        font-size: 16px;
        line-height: normal;
        padding: 10px;
    }
    
    #col1, #col3 {
        width: 100%;
        float: none;
        border-right: none;
        margin: 0;
    }
    
    #col1 {
        border-bottom: 1px dotted #708090;
        margin-bottom: 20px;
		margin-top: 10px;
    }
    
    #logo {
        max-width: 100%;
        height: auto;
        float: left;
		position: relative;
    }
    
    .nav a, #sec a {
        margin-top: 5px;
		margin-top: 5px;
    }
    
    #footer {
        /* flex-direction: column; */
        text-align: center;
    }
    
    #footerlink {
        margin: 5px 0;
    }
}