/* Import Font from Google Font (Poppins & Playfair Display ) */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');


/* CSS Variables */
:root {
	--white: #fff;
	--black: #000;
	--primary: #93C840;
	--secondary: #2E2E2E;
	--play: 'Playfair Display', serif;
}

html {
	scroll-behavior: smooth;
	height: 100%;
}

body {
	position: relative;
	background: #fff;
	overflow-x: hidden;
	height: 100%;
	font-family: "Poppins", sans-serif;
}

@media (min-width: 1700px) {
	.container {
		max-width: 1380px;
	}
}

section {
	position: relative;
	padding: 6rem 0;
}

p {
	font-size: 1rem;
	font-weight: 400;
	line-height: 2;
	color: #828282;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: #000;
}

.img-auto {
	display: block;
	max-width: 100%;
	margin: 0 auto;
}

a,
button {
	text-decoration: none !important;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

a:hover,
button:hover {
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

figure {
	margin: 0;
}

/* loader */
.preLoader {
	width: 100%;
	height: 100%;
	z-index: 1111;
	display: flex;
	align-items: center;
	justify-content: center;
	position: fixed;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
}

.preLoader.black {
	background-color: var(--primary);
	z-index: 11113;
}

.preLoader.white {
	z-index: 11112;
	background-color: var(--white);
}

/* loader */

/* btn css */

.themeBtn {
	/* background: var(--primary); */
	font-size: 1.125rem;
	color: var(--black);
	text-transform: uppercase;
	font-weight: 500;
	display: inline-block;
	padding: 1.04em 1.96em;
	border-radius: 0px;
	border: 1px solid var(--primary);
	background-image: linear-gradient(30deg, #93C840 50%, transparent 50%);
	background-size: 800px;
	background-repeat: no-repeat;
	background-position: 0%;
	line-height: normal;
	box-shadow: 0 0 0px 0px var(--primary);
}

.themeBtn:hover {
	background-position: 100%;
	/* background-color: var(--black); */
	color: var(--primary);
	box-shadow: 0 0 0px 2px var(--primary);
}

.themeBtn.dark {
	background: var(--secondary);
	color: var(--white);
}

.themeBtn.dark:hover {
	background: transparent;
	color: var(--white);
	box-shadow: 0 0 0px 2px var(--white);
	/* border-color: var(--primary); */
}

/* btn css */


/* Title & Heading */
.title {
	font-family: var(--play);
	font-size: 3.75rem;
}

.text {
	color: var(--black) !important;
}


/* navigation css */

header {
	position: absolute;
	left: 0;
	right: 0;
	margin: 0 auto;
	z-index: 111;
	top: 0;
	width: 100%;
	padding: 0.5em 0;
	transition: 0.3s ease-in-out;
	background: var(--secondary);
}

header::before {
	content: '';
	position: absolute;
	top: 0;
	right: -5%;
	width: 65%;
	height: 100%;
	transform: skewX(35deg);
	background-color: var(--primary);
}

.navbar-nav {
	align-items: center;
	justify-content: flex-end;
	width: 100%;
	position: relative;
}

.navbar-nav .nav-item .nav-link {
	font-size: 1.125rem;
	color: var(--black);
	text-transform: uppercase;
	font-weight: 600;
	padding: 1em 1.5em;
	display: inline-block;
}

.nav-link:hover {
	color: var(--primary) !important;
}

.navbar-nav {
	padding: 0.5em;
	z-index: 1;
}

.navbar-nav::before {
	content: '';
	position: absolute;
	top: 0;
	right: -40%;
	width: 150%;
	height: 100%;
	transform: skewX(35deg);
	z-index: -1;
	background-color: var(--white);
}

.navbar-nav .themeBtn.dark {
	padding-block: 0.8em !important;
	margin-left: 2rem;
	color: var(--white);
}

.navbar-nav .themeBtn.dark:hover {
	background-color: var(--primary);
	color: var(--white) !important;
}

.topheader {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-block: 0.3em;
}

.topheader ul {
	display: flex;
	align-items: center;
}

.topheader .sociallink a {
	width: 33px;
	height: 33px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 100%;
	margin: 3px;
	color: var(--secondary);
	font-size: 14px;
	border: 1px solid var(--secondary);

}

.topheader .sociallink a:hover {
	background-color: var(--secondary);
	color: var(--white);
}

.topheader .links a {
	color: var(--secondary);
	padding-inline: 1em;
	font-weight: 500;
}

.topheader .links a i {
	margin-right: 0.5em;
}

.topheader .links li:nth-child(1) a {
	font-size: 1.375rem;
	font-weight: 600;
}

/* navigation css */

/* slider css */

.main-slider {
	height: 100vh;
	min-height: 1079px;
	background-color: var(--black);
}

.homeSlider.swiper-container {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 0;
}

.homeSlider.swiper-container .swiper-slide {
	overflow: hidden;
}

.homeSlider .swiper-pagination {
	top: 50%;
	bottom: auto;
	transform: translateY(-50%);
	width: fit-content;
	left: 5rem;
	writing-mode: tb;
	transform: scale(-1);
	color: var(--white);
	font-size: 24px;
}

.homeSlider .swiper-pagination .swiper-pagination-current {
	font-size: 3rem;
}


.homeSlider .swiper-pagination-bullet {
	height: 12px;
	width: 12px;
	display: inline-block;
	margin: 0 0.5rem !important;
	opacity: 1;
	border: 1px solid var(--white);
	background: transparent;
}

.homeSlider .swiper-pagination-bullet-active {
	background: var(--white);
	position: relative;
}

.homeSlider .slide-inner {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	background-size: cover;
	background-position: center;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: center;
}

.main-slider h1 {
	margin: 0;
	color: var(--white);
	font-size: 6.25rem;
	line-height: 1;
	font-weight: 400;
	/* text-transform: uppercase; */
	font-family: var(--play);
}

.main-slider h3 {
	font-size: 1.563rem;
	font-weight: 500;
	color: var(--white);
	margin: 0;
}

.main-slider p {
	color: var(--white);
	font-weight: 400;
	line-height: normal;
	margin-top: 1rem;
	font-size: 1.125rem;
}

.scrollIcon {
	width: 100%;
	position: absolute;
	bottom: 128px;
	color: var(--white);
	/* left: 10rem; */
}

.scrollIcon .mouseIcon {
	width: 31px;
	height: 50px;
	border-radius: 15px;
	border: 2px solid var(--white);
	display: block;
	margin-right: 12px;
}

.scrollIcon .mouseIcon .mouseDot {
	width: 3px;
	height: 10px;
	border-radius: 3px;
	margin: auto;
	margin-top: 4px;
	background: var(--white);
	display: block;
	animation: mouseIcon 2s steps(8) infinite;
}


@keyframes mouseIcon {
	100% {
		margin-top: 12px;
	}

}

/* slider css */



/* About Section CSS */
.aboutSection figure {
	position: relative;
}

.aboutSection figure .iconBox {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 65px;
	height: 65px;
	border-radius: 50%;
	background-color: var(--white);
	color: var(--secondary);
	display: grid;
	place-items: center;
	/* box-shadow: 0 0 0 15px rgba(255, 255, 255, 0.5), 0 0 0 30px rgba(255, 255, 255, 0.2); */
	animation: playicon 2s linear infinite alternate;
}

@keyframes playicon {
	0% {
		box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.5), 0 0 0 0px rgba(255, 255, 255, 0.2);
	}

	50% {
		box-shadow: 0 0 0 15px rgba(255, 255, 255, 0.5), 0 0 0 15px rgba(255, 255, 255, 0.2);
	}

	100% {
		box-shadow: 0 0 0 15px rgba(255, 255, 255, 0.5), 0 0 0 30px rgba(255, 255, 255, 0.2);
	}
}


/* !About Section CSS */

/* Services Section CSS */
.serviceSection {
	background: url('../images/servicebg.png') no-repeat;
	background-size: cover;
	padding-top: 11.25rem;
}

.serviceSection .sliderProduct .swiper-pagination {
	top: auto;
	bottom: 0 !important;
	width: 100%;
	height: 2px !important;
	background-color: #C6C8C9;
}

.serviceSection .sliderProduct .swiper-pagination .swiper-pagination-progressbar-fill {
	background-color: var(--primary) !important;
	border-radius: 7px;
}

.serviceSection .sliderProduct .swiper-slide {
	user-select: none;
	margin-bottom: 2rem;
}

.serviceSection .sliderProduct .swiper-slide h3 {
	color: var(--white);
	font-size: 2.625rem;
	font-weight: 500;
}


/* !Services Section CSS */


/* Consultation Section CSS */
.consultationSection {
	background: url('../images/consultationbg.png');
	background-size: cover;
}

.consultationSection .text {
	font-size: 1.375rem;
	font-weight: 500;
	line-height: normal;
	margin-top: 1rem;
	margin-bottom: 2rem;
}

/* !Consultation Section CSS */


/* Video Section CSS */
.videoSection {
	background-color: #F6F6F6;
}

.sliderVideo {
	margin-top: 2rem;
	padding-bottom: 5rem;
}

.sliderVideo .swiper-slide {
	position: relative;
	height: 700px;
}

.sliderVideo .swiper-slide img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 700px;
}

.sliderVideo .swiper-slide .iconBox {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: var(--primary);
	outline: none;
}

.sliderVideo .swiper-slide .iconBox i {
	width: 120px;
	height: 120px;
	border: 3px solid var(--primary);
	border-radius: 100%;
	display: grid;
	place-items: center;
	font-size: 2rem;
	margin-bottom: 1rem;
}

.sliderVideo .swiper-slide .iconBox span {
	color: var(--white);
	text-transform: uppercase;
}

.sliderVideo .swiper-button-next {
	top: auto;
	bottom: 0;
	right: 45%;
}

.sliderVideo .swiper-button-prev {
	top: auto;
	bottom: 0;
	left: 45%;
}

.sliderVideo .swiper-pagination {
	bottom: 0rem;
}

.sliderVideo .swiper-pagination-current {
	font-size: 1.875rem;
	font-weight: 600;
}

.sliderVideo .swiper-button-prev::after,
.sliderVideo .swiper-button-next::after {
	font-size: 20px;
	color: var(--secondary);
	transition: 0.5s;
}

.sliderVideo .swiper-button-prev:hover::after,
.sliderVideo .swiper-button-next:hover::after {
	color: var(--primary);
}

/* !Video Section CSS */


/* Portfolio Section CSS */
.portfolioSection h2 {
	margin-bottom: 3.75rem;
}


.portfolioSection .gridItem {
	margin-bottom: 2rem;
	overflow: hidden;
	cursor: pointer;
}

.portfolioSection .gridItem img {
	width: 100%;
	height: 323px;
	object-fit: cover;
	transition: 0.5s ease;
}

.portfolioSection .gridItem:hover img {
	opacity: 0.5;
	transform: scale(1.02);
}

/* !Portfolio Section CSS */


/* Newsletter Section */
.newsletterSection {
	padding: 0;
	/* background-color: var(--primary); */
	position: relative;
}

.newsletterSection::before {
	content: '';
	position: absolute;
	top: 50%;
	left: -5%;
	width: 56%;
	height: 150px;
	transform: translateY(-50%) skewX(-25deg);
	background-color: var(--primary);
}


.newsletterSection .newsletterBox {
	display: flex;
	align-items: center;
	padding: 2rem;
	position: relative;
	z-index: 1;
}

.newsletterSection .newsletterBox::before {
	content: '';
	position: absolute;
	top: 0;
	right: -50%;
	width: 152%;
	height: 100%;
	transform: skewX(-25deg);
	/* background-color: var(--primary); */
	background-color: var(--white);
	z-index: -1;
	border: 1px solid #DEDEDE;
}

.newsletterBox input {
	background-color: #E5E5E5 !important;
	padding: 1.58rem;
	box-shadow: none !important;
	border-radius: 0;
}

.newsletterBox button {
	font-size: 14px;
	border-radius: 0;
	white-space: nowrap;
}

/* !Newsletter Section */





/* Footer */
footer {
	background: url('../images/footerbg.png');
	padding-top: 6.25rem;
	background-size: cover;
}



footer .quickList h2 {
	color: var(--white);
	font-size: 1.5rem;
	font-family: var(--play);
	margin-bottom: 1.625rem;
}


footer li {
	margin-bottom: 1rem;
}

footer a,
footer li,
footer span,
footer p {
	color: var(--white);
}

footer a:hover {
	color: var(--primary);
}

footer .info li {
	display: flex;
	font-size: 14px;
}

footer .info li>span {
	width: calc(100% - 40px);
}

footer .info i {
	color: var(--primary);
	width: 40px;
	font-size: 18px;
}

footer .themeBtn {
	padding-inline: 1em;
}

footer .phoneNumber {
	margin-bottom: 1rem;
	display: block;
}

footer .phoneNumber a {
	color: var(--primary);
	font-size: 1.625rem;
	font-size: 600;
}

footer .phoneNumber a:hover {
	color: var(--white);
}

footer .copyRight {
	border-top: 1px solid var(--white);
	margin-top: 3rem;
}

footer .copyRight li {
	margin-inline: 0.5rem;
}

/* !Footer */

/*Inner Pages CSS Start*/
.banner {
	position: relative;
}

.banner .overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.banner .overlay h2 {
	font-size: 6.25rem;
	font-weight: 600;
	font-family: var(--play);
	color: var(--white);
	text-align: left;
	margin-top: 7rem;
}
.serviceInner .row + .row {
	margin: 4rem 0;
}
.portfolioInner .gridItem img{
	height: 100%;
}


.cntctLst ul {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.cntctLst ul li {
	flex: 0 0 33.333333%;
}

.cntctLst ul li .infOne {
	text-align: center;
}

.cntctLst ul li .infOne figure {
	background: #ffffff;
	width: 15.5rem;
	height: 15.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	font-size: 4rem;
	color: var(--white);
	margin: auto;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
	border: 1px solid #93C840;
	box-shadow: 0 0 16px #00000017;
}

.cntctLst ul li .infOne h2 {
	font-size: 22px;
	font-weight: 400;
	margin: 1rem 0;
	font-family: var(--play);
}

.cntctLst ul li .infOne a {
	font-size: 1.125rem;
	color: #000000;
	font-weight: 500;
}

.cntctLst ul li .infOne span {
	font-size: 1.125rem;
	color: #000000;
	display: block;
	margin: auto;
	font-weight: 500;
}

.getForm .sectionHeading {
	margin: 0 0 1.3rem;
	font-size: 3.125rem;
	font-weight: 600;
}

.getForm label {
	display: block;
	font-size: 1rem;
	color: #8e8e8e;
	margin: 0 10px 15px;
	font-weight: 400;
}

.getForm input ,
.getForm select
{
	border: 1px solid #C7C9CA;
	width: 100%;
	height: 3.78rem;
	margin: 0 0 2rem;
	padding-left: 1rem;
}

.getForm textarea {
	border: 1px solid #C7C9CA;
	width: 100%;
	height: 9.5625rem;
	margin: 0 0 2rem;
	padding: 1rem;
	resize: none;
}
.getForm input::placeholder ,
.getForm textarea::placeholder{
	color: #C0C0C0;
}
.contactSec .row+.row {
	margin-top: 6rem;
}

.getForm p {
	color: #000000;
	margin: 0;
}

.cntctBtn .themeBtn {
	padding: 15px 50px;
	font-size: 1rem;
	font-weight: 500;
}

.form-inline {
	gap: 1rem;
}
li#menu-item-28 a {
    font-size: 1.125rem;
    color: #fff ;
    text-transform: uppercase;
    font-weight: 600;
    padding: 1em 1.5em;
    background: var(--secondary);
    border: 1px solid var(--primary);
}
/*Inner Pages CSS End*/

.page-content.notfoundPg {
    text-align: center;
}

h1.notfoundHad {
    font-size: 200px;
    color: #93c840;
}

input.search-field {
    border: 2px solid #93c840;
    height: 50px;
    width: 299px;
}

input.search-submit {
    height: 51px;
    background: #93c840;
    border: 2px solid #93c840;
    width: 133px;
}

.page-content.notfoundPg {
    margin-bottom: 70px;
}

.notfoundPg .search-form .search-submit:hover, .notfoundPg .search-form .search-submit:focus {
    background: #212529 !important;
    color: #93c840;
}