:root {

	/* Color Variable */
	--theme-primary-color: #6d563c;
	--headding-color: #1f242e;
	--text-color: #676f7e;
	--section-color: #f1f2f4;

	/* --text-color: #dddfe3; */

	/* Linear Gradient Variable */
	/* --technology-icon-linear: linear-gradient(#e7e5ff1a 0%, #e7e5ff00 100%); */

	/* Font Size Variable */
	--h1-fs: 48px;
	--h2-fs: 36px;
	--h3-fs: 30px;
	--h4-fs: 24px;
	--h5-fs: 20px;
	--h6-fs: 18px;
	--p-fs: 16px;
	
	/* Spacing Variable */
	--section-padding: 80px;
	--section-title-bottom: 35px;
	--headding-lh: 1em;

	/* Font Family Variable */
	--theme-font: "Inter";
	--headding-font: "PT 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(--text-color);
	font-family: var(--theme-font);
}
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(--headding-color);
	line-height: var(--headding-lh);
	margin: 0;
	font-weight: bold;
	font-family: var(--headding-font);
}

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);
	font-family: var(--theme-font);
	line-height: 1.5em;
	margin-bottom: 0;
}
p + p {
	margin-top: 12px;
}

/* Section CSS */
.sec-padding {
  padding-block: var(--section-padding);
}
.sec-bg {
	background-color: var(--section-color);
}

/* Theme Title CSS */
.theme-title {
  margin-bottom: var(--section-title-bottom);
}
.theme-title h1 span,
.theme-title h2 span,
.theme-title h3 span,
.theme-title h4 span {
	color: var(--theme-primary-color);
}
.theme-title p {
	margin-top: 14px;
}
.body-content {
	padding-top: 76px;
}