@charset "UTF-8";
@import url(font-awesome.min.css);
@import url("https://fonts.googleapis.com/css?family=Lato:300,700,300italic,700italic");

*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body{
	font-family: "Lato", Arial, Helvetica, sans-serif;
}

/* container */

.container{
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
}

/* header */

.header{
	/* background-color: #f8f9fa; */
	background-color: #fff;
	padding: 20px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* banner */

/* .banner{
	background-color: #5f337a;
    color: white;
    text-align: center;
    cursor: default;
	padding: 176px 0 156px 0;
} */

.banner {
  background: 
    linear-gradient(rgba(128, 0, 128, 0.2), rgba(128, 0, 128, 0.2)), /* purple overlay */
    url("/images/vision.jpg"); /* background image */
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  cursor: default;
  padding: 176px 0 156px 0;
}

.inner h1 {
	font-size: 3em;
    line-height: 1.45;
}

/* info section */

.infoSection{
	padding: 4em 0 2em 0;
	color: #555;
}

.infoSection h1{
	font-size: 2.35em;
	margin-bottom: 40px;
}

.infoSection h4{
	font-size: 1.1em;
	line-height: 2.0em;
}

.infoSection h2{
	line-height: 2.0em;
    text-align: center;
    margin-top: 2.5em;
	font-size: 1.75em;
	font-weight: 700;
}

/* artical one */

.articalOne{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0;
	padding-top: 40px;
	position: relative;
}

.articalOne.container {
    max-width: 100%;
    margin: 0;
}

.articalOneInner{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.articalOne img{
	width: 100%;
	height: auto;
	display: block;
}

.articalOne .image{
	order: 2;
	background-color: #f9ebff;
}

.articalOne .content{
	order: 1;
	display: flex;
	align-items: center;
	/* background-color: #cdbbd4; */
	background-color: #a7206e;
}

.articalOne .content .inner h2 {
	font-size: 2.35em;
	margin-bottom: 40px;
	text-align: right;
}

.articalOne .content .inner h2 a{
	color: white;
	text-decoration: none;
}

.articalOne .content .inner p{
	text-align: right;
	color: white;
	font-size: 18px;
	font-weight: 500;
	line-height: 30.3333px;
	margin-bottom: 34px;
}

.articalOne .postnav{
    position: absolute;
    left: 2em;
    bottom: 2em;
}

.articalOne .postnav .prev{
	text-decoration: none;
    display: block;
    border: 1px solid white;
    width: 2em;
    height: 2em;
    line-height: 2em;
    text-align: center;
	pointer-events: none;
}

.articalOne .postnav .next{
	text-decoration: none;
    display: block;
    border: 1px solid white;
    width: 2em;
    height: 2em;
    line-height: 2em;
    text-align: center;
}

.articalOne .postnav .next .icon{
	color : white;
}

.articalOne .icon{
	border-bottom: none;
    position: relative;
    text-decoration: none !important;
	color : lightgray;
}

.articalOne .content .content-wrapper {
	max-width: 600px;
	padding-right: 80px;
	padding-left: 40px;
	width: 100%;
	margin-left: auto;
}

/* artical two */

.articalTwo{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0;
	position: relative;
}

.articalTwo img{
	width: 100%;
	height: auto;
	display: block;
}

.articalTwo .image{
	order: 1;
	background-color: #f9ebff;
}

.articalTwo .content{
	order: 2;
	background-color: #9b59b6;
	display: flex;
	align-items: center;
}

.articalTwo .content .content-wrapper {
	max-width: 600px; /* Half of 1200px container */
	padding-left: 80px;
	padding-right: 40px;
	width: 100%;
}

.articalTwo .content .inner h2 {
	font-size: 2.35em;
	margin-bottom: 40px;
	margin-top: 40px;
	color: white;
}

.articalTwo .content .inner h2 a{
	color: white;
	text-decoration: none;
}

.articalTwo .content .inner p{
	text-align: left;
	color: white;
	font-size: 18px;
	font-weight: 500;
	line-height: 30.3333px;
	margin-bottom: 34px;
}

.articalTwo .postnav{
	position: absolute;
    bottom: 2em;
	right: 2em;
}

.articalTwo .postnav .prev{
	text-decoration: none;
    display: block;
    border: 1px solid white;
    width: 2em;
    height: 2em;
    line-height: 2em;
    text-align: center;
}

 .articalTwo .postnav .next{
	text-decoration: none;
    display: block;
    border: 1px solid white;
    width: 2em;
    height: 2em;
    line-height: 2em;
    text-align: center;
	pointer-events: none;
}

.articalTwo .postnav .prev .icon{
	color : white;
}

.articalTwo .icon{
	border-bottom: none;
    position: relative;
    text-decoration: none !important;
	color: rgb(170, 170, 170);
}

.articalTwo .post .content:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    margin-right: -0.25em;
}

/* article three */

.articalThree{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0;
	position: relative;
}

.articalThree.container {
    max-width: 100%;
    margin: 0;
}

.articalOneInner{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.articalThree img{
	width: 100%;
	height: auto;
	display: block;
}

.articalThree .image{
	order: 2;
	background-color: #f9ebff;
}

.articalThree .content{
	order: 1;
	display: flex;
	align-items: center;
	background-color: #cdbbd4;
}

.articalThree .content .inner h2 {
	font-size: 2.35em;
	margin-bottom: 40px;
	text-align: right;
}

.articalThree .content .inner h2 a{
	color: white;
	text-decoration: none;
}

.articalThree .content .inner p{
	text-align: right;
	color: white;
	font-size: 18px;
	font-weight: 500;
	line-height: 30.3333px;
	margin-bottom: 34px;
}

.articalThree .postnav{
    position: absolute;
    left: 2em;
    bottom: 2em;
}

.articalThree .postnav .prev{
	text-decoration: none;
    display: block;
    border: 1px solid white;
    width: 2em;
    height: 2em;
    line-height: 2em;
    text-align: center;
	pointer-events: none;
}

.articalThree .postnav .next{
	text-decoration: none;
    display: block;
    border: 1px solid white;
    width: 2em;
    height: 2em;
    line-height: 2em;
    text-align: center;
}

.articalThree .postnav .next .icon{
	color : white;
}

.articalThree .icon{
	border-bottom: none;
    position: relative;
    text-decoration: none !important;
	color : lightgray;
}

.articalThree .content .content-wrapper {
	max-width: 600px;
	padding-right: 80px;
	padding-left: 40px;
	width: 100%;
	margin-left: auto;
}


/* footer */

.footer{
	text-align: center;
    color: white;
    font-size: 0.9em;
    background: #1c1c1c;
    padding: 2em 0 2em 0;
}

.footerInner{
	height: 250px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.footerRight{
	font-size: 16px;
}

.footerInner .footerLeft .footerContact{
	margin: 1em 0;
	font-weight: bold;
	font-size: 30px;
}

.footerLeft {
	margin-bottom: 6em;
}

.footerPhone {
	font-size: 20px;
	margin-bottom: 1em;
}

.footerEmail {
	font-size: 20px;
}

.footerInner .footerLeft p{
	font-size: 18px;
}

/* media query */
@media (max-width: 1024px) {
	.articalOne,
	.articalTwo {
		grid-template-columns: 1fr;
	}

	.articalOne .content{
		order: 2;
	}
	.articalOne .content .content-wrapper, .articalTwo .content .content-wrapper, .articalThree .content .content-wrapper{
		max-width: unset;
	}

	.articalOne .content .inner h2{
		padding-top: 40px;
	}

	.articalOne .content .inner h2, .articalOne .content .inner p , .articalTwo .content .inner h2, .articalTwo .content .inner p {
		text-align: center;
	}
	
	.articalTwo .content .content-wrapper{
		padding-left: 20px;
		padding-right: 20px;
	}

	.articalOne .image .container{
		padding: 20px 0;
	}

	.articalTwo .image .container{
		padding: 20px 0;
	}

	.footerInner{
		display: block	;
	}

	.footerLeft{
		margin-bottom: 2em;
	}

	.articalOne .content .content-wrapper{
		padding-right: 40px;
	}

	.articalOne .postnav{
		left: 0.5em;
	}

	.articalTwo .postnav{
		right: 0.5em;
	}

	.infoSection .container{
		padding: 0 20px;
	}

	.infoSection h2{
		margin-top: 32px !important;
	}

	.banner{
		padding: 80px 0 64px 0;
	}

	.articalOne{
		padding-top: 0px;
	}

	.footerInner .footerLeft .footerContact{
		margin: 0 0 20px 0;
	}

	.articalOne .content .inner h2{
		margin-bottom: 25px;
	}

	.articalTwo .content .inner h2{
		margin-bottom: 25px;
	}
}