




/*------------------------heading-----------------------*/
.header{
	display: grid;
	background: url('../img/2025committee.jpg');
	background-repeat: no-repeat;
	background-position:top;
	background-size:cover;
	box-shadow: inset 1920px 0 0 0 rgba(0,0,0,0.2);

	overflow: hidden;
}

.heading{
	display:grid;
	justify-content:center;
	color: rgb(255,255,255);
	text-align: center;
	margin: 20% 20% 20%;
}
h1{
	font-size:1.5em;
	border-bottom: solid 3px rgb(255,255,255);
	padding-bottom: 23px;
	margin-bottom: 0px;
}
h2{
	font-size:1.1em;
	font-weight: 300;
}
/*-----------------------------section-one-----------------------*/
.login-form{
	display: grid;
    grid-template-rows: 300px;
    justify-content: space-around;
    background: rgb(81, 87, 39);
    border-radius: 8px;
    width: 30%;
    margin:auto;
    }
.section-one{
	display: grid;
	grid-template-rows: repeat(4, auto);
	grid-template-columns:auto auto auto;
	justify-items:center;
	margin:0px 5% 0px 5%;
}
.section-one h2{
	font-weight: bold;
}
.banner-text{
	text-align:center;
}
.intro{
	grid-area:3/2/3/span3;
	display: grid;

}
.com-title{
	grid-area:1/1/1/span3;
	text-align: center;
	padding-top:5%;	
}
.important-docs{
	grid-area: 3/1/3/1;
  	grid-template-rows: 20% 50% 30%;
	align-items: start;
	justify-items: center;
	background-color:rgb(128,140,35);
	border-radius: 10px;
	min-width: 240px;
  	height:524px;
	color: white;
	display: grid;
	margin:0px 30% 0px 40%;
	
}
.important-docs a{
	text-decoration: none;
	color: white;
}
.important-docs a:hover{
	color:greenyellow;
}
.important-docs h2{
	text-align: center;
	border-bottom:2px solid;
}
.imp-docs{
	padding:20px;
}
.imp-docs input{
	padding:10px;
}
.list{
	list-style-type: none;
	padding:0px;
	font-size: 15px;
}
.list li{
	padding:5px;
}
.marshal{
	background-color:rgb(128,140,35);
	color: white;
	text-align: left;
	display: grid;
	margin: auto;
}
.marshal h2{
	padding: 0% 20%;
}
.marshal-name{
	margin:0% 20%;
}
.mar-name{
	display: grid;
	grid-template-columns: 125px 70%;
	
}
.name{
	margin-left:5%;
}
.mar-name p{
	background-color:rgb(81,87,39);
	border-radius: 10px;
	color: white;
	padding: 10px 10px;
	margin:none ;
}
.marshal-note{
	font-style: italic;
	font-size:12px;
	padding-bottom:5%;
	margin: 2% 20%;
}
.mar-admin{
	margin: 0 20%;

}
.mar-admin h3{
	margin-bottom: 5%;
}
.mar-form{
	display: flex;
	margin-bottom: 5%;	
}
.mar-btn{
	margin: 5px;
	padding: 5px 10px;
	background: rgb(81,87,39);
	color: rgb(255,255,255);
	font-weight: bold;

	border-radius: 10px;
	border-style: none;
	border-width: 0;
	transition:all 0.5s ease-in-out;
	cursor: pointer;	
}
.mar-btn:hover{
	background: rgb(97,106,29);
}
.upload-delete{
	border-radius: 10px;
    border-style: none;
    border-width: 0;
    transition: all 0.5s ease-in-out;
    cursor: pointer;
    margin: 10px;
    padding: 5px 10px;
    background: rgb(128,140,35);
    color: rgb(255,255,255);
    font-weight: bold;
}
.upload-delete a{
	color: white;
}
.upload-pic{
    margin:10% 20%;
    background:rgb(81,87,39);
    border-radius:10px ;
}
.upload-pic h3{
    color: white;
    padding:20px  5px;
    margin:0;
}
.upload-pic form{
    text-align:center;
    margin:auto ;
    padding:20px 5px ;
}
.upload-pic input{
    color: white;
}
.upload-pic p{
    color:white;
}
.upload-pic label{
    color:white;
    padding-right: 10px;
}
.upload-label{
    font-size:12px;
    font-style:italic;
}
.personal-gallery{

	grid-area:4/1/4/span3;
	margin:5% 0px 5% 0px;
}
.error-msg a, .error-msg{
	font-style: italic;
	color: white;
}
.del-btn{
	text-decoration:none;	
}
.delete-btn{
	border: none;
}

/*----------------------message-------------------------------------*/
.live-message{
	display: grid;
}
.live-note{
	grid-area: 2/1/2/span3;
	color: white;
	padding:5% ;
	margin:5% 10%;
    background:rgb(81,87,39);
    border-radius:10px ;
}
.author{
	text-align:right;
	font-style: italic;
	font-size:14px;
}
.edit-daily{
	width: 100%;
	height: 100px;
	padding:10px 10px;
}
.submit-daily, .edit-cancel, .show-daily a{
	border-radius: 10px;
	border-style: none;
	border-width: 0;
	transition:all 0.5s ease-in-out;
	cursor: pointer;	

	margin:10px 0;
	padding: 10px 15px;
	background: rgb(128,140,35);
	color: rgb(255,255,255);
	font-weight: bold;	
}
.live-note a{
	padding: 10px;
}
.edit-cancel{
	font-size:14px ;
	font-weight: bold;
	font-family: sans-serif;
}
.show-daily{
	text-align:center;
	font-size: 14px;
	margin:5%;
}
@keyframes show-mes {
	from{opacity: 0; height: 0px;}
	to{opacity: 1;height: 250px;}
}
@keyframes hide-mes {
	from{opacity: 1; height: 250px; top: 0px;}
	to{opacity: 0;height: 0px; top: -200px;}
}
.hide-mes{
	animation-name: hide-mes;
  	animation-duration: .5s;	

  	opacity: 0;
  	height: 0px;
  	visibility: hidden;
  	position: absolute;	
  	top: -200px;

	}
.show-mes{
	animation-name: show-mes;
  	animation-duration: .5s;

	
}

/*--------------------------banner one--------------------------------*/
.banner-one{
	display:grid;
	grid-template-columns: 50% 50%;
	align-content: center;
	align-items: center;
	background-color:rgb(128,140,35);
	max-height: 400px;	
}


.banner-one img{
	width: 100%;
}

.banner-one-text{
	padding: 40px;
	
	color: rgb(255,255,255);
}

@media screen and (min-width: 1023px){
	.banner-one{
		grid-template-columns: auto auto;
	}
	.banner-one-text{
		padding:0 15%;
		margin:0;

	}
}

/*--------------------------section-two-------------------------------*/
.section-two{
	display: grid;
	background: rgb(81,87,39);
	color: rgb(255,255,255);
	padding:0% 20% 5% 20%;
}

.section-two h1{
	text-align:center;
	margin: 10% 0 5% 0;
}

.section-two p{
	margin-bottom: 5%;
}
.events-note{
	font-size:12px;
	font-style: italic;
	margin: 2% 0;
	margin-bottom: 0!important;
}

/*--------------------------section-three-----------------------------*/
.section-three{
	display: grid;
	background: rgb(81,87,39);
	color: rgb(255,255,255);
	padding:10% 20% 5% 20%;

}

.section-three img{
	display: block;
	width: 100%;
	max-width: 120px;
	height: 160px;
	margin: auto;
}
.members-img{
	display: grid;
	grid-template-columns: repeat(3, 33%);

	justify-content:space-between;
	text-align: center;

	padding: 0 10%;
}
.section-three p{
	margin-bottom: 5%;
}

/*------------------------section-four-----------------------------------*/
.section-four{	
	margin: 10% 20%;
}
.section-four p{
}
.section-four h1{
	margin-bottom: 10%;
}
.section-four h3{
	margin: 5% 0;
}




/*------------------------------------slide in fade in-----------------------------*/

.fade-in{
    opacity:0;
    transition: opacity 250ms ease-in;

}
.fade-in.appear{
    opacity:1;
}
.from-left{
    transform: translateX(-60%);
}
.from-right{
    transform: translateX(60%);
}
.from-left, .from-right{
    transition:opacity 400ms ease-in 300ms, transform 600ms ease-in;
    
    opacity:0;
}
.from-left.appear, .from-right.appear {
    transform: translateX(0);
    opacity:1;
}












/*------------------------------------form-------------------------*/
.form{
	display: grid;
	
	grid-template-rows:300px;
	justify-content:space-around;

	background: rgb(81,87,39);
	width: 30%;
	margin: auto;
}
.form-left{
	display: grid;
	grid-template-rows: 50px 50px 60px;
	grid-gap: 5%;
	margin: auto;
	color: rgba(255,255,255);
	font-size:0.8em;
}
.form-left input {
	border-radius: 10px;
	border-style: none;
	border-width: 0;
	padding-left: 10px;	
}
::placeholder{
	font-family: Montserrat Regular, sans-serif;
	font-weight:bold;
	color: rgb(0,0,0,0.4);
	}
textarea{
	border-radius: 10px;
	border-style: none;
	resize: none;
	padding: 10px 15px;
}
textarea:focus, input:focus {
	outline: none!important;
	font-family: Montserrat Regular, sans-serif;
}

.submit-Btn{
	width: 60%;
	margin: 10px auto;
	background: rgb(128,140,35);
	color: rgb(255,255,255);
	font-weight: bold;

	border-radius: 10px;
	border-style: none;
	border-width: 0;
	transition:all 0.5s ease-in-out;
	cursor: pointer;	
}
.submit-Btn:hover, .submit-event:hover, .submit-a:hover, .submit-daily:hover,.edit-cancel:hover, .show-daily a:hover  {
	background: rgb(81,100,39);
}
.submit-event, .submit-a{
	
	border-radius: 10px;
	border-style: none;
	border-width: 0;
	transition:all 0.5s ease-in-out;
	cursor: pointer;	



	margin:5px;
	padding: 10px 15px;
	background: rgb(128,140,35);
	color: rgb(255,255,255);
	font-weight: bold;	
}
.submit-a{
	text-decoration:none;
	font-size: 12px;
}
.out-btn{
	display: flex;
	justify-content: center;
	text-align: center;

	margin: 5%;

}

.com-note{
	margin-right:20%;
}
.com-note li{
	margin: 3%;
}
.mobile{
	display: none;
}
@keyframes show {
	from{opacity: 0; height: 0px;}
	to{opacity: 1;height: 120px;}
}
@keyframes hide {
	from{opacity: 1; height: 120px; top: 0px}
	to{opacity: 0;height: 0px; top: -200px}
}
.hide{
	animation-name: hide;
  	animation-duration: .5s;	

  	opacity: 0;
  	height: 0px;
  	margin: 0;
  	visibility: hidden;
  	position:relative;
  	top: -200px;
  	
	}
.show{
	animation-name: show;
  	animation-duration: .5s;

	
}
