/* Branding  */

:root {

	/* Color Variable */
	--theme-primary-color: #33422d;
	--theme-black-color: #222222;
	--theme-sec-bg-color: #f5f5f5;

	/* Linear Gradient Variable */
	/* --technology-icon-linear: linear-gradient(#e7e5ff1a 0%, #e7e5ff00 100%); */

	/* Font Size Variable */
	--h1-fs: 52px;
	--h2-fs: 40px;
	--h3-fs: 34px;
	--h4-fs: 28px;
	--h5-fs: 24px;
	--h6-fs: 20px;
	--p-fs: 18px;

	/* Spacing Variable */
	--section-padding: 60px;
	--section-title-bottom: 26px;
	--content-space: 20px;
	--headding-lh: 1.1em;

	/* Font Family Variable */
	--theme-heading: "Philosopher";
	--theme-text: Arial, sans-serif;

}

html.lenis {
	height: auto;
}
.lenis.lenis-smooth {
	scroll-behavior: auto;
} 
.lenis.lenis-smooth [data-lenis-prevent] {
	overscroll-behavior: contain;
}
.lenis.lenis-stopped {
	overflow: hidden;
}
.lenis.lenis-scrolling iframe {
	pointer-events: none;
} 


/* Common CSS */
body {
	font-size: var(--p-fs);
	font-weight: 400;
	color: var(--theme-black-color);
	font-family: var(--theme-text);
}
a {
	color: inherit;
	text-decoration: none;
	background-color: transparent;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
a:focus {
	outline: none;
	text-decoration: none;
}
a:hover {
	text-decoration: none;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button;
	cursor: pointer;
	border: none;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
	-webkit-box-shadow: 0 0 0 30px white inset !important;
}
:focus {
  outline: none;
}
:focus-visible {
  box-shadow: none !important;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=number] {
  -moz-appearance: textfield;
}

/* Headings */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
	color: var(--theme-primary-color);
	line-height: var(--headding-lh);
	font-family: var(--theme-heading);
	margin: 0;
	font-weight: bold;
}
h1,
.h1 {
	font-size: var(--h1-fs);
}
h2,
.h2 {
	font-size: var(--h2-fs);
}
h3,
.h3 {
	font-size: var(--h3-fs);
}
h4,
.h4 {
	font-size: var(--h4-fs);
}
h5,
.h5 {
	font-size: var(--h5-fs);
}
h6,
.h6 {
	font-size: var(--h6-fs);
}
p {
	font-size: var(--p-fs);
	line-height: 1.2em;
	margin-bottom: 0;
	color: var(--theme-black-color);
}
p + p {
	margin-top: 10px;
}

.body-content {
	margin-top: 96px;
}

/* Section CSS */
.sec-padding {
  padding-block: var(--section-padding);
}
.section-bg {
	background-color: var(--theme-sec-bg-color);
}

/* Theme Title CSS */
.theme-title {
  margin-bottom: var(--section-title-bottom);
      padding-bottom: 26px;
}
.theme-title::before {
	content: '';
	background-color: var(--theme-primary-color);
	position: absolute;
	left: 0;
	bottom: 8px;
	width: 200px;
	height: 1px;
}
.theme-title::after {
	content: '';
	background-color: var(--theme-primary-color);
	position: absolute;
	left: 0;
	bottom: 0;
	width: 150px;
	height: 1px;
}

/* Buttons CSS */
.theme-btn {
	border: none;
	font-size: 16px;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 7px;
	color: var(--bs-white);
	border: 1px solid var(--theme-primary-color);
	background: linear-gradient(120deg, var(--bs-white) 45%, var(--theme-primary-color) 45%),
	linear-gradient(120deg, var(--bs-white) 55%, var(--theme-primary-color) 55%);
	background-size: 250%;
	background-position: right;
	overflow: visible;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.theme-btn:hover {
	color: var(--theme-primary-color);
	background-position: left;

}


@media (max-width: 480px) {
	.theme-btn {
		font-size: 14px;
		padding: 8px 18px;
		border-radius: 4px;
	}
}