@import url(https://fonts.googleapis.com/css?family=Montserrat:500);

:root {
	/* Base font size */
	font-size: 10px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

body {
	min-height: 100vh;
	background-color: #fafafa;
}


header{
	padding: 0 20rem;
	position: relative;
}
header nav{
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	height: 10rem;

}
header nav .left-side-menu{
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	margin-right: 80rem;
	}
header nav .left-side-menu a img{
	width: 15rem;
	height: 15rem;
	margin-top: 5rem;
	border-radius: 10rem;
	margin-right: 5rem;
	
}
header nav .left-side-menu .sub-menu{
	height: inherit;
	display: flex;
}
header nav .left-side-menu .sub-menu a{
margin-right: 2rem;
}
header nav .left-side-menu .sub-menu a li{
	font-size: 2rem;
	line-height: 3.6rem;
	text-transform: capitalize;
	transition: all 0.2s;
	color: #0E3A53;
	display: block;
	position: relative;
	transition: transform 650ms cubic-bezier(0.55, 0.55, 0.675, 0.19);
	margin-top: 3rem;
	justify-content: center;
	align-content: center;
}
header nav .left-side-menu .sub-menu a li:hover{
	color: 	#00BFFF;
}


.inner1 h1{
	line-height: 5rem;
	text-align: center;
	justify-content: center;
	font-size: 3rem;
	font-weight: 900;
	color: #3f4c6b;
}





.container {
	max-width: 100rem;
	margin: 0 auto;
	padding: 0 2rem 2rem;
}

.heading {
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 2rem;
	font-weight: 500;
	line-height: 1.5;
	text-align: center;
	padding: 3.5rem 0;
	color: #1a1a1a;
}

.container .maintext h2{
	font-family: "Montserrat", Arial, sans-serif;
	line-height: 1.5;
	text-align: center;
	color: #1a1a1a;
}

.heading span {
	display: block;
}

.gallery {
	display: flex;
	flex-wrap: wrap;
	/* Compensate for excess margin on outer gallery flex items */
	margin: -1rem -1rem;
}

.gallery-item {
	/* Minimum width of 24rem and grow to fit available space */
	flex: 1 0 24rem;
	/* Margin value should be half of grid-gap value as margins on flex items don't collapse */
	margin: 1rem;
	box-shadow: 0.3rem 0.4rem 0.4rem rgba(0, 0, 0, 0.4);
	overflow: hidden;
}

.gallery-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 400ms ease-out;
}

.gallery-image:hover {
	transform: scale(1.15);
}

/*

The following rule will only run if your browser supports CSS grid.

Remove or comment-out the code block below to see how the browser will fall-back to flexbox styling. 

*/

@supports (display: grid) {
	.gallery {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(24rem, 1fr));
		grid-gap: 2rem;
	}

	.gallery,
	.gallery-item {
		margin: 0;
	}
}