/*-----------------------------------------------------
Table of Contents

1. General Styles
2. Navigation
3. Footer
4. Pages
	# About Us
	# Case Study
	# Contact 
	# Homepage
		= About Us
		= Contact Us
		= Featured Works
		= Hero
		= Services
	# Journal
	# Projects
	# Project Category
	# Single Journal Entry

------------------------------------------------------*/

/*-----------------------------------------------------
1. General Styles
------------------------------------------------------*/

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	overflow-x: hidden;
	overflow-y: scroll;
}

body {
	font-family: Muli, sans-serif;
	font-size: 100%;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
}

a {
	text-decoration: none;
	transition: all .2s ease-in-out;
}

.btn,
.btn-inverse {
	align-items: center;
	display: flex;
	font-family: Montserrat, sans-serif;
	font-size: .75rem;
	font-weight: 600;
	height: 60px;
	letter-spacing: 2.5px;
	justify-content: center;
	text-transform: uppercase;
	width: 250px;
}

.container {
	max-width: 1410px;
	margin: auto;
}

.container-large {
	max-width: 1720px;
	margin: auto;
}

.clearfix {
	clear: both;
}

.img-cover  {
	background: lightslategray;
    display: block;
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.img-responsive {
    display: block;
    max-width: 100%;
    height: auto;
}

/*-----------------------------------------------------
2. Navigation
------------------------------------------------------*/

.header {
	/* height: 100px; */
	line-height: 100px;
	width: 100%;
	background-color: #fff;
}

.logo {
	height: 56px;
	margin-top: 20px;
}

.navigation {
	float: right;
}
.navigation li {
	float: left;
	font-family: Montserrat, sans-serif;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 2px;
	list-style: none;
	margin-left: 25px;
	text-transform: uppercase;
}
.navigation li a:hover{
	color: #009640;
}
.open-nav {
	display: none;
	float: right;
	height: 22px;
	margin: 38px 0;
	position: relative;
	width: 28px;
}

.open-nav:hover {
	cursor: pointer;
	color: #009640;
}

.open-nav i {
	position: absolute;
	top: 50%;
	right: 0;
	height: 2px;
	width: 100%;
	transition: all .3s ease-in-out;
}

.open-nav i:before {
	position: absolute;
	top: -9px;
	content: " ";
	height: 2px;
	width: 100%;
	transition: all .3s ease-in-out;
}

.open-nav i:after {
	position: absolute;
	top: 9px;
	content: " ";
	height: 2px;
	width: 100%;
	transition: all .3s ease-in-out;
}

.open-nav:hover i:before,
.open-nav:hover i:after {
	width: 80%;
}

.responsive-nav-container {
	position: fixed;
	top: 0;
	left: -100%;
	bottom: 0;
	right: 0;
	height: 100vh;
	width: 100vw;
	opacity: 0;
	transition: opacity .4s, left 0s .4s;
	z-index: 2;
}

.responsive-nav-container.active {
	left: 0;
	opacity: 1;
	transition: opacity .4s, left 0s;
}

.close-nav {
	font-size: 1.5rem;
	position: absolute;
	right: 70px;
	top: 35px;
}

.responsive-nav {
	left: 70px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.responsive-nav li {
	font-family: 'DM Serif Display', serif;
	font-size: 2.7rem;
	letter-spacing: 1px;
	list-style: none;
	margin-bottom: 8px;
	position: relative;
	text-transform: capitalize;
}

.social-links {
	bottom: 35px;
	left: 70px;
	position: absolute;
}

.social-links li {
	float: left;
	font-family: Montserrat, sans-serif;
	font-size: .6875rem;
	font-weight: 500;
	letter-spacing: 3px;
	list-style: none;
	margin-right: 50px;
	text-transform: uppercase;
}

/*-----------------------------------------------------
3. Footer
------------------------------------------------------*/

footer {
	padding-top: 100px;
}

.footer-details {
	float: left;
	width: 25%;
}

.footer-details li {
	letter-spacing: .2px;
	list-style: none;
	margin-bottom: 5px;
	text-transform: capitalize;
}

.footer-details li:first-child {
	font-family: 'DM Serif Text', sans-serif;
	font-size: 1.625rem;
	margin-bottom: 9px;
}

.footer-details .footer-email {
	text-transform: lowercase;
}

.footer-details:nth-of-type(4) li:first-child {
	margin-bottom: 20px;
}

.footer-details form input {
	border: none;
	float: left;
	font-family: Montserrat, sans-serif;
	height: 50px;
	outline: none;
	padding-left: 25px;
	width: 80%;
}

.footer-details form input::placeholder {
	font-family: Montserrat, sans-serif;
}

.footer-details form button {
	border: none;
	cursor: pointer;
	float: left;
	height: 50px;
	transition: all .2s ease-in-out;
	width: 20%;
}

.footer-details form button img {
	width: 27%;
}

.copyright {
	font-size: 1.125rem;
	padding: 130px 0 43px 0;
	text-transform: capitalize;
}

/*-----------------------------------------------------
4. Pages
------------------------------------------------------*/

/* =============== # About Us =============== */

.about-page .info {
	margin: 145px 0 140px 0;
}

.about-page .info h2 {
	font-family: Montserrat, sans-serif;
	font-size: .75rem;
	font-weight: 500;
	letter-spacing: 2.5px;
	margin-bottom: 20px;
	text-transform: uppercase;
}

.about-page .info h1 {
	font-family: 'DM Serif Text', serif;
	font-size: 3rem;
	font-weight: 400;
	line-height: 1.2;
	text-transform: capitalize;
}

.about-page .info header,
.about-page .info .content {
	float: left;
	width: 48%;
}

.about-page .info .content {
	margin-top: 50px;
	margin-left: 4%;
}

.about-page .info p {
	font-size: 1.1rem;
	line-height: 1.7;
}

.about-page .info p:nth-of-type(1) {
	margin-bottom: 18px;
}

.about-page-img {
	height: 600px;
	width: 100%;
}

/* =============== # Case Study =============== */

.case-study .hero {
	height: 700px;
	width: 100%;
}

.case-study .hero .img-placeholder {
	background: url('..//img/image-placeholder.jpg');
	-webkit-background-size: cover;
	background-size: cover;
	background-position: right;
	height: 700px;
	left: 0;
	position: absolute;
	top: 100px;
	width: 63%;
	z-index: -999;
}

.case-study .hero .content {
	float: right;
	padding-top: 200px;
	width: 44%;
}

.case-study .hero .content h2 {
	font-family: Montserrat, sans-serif;
	font-size: .75rem;
	font-weight: 500;
	letter-spacing: 2.5px;
	margin-left: 12%;
	padding-left: 100px;
	position: relative;
	text-transform: uppercase;
}

.case-study .hero .content h2:before {
	content: '';
	height: 1px;
	left: 0;
	position: absolute;
	top: 8px;
	width: 70px;
}

.case-study .hero .content h1 {
	font-family: 'DM Serif Display', serif;
	font-size: 5.5rem;
	font-weight: 400;
	line-height: .9;
	margin: 33px 0 38px 0;
	text-transform: capitalize;
}

.case-study .hero .content p {
	font-size: 1.2rem;
	line-height: 1.6;
	margin-left: 30%;
}

.case-study .info {
	float: left;
	margin: 137px 0 140px 8.5%;
	width: 50%;
}

.case-study .info p:first-child {
	font-size: 1.3rem;
	font-weight: 700;
	margin-bottom: 20px;
}

.case-study .info p {
	font-size: 1.2rem;
	line-height: 1.7;
}

.case-study .info-2 {
	font-size: 1.375rem;
	line-height: 1.7;
	letter-spacing: .2px;
	margin: 106px auto;
	text-align: center;
	width: 65%;
}

.case-study .details {
	float: right;
	margin-top: 150px;
	padding: 32px 0 40px 0;
	width: 26%;
}

.case-study .details li {
	float: left;
	font-family: 'DM Serif Text', serif;
	font-size: 1.375rem;
	font-weight: 400;
	list-style: none;
	padding: 0 0 0 45px;
	text-transform: capitalize;
	width: 50%;
}

.case-study .details li:nth-of-type(even) {
	padding: 0 0 0 30px;
}

.case-study .details li:nth-of-type(1),
.case-study .details li:nth-of-type(2) {
	margin-bottom: 18px;
}

.case-study .details li span {
	display: block;
	font-family: Montserrat, sans-serif;
	font-size: .6875rem;
	letter-spacing: 1.5px;
	margin-top: 6px;
	margin-top: 3px;
	text-transform: uppercase;
}

.case-study .details li:nth-of-type(2) span {
	margin-top: 0.5px;
}

.case-study .details .small-letter {
	display: inline-block;
	text-transform: lowercase;
}

.case-study-image_1 {
	height: 700px;
	margin-bottom: 60px;
	width: 100%;
}

.case-study-image_2,
.case-study-image_3,
.case-study-image_4,
.case-study-image_5 {
	float: left;
	height: 700px;
	width: 48%;
}

.case-study-image_2,
.case-study-image_4 {
	margin-right: 4%;
}

.next-project {
	margin-top: 150px;
}

.next-project header {
	align-items: center;
	display: flex;
	float: left;
	height: 450px;
	justify-content: center;
	width: 33%;
}

.next-project header h2 {
	font-family: 'DM Serif Display', serif;
	font-size: 4.2rem;
	font-weight: 400;
	line-height: 1.2;
	text-transform: capitalize;
}

.next-project .thumbnail {
	float: left;
	height: 450px;
	width: 67%;
}


/* =============== # Contact  =============== */

.contact-image {
	background: url('..//img/image-placeholder.jpg');
	background-position: right;
	-webkit-background-size: cover;
	background-size: cover;
	height: 625px;
	float: right;
	width: 38%;
}

.contact .container {
	position: relative;
}

.contact-form-container {
	/* height: 647px;
	padding: 60px 100px 0 0;
	position: absolute;
	top: 120px;
	width: 62%; */
}

.contact-form-container h1 {
	font-family: 'DM Serif Display', serif;
	font-size: 4.5rem;
	font-weight: 400;
	padding-bottom: 30px;
	text-transform: capitalize;
}
.contact-form-container h2 {
	font-family: 'DM Serif Display', serif;
	font-size: 2rem;
	font-weight: 400;
	padding-bottom: 30px;
	text-transform: capitalize;
}
.contact-header h1 {
	font-family: 'DM Serif Display', serif;
	font-size: 4.5rem;
	font-weight: 400;
	padding-bottom: 30px;
	text-transform: capitalize;
}
.contact-form input,
.contact-form textarea {
	border: none;
	outline: none;
}

.contact-form input {
	margin-bottom: 30px;
}

.contact-form input::placeholder,
.contact-form input,
.contact-form textarea::placeholder {
	font-family: Montserrat, sans-serif;
	font-size: .75rem;
	letter-spacing: .3px;
}

.contact-form input[name=name],
.contact-form input[name=email],
.contact-form input[name=project-type], 
.contact-form input[name=phone-number] {
	float: left;
	height: 50px;
	line-height: 50px;
	padding-left: 20px;
	width: 48%;
}

.contact-form input[name=name],
.contact-form input[name=project-type] {
	margin-right: 4%;
}

.contact-form textarea {
	height: 200px;
	padding: 25px;
	width: 100%;
}

.contact-form textarea {
	font-family: Montserrat, sans-serif;
	font-size: .875rem;
	line-height: 1.6;
}

.contact-form textarea::-webkit-scrollbar {
    width: 8px; 
}

.contact-form input[type=submit] {
	cursor: pointer;
	float: right;
	letter-spacing: 2.5px;
	margin-top: 23px;
	transition: all .2s linear;
}

/* =============== # Homepage =============== */

/* =============== = About us =============== */

.about-us {
	margin: 150px 0;
}

.about-us .block-1 {
	float: left;
	width: 57%;
}

.about-us .block-2 {
	float: left;
	width: 43%;
}

.about-us .block-1 {
	margin-top: 100px;
}

.about-us .block-2 .about-image {
	height: 670px;
}

.about-us .content h3 {
	font-family: Montserrat, sans-serif;
	font-size: .75rem;
	font-weight: 600;
	letter-spacing: 2.5px;
	text-transform: uppercase;
}

.about-us .content h2 {
	font-family: 'DM Serif Display', serif;
	font-size: 3.8rem;
	font-weight: 400;
	line-height: 1.1;
	margin: 28px 0 30px 0;
	text-transform: capitalize;
}

.about-us .content p {
	font-size: 1.1rem;
	line-height: 1.7;
	margin-bottom: 42px;
	width: 73%;
}

/* =============== = Contact Us =============== */

.contact-us .block-1 {
	align-items: center;
	display: flex;
	float: left;
	height: 680px;
	justify-content: center;
	width: 50%;
}

.contact-us .block-1 .content {
	width: 60%;
}

.contact-us .block-1 .content h2 {
	font-family: 'DM Serif Text', serif;
	font-size: 4rem;
	font-weight: 400;
	letter-spacing: .5px;
	line-height: 1.1;
}

.contact-us .block-1 .content p {
	font-size: 1.25rem;
	line-height: 1.8;
	letter-spacing: .5px;
	margin: 32px 0 48px 0;
}

.contact-us .block-2 {
	background: url('..//img/fashion-interior-living-area.jpg');
	background-position: center;
	-webkit-background-size: cover;
	background-size: cover;
	float: right;
	height: 680px;
	width: 50%;
}

/* =============== = Featured Works =============== */

.featured-works {
	margin: 150px 0;
}

.featured-works-item {
	height: 470px;
	margin-bottom: 60px;
	position: relative;
	width: 100%;
}

.featured-works-item .overlay {
	bottom: 0;
	left: 0;
	opacity: 0;
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
	transition: all .3s linear;
}

.featured-works-item .overlay:hover {
	opacity: 1;
}

.featured-works-item .overlay .content {
	bottom: 30px;
	left: 30px;
	position: absolute;
}

.featured-works-item .overlay .content h2 {
	font-family: 'DM Serif Display', serif;
	font-size: 1.7rem;
	font-weight: 400;
	letter-spacing: .3px;
	margin-top: 8px;
	text-transform: capitalize;
}

.featured-works-item .overlay .content span {
	font-family: Montserrat, sans-serif;
	font-size: .75rem;
	letter-spacing: 1.5px;
	position: relative;
	text-transform: uppercase;
}

.featured-works-item .overlay .content span:nth-of-type(2) {
	margin-left: 100px;
}

.featured-works-item .overlay .content span:nth-of-type(2):after {
	content: '';
	height: 1px;
	left: -70px;
	position: absolute;
	top: 7px;
	width: 40px;
}

/* =============== = Hero =============== */

.main-hero {
	height: 820px;
}

.main-hero header {
	position: absolute;
}

.main-hero .block-1 {
	align-items: center;
	display: flex;
	float: left;
	height: 820px;
	width: 50%;	
}

.main-hero .block-1 h1 {
	font-family: 'DM Serif Display', serif;
	font-size: 4rem;
	font-weight: 400;
	line-height: 1.2;
	text-transform: capitalize;
}

.main-hero .block-1 p {
	font-size: 1.25rem;
	letter-spacing: .2px;
	line-height: 1.8;
	margin: 35px 0 48px 0;
	width: 76%;
}

.main-hero-image {
	background: url('..//img/fashion-interior-furnished-living-room.jpg');
	background-position: center;
	-webkit-background-size: cover;
	background-size: cover;
	float: right;
	height: 100%;
	width: 50%;
}

/* =============== = Services =============== */

.services .item {
	align-items: center;
	border-right: 1px solid #333;
	display: flex;
	float: left;
	height: 450px;
	width: 25%;
}

.services .item:nth-of-type(4) {
	border-right: none;
}

.services .item .content {
	text-align: center;
	width: 100%;
}

.services .item .icon {
	border: 1px solid #666;
	border-radius: 50%;
	display: flex;
	height: 135px;
	justify-content: center;
	margin: auto;
	width: 135px;
}

.services .item .icon img {
	height: 50px;
	margin-top: 42.5px;
}

.services .item .content h2 {
	font-size: .75rem;
	font-family: Montserrat, sans-serif;
	font-weight: 500;
	letter-spacing: 2.5px;
	margin-top: 35px;
	text-transform: uppercase;
}

/* =============== # Journal =============== */

.journal header {
	position: relative;
	z-index: 2;
}

.journal footer {
	position: relative;
}

.entries-list {
	width: 50%;
}

.entry {
	border-bottom: 1px solid #333;
	padding-bottom: 125px;
	padding-top: 125px;
}

.entry:nth-of-type(1) {
	border-top: 1px solid #333;
}

.entry-thumbs  {
	height: 100%;
	position: fixed;
	right: 0;
	top: 0;
	width: 50%;
}

.entry-thumbs > div {
	transition: opacity .6s;
}

.entry-thumb {
	opacity: 0;
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	width: 100%;
}

.active {
	opacity: 1;
}

.journal .entry-title {
	font-family: 'DM Serif Display', serif;
	font-size: 3.4rem;
	font-weight: 400;
	line-height: 1.2;
	margin-right: 35px;
	text-transform: capitalize;
}

.entry-category {
	display: inline-block;
	font-family: Montserrat, sans-serif;
	font-size: .75rem;
	font-weight: 500;
	letter-spacing: 3px;
	margin-bottom: 25px;
	text-transform: uppercase;
}

/* =============== # Projects =============== */


.projects-page main {
	padding-bottom: 80px;
}

.projects .item {
	float: left;
	margin-right: 3%;
	width: 22.75%;
}

.projects .item img {
	height: 370px;
}

.projects a:nth-of-type(4) .item {
	margin-right: 0;
}

.projects .item h2 {
	font-family: Montserrat, sans-serif;
	font-size: .75rem;
	font-weight: 500;
	letter-spacing: 2.5px;
	margin-top: 30px;
	position: relative;
	text-transform: uppercase;
}

.projects .item span {
	padding-right: 45px;
}

.projects .item span:after {
	content: "";
	display: inline-block;
	height: 1px;
	left: 34px;
	top: 8px;
	position: absolute;
	width: 15px;
}


/* =============== # Project Category =============== */

.project-category {
	margin-bottom: 137px;
	margin-top: 20px;
}

.project-category .item {
	float: left;
}

.project-category a:nth-of-type(odd) .item {
	margin: 0 11% 88px 0;
}

.project-category a:nth-of-type(1) .item, 
.project-category a:nth-of-type(5) .item, 
.project-category a:nth-of-type(8) .item {
	width: 40%;
}

.project-category a:nth-of-type(2) .item,
.project-category a:nth-of-type(3) .item,
.project-category a:nth-of-type(6) .item,
.project-category a:nth-of-type(7) .item {
	width: 49%;
}

.project-category a:nth-of-type(4) .item {
	margin-top: -280px;
	width: 40%;
}

.project-category a:nth-of-type(7) .item {
	margin-bottom: 0;
}

.project-category a:nth-of-type(8) .item {
	margin-top: -280px;
}

.project-category a:nth-of-type(1) .item-img,
.project-category a:nth-of-type(5) .item-img,
.project-category a:nth-of-type(8) .item-img {
	height: 770px;
}

.project-category a:nth-of-type(2) .item-img,
.project-category a:nth-of-type(6) .item-img,
.project-category a:nth-of-type(7) .item-img {
	height: 490px;
}

.project-category a:nth-of-type(3) .item-img {
	height: 390px;
}

.project-category a:nth-of-type(4) .item-img {
	height: 670px;
}

.project-category .item h2 {
	font-family: 'DM Serif Display', serif;
	font-size: 1.875rem;
	font-weight: 400;
	margin-top: 22px;
	text-transform: capitalize;
}


/* =============== # Single Journal Entry =============== */

.single-journal-entry .entry-thumbnail .container {
	position: relative;
}

.single-journal-entry .entry-category {
	font-weight: 600;
	letter-spacing: 2.5px;
	margin: 45px 0 14px 0;
}

.single-journal-entry .entry-title {
	font-family: 'DM Serif Display', serif;
	font-size: 3rem;
	font-weight: 400;
	line-height: 1.2;
	text-transform: capitalize;
}

.entry-meta {
	margin-top: 15px;
}

.entry-author {
	display: block;
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 3px;
	text-transform: capitalize;
}

.entry-author span {
	text-transform: lowercase;
}

.entry-date {
	display: block;
	font-size: .87rem;
	letter-spacing: .4px;
}

.entry-content {
	margin-top: 60px;
}

.entry-content p {
	font-size: 1.2rem;
	line-height: 1.6;
	margin-bottom: 22px;
	width: 55%;
}

.entry-content .intro {
	font-size: 1.3rem;
	font-weight: 700;
}

.entry-image_1 {
	margin: 70px 0 67px 0;
	position: relative;
	width: 100%;
}

.entry-image_1 img {
	width: 66%;
}

.entry-image_1 figcaption {
	font-size: .8rem;
	left: 69%;
	letter-spacing: .2px;
	line-height: 1.7;
	padding-top: 30px;
	position: absolute;
	top: 0;
}

.quote {
	margin: 70px 0;
	padding: 94px 0 74px 0;
	width: 100%;
}

.quote p {
	font-family: 'DM Serif Display', serif;
	font-size: 2rem;
	line-height: 1.4;
	width: 100%;
}

.entry-image_2 {
	float: left;
	margin: 50px 0 67px 0;
	width: 50%;
}

.entry-image_3 {
	float: right;
	margin-top: 50px;
	width: 37%;
}

.entry-image_3 figcaption {
	font-size: .8rem;
	letter-spacing: .2px;
	line-height: 1.7;
	margin-top: 20px;
}

.similar-posts {
	margin-top: 140px;
}

.similar-posts header,
.similar-posts .item {
	float: left;
	height: 450px;
	width: 33.33333%;
}

.similar-posts header {
	align-items: center;
	display: flex;
	justify-content: center;
}

.similar-posts header h2 {
	font-family: 'DM Serif Display', serif;
	font-size: 4.2rem;
	font-weight: 400;
	line-height: 1.2;
	text-transform: capitalize;
}

.similar-posts .item {
	position: relative;
	cursor: pointer;
}

.similar-posts .item .overlay {
	bottom: 0;
	height: 100%;
	left: 0;
	opacity: 0;
	position: absolute;
	top: 0;
	transition: all .3s linear;
	width: 100%;
}

.similar-posts .item:hover .overlay {
	opacity: 1;
}

.similar-posts .item .overlay .content {
	bottom: 50px;
	padding: 0 35px;
	position: absolute;
	width: 100%;
}

.similar-posts .item .overlay .category {
	font-family: Montserrat, sans-serif;
	font-size: .75rem;
	font-weight: 500;
	letter-spacing: 3px;
	text-transform: uppercase;
}

.similar-posts .item .overlay .title {
	font-family: 'DM Serif Display', serif;
	font-size: 2rem;
	font-weight: 400;
	letter-spacing: .7px;
	line-height: 1.3;
	margin-top: 7px;
	text-transform: capitalize;
}


/* Custom CSS By Adil - UI UX Designer (Impairbit) */
a.icon {
    height: auto;
    display: inline-block;
    width: auto;
}
a.icon >svg{
    width: 20px;
    height: auto;
    margin-bottom: -5px !important;
    top: 10px;
    padding-top: 10px;
    margin-right: 10px;	
}
.search-box {
    height: auto;
    position: relative;
}
.search-box .input-box {
    position: absolute;
    top: 70px;
    right: 0px;
    width: 250px;
}

.search-box .input-box .input-group-btn button {
	width: 40px;
    height: 34px;
    font-size: 12px;
}
.search-box:hover .input-box {
	display: flex;
}
.search-box .input-box input.search-input{
	padding: 10px 15px;
	border: 1px solid #ddd;
	outline: none;
}
.search-box .input-box ul li{
	font-size:12px;
	margin-left:0px;
	width: 100%;
	line-height: 1.2;
}
.search-box .input-box .search-button{
	background: #333;
	color: #fff;
	border: none;
	cursor: pointer;
	width: 45px;
}
.search-box .input-box .search-button>svg{
	fill: #fff;
}
ul.submenu {
    position: absolute;
    display: flex;
    flex-direction: column;
	top: 80px;
	display: none;
	box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
	z-index: 1;
	left: -50px;
	text-align: left;
}
.submenu-link{
	position: relative;
}
.submenu-link:hover ul.submenu{
	display: flex;
}
.navigation ul.submenu li {
    margin-left: 0;
    line-height: 1;
    background-color: #fff;
	padding-top: 15px;
	padding-bottom: 15px;
	padding-left: 25px;
	padding-right: 25px;
	border-bottom: 1px solid #eee;
	white-space: nowrap;
}
.navigation ul.submenu li a{
	cursor: pointer;
}
.navigation ul.submenu li a:hover{
	color: #009640;
}

.search-list{
	background: #fafafa;
}

.search-list .search-list-header {
    display: flex;
    margin-top: 20px;
    margin-bottom: 15px;
    justify-content: space-between;
}
.search-list .search-box{
	display: flex;
}
.search-list input.search-input {
    background: #fff;
    border: 0;
    height: 50px;
    width: 300px;
	padding-left: 20px;
    color: #222;
	outline: none;
}
.search-list button.search-button {
    width: 50px;
    border: 0;
    background: #333;
	cursor: pointer;
}
.search-list button.search-button:hover{
	background-color: #111;
}
.search-list button.search-button>svg{
	fill: #fff;
}

.search-list .result-list {
	border-top: 1px solid #ddd;
    display: flex;
    flex-direction: column;
	margin-bottom: 20px;
}

.search-list .result-list .product {
	margin-top: 15px;
    display: flex;
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd;
}
/* .search-list .result-list .product:hover{
	background-color: #fff;
} */
.search-list .result-list .product-image {
    height: 200px;
    width: 300px;
}

.search-list .result-list .product-image>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.search-list .result-list .product-data {
    flex-grow: 1;
    padding: 25px;
}
.search-list .result-list .action-btn{
	padding: 25px;
}
.search-list .result-list .action-btn .button {
    height: 50px;
    padding: 15px;
    border: 0;
    background: #bbbbbb;
	text-decoration: none;
	color: initial;
}
.search-list .result-list .action-btn .button:hover{
	cursor: pointer;
	background-color: #111;
	color: #fff;
}

.search-list .result-list .data-div {
    margin-bottom: 10px;
    display: flex;
}

.search-list .result-list .data-div .title {
    font-weight: 700;
    margin-right: 15px;
}



/* Gallery Page Styles */
.photos h1 {
	font-family: 'DM Serif Display', serif;
	font-size: 3rem;
	font-weight: 400;
	line-height: 1.2;
	text-transform: capitalize;
	padding: 15px;
}


.photos ul {
    flex-wrap: wrap;
    display: flex;
    list-style: none;
    /* margin: 0; */
    /* padding: 0; */
}
.photos ul li{
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
    padding: 15px;
}

.photos ul li img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}
/* Start mobile responsive fix on navigation */

@media (min-width: 768px) and (max-width: 1140px) {
	.main-hero header{
		position:relative !important;
	}
	.main-hero header .container{
		background: #fff;
		margin-left: 0;
		margin-right: 0;
	}
	ul.submenu{
		
	}
	
}


/* Mobile Navigation */
@media (max-width: 768px) {
	.responsive-nav-container{
		overflow-y: auto;
	}
	.responsive-nav li{
		font-size:20px !important;
	}
	.responsive-nav .search-box .icon{ 
		display: none;
	}
	.responsive-nav .search-box .input-box{
		position: relative;
		display: flex;
		top: 0;
		margin-top: 20px;
		width: 100%;
	}
	.search-box .input-box .search-input{
		width: calc(100% - 45px);
	}
	.submenu-link:hover ul.submenu{
		display: none;
	}
	.submenu-link a svg {
		fill: #fff;
		margin-left: 5px;
		margin-bottom: -2px;
		height: 18px;
	}
	.submenu-link.active ul.submenu{
		display: flex;
		position: relative;
		left: 15px;
		right: 0;
		top: 10px;
		box-shadow: none;
		z-index: initial;
	}
	.submenu-link.active a svg{
		transform: rotate(90deg);
		transition-timing-function: ease-in;
	}
}


/* Contact Page Style */
.contact .container{
	display: flex;
	flex-wrap: wrap;
}
.contact-form-container{
	width: calc(100% - 0px );
	padding: 35px;
}
.contact-detail {
	width: 100% ;
    display: flex;
	justify-content: left;
    padding: 10px;
    flex-direction: row;
}
.contact-data {
	padding: 50px;
    background: #ffffff;
    border-bottom: 3px solid #797876;
    margin-top: 5px;
    color: #605f5d;
}
.contact-data h3{
	font-size: 20px;
	margin-bottom: 10px;
color: #000000;
}
@media (max-width: 1024px){
		.contact-form-container {
			top: 0;
			padding-right: 0;
			width: 100%;
		}
		.contact-detail{
			width: 100%;
			display: flex;
			flex-direction: row;
			justify-content: center;
			padding: 20px 0;
		}
		.contact-detail .contact-data{
			width: 33.3333%;
		}
}
@media (max-width: 768px) {
	.contact-detail, .contact-form-container{
		width: 100%;
	}
	.contact-detail{
		flex-direction: column;
	}
	.contact-detail .contact-data{
		width:100%;
	}
	.resp-hidden {
		display:none;
	}
	.search-input-box {
		width: 130px;
		float: right;
		margin-top: 15px;
	}
	.search-list .result-list .product {
		display: initial;
	}
	.search-list .result-list .product .product-data {
		padding: 15px 0;
	}
	.search-list .result-list .product .action-btn{
		text-align: left;
		padding: 15px 0;
	}
}

.search-term-highlight {
	font-weight: bold;
	background-color: #ffff00;
}

.close-nav {
	z-index:9999;
}
[ng\:cloak], [ng-cloak], [data-ng-cloak], [x-ng-cloak], .ng-cloak, .x-ng-cloak {
	display: none !important;
  }

/* Search Feature CSS */
.input-group{
	display: flex;
	width: 100%;
  }
  .input-group input{
	flex: 1 1 auto;
	border-radius: 0;
    padding: 0 10px;
	border-right: 0;
  }
.dropdown-menu {
	position: absolute;
	background: #fff;
    display: flex;
    flex-direction: column;
    top: 80px;
    box-shadow: 0 10px 20px rgb(0 0 0 / 19%), 0 6px 6px rgb(0 0 0 / 23%);
    z-index: 1;
}
.dropdown-menu li a{
	padding: 12px 10px;
    box-sizing: border-box;
    width: 100%;
    display: block;
}

.search-result-box{
	display: flex;
}
.search-result-box .search-input-box{
	display: flex;
	padding-left: 15px;
}
.search-result-box .search-input-box label{
	padding-right: 15px;
}
.search-result-box .search-input-box input, .search-result-box .search-input-box select{
	border: 1px solid #ddd;
    padding: 0 10px
}
@media (max-width: 768px) {
	.search-list .search-list-header{
		flex-direction: column;
	}	
	.search-result-box{
		flex-direction: column;
	}
	.search-result-box .search-input-box{
		width: 100%;
		justify-content: space-between;
	}
}
/* Search Pagination Style */
.product-page-no{
	display: flex;
    margin-top: 25px;
    justify-content: end;
}
ul.pagination{
	display: flex;
	list-style: none;
}
ul.pagination li a{
	padding:10px 13px;
	background: #fff;
	color: #222;
	border: .5px solid #ddd;
}
ul.pagination li.active a{
	background: #ebfff4;
}
ul.pagination li:hover a{
	color:#009640;
}
.filter-button{
	display: flex;
	justify-content: center;
	margin-bottom: 20px;
}
.filter-button .btn{
	height: 40px;
    width: auto;
	background-color: #fff;
	color: #222;
	border: 1px solid #333333;
	cursor: pointer;
	padding-left: 15px;
    padding-right: 15px;
}
.filter-button .btn:hover,.filter-button .btn.active{
	background-color: #333;
	color: #fff;
	transition-duration: .25s;
} 


.column {
	display: none; /* Hide all elements by default */
  }
  .show {
	display: block;
  }


