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

	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-----------------------*/
.section-one{
	padding: 30px 0px;
}

.section-one h2{
	text-align: center;
	padding-bottom: 30px;	
}
.section-one p{
	padding: 0 10%;
}

/*--------------------------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%;
}
.link{
    color: #560f0f;
    text-decoration: none;
    font-weight: 600;
}

/*--------------------------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;
}


.mobile{
	display:none;
}