* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}
.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: 150px;
}
#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);
}
.showcase {
	width: 100%;
	height: 100vh;
}
.showcase-img {
	background-image: url(jr1.jpg);
	background-size: cover;
	background-position: top;
	background-repeat: no-repeat;
	height: 100vh;
}
.title-box {
	text-align: center;
}
.service-title {
	display: inline-block;
	text-transform: capitalize;
	border-bottom: 4px solid #f4a4a4;
	font-size: 4em;
	color: #c4a77b;
	font-family: 'Charm', sans-serif, Serif, Arial;
	letter-spacing: 3px;
	padding-bottom: 5px;
	margin: 100px 0 10px 0;
}
.text-box{
	max-width: 1000px;
	height: 300px;
	margin-top: 30px;
	margin: 30px auto 0 auto;
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	text-align: center;
	color: #f4a4a4;
	font-size: 4rem;
	letter-spacing: 4px;
	font-weight: bold;
	font-family: 'Charm', sans-serif, Serif, Arial;
}
#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 {
	width: 100%;
	height: auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	word-spacing: 2px;
	letter-spacing: 2px;
	text-transform: uppercase;
	font-family: 'Lato', sans-serif, Serif, Arial;
}
.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: 326px) {
	.service-title {
		font-size: 1.5em;
	}
}
/*************************/

@media (max-width: 850px) {
	.service-title {
		font-size: 2.5em;
	}
}
@media(max-width: 540px) {
	.service-title {
		font-size: 2em;
	}
}
@media(max-width: 453px) {
	.service-title {
		font-size: 2em;
	}
}
@media(max-width: 330px) {
	.service-title {
		font-size: 1.5em;
	}
}
@media(max-width: 900px) {
	.blog-post {
        grid-template-columns: 1fr;
    }
    
}
    /**********************/

	
/**** footer quries ***/
@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;
    }
    /** This is the button and 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;
    }
    /**button and 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) {
    #header, .main, #footer, .footerComment {
        display: none;
    }
    .reset {
        display: block;
    }
}
