/* Global */
:root {
	--primary-color: #4891ff;
	--light-color: #f4f4f6;
	--dark-color: #111;
}

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

body {
	font-family: 'Poppins', sans-serif;
	font-size: 16px;
	line-height: 1.5;
	background: #fff;
	overflow-x: hidden;
}

a {
	text-decoration: none;
	color: #333;
}

ul {
	list-style: none;
}

img {
	max-width: 100%;
}

/* Utility Classes */
/* Containers */
.container {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 15px;
}

.container-sm {
	max-width: 800px;
	margin: 0 auto;
	padding: 0 15px;
}

/* Buttons */
.btn {
	border: none;
	border-radius: 10px;
	display: inline-block;
	cursor: pointer;
	font-weight: 600;
	padding: 13px 20px;
	text-decoration: none;
	text-align: center;
	transition: 0.5s;
}

.btn:hover {
	opacity: 0.8;
}

.btn-light {
	background: var(--light-color);
	color: #333;
}

.btn-primary {
	background: var(--primary-color);
	color: #fff;
}

.btn-dark {
	background: var(--dark-color);
	color: #fff;
}

.btn-block {
	display: block;
	width: 100%;
}

/* Text */
.text-xxl {
	font-size: 3rem;
	line-height: 1.2;
	font-weight: 600;
	margin: 40px 0 20px;
}

.text-xl {
	font-size: 2.2rem;
	line-height: 1.4;
	font-weight: normal;
	margin: 40px 0 20px;
}

.text-lg {
	font-size: 1.8rem;
	line-height: 1.4;
	font-weight: normal;
	margin: 30px 0 20px;
}

.text-md {
	font-size: 1.2rem;
	line-height: 1.4;
	font-weight: normal;
	margin: 20px 0 10px;
}

.text-sm {
	font-size: 0.9rem;
	line-height: 1.4;
	font-weight: normal;
	margin: 10px 0 5px;
}

.text-center {
	text-align: center;
}

/* Card */
.card {
	background: #fff;
	color: #000;
	border-radius: 10px;
	padding: 20px;
}

/* Backgrounds */
.bg-primary {
	background: var(--primary-color);
	color: #fff;
}

.bg-light {
	background: var(--light-color);
	color: #333;
}

.bg-dark {
	background: var(--dark-color);
	color: #fff;
}

.bg-black {
	background: #000;
	color: #fff;
}
