* {
	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;
}
#header {
	width: 100%;
	height: 80px;
	background: #ffe9ec;
}
.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, 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: black;
	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: 'El Messiri', sans-serif, Serif, Arial;
	letter-spacing: 3px;
	padding-bottom: 5px;
	margin: 100px 0 10px 0;
}
/************************/

.row {
	display: flex;
	flex-wrap: wrap;
}
.container {
	max-width: 1400px;
	margin: auto;
}
.portfolio {
	background: #fff;
	padding: 60px 15px;
}
.portfolio .portfolio-items {
	display: flex;
	flex-wrap: wrap;
	flex-basis: 100%;
	max-width: 100%;
	justify-content: space-around;
	/*add*/
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
	padding: 30px;
	background: #ffe9ec;
}
.portfolio .portfolio-items .item {
	flex-basis: calc(33.3% - 30px);
	max-width: calc(33.3% - 30px);
	margin-bottom: 30px;
	position: relative;
}
.portfolio .portfolio-items .item img {
	width: 100%;
	display: block;
	/*add*/
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
	border: 4px solid #fff;
}
.portfolio .portfolio-items .item .overlay {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	z-index: 10;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	transform: scale(0.5);
	opacity: 0;
	transition: All 0.3s ease;
	display: none;
}
.portfolio .portfolio-items .item:hover .overlay {
	transform: scale(0.9);
	opacity: 1;
}
.portfolio .portfolio-items .item .overlay h2 {
	font-size: 24px;
	color: #fff;
	margin: 30px 0;
	font-weight: 400;
	display: none;
	font-family: 'Lato', sans-serif, Serif, Arial;
}
.portfolio .portfolio-items .item .overlay .fa {
	display: inline-block;
	height: 60px;
	width: 60px;
	text-align: center;
	line-height: 60px;
	border-radius: 5px;
	font-size: 30px;
	color: #000000;
	background: #fff;
	cursor: pointer;
	display: none;
}
/**************************/

.lightbox {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 100;
	background: rgba(0, 0, 0, 0.6);
	display: none;
	justify-content: center;
	align-items: center;
	cursor: zoom-out;
	padding: 0 15px;
}
.lightbox.open {
	display: flex;
}
.lightbox .lightbox-img {
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 600px;
	cursor: pointer;
	animation: lightboxImage .5s ease;
	border: 4px solid #fff;
}
@keyframes lightboxImage {
	0% {
		transform: scale(0);
	}
	100% {
		transform: scale(1);
	}
}
.lightbox .lightbox-content {
	position: relative;
}
.lightbox .lightbox-caption {
	color: #fff;
	font-size: 16px;
	position: absolute;
	left: 0;
	width: 100%;
	display: flex;
	justify-content: space-between;
	font-family: 'Lato', sans-serif, Serif, Arial;
	z-index: -1;
}
.lightbox .lightbox-close {
	position: absolute;
	z-index: 101;
	font-size: 30px;
	right: 0;
	height: 50px;
	width: 50px;
	top: -40px;
	text-align: center;
	line-height: 50px;
	color: #fff;
	font-family: 'Lato', sans-serif, Serif, Arial;
	font-weight: 600;
}
.lightbox .lightbox-controls div {
	position: absolute;
	top: 50%;
	height: 40px;
	width: 40px;
	text-align: center;
	line-height: 40px;
	font-size: 35px;
	font-weight: 400;
	margin-top: -20px;
	background: #fff;
	font-family: 'Lato', sans-serif, Serif, Arial;
	border-radius: 50%;
	transition: All .3s ease;
}
.lightbox .lightbox-controls div:hover {
	background: #ddd;
}
.lightbox .lightbox-controls div.prev {
	left: 30px;
	cursor: pointer;
}
.lightbox .lightbox-controls div.next {
	right: 30px;
	cursor: pointer;
}
@media(max-width: 991px) {
	.portfolio .portfolio-items .item {
		flex-basis: calc(50% - 30px);
		max-width: calc(50% - 30px);
	}
}
@media(max-width: 575px) {
	.portfolio .portfolio-items .item {
		flex-basis: calc(100%);
		max-width: calc(100%);
	}
}
/********************/

#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
}
.footerComment p {
	text-align: center;
	padding-bottom: 5px;
	word-spacing: 2px;
	font-size: 1em;
	color: #fff;
}
.social {
	font-family: 'Lato', sans-serif, Serif, Arial;
	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;
	font-family: 'Lato', sans-serif, Serif, Arial;
}
.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;
	font-family: 'Lato', sans-serif, Serif, Arial;
}
.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;
	font-family: 'Lato', sans-serif, Serif, Arial;
}
.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: 530px) {
	.service-title {
		font-size: 2.1em;
	}
}
@media(max-width: 380px) {
	.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;
	}
	.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;
	}
	.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) {
	#header, .main, #footer, .footerComment {
		display: none;
	}
	.reset {
		display: block;
	}
}