﻿/* Start Variables */
:root {
	--primary-clr-100: #37393f;
	--primary-clr-200: #6b78e5;
	--primary-clr-300: #40ddb6;
	--secondary-clr-100: #757575;
	--secondary-clr-200: #f4f4f4;
	--color-opacityOverlay: 0.96;
	--ff-body: "Inter", sans-serif;
	--ff-heading: "Poppins", sans-serif;
	--fw-heading: 700;
	--fs-heading-100: 3.75rem;
	--fs-heading-200: 2.5rem;
	--fs-heading-300: 2.188rem;
	--fs-heading-400: 1.875rem;
	--fs-heading-500: 1.563rem;
	--fs-heading-600: 1.375rem;
	--ff-p: "Inter", sans-serif;
	--fs-p: 1.125rem;
	--fw-p: 400;
	--section-padding: 30px;
}

/* End Variables */
/* Start Golbal Rules */
* {
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--ff-body);
	background-color: rgb(255, 255, 255);
}

.section-subtitle {
	font-family: var(--ff-p);
	font-style: normal;
	font-weight: var(--fw-p);
	line-height: 146.19%;
}
.hero-title {
	font-family: var(--ff-heading);
	font-weight: var(--fw-heading);
	line-height: 1.3;
	white-space: break-spaces;
}