*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
	font-family: 'Montserrat', sans-serif;
}

html {
	font-size: 10px;
	font-family: 'Montserrat', sans-serif;
	scroll-behavior: smooth;
}

body{
	background-image: url('wall.gif');
}

a {
	text-decoration: none;
}
.container {
	min-height: 100vh;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
img {
	object-fit: cover;
}

p {

	font-size: 1.4rem;
	margin-top: 5px;
	line-height: 2.5rem;
	font-weight: 300;
	letter-spacing: 0.05rem;
}




/* Header section */
#header {
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100vw;
	height: auto;
}
#header .header {
	min-height: 8vh;
	background-color: rgba(31, 30, 30, 0.24);
	transition: 0.3s ease background-color;
}
#header .nav-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 100%;
	max-width: 1300px;
	padding: 0 10px;
}

#header .nav-bar img {
	width: 30%;
}    
#header .nav-list ul {
	list-style: none;
	position: absolute;
	background-color: rgb(31, 30, 30);
	width: 100vw;
	height: 100vh;
	left: 100%;
	top: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	z-index: 1;
	overflow-x: hidden;
	transition: 0.5s ease left;
}
#header .nav-list ul.active {
	left: 0%;
}
#header .nav-list ul a {
	font-size: 2.5rem;
	font-weight: 500;
	letter-spacing: 0.2rem;
	text-decoration: none;
	color: white;
	text-transform: uppercase;
	padding: 20px;
	display: block;
}
#header .nav-list ul a::after {
	content: attr(data-after);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0);
	color: rgba(240, 248, 255, 0.021);
	font-size: 13rem;
	letter-spacing: 50px;
	z-index: -1;
	transition: 0.3s ease letter-spacing;
}
#header .nav-list ul li:hover a::after {
	transform: translate(-50%, -50%) scale(1);
	letter-spacing: initial;
}
#header .nav-list ul li:hover a {
	color: crimson;
}
#header .hamburger {
	height: 60px;
	width: 60px;
	display: inline-block;
	border: 3px solid white;
	border-radius: 50%;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 100;
	cursor: pointer;
	transform: scale(0.8);
	margin-right: 20px;
}

#header .hamburger .bar {
	height: 2px;
	width: 30px;
	position: relative;
	background-color: white;
	z-index: -1;
}
#header .hamburger .bar::after,
#header .hamburger .bar::before {
	content: '';
	position: absolute;
	height: 100%;
	width: 100%;
	left: 0;
	background-color: white;
	transition: 0.3s ease;
	transition-property: top, bottom;
}
#header .hamburger .bar::after {
	top: 8px;
}
#header .hamburger .bar::before {
	bottom: 8px;
}

/* End Header section */

#past .main {
    /*background-color: rgb(14, 5, 62);*/
	width: 100%;
	height: auto;
	display: grid;
	place-items: center;
	padding: 150px 0;
}
#past .main .head {
	font-size: 29px;
	color: aliceblue;
	position: relative;
	margin-bottom: 100px;
	font-weight: 500;
}
#past .main .head::after {
	content: " ";
	position: absolute;
	width: 50%;
	height: 3px;
	left: 50%;
	bottom: -5px;
	transform: translateX(-50%);
	background-image: linear-gradient(to right,aliceblue, rgba(255, 255, 255, 0.747));
}

/* Container Css Start  */

#past .wrapper {
	width: 70%;
	height: auto;
	margin: auto 0;
	position: relative;
}
#past .wrapper ul {
	list-style: none;
}
#past .wrapper ul::after {
	content: " ";
	position: absolute;
	width: 2px;
	height: 100%;
	left: 50%;
	top: 0;
	transform: translateX(-50%);
	background-image: linear-gradient(to bottom, rgba(232, 226, 226, 0.767), rgba(255, 255, 255, 0.747));
}
#past .wrapper ul li {
	width: 50%;
	height: auto;
	padding: 15px 20px;
	background-color: #fff;
	border-radius: 8px;
	box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.218);
	position: relative;
	margin-bottom: 30px;
	z-index: 99;
}

#past .wrapper ul li .circle {
	position: absolute;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background-color: aliceblue;
	top: 0;
	display: grid;
	place-items: center;
}
#past .wrapper ul li h3{
	font-family: Verdana, Geneva, Tahoma, sans-serif;
	font-size: 20px;
}
#past .wrapper ul li p{
	font-family: Verdana, Geneva, Tahoma, sans-serif;
	font-size: 15px;
}
#past .circle::after{
	content: ' ';
	width: 12px;
	height: 12px;
	background-color: #000000;
	border-radius: 50%;
}
#past ul li:nth-child(odd) .circle {
	transform: translate(50%, -50%);
	right: -30px;
}
#past ul li:nth-child(even) .circle {
	transform: translate(-50%, -50%);
	left: -30px;
}
#past ul li .date {
	position: absolute;
	width: 130px;
	height: 33px;
	background-image: linear-gradient(to right,#666568,#a49aa5);
	border-radius: 15px;
	top: -45px;
	display: grid;
	place-items: center;
	color: #fff;
	font-size: 13px;
	box-shadow: 1px 2px 12px rgba(0, 0, 0, 0.318);
}
#past .wrapper ul li:nth-child(odd) {
	float: left;
	clear: right;
	text-align: right;
	transform: translateX(-30px);
}
#past ul li:nth-child(odd) .date {
	right: 20px;
}
#past .wrapper ul li:nth-child(even) {
	float: right;
	clear: left;
	transform: translateX(30px);
}
#past ul li .heading {
	font-size: 17px;
	color: rgb(91, 14, 216);
}
#past ul li p {
	font-size: 13px;
	color: #666;
	line-height: 18px;
	margin: 6px 0 4px 0;
}
#past ul li a {
	font-size: 13px;
	text-decoration: none;
	color: rgb(18, 54, 214);
	transition: all 0.3s ease;
}


@media only screen and (min-width:798px) and (max-width: 1100px) {
	#past .wrapper{
		width: 80%;
	}
}

@media only screen and (max-width: 798px) {
	#past .wrapper{
		width: 70%;
		transform: translateX(20px);
	}
	#past .wrapper ul::after{
		left: -40px;
	}
	#past .wrapper ul li {
		width: 100%;
		float: none;
		clear: none;
		margin-bottom: 80px;
	}
	#past .wrapper ul li .circle{
		left: -40px;
		transform: translate(-50%, -50%);
	}
	#past .wrapper ul li .date{
		left: 20px;
	}
	#past .wrapper ul li:nth-child(odd) {
		transform: translateX(0px);
		text-align: left;
	}
	#past .wrapper ul li:nth-child(even) {
		transform: translateX(0px);
	}
}

@media only screen and (max-width: 550px) {
	#past .wrapper{
		width: 80%;
	}
	#past .wrapper ul::after{
		left: -20px;
	}
	#past .wrapper ul li .circle{
		left: -20px;
	}
}


/* Footer */
#footer {
	background-color: rgb(246, 245, 243);
}
#footer img{
	height: 100%;
	width: 100%;
	object-fit: cover;
}
#footer .footer {
	min-height: 200px;
	flex-direction: column;
	padding-top: 50px;
	padding-bottom: 10px;
}
#footer h2 {
	color: rgb(0, 0, 0);
	font-weight: 500;
	font-size: 1.8rem;
	letter-spacing: 0.1rem;
	margin-top: 10px;
	margin-bottom: 10px;
}
#footer .social-icon {
	display: flex;
	margin-bottom: 30px;
}
#footer .social-item {
	height: 50px;
	width: 50px;
	margin: 0 5px;
}
#footer .social-item img {
	filter: grayscale(1);
	transition: 0.3s ease filter;
}
#footer .social-item:hover img {
	filter: grayscale(0);
}
#footer p {
	color: rgb(8, 8, 8);
	font-size: 1.1rem;
}
/* End Footer */

@keyframes hamburger_puls {
	0% {
		opacity: 1;
		transform: scale(1);
	}
	100% {
		opacity: 0;
		transform: scale(1.4);
	}
}
@keyframes text_reveal_box {
	50% {
		width: 100%;
		left: 0;
	}
	100% {
		width: 0;
		left: 100%;
	}
}
@keyframes text_reveal {
	100% {
		color: rgb(255, 0, 85);
	}
}
@keyframes text_reveal_name {
	100% {
		color: rgb(255, 0, 85);
	}
}

/* Media Query For Desktop */
@media only screen and (min-width: 1200px) {
	/* header */
	#header .hamburger {
		display: none;
	}
	#header .nav-list ul {
		position: initial;
		display: block;
		height: auto;
		width: fit-content;
		background-color: transparent;
	}
	#header .nav-list ul li {
		display: inline-block;
	}
	#header .nav-list ul li a {
		font-size: 1.8rem;
	}
	#header .nav-list ul a:after {
		display: none;
	}
	/* End header */

	#services .service-bottom .service-item {
		flex-basis: 22%;
		margin: 1.5%;
	}
}