* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	line-height: 1.6;
}
.reset {
	font-family: 'Lato', sans-serif, Serif, Arial;
	width: 100%;
	height: 100%;
	max-width: 300px;
	text-align: center;
	margin: auto;
	padding: 0 15px;
	display: none;
}
.main {
	flex-grow: 1;
	padding-bottom: 250px;
}
.container {
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 100vh;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.container .slider {
	position: absolute;
	top: 0;
	left: 0;
	width: 500%;
	height: 100%;
	animation: animate 10s linear infinite;
}
.container .slider .slide {
	position: relative;
	width: 20%;
	height: 100%;
	float: left;
}
.container .slider .slide1 {
	background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(home.jpg);
	background-size: cover;
	background-position: center;
}
.container .slider .slide2 {
	background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(jr1.jpg);
	background-size: cover;
	background-position: center top;
}
.container .slider .slide3 {
	background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(pg6.jpg);
	background-size: cover;
	background-position: center top;
}
.container .slider .slide4 {
	background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(pg2.jpg);
	background-size: cover;
	background-position: center top;
}
@keyframes animate {
	0% {left: 0%;}
	20% {left: 0%;}
	25% {left: -100%;}
	45% {left: -100%;}
	50% {left: -200%;}
	70% {left: -200%;}
	75% {left: -300%;}
	95% {left: -300%;}
	100% {left: -400%;}
}
.content_wrapper {
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	position: absolute;
	letter-spacing: 5px;
	text-align: center;
	z-index: 1;
	color: #fff;
	width: 100%;
}
.content-title h1 {
	font-size: 70px;
	color: #c4a77b;
	text-shadow: 2px 2px 10px #000;
	text-align: center;
	line-height: 30px;
	font-family: 'El Messiri', sans-serif, Serif, Arial;
	word-spacing: 4px;
	letter-spacing: 2px;
}
.content-text p {
	margin-top: 20px;
	font-size: 38px;
	padding: 20px;
	color: #fff;
	text-align: center;
	line-height: 40px;
	font-family: 'Tangerine', sans-serif, Serif, Arial;
	word-spacing: 4px;
	letter-spacing: 2px;
}
.more-below {
	text-decoration: none;
	font-size: 15px;
	color: #fff;
	border: 2px solid #f4a4a4;
	padding: 9px;
	letter-spacing: 1px;
	max-width: 200px;
	text-align: center;
	border-radius: 20px;
	font-weight: 600;
	cursor: pointer;
	font-family: 'Lato', sans-serif, Serif, Arial;
}
.more-below:hover {
	background: #f4a4a4;
}
#header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 110px;
	z-index: 1;
}
.logo {
	float: left;
	width: 180px;
	height: 75px;
	margin-left: 100px;
}
#header ul {
	list-style: none;
	float: right;
	margin-right: 40px;
}
#header ul li {
	display: inline-block;
	line-height: 80px;
	margin: 0 20px;
}
#header ul li a {
	color: #c4a77b;
	text-decoration: none;
	font-size: 1em;
	font-weight: 600;
	text-transform: uppercase;
	padding-bottom: 5px;
	letter-spacing: 2px;
	font-family: 'Lato', sans-serif, Arial, Serif, Arial;
}
#header a:hover,
#header a.active {
	border-bottom: 2px solid #f4a4a4;
}
#header a:hover {
	transition: 0.3s;
}
#header:after {
	content: '';
	display: block;
	clear: both;
}
.hamburger-icon {
	width: 35px;
	height: 30px;
	display: inline-block;
	position: absolute;
	top: 16px;
	right: 20px;
	padding: 12px 9px;
	cursor: pointer;
	display: none;
}
.topLine,
.middleLine,
.bottomLine {
	width: 24px;
	height: 3px;
	background: white;
	margin: 4px;
	transition: .4s;
}
.change .topLine {
	transform: rotate(-45deg) translate(-5px, 5px);
}
.change .middleLine {
	opacity: 0;
}
.change .bottomLine {
	transform: rotate(45deg) translate(-5px, -5px);
}
/**********************/

.title-box {
	text-align: center;
}
.service-title {
	display: inline-block;
	text-transform: capitalize;
	border-bottom: 4px solid #f4a4a4;
	font-size: 3em;
	color: #c4a77b;
	font-family: 'Charm', sans-serif, Serif, Arial;
	letter-spacing: 3px;
	margin: 100px 0 10px 0;
}
.wrapper {
	max-width: 90%;
	margin-left: auto;
	margin-right: auto;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-column-gap: 2em;
	grid-auto-rows: minmax(500px, auto);
	padding-top: 80px;
}
.box {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 500px;
	margin-bottom: 40px;
}
.wrapper .box {
	padding: 15px;
	border-radius: 5px;
}
.wrapper .box:hover {
	margin-top: -15px;
}
.wrapper .box:nth-child(1) {
	background-image: linear-gradient(rgba(26, 26, 26, 0.4), rgba(26, 26, 26, 0.4)), url(pg.jpg);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	transition: .5s ease;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
}
.wrapper .box:nth-child(2) {
	background-image: linear-gradient(rgba(26, 26, 26, 0.4), rgba(26, 26, 26, 0.4)), url(lm2.jpg);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	transition: .5s ease;
	height: 500px;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
}
.wrapper .box:nth-child(3) {
	background-image: linear-gradient(rgba(26, 26, 26, 0.4), rgba(26, 26, 26, 0.4)), url(jr.jpg);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	transition: .5s ease;
	height: 500px;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
}
.wrapper .box:nth-child(4) {
	background-image: linear-gradient(rgba(26, 26, 26, 0.4), rgba(26, 26, 26, 0.4)), url(pg3.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	transition: .5s ease;
	height: 500px;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
}
.wrapper .box:nth-child(5) {
	background-image: linear-gradient(rgba(26, 26, 26, 0.4), rgba(26, 26, 26, 0.4)), url(jr1.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	transition: .5s ease;
	height: 500px;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
}
.wrapper .box:nth-child(6) {
	background-image: linear-gradient(rgba(26, 26, 26, 0.4), rgba(26, 26, 26, 0.4)), url(cont-us.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	transition: .5s ease;
	height: 500px;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
}
.service-info {
	color: #fff;
	text-transform: uppercase;
	font-size: 40px;
	font-family: 'El Messiri', sans-serif, Serif, Arial;
	font-weight: 700;
	letter-spacing: 2px;
	
}
.more-info {
	position: relative;
	top: 150px;
	text-decoration: none;
	font-size: 1em;
	color: #f4a4a4;
	border: 2px solid #f4a4a4;
	padding: 6px;
	border-radius: 20px;
	cursor: pointer;
	font-family: 'Lato', sans-serif, Serif, Arial;
}
.more-info:hover {
	background: #f4a4a4;
	border: 2px solid #f4a4a4;
	color: #fff;
}
.final-text {
	text-align: center;
	margin: 80px auto 0 auto;
}
.final-text-msg {
	max-width: 100%;
	width: 1200px;
	font-size: 1.8em;
	font-family: 'Charm', sans-serif, Serif, Arial;
	color: #f4a4a4;
	text-align: center;
	word-spacing: 5px;
	letter-spacing: 2px;
	margin: auto;
}
/***************************/

#footer {
	display: grid;
	grid-template-columns: 1fr 2fr 2fr;
	grid-column-gap: 2em;
	width: 100%;
	background: #ffe9ec;
	text-align: center;
	padding: 20px;
	color: #c4a77b;
	font-family: 'Lato', sans-serif, Serif, Arial;
}
.footerComment {
	background: #f4a4a4;
	font-family: 'Lato', sans-serif, Serif, Arial;
	padding: 5px;
	font-family: 'Lato', sans-serif, Serif, Arial;
}
.footerComment p {
	text-align: center;
	padding-bottom: 5px;
	word-spacing: 2px;
	font-size: 1em;
	color: #fff;
}
.social {
	width: 100%;
	height: auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	word-spacing: 2px;
	letter-spacing: 2px;
	text-transform: uppercase;
}
.socialMedia a {
	display: inline-flex;
	text-decoration: none;
	font-size: 18px;
	width: 30px;
	height: 30px;
	color: #f4a4a4;
	padding-top: 15px;
	transition: 0.6s;
}
.socialMedia a:hover {
	transform: translate(0, -5px);
	color: black;
}
.footerInfo {
	width: 100%;
	background: none;
	font-size: 1em;
	border: none;
	outline: none;
	letter-spacing: 2px;
	text-transform: uppercase;
	font-family: 'Lato', sans-serif, Serif, Arial;
	color: #c4a77b;
	font-weight: bold;
	cursor: pointer;
	transition: 0.4s;
	position: relative;
	display: none;
}
.footerInfo:hover {
	transform: translate(0, -5px);
	color: black;
}
.footerH4 {
	width: 100%;
	font-size: 1em;
	letter-spacing: 2px;
	text-transform: uppercase;
	font-family: 'Lato', sans-serif, Serif, Arial;
	color: #c4a77b;
	font-weight: bold;
	cursor: pointer;
	transition: 0.6s;
}
#footerH4:hover,
.footerH4:hover {
	transform: translate(0, -5px);
	transition: 0.6s;
	color: black;
}
.pLinks {
	display: inline-block;
	text-decoration: none;
	margin-right: 15px;
	font-size: 1em;
	color: #f4a4a4;
	transition: 0.6s;
	padding-top: 15px;
	display: none;
}
.pLinks:hover {
	transform: translate(0, -5px);
	color: black;
}
.infoLinks {
	display: none;
}
.one {
	display: inline-block;
	text-decoration: none;
	margin-right: 15px;
	font-size: 1em;
	color: #f4a4a4;
	transition: 0.6s;
	padding-top: 15px;
}
.one:hover {
	transform: translate(0, -5px);
	color: black;
}
/*** Media Queries **/

@media (max-width: 1380px) {
	.logo {
		width: 150px;
		margin-left: 10px;
	}
}
@media (max-width: 1220px) {
	#header ul li {
		margin: 0 10px;
	}
}
@media (max-width: 1060px) {
	#header ul {
		margin-right: 20px;
	}
	#header ul li a {
		font-size: 0.9em;
	}
}
@media (max-width: 1000px) {
	ul {
		position: fixed;
		width: 100%;
		height: 100vh;
		background: #ffe9ec;
		top: 80px;
		left: -100%;
		text-align: center;
		transition: all 0.5s;
		overflow-y: auto;
		z-index: 1;
	}
	.change ul {
		left: 0;
	}
	#header ul li {
		display: block;
		line-height: 4;
	}
	#header ul li a {
		font-size: 17px;
	}
	#header a:hover,
	#header a.active {
		border-bottom: 2px solid #f4a4a4;
	}
	.hamburger-icon {
		display: block;
	}
}
@media(max-width: 850px) {
	.content-title h1 {
		font-size: 45px;
	}
	.content-text p {
		margin-top: -5px;
		font-size: 25px;
	}
	.more-below {
		font-size: 12px;
	}
	.service-title {
		font-size: 2.5em;
	}
	.service-info {
		font-size: 30px;
	}
	.final-text-msg {
		font-size: 1.5em;
	}
}
@media(max-width: 540px) {
	.content-title h1 {
		font-size: 35px;
	}
	.content-text p {
		font-size: 20px;
	}
	.service-title {
		font-size: 2em;
	}
	.more-below {
		font-size: 10px;
	}
	.final-text-msg {
		font-size: 1.3em;
	}
	.more-info {
		font-size: 13px;
		padding: 6px;
	}
}
@media(max-width: 453px) {
	.service-title {
		font-size: 2em;
	}
}
@media(max-width: 326px) {
	.service-title {
		font-size: 1.5em;
	}
}
/************/

@media(max-width: 991px) {
	.wrapper {
		grid-template-columns: 1fr;
		grid-row-gap: 2em;
	}
}
/************/

@media(max-width: 1160px) {
	.one {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	.one {
		display: block;
	}
}
@media(max-width: 846px) {
	#footer {
		grid-template-columns: 1fr 1fr 1fr;
		grid-column-gap: 1em;
	}
	.footerH4,
	.one {
		display: none;
	}
	/**plus**/
	.footerInfo {
		display: block;
	}
	.pLinks {
		display: block;
	}
	.pLinks {
		padding-left: 15px;
	}
	.footerInfo:after {
		content: "\02795";
		font-size: .5em;
		float: right;
		background-color: #f4a4a4;
		padding: 3px;
		border-radius: 50%;
		margin-left: 22px;
		position: absolute;
		margin-top: 4px;
	}
	.twist:after {
		content: '\2796';
	}
}
@media(max-width: 599px) {
	#footer {
		grid-template-columns: 1fr;
		grid-row-gap: 2em;
	}
	.footerH4,
	.one {
		display: none;
	}
	/**plus**/
	.footerInfo {
		display: block;
	}
	.pLinks {
		display: block;
	}
	.pLinks {
		padding-left: 15px;
	}
	.footerInfo:after {
		content: "\02795";
		font-size: .5em;
		float: right;
		background-color: #f4a4a4;
		padding: 3px;
		border-radius: 50%;
		margin-left: 22px;
		position: absolute;
		margin-top: 4px;
	}
	.twist:after {
		content: '\2796';
	}
}
@media(max-width: 270px) {
	#bg-image, #header, .main, #footer, .footerComment {
		display: none;
	}
	.reset {
		display: block;
	}
}