* {margin: 0; padding: 0; box-sizing: border-box; }

html {scroll-behavior: smooth;}

h1 {font-size: 36px; font-weight: 700; line-height: 42px; margin-top: 10px; margin-bottom: 15px; }
h2 {font-size: 32px; font-weight: 700; line-height: 36px; margin-top: 10px; margin-bottom: 15px; }
h3 {font-size: 28px; font-weight: 700; line-height: 32px; margin-top: 10px; margin-bottom: 15px; }
h4 {font-size: 24px; font-weight: 700; line-height: 30px; margin-top: 10px; margin-bottom: 15px; }
h5 {font-size: 20px; font-weight: 700; line-height: 26px; margin-top: 10px; margin-bottom: 15px; }
h6 {font-size: 18px; font-weight: 700; line-height: 24px; margin-top: 10px; margin-bottom: 15px; }

body {color: #1a202c; font-family: 'Mulish', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-style: normal; font-weight: 400; line-height: 1.42857143; font-size: 16px; }
p {color: #333; font-size: 16px; letter-spacing: 1.5px; line-height: 26px; margin-bottom: 20px;}
img {width: 100%; height: auto;}
input {border: 1px solid #ccc; border-radius: 10px; font-size: 16px; height: 50px; padding: 10px 20px; width: 100%; }
textarea {border: 1px solid #ccc; border-radius: 10px; font-family: 'Mulish', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-weight: 500; font-size: 16px; height: 120px; padding: 10px 20px; width: 100%; }

ul li {list-style-position: inside; color: #333; font-size: 16px; letter-spacing: 1.5px; line-height: 26px; margin-bottom: 20px;}

.error {color: #f00;}

.scroll-disabled  {
	overflow: hidden;
}

.mt-2 {margin-top: 20px;}
.mb-4 {margin-bottom: 40px;}

.container {
	margin: 0 auto;
	max-width: 1240px;
	padding: 0 20px;
	width: 100%;
}

.heading-section {
	margin: 0 auto 50px;
	max-width: 50%;
	text-align: center;
	width: 100%;
}
.heading-section .title-text {
	font-size: 32px;
    font-weight: 700;
    line-height: 36px;
	text-transform: uppercase;
}
.custom-btn-primary {
	background: linear-gradient(to right, #d29f46, #f4d06f);
	border: 0;
    border-radius: 22px;
    color: #333;
	cursor: pointer;
    font-weight: 700;
    padding: 8px 20px;
    transition: 0.3s ease-in-out;
	display: inline-block;
	font-size: 16px;
	letter-spacing: 1.5px;
    line-height: 26px;
}
.custom-btn-primary:hover {
	background: linear-gradient(to right, #f4d06f, #d29f46);
	color: #333;
}
header {
	background: #333;
}
header .header-wrapper {
	align-items: center;
	display: flex;
	justify-content: space-between;
	padding: 10px 0;
}
header .logo {
	max-width: 300px;
	width: 100%;
}
header .header-right {
	display: flex;
	align-items: center;
	justify-content: end;
	max-width: 70%;
	width: 100%;
}
header nav ul {
	align-items: center;
	column-gap: 30px;
	display: flex;
	justify-content: flex-end;
	row-gap: 30px;
}
header nav ul li {
	list-style: none;
	margin-bottom: 0;
}
header nav ul li a {
	color: #fff;
	font-size: 16px;
	text-decoration: none;
}
header nav ul li a:hover {
	color: #f4d06f;
}
header nav ul li a.active {
	color: #f4d06f;
}

.hamburger {
	width: 20px;
	height: 20px;
	position: relative;
	z-index: 3;
}
.hamburger::before {
	content: '';
	width: 100%;
	height: 2px;
	background: #fff;
	display: inline-block;
	position: absolute;
	top: 5px;
	left: 0;
}
.hamburger::after {
	content: '';
	width: 100%;
	height: 2px;
	background: #fff;
	display: inline-block;
	position: absolute;
	bottom: 5px;
	left: 0;
}
.hamburger.active:before {
	transform: rotate(45deg);
	top: 10px;
}
.hamburger.active:after {
	transform: rotate(-45deg);
	bottom: 8px;
}

.hero-banner {
	position: relative;
	margin-bottom: 100px;
}
.hero-banner.owl-carousel .owl-nav button {
	max-width: 40px;
    width: 100%;
    height: 40px;
    border-radius: 50%;
}
.hero-banner.owl-carousel .owl-nav button span {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: -5px;
}
.hero-banner.owl-carousel .owl-nav button.disabled {
	opacity: 0.5;
}
.hero-banner.owl-carousel .owl-nav .owl-prev {
	position: absolute;
    top: 50%;
    left: 20px;
	background: #333;
    color: #fff;
	font-size: 30px;
}
.hero-banner.owl-carousel .owl-nav .owl-next {
	position: absolute;
    top: 50%;
    right: 20px;
	background: #333;
    color: #fff;
	font-size: 30px;
}


.services-section {
	margin-bottom: 100px;
}
.services-section .inner-wrapper {
	column-gap: 20px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 50px;
}
.services-section .service-card-box {
	border-radius: 10px;
	border:  1px solid #ccd4e0;
	box-shadow: 0px 5px 10px rgba(0,0,0,.2);
	max-width: calc(100% / 3 - 14px);
	/* padding: 40px; */
	text-align: center;
	transform: scale(.9);
	transition: .5s ease-in-out;
	width: 100%;
	overflow: hidden;
}
.services-section .service-card-box:hover {
	transform: scale(1.0);
}
.services-section .service-card-box figure {
	max-height: 240px;
	overflow: hidden;
}
.services-section .service-card-box .service-inner-content {
	padding: 20px;
}
.services-section .service-card-box .inner-heading {
	font-size: 24px;
}
.services-section .service-bottom-section {
	text-align: center;
}
.services-section .service-bottom-section .btn-more-services {
	background: linear-gradient(to right, #d29f46, #f4d06f);
    border-radius: 30px;
    color: #333;
	display: inline-block;
    font-weight: 700;
    padding: 15px 30px;
    text-decoration: none;
    text-transform: uppercase;
}

.our-process-section {
	background: linear-gradient(to top, rgba(210,159,7,.4), transparent);
	margin-bottom: 100px;
	padding-bottom: 40px;
}
.our-process-section .inner-wrapper {
	column-gap: 120px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 60px;
}
.our-process-section .inner-wrapper .left-box,
.our-process-section .inner-wrapper .right-box {
	max-width: calc(100% / 2 - 60px);
	width: 100%;
}
.our-process-section .image-box figure {
	position: relative;
}
.our-process-section .image-box figure:before {
	background: linear-gradient(to right, #333, #6b6b6b);
	border-radius: 10px;
	content: '';
	display: inline-block;
	height: 100%;
	position: absolute;
	width: 100%;
	z-index: -1;
}
.our-process-section .image-box figure img {
	border-radius: 10px;
	overflow: hidden;
	max-height: 300px;
	object-fit: cover;
}
.our-process-section .left-box.image-box figure {
	margin-bottom: 30px;
	margin-left: 30px;
}
.our-process-section .left-box.image-box figure:before {
	left: -30px;
	top: 30px;
}
.our-process-section .right-box.image-box figure {
	margin-bottom: 30px;
	margin-right: 30px;
}
.our-process-section .right-box.image-box figure:before {
	right: -30px;
	top: 30px;
}
.our-process-section .inner-heading {
	font-size: 28px;
	margin-bottom: 30px;
	text-transform: uppercase;
}

.getin-touch-section .getin-touch-form-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}
.getin-touch-section .form-image-section {
	width: 100%;
}
.getin-touch-section .form-section {
	position: relative;
	z-index: 1;
    background: #fff;
    border-radius: 10px;
	border: 1px solid #ccd4e0;
	box-shadow: 0px 5px 10px rgba(0,0,0,.2);
    padding: 60px 30px;
    text-align: center;
    width: 100%;
}
.getin-touch-section .form-section .input-group {
	margin-bottom: 40px;
}
.getin-touch-section .form-section .form-group {
	max-width: 48%;
	text-align: left;
	width: 100%;
}
.getin-touch-section .form-section textarea {
	width: 100%;
}

footer { padding: 40px 20px; text-align: center; background: #333; margin-top: 100px;}
footer p {color: #fff;}
footer ul {display: flex; align-items: center; justify-content: center; column-gap: 20px;}
footer ul li {list-style: none; margin-bottom: 0;}
footer ul li img {max-width: 35px; width: 100%;}

.whatsapp-chat {
    align-items: center;
    background: #fff;
    border-radius: 50%;
    bottom: 80px;
    box-shadow: 0 10px 10px rgba(0,0,0,.5);
    display: flex;
    height: 50px;
    justify-content: center;
    position: fixed;
    right: 40px;
    width: 50px;
    z-index: 999;
}
.whatsapp-chat img {
	display: block;
	width: 30px;
}

.inner-hero-banner {
	padding: 60px 0;
}
.inner-hero-banner .inner-hero-heading {
	margin: 0 auto;
	max-width: 700px;
	text-align: center;
	width: 100%;
}

.contact-us-section {
	padding: 100px 0;
}
.contact-us-section .inner-wrapper {
	align-items: center;
	display: flex;
	justify-content: space-between;
}
.contact-us-section .left-section {
	border: 1px solid #ccd4e0;
	max-width: 69%;
	width: 100%;
    border-radius: 10px;
    box-shadow: 0px 5px 10px rgba(0,0,0,.2);
    padding: 40px;
}
.contact-us-section form input {
	margin-bottom: 30px;
	width: 100%;
}
.contact-us-section form .input-group {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.contact-us-section form .input-group input {
	width: 49%;
}
.contact-us-section form textarea {
	margin-bottom: 30px;
}
.contact-us-section .btn-send-msg {
    background: linear-gradient(to right, #d29f46, #f4d06f);
    border-radius: 30px;
    border: 0;
    color: #333;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.42857143;
    padding: 15px 30px;
    text-decoration: none;
    text-transform: uppercase;
}
.contact-us-section .right-box {
	max-width: 29%;
    background: linear-gradient(to right, #d29f46, #f4d06f);
    border-radius: 10px;
    height: 100%;
    padding: 40px 30px;
    width: 100%;
    word-wrap: break-word;
}
.contact-us-section .right-box h6 {
	font-weight: 700;
}
.contact-us-section .right-box a{
	color: #333;
}

.product-box-main-wrapper .right-product-box {
	width: 100%;
}
.product-box-wrapper {
	column-gap: 20px;
	display: flex;
	flex-wrap: wrap;
	row-gap: 20px;
	width: 100%;
}
.product-box-wrapper .item {
	border-radius: 5px;
	border: 1px solid #ccc;
	padding: 15px;
	text-align: center;
	width: 100%;
}

.product-box-wrapper .item .test-img {
	position: relative;
	padding-bottom: 100%;
	overflow: hidden;
}

.product-box-wrapper .item img {
	display: block;
	width: 100%;
	position: absolute;
	object-fit: cover;
	height: 100%;
	left: 0;
	top: 0;
}
.product-box-wrapper a {
	color: #333;
	display: inline-block;
	text-decoration: none;
	width: 100%;
}
.product-box-wrapper .item:hover {
	box-shadow: 0 4px 4px rgba(0, 0, 0, .3);
}
.product-box-wrapper .product-name {
	margin-top: 20px;
	margin-bottom: 0;
}
.bottom-toolbar {
	align-items: center;
	display: flex;
	justify-content: space-between;
}
.bottom-toolbar .product-count-section p {
	margin-bottom: 0;
}
.pagination {
	column-gap: 10px;
	display: flex;
	flex-wrap: wrap;
	row-gap: 10px;
}
.pagination .page-box {
	align-items: center;
	border: 1px solid #ccc;
	cursor: pointer;
	display: flex;
	height: 30px;
	justify-content: center;
	max-width: 30px;
	text-align: center;
	width: 30px;
}

.pagination .page-box img {
	max-width: 12px;
	width: 100%;
}

.pagination .page-box:hover,
.pagination .page-box.active {
	background: linear-gradient(to right, #d29f46, #f4d06f);
}

.products-details-wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.products-details-wrapper .product-details-image {
	max-width: 44%;
	width: 100%;
}

.product-details-image .slider-nav:before {
	content: '';
	width: 40px;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: linear-gradient(to right, #858484, transparent);
	z-index: 2;
}
.product-details-image .slider-nav:after {
	content: '';
	width: 40px;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	background: linear-gradient(to right, transparent, #858484);
	z-index: 2;
}
.product-details-image .slider-nav .slick-prev,
.product-details-image .slider-nav .slick-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 3;
	background: #333;
	width: 36px;
	height: 36px;
	border-radius: 18px;
	border: 0;
	cursor: pointer;
}
.product-details-image .slider-nav .slick-prev.slick-disabled,
.product-details-image .slider-nav .slick-next.slick-disabled {
	opacity: 0.5;
}
.product-details-image .slider-nav .slick-prev {
	left: 0;
}
.product-details-image .slider-nav .slick-next {
	right: 0;
}
.product-details-image .slider-nav .slick-prev:before {
	content: '';
	border-left: 0 solid transparent;
	border-right: 12px solid #fff;
	border-top: 8px solid transparent;
	border-bottom: 8px solid transparent;
	display: inline-block;
	margin: 4px 0 0 -3px;
}
.product-details-image .slider-nav .slick-next:before {
	content: '';
	border-right: 0 solid transparent;
    border-left: 12px solid #fff;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
	display: inline-block;
	margin: 4px -4px 0 0;
}
.products-details-wrapper .product-large-image {
	padding: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    margin-bottom: 30px;
}
.products-details-wrapper .product-details-image .thumbnail-box {
	border-radius: 4px;
	border: 1px solid #ccc;
	margin-right: 15px;
	max-width: 120px;
	padding: 10px;
	width: 100%;
}
.products-details-wrapper .product-details-image .thumbnail-box.slick-current {
	outline: 2px solid #333;
	outline-offset: -3px;
}
.products-details-wrapper .product-details-content {
	max-width: 50%;
	width: 100%;
}

.contact-top-section {
	margin-top: 40px;
}
.contact-top-section .group-section {
	display: flex;
	width: 100%;
	justify-content: space-between;
	text-align: center;
}
.contact-top-section .contact-box img {
	max-width: 50px;
	width: 100%;
}

@media only screen and (max-width: 767px) {
	.mt-sm-0{
		margin-top: 0;
	}
	p {
		font-size: 14px;
		margin-bottom: 15px;
	}
	.whatsapp-chat {
		bottom: 20px;
		right: 20px;
	}
	.hamburger {
		display: block;
		position: relative;
	}
	nav {
		position: absolute;
        width: 70%;
        height: 100vh;
        background: #fff;
        top: 0;
        left: -100%;
        z-index: 9;
        padding: 30px 20px;
		transition: left 0.5s ease-in-out;
	}
	.mobile-nav:after {
		content: '';
		width: 100vw;
		height: 100vh;
		display: inline-block;
		background: rgba(0, 0, 0, .4);
		position: absolute;
		top: 0;
		left: 0;
		z-index: 2;
	}
	.mobile-nav nav {
		left: 0;
	}
	header nav ul {
		display: inline-block;
	}
	header nav ul li {
		margin-bottom: 15px;
	}
	header nav ul li a {
		color: #000;
	}
	.hero-banner {
		margin-bottom: 40px;
	}
	.hero-banner .hero-banner-content {
		margin: 0 auto;
	}
	.hero-banner .hero-banner-content h1 {
		font-size: 22px;
		line-height: 32px;
		margin-bottom: 20px;
	}
	.hero-banner .hero-banner-content p {
		font-size: 16px;
		line-height: 20px;
	}
	.small-hero-banner .inner-banner-title {
		font-size: 26px;
		margin-bottom: 5px;
	}
	.heading-section {
		margin: 0 auto 20px;
		max-width: 100%;
	}
	.heading-section .title-text {
		font-size: 22px;
		line-height: 26px;
	}
	.services-section {
		margin-bottom: 20px;
	}
	.services-section .inner-wrapper {
		margin-bottom: 20px;
	}
	.services-section .service-card-box {
		max-width: 100%;
		margin-bottom: 30px;
	}
	.services-section .service-card-box:hover {
		transform: scale(.9);
	}
	.our-process-section {
		margin-bottom: 40px;
		padding-bottom: 10px;
	}
	.our-process-section .inner-wrapper .left-box, 
	.our-process-section .inner-wrapper .right-box{
		max-width: 100%;
		margin-bottom: 20px;
	}
	.our-process-section .inner-heading {
		font-size: 20px;
		margin-bottom: 10px;
	}
	.our-process-section .inner-wrapper {
		margin-bottom: 10px;
	}
	.our-process-section .image-box {
		order: 1;
	}
	.our-process-section .process-content-box {
		order: 2;
	}
	.getin-touch-section .form-image-section {
		max-width: 100%;
	}
	.getin-touch-section .form-section {
		max-width: 100%;
		padding: 40px 20px;
	}
	.getin-touch-section .form-section .form-group {
		max-width: 100%;
		margin-bottom: 20px;
	}
	.getin-touch-section .form-image-section.map-iframe {
		max-width: 100%;
		margin-bottom: 20px;
	}
	.getin-touch-section .map-iframe iframe {
		height: 200px;
	}

	.contact-top-section .group-section {
		flex-wrap: wrap;
		text-align: center;
	}
	.contact-top-section .contact-box {
		width: 100%;
	}
	.product-box-wrapper .item {
		max-width: calc(100% / 2 - 10px);
	}
	footer {
		padding: 20px 20px 10px;
		margin-top: 40px;
	}
	.products-details-wrapper {
		flex-direction: column;
	}
	.products-details-wrapper .product-details-image {
		max-width: 100%;
		margin-bottom: 20px;
	}
	.products-details-wrapper .product-details-content {
		max-width: 100%;
	}
}

@media only screen and (min-width: 768px) {
	.hamburger {
		display: none;
	}
	.small-hero-banner .inner-banner-title {
		font-size: 30px;
		margin-bottom: 5px;
	}
	.product-box-wrapper .item {
		max-width: calc(100% / 4 - 15px);
	}

	.mission-vission-section {
		display: flex;
		justify-content: space-between;
		width: 100%;
		margin-top: 60px;
		flex-wrap: wrap;
	}
	.mission-vission-section .mission-vission-box {
		max-width: 47%;
		width: 100%;
	}
	.getin-touch-section .form-image-section {
		max-width: 70%;
		margin: 0 auto;
	}
	.getin-touch-section .form-section {
		max-width: 90%;
		margin: 0 auto;
	}
	.getin-touch-section .form-section .input-group {
		column-gap: 16px;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		row-gap: 20px;
	}
}

@media only screen and (min-width: 1024px) {
	.product-box-wrapper .item {
		max-width: calc(100% / 5 - 16px);
	}
	.getin-touch-section .form-image-section {
		max-width: 49%;
		margin: 0;
	}
	.getin-touch-section .form-section {
		max-width: 49%;
		margin: 0;
	}
	.getin-touch-section .map-iframe iframe {
		height: 463px;	
		display: inline-block;
		vertical-align: middle;
	}
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
	header .logo {
		max-width: 200px;
	}
	header nav ul {
		column-gap: 15px;
	}
	header nav ul li a {
		font-size: 14px;
	}
	.custom-btn-primary {
		font-size: 14px;
	}
	.getin-touch-section .form-image-section.map-iframe {
		max-width: 90%;
		margin-bottom: 20px;
	}
	.getin-touch-section .map-iframe iframe {
		height: 300px;
	}
}