:root {
	--bs-font-sans-serif: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
	--bs-primary: #222831;
	--bs-primary-rgb: 34, 40, 49;
	--bs-extra1: #10161E;
	--bs-extra1-rgb: 16, 22, 30;
	--bs-extra2: #252A32;
	--bs-extra2-rgb: 37, 42, 50;
	--bs-white: #ffffff;
	--bs-gray: #393E46;
	--bs-dark: #212529;
	--bs-border-color: #dee2e6;
	--bs-border-radius: 0.5rem;
	--bs-body-font-family: var(--bs-font-sans-serif);
	--bs-body-font-size: 1rem;
	--bs-body-font-weight: 400;
	--bs-body-line-height: 1.5;
	--bs-body-color: #212529;
	--bs-body-bg: #fff;
}

html {
	height: 100%;
	scroll-padding-top: calc(4.5rem - 1px);
}

.bg-card {
	background-color: #393E46;
	color: #FFFFFF;
	padding: 2rem 0.5rem;
	border-radius: 8px;
	transition: transform 0.3s, background-color 0.3s;
	position: relative;
	overflow: hidden;
}

.bg-card:hover {
	background-color: #282e35;
	transform: translateZ(0);
}

.bg-card i {
	font-size: 2rem;
	color: #FFFFFF;
	transition: color 0.3s;
}

.bg-card .icon-name {
	opacity: 0;
	color: #FFFFFF;
	font-size: 1.2rem;
	position: absolute;
	bottom: 10px;
	transition: opacity 0.3s;
}

.bg-card:hover .icon-name {
	opacity: 1;
}

.page-section {
	padding: 2rem 0;
}

.page-section .page-section-heading {
	font-size: 2.25rem;
	line-height: 2rem;
	color: var(--bs-primary);
}

@media (min-width: 992px) {
	.page-section .page-section-heading {
		font-size: 3rem;
		line-height: 2.5rem;
	}
}

.divider-custom {
	margin: 1.25rem 0 1.5rem;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.divider-custom .divider-custom-line {
	width: 100%;
	max-width: 7rem;
	height: 0.25rem;
	background-color: #FFFFFF;
	border-radius: 1rem;
	border-color: #FFFFFF;
}

.divider-custom .divider-custom-line:first-child {
	margin-right: 1rem;
}

.divider-custom .divider-custom-line:last-child {
	margin-left: 1rem;
}

.divider-custom .divider-custom-icon {
	color: #FFFFFF;
	font-size: 2rem;
}

.btn-social {
	border-radius: 100%;
	display: inline-flex;
	width: 3.25rem;
	height: 3.25rem;
	font-size: 1.25rem;
	justify-content: center;
	align-items: center;
}

.masthead {
	padding-top: 3rem;
	padding-bottom: 3rem;
	background-color: var(--bs-primary);
	color: var(--bs-white);
}

.masthead .masthead-heading {
	font-size: 2.75rem;
	line-height: 2.75rem;
}

.masthead .masthead-subheading {
	font-size: 1.25rem;
}

.masthead .masthead-avatar {
	width: 20rem;
}

@media (min-width: 992px) {
	.masthead {
		padding-top: 4rem;
		padding-bottom: 4rem;
	}

	.masthead .masthead-heading {
		font-size: 4rem;
		line-height: 3.5rem;
	}

	.masthead .masthead-subheading {
		font-size: 1.5rem;
	}
}

