	/*======================
	01. Google fonts
	========================*/
	@font-face {
		font-family: 'Nexa Extra';
		src: url('../fonts/Nexa-ExtraLight.eot');
		src: url('../fonts/Nexa-ExtraLight.eot?#iefix') format('embedded-opentype'),
			url('../fonts/Nexa-ExtraLight.woff2') format('woff2'),
			url('../fonts/Nexa-ExtraLight.woff') format('woff'),
			url('../fonts/Nexa-ExtraLight.ttf') format('truetype'),
			url('../fonts/Nexa-ExtraLight.svg#Nexa-ExtraLight') format('svg');
		font-weight: 100;
		font-style: normal;
		font-display: swap;
	}

	@font-face {
		font-family: 'Nexa';
		src: url('../fonts/Nexa-Heavy.eot');
		src: url('../fonts/Nexa-Heavy.eot?#iefix') format('embedded-opentype'),
			url('../fonts/Nexa-Heavy.woff2') format('woff2'),
			url('../fonts/Nexa-Heavy.woff') format('woff'),
			url('../fonts/Nexa-Heavy.ttf') format('truetype'),
			url('../fonts/Nexa-Heavy.svg#Nexa-Heavy') format('svg');
		font-weight: 900;
		font-style: normal;
		font-display: swap;
	}

	@font-face {
		font-family: 'Bebas Neue';
		src: url('../fonts/BebasNeue-Regular.eot');
		src: url('../fonts/BebasNeue-Regular.eot?#iefix') format('embedded-opentype'),
			url('../fonts/BebasNeue-Regular.woff2') format('woff2'),
			url('../fonts/BebasNeue-Regular.woff') format('woff'),
			url('../fonts/BebasNeue-Regular.ttf') format('truetype'),
			url('../fonts/BebasNeue-Regular.svg#BebasNeue-Regular') format('svg');
		font-weight: normal;
		font-style: normal;
		font-display: swap;
	}
	body {
		font-family: 'Nexa Extra';
	}
	h1,
	h2,
	h3,
	h4,
	h5,
	h6{
		font-family: 'Bebas Neue';
	}
	#menu li a,
	.service_box strong,
	.contact_modal form label{
		font-family: 'Nexa';
	}
/*======================
   02. Basic css
========================*/
:root{
  --primary:#515740;
  --primary1:#b7b4b0;
  --primary2:#b78159;
  --primary3:#eae8e6;
  --secondary:#6b7c66;
  --secondary1:#8f8d7d;
  --secondary2:#c6ab92;
  --secondary3:#d1c7b9;
  --secondary4:#a1a9aa;
}
html{
	font-size: 62.5%;
}
html,
body,
div,
span,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
footer,
header,
menu,
nav,
section {
	margin: 0;
	padding: 0;
}

body {
	line-height: 1.7;
	background-color: #fff;
	color: #000;
	font-weight: 100;
	font-size: 1.8rem;
}
h1,
h2,
h3,
h4,
h5,
h6{
   font-weight: 600;
}

ol,
ul {
	list-style: none;
}

a:hover {
	text-decoration: none;
}

a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
	outline: none;
}
.section_padd {
	padding: 9.0rem 0;
}
h2 {
	font-size: 5rem;
	margin-bottom: 0;
	max-width: 75rem;
	margin-left: auto;
	margin-right: auto;
}

h2 ~ p {
	margin: 3rem auto 0rem auto;
}
.button {
	text-align: center;
	color: #fff !important;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-ms-flex-line-pack: center;
	    align-content: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-column-gap: 1.5rem;
	   -moz-column-gap: 1.5rem;
	        column-gap: 1.5rem;
	padding: 1rem 3rem;
	text-transform: capitalize;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	background-color: var(--primary);
	border: 0;
	font-weight: 600;
	font-size: 1.6rem;
	align-items: center;
}
.button:hover{
	background-color: #858f68;
	color: #fff !important;
	border-color: transparent;
}
/*======================
   03. Preloader Css
========================*/
.preloader {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999999;
	background: #ffffff;
	text-align: center;
}
.loader {
	width: 4.4rem;
	height: 4.4rem;
	position: absolute;
	border: .4rem solid var(--primary);
	top: calc(50% - 2.2rem);
	left: calc(50% - 2.2rem);
	-webkit-animation: loader 2s infinite ease;
	animation: loader 2s infinite ease;
}
.loader-inner {
	width: 100%;
	background-color: var(--primary);
	-webkit-animation: loader-inner 2s infinite ease-in;
	animation: loader-inner 2s infinite ease-in;
}
@-webkit-keyframes loader {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	25% {
		-webkit-transform: rotate(180deg);
		transform: rotate(180deg);
	}
	50% {
		-webkit-transform: rotate(180deg);
		transform: rotate(180deg);
	}
	75% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
@keyframes loader {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	25% {
		-webkit-transform: rotate(180deg);
		transform: rotate(180deg);
	}
	50% {
		-webkit-transform: rotate(180deg);
		transform: rotate(180deg);
	}
	75% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
@-webkit-keyframes loader-inner {
	0% {
		height: 0%;
	}
	25% {
		height: 0%;
	}
	50% {
		height: 100%;
	}
	75% {
		height: 100%;
	}
	100% {
		height: 0%;
	}
}
@keyframes loader-inner {
	0% {
		height: 0%;
	}
	25% {
		height: 0%;
	}
	50% {
		height: 100%;
	}
	75% {
		height: 100%;
	}
	100% {
		height: 0%;
	}
}
.btn-close{
	padding: 0;
}
.btn-close svg{
	width: 2rem;
	height: 2rem;
}
/*======================
   04. Custom Header 
========================*/
header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1024;
    width: 100%;
    -webkit-transition: background 0.3s;
    -o-transition: background 0.3s;
    transition: background 0.3s;
	background-color: var(--primary);
}
header.fixed_header{
	background-color: var(--primary);
}
header.fixed_header .menu_wrapper{
	border-bottom: none;
}
.menu_wrapper{
	border-bottom: .1rem solid #eee;
}
#menu {
	text-align: center;
}
#menu li {
	display: inline-block;
	color: #fff;
	padding: 0 2rem;
}
#menu li a {
	font-size: 1.6rem;
	font-weight: 900;
	color: #fff;
	position: relative;
	padding: 3rem 0;
}
#menu li:last-child {
	padding-right: 0;
}
#menu li a.active,
#menu li a:hover {
	color: #858f68;
}
.hamburger-menu {
	cursor: pointer;
	right: 1.5rem;
	display: none;
	z-index: 999;
	top: -1.5rem;
}
.hamburger-menu span {
	background: #fff;
	width: 3.0rem;
	height: .3rem;
	display: block;
	margin: .5rem 0;
	border-radius: .5rem;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.hamburger-menu .line-top.current {
	-webkit-transform: translateY(200%) rotate(135deg);
	-ms-transform: translateY(200%) rotate(135deg);
	transform: translateY(200%) rotate(135deg);
}
.hamburger-menu .line-center.current {
	opacity: 0;
}
.hamburger-menu .line-bottom.current {
	-webkit-transform: translateY(-325%) rotate(-135deg);
	-ms-transform: translateY(-325%) rotate(-135deg);
	transform: translateY(-325%) rotate(-135deg);
}
/*======================
   05. Banner
========================*/
.home_area {
    padding-top: 14rem;
    background-size: cover;
    background-position: bottom center;
    position: relative;
    overflow: hidden;
    padding-bottom: 5rem;
}
.home_area h1 {
	font-size: 6.0rem;
	line-height: 1.2;
	color: #000;
	max-width: 78rem;
	margin: 2rem auto;
}
.home_content {
   font-size: 2rem;
}
.home_content img{
	width: 23rem;
	margin-bottom: 1rem;
}
.about_text p {
    width: 100%;
    font-size: 1.6rem;
    margin-bottom: 2.8rem;
    font-weight: 600;
}
/*======================
   07. Service Wrapper
========================*/
.service_wrapper {
    background-color: #f6f6f6;
	padding: 5rem 0;
}
.service_title{
	font-size: 6rem;
}
.service_box {
    padding: 3.0rem 2.5rem;
    border-radius: 2.0rem;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    background-color: #ffffff;
    height: 100%;
    font-size: 1.6rem;
    -webkit-box-shadow: .0rem .4rem 6rem #d8d6d6;
    box-shadow: .0rem .4rem 6rem #d8d6d6;
}
.service_top {
    display: flex;
    align-items: center;
    column-gap: 4rem;
	margin-bottom: 1.2rem;
}
.service_icon img {
    width: 8rem;
    height: 8rem;
}
.service_box h3 {
	font-size: 2.6rem;
	color: #000;
	margin-top: 1.2rem;
	letter-spacing: 0.2rem;
	margin-bottom: 0;
}
.service_box strong{
	text-transform: capitalize;
	margin-bottom: 1rem;
	display: inline-block;
	font-size: 1.8rem;
}
/*======================
   Banner Wrapper
========================*/
.banner_wrapper {
	padding: 6.0rem 0 0 0;
	background-color: var(--primary);
}
.banner_wrapper h2,
.banner_wrapper p {
	max-width: 100%;
	color: #fff;
}
.banner_wrapper p{
	margin-top: 1rem;
}
.banner_wrapper a{
	color: var(--primary) !important;
	background-color: #EAE8E6;
}
.copyright{
	color: #fff;
	text-align: right;
	padding: 2rem 3.5rem 2rem 0;
}
.copyright p {
    margin-top: 1rem;
    font-size: 1.6rem;
}
/* ========== Contact Form Popup section Start here======== */
  .contact_modal .modal-dialog{
	max-width: 56.5rem;
  }
  .contact_modal .modal-dialog .modal-content{
	background-color: #fff;
	border-radius: 1rem;
	padding:2rem 2rem;
  }
  .contact_modal .modal-dialog .modal-content .modal-header{
	padding: 0 1.6rem;
	justify-content: end;
  }
  .contact_modal .modal-header .btn-close{
	background-color: transparent;
	border: none;
	font-size: 2rem;
  }
  .contact_modal .modal-dialog .modal-content .modal-title {
    font-size: 3rem;
    margin-bottom: 2rem;
    text-align: center;
	}
  .contact_modal form .form-control {
	padding:0 1.6rem;
	height: 4.5rem;
	border: none;
	border-radius: .4rem;
	border: .1rem solid #c9c9c9;
	font-size: 1.6rem;
  }
  .contact_modal form textarea{
	width: 100%;
	padding:1.6rem;
	border-radius: .4rem;
	border: .1rem solid #c9c9c9;
	font-size: 1.6rem;
  }
  .contact_modal form label{
	display: block;
	font-size: 1.2rem;
	margin-bottom: .8rem;
  }
  .contact_modal form .form-control::placeholder{
   color: #a7a7a7;
  }

  /* ========== Contact Form Popup section End here========== */
.back-to-top.button {
	font-size: 1.4rem;
	width: 4.0rem;
	height: 4.0rem;
	border-radius: 50%;
	line-height: 3.5rem;
	text-align: center;
	display: none;
	position: fixed;
	bottom: 4.0rem;
	right: 1.0rem;
	z-index: 1000;
	padding: 0;
	background-color: var(--primary);
	box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}


/*Extra large devices (large desktops, 1200px and up)*/
@media (min-width: 1366px) { 
	.container{
		max-width: 1200px;
	}
}

@media (min-width: 1200px) and (max-width: 1365.98px) { 
	html{
		font-size: 58%;
	}
}

@media (min-width: 992px) and (max-width: 1199.98px){
	html{
		font-size: 52%;
	}
}

/*Large devices (desktops, 992px and up)*/
@media (max-width: 991.98px) {
	.hamburger-menu{
		display: block;
		text-align: right !important;
	}
	header {
		padding: 4rem 0;
	}
	header .container{
		display: flex;
		justify-content: flex-end;
	}
	#menu{
		position: fixed;
		z-index: -1;
		top: 11rem;
		left: -100%;
		width: 100%;
		height: calc(100% - 11rem);
		background-color: #fff;
		-webkit-transition: 0.5s;
		-o-transition: 0.5s;
		transition: 0.5s;
		padding-top: 3.0rem;
		padding-bottom: 3.0rem;
		overflow: auto;
	}
	#menu li a{
		color: #000;
	}
	#menu.current{
		left: 0;
	}
	
	.menu_wrapper{
	    width: 100%;
	    height: 100%;
	    position: fixed;
	    left: -100%;
	    top: 0;
	    z-index: -1;
	    -webkit-transition: 0.5s;
	    -o-transition: 0.5s;
	    transition: 0.5s;
	}

	.menu_wrapper.current{
		left: 0;
	}

	#menu li{
		display: block;
		text-align: center;
		margin-top: 1.0rem;
	}

	#menu li:last-child{
		padding-right: 2rem;
	}

	#menu li a{
		display: inline-block;
	}

	.copyright {
		text-align: center;
	}
}

/*Medium devices (tablets, 767px and down)*/
@media (max-width: 767.98px) {
	html{
		font-size: 45%;
	}
}

/*Small devices (landscape phones, 575px and down)*/
@media (max-width: 575.98px) {
	html{
		font-size: 2vw;
	}
	.container{
		padding-left: 2.5rem;
		padding-right: 2.5rem;
	}
	.home_area h1,
	.service_title,
	.banner_wrapper h2 {
		font-size: 4.5rem;
	}

}