:root {
	--bs-gray: #302e2e;
	--bs-primary: #0A5D93;
	--bs-primary-light: #a9afe7;
	--bs-secondary: #5D9B3A;
	--bs-light: #efefef;
	--bs-dark: #444;
	--bs-tertiary: #444;

	--bs-primary-rgb: 30, 38, 107;
	--bs-primary-light: 169, 175, 231;
	--bs-secondary-rgb: 239, 180, 130;
	--bs-light-rgb: 246, 246, 246;
	--bs-dark-rgb: 34, 45, 16;
	--bs-white-rgb: 255, 255, 255;
	--bs-black-rgb: 0, 0, 0;
	--bs-body-rgb: 129, 129, 129;

	--bs-font-sans-serif: "Montserrat", sans-serif;
	--bs-gradient: linear-gradient(135deg, #a9afe7, #1e266b);
	--bs-body-font-family: var(--bs-font-sans-serif);
	--bs-body-font-size: 17px;
	--bs-body-font-weight: 400;
	--bs-body-line-height: 1.75;
        --bs-nav-link-font-size: 0.9rem;

	--bs-body-color: #2b3232;
	--bs-body-bg: #fff;
	--bs-border-radius: 11px;

	--byf-header-font: "Poppins", sans-serif;

	--hcm-font-size: 18px;
	--hcm-font-weight: 500;
	--hcm-primary-dark: #223b7a;
	--hcm-secondary-dark: #158b2a;
	--hcm-pop: #3229ab;
	--hcm-body-color: #141418;
}

body.hcm {
	--bs-primary: var(--hcm-primary-dark);
	--bs-secondary: var(--hcm-secondary-dark);
	--bs-tertiary: var(--hcm-pop);
	font-size: var(--hcm-font-size);
}

/*- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
	a11y Styles
	- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */

#skip-navigation {
	background: #fff;
	color: #000;
	left: 0;
	padding: 0.5em;
	position: absolute;
	top: -1000px;
	transition: all 0.3s ease;
	z-index: 11;
}

a:not(.btn, .nav-link):focus-visible {
	outline: 2px solid var(--bs-primary);
}

:is(#footer-top, #footer-bottom) a:not(.btn, .nav-link):focus-visible {
	outline: 2px solid var(--bs-secondary);
}

:is(.btn-default, .btn-primary, .btn-secondary):focus-visible {
	outline: 2px solid var(--bs-primary) !important;
	outline-offset: 1px;
}

#hc-toggle {
	align-items: center;
	background: var(--bs-primary);
	border: 2px solid #fff;
	border-radius: 0.1875rem;
	bottom: 1rem;
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05), 0 2px 2px rgba(0, 0, 0, 0.05), 0 4px 4px rgba(0, 0, 0, 0.05), 0 8px 8px rgba(0, 0, 0, 0.05), 0 16px 16px rgba(0, 0, 0, 0.05);
	color: #fff;
	display: flex;
	font-size: 1.75rem;
	justify-content: center;
	height: 3rem;
	left: 1rem;
	outline: 0;
	position: fixed;
	transition: all 0.3s ease;
	width: 3rem;
	cursor: pointer;
	z-index: 999;
}

#hc-toggle i {
	font-size: 1.75rem;
}

#hc-toggle:is(:hover, :focus, :focus-visible) {
	background: #fff;
	border-color: var(--bs-secondary);
	color: var(--bs-secondary);
}

.sr-only {
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}

.hcm :is(p, a, ul, li):not(.btn, .btn-primary, .btn-secondary) {
	font-weight: 500;
}

.hcm :is(a, a:active, a:focus, a:visited) {
	font-weight: 600;
	text-decoration: underline;
}

@media (max-width: 767px) {
	.sr-only-sm {
		border: 0;
		clip: rect(0 0 0 0);
		height: 1px;
		margin: -1px;
		overflow: hidden;
		padding: 0;
		position: absolute;
		width: 1px;
	}
}

/*=====================
	TYPOGRAPHY/DEFAULT
	======================*/

body {
	overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
[class*="display-"] {
	font-family: var(--byf-header-font);
	font-weight: 600;
}

h1 {
	font-size: 3rem;
}

h2 {
	font-size: 2.5rem;
}

h3 {
	font-size: 2rem;
}

h4 {
	font-size: 1.75rem;
}

[class^="fs-"]:not([class^="fa-"]):not([class*="display-"]) {
	font-family: var(--bs-font-sans-serif);
}

.container,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
	max-width: 1240px;
}

#main p,
#footer p {
	line-height: var(--bs-body-line-height);
	font-weight: var(--bs-body-font-weight);
}

section {
	padding: 6rem 0 6rem;
}

#main {
	margin-top: -12rem;
	position: relative;
	z-index: 99;
}

#why-choose-us {
	background: var(--bs-light);
	padding: 7rem 0 6rem;
}

.btn {
	border-radius: var(--bs-border-radius);
	border: 2px solid var(--bs-primary);
}

.bg-light {
	background-color: var(--bs-light) !important;
}

.bg-primary {
	background: var(--bs-primary) !important;
}

.bg-secondary {
	background-color: var(--bs-secondary) !important;
}

.bg-accent {
	background-color: var(--bs-tertiary) !important;
}

.bg-dark .bg-dark,
.bg-dark {
	background-color: var(--bs-dark) !important;
}

.bg-gray {
	background: var(--bs-gray) !important;
}

a,
a:is(:focus, :active) {
	color: var(--bs-primary);
}

a:hover {
	color: var(--bs-secondary);
}

.text-primary {
	color: var(--bs-primary) !important;
}

.text-secondary {
	color: var(--bs-secondary) !important;
}

.btn-primary {
	background: var(--bs-primary);
	color: #fff;
	border-color: var(--bs-primary);
}

.btn-primary:hover {
	color: var(--bs-dark);
	background-color: transparent;
	border-color: var(--bs-primary);
}

.btn-secondary {
	background: var(--bs-secondary);
	color: var(--bs-dark);
	border-color: var(--bs-seconday);
}

.btn-secondary:hover {
	background: transparent;
	color: #fff;
	border-color: var(--bs-secondary);
}

#pageContent a {
	color: var(--bs-primary);
	font-weight: 600;
	text-decoration: underline;
}

#pageContent li {
	font-weight: 300;
}

.btn-lg {
	font-size: 1rem;
	font-weight: 500;
	padding: 0.875rem 2rem;
}

.btn-light {
	background-color: var(--bs-light);
	border-color: var(--bs-light);
	color: var(--bs-dark);
}

.btn-dark {
	background-color: var(--bs-dark);
	border-color: var(--bs-dark);
	color: var(--bs-light);
}

.visible-xs {
	display: none;
}

.card {
	display: block;
	border: 0;
	border-radius: 10px;
	box-shadow: 0 4px 6px 0px rgb(0 0 0 / 20%);
}

.form-control {
	border: 1px solid #d3d3d3;
	border-radius: 30px;
	color: #404040;
	display: block;
	font-size: 0.875rem;
	margin: 5px 0 7px;
	padding: 0.5rem 0.875rem;
}

body {
	margin: 0;
	font-family: var(--bs-font-sans-serif);
	font-size: 16px;
	line-height: 1.6;
}

.btn-accent {
	background-color: var(--bs-tertiary);
	color: var(--bs-dark);
}

.btn-accent:hover {
	background-color: var(--bs-primary);
}

.btn-dark {
	background-color: var(--bs-dark);
	color: var(--bs-light);
}

.btn-dark:hover {
	opacity: 0.85;
}

/* ==================
  Header/Navbar
  =====================*/

#topbar {
	background: var(--bs-primary);
	color: #fff;
}

#topbar ul {
	display: flex;
	justify-content: space-between;
	margin: 0 0 0 auto;
	align-items: center;
	padding: 0.5rem 0;
	flex-wrap: wrap;
	list-style: none;
	max-width: 70%;
}

#topbar li {
	padding-left: 10px;
	text-align: center;
}

.topbar-link {
	color: #fff;
	font-weight: 600;
	font-size: 15px;
	text-decoration: none;
	padding-left: 15px;
}

.navbar-nav {
	align-items: center;
}

.nav-item {
	padding: 0 1rem 0 0;
}

.nav-item:last-of-type .nav-link {
	background: var(--bs-primary);
	padding: 0.6rem 1.4rem;
	border-radius: 3px;
	font-weight: 500;
	text-transform: uppercase;
	margin-left: 0.7rem;
	color: var(--bs-light);
}

.nav-link {
	color: var(--bs-dark);
}

.topbar-link iconify-icon {
	color: #fff;
	margin-right: 5px;
	top: 3px;
	position: relative;
}

.branding {
	font-weight: bold;
	font-size: 1.2rem;
}

#top-nav a {
	margin-left: 1rem;
	text-decoration: none;
	color: var(--byf-dark);
	font-weight: 600;
	transition: color 0.3s ease;
}

#top-nav a.button {
	background: var(--byf-accent);
	color: var(--byf-dark);
	padding: 0.5rem 1rem;
	border-radius: 4px;
}

#top-nav a:hover {
	color: #d98047;
}

/* ==================
  Hero Section
  =====================*/

#hero {
	background: var(--bs-white);
	padding: 0 0 6rem;
	color: #fcf0e7;
	z-index: 0;
	position: relative;
	overflow: hidden;
}

#hero-bg {
	position: absolute;
	top: 20%;
	right: -13%;
	height: auto;
	width: 65%;
	z-index: 1;
}

.hero-graphic {
	fill: #fff;
	fill-opacity: 0.5;
}

#hero .row {
	position: relative;
	z-index: 5;
}

#hero .text-area {
	padding: 0 2rem 0 0.5rem;
}

#hero .heading {
	font-family: var(--byf-header-font);
	color: var(--bs-dark);
	font-weight: 400;
	font-size: 2.25rem;
}

#hero .heading .bold {
	font-weight: 600;
	font-size: 2.25rem;
}

/* ==================
  Values Section
  =====================*/

.services-overview {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: center;
	padding: 2rem;
	text-align: center;
}

#values h2 {
	color: var(--bs-primary);
	font-weight: 500;
	text-align: center;
	margin-bottom: 2rem;
	font-size: 2rem;
}

#values .subtitle {
	text-transform: uppercase;
	text-align: center;
	font-size: 1.5rem;
	margin-bottom: 0.5rem;
	font-weight: 300;
}

#values .service-card h3 {
	font-size: 1rem;
	font-weight: 600;
	color: var(--bs-secondary);
}

#values .service-card p {
	color: var(--bs-secondary);
}

#values iconify-icon {
	color: var(--bs-secondary);
	margin: 15px auto 10px;
}

#values .service-card {
	text-align: center;
	padding: 0.5rem 3.25rem;
	border-radius: 15px;
	margin: 0 1.55rem;
}

/* ==================
  Index Section
  =====================*/

#index {
	z-index: 0;
	position: relative;
}

#index .row {
	position: relative;
	z-index: 5;
}

#index h1 {
	color: var(--bs-primary);
	font-size: 2.15rem;
}

#index .index-subtitle {
	font-size: 1.5rem;
	margin-bottom: 0.5rem;
	text-transform: uppercase;
	color: var(--hcm-secondary-dark);
}

#index-bg {
	position: absolute;
	top: 10%;
	left: -60%;
	height: auto;
	width: 105%;
	z-index: 1;
}

#index-bg .graphic {
	fill: #141c47;
	fill-opacity: 0.5;
}

/* ==================
  Inner Pages
  =====================*/

#inner-hero {
	background: var(--bs-dark);
	color: #fefefe;
}

#inner-hero h1 {
	font-size: 2rem;
	color: var(--bs-light);
	margin-bottom: 1.5rem;
}

#inner-cta {
	text-align: center;
}

#inner-cta h2 {
	font-weight: 400;
}

/* ==================
  About Section
  =====================*/

#about {
	position: relative;
	z-index: 0;
	overflow: hidden;
}

#about-bg .graphic {
	fill: #fff;
	fill-opacity: 0.5;
}

#about-bg {
	position: absolute;
	top: -40%;
	right: -35%;
	height: auto;
	width: 90%;
	z-index: 1;
}

#about .row {
	position: relative;
	z-index: 5;
}

#about .subtitle {
	font-size: 1.5rem;
	color: var(--bs-light);
	text-transform: uppercase;
	margin-bottom: 0.5rem;
}

#about p {
	color: var(--bs-light);
	font-size: 1.05rem;
}

#about h2 {
	color: var(--bs-primary-light);
	margin-bottom: 1.5rem;
}

#about img {
	border-radius: 20px;
	width: 100%;
}

/* ==================
  Services Section
  =====================*/

#service-bg {
	position: absolute;
	top: -10%;
	left: 0;
	height: auto;
	width: 105%;
	z-index: 1;
}

#services {
	z-index: 0;
	position: relative;
	overflow: hidden;
}

#services .container {
	position: relative;
	z-index: 5;
}
.services-graphic {
	fill: #ffcfac;
	fill-opacity: 0.4;
}

#services .card {
	background: rgba(var(--bs-primary-light-rgb), 0.3);
	color: var(--bs-primary);
	text-align: center;
	padding: 1rem 1.25rem;
	margin: 1rem 0;
	backdrop-filter: blur(30px);
}

#services .subtitle {
	color: var(--bs-primary);
	font-size: 1.25rem;
	text-transform: uppercase;
	text-align: center;
}

#services .card iconify-icon {
	margin: 1rem auto;
}

#services .card h3 {
	font-size: 1.5rem;
}

/* ==================
  Testimonials
  =====================*/

#testimonials {
	background: var(--bs-dark);
	color: rgb(var(--bs-white-rgb));
	text-align: center;
	padding: 3rem 2rem;
	position: relative;
	z-index: 0;
}

#testimonials .container {
	position: relative;
	z-index: 5;
}

#testimonials-bg .graphic {
	fill: #ffcfac;
	fill-opacity: 0.1;
}

#testimonials-bg {
	position: absolute;
	top: 27%;
	left: -42%;
	height: auto;
	width: 150%;
	z-index: 1;
}

#testimonials iconify-icon {
	color: var(--hcm-secondary-dark);
	margin: 0 5px;
}

#testimonials h2 {
	font-family: var(--bs-body-font-family);
	margin: 1rem auto;
	font-size: 2.5rem;
	font-weight: 600;
}

#testimonials .author {
	margin-top: 2rem;
	font-weight: 500;
	font-size: 1.25rem;
}

#testimonials .stars {
	margin: 1rem auto;
}

#testimonials iconify-icon {
	color: var(--hcm-secondary-dark);
}

#testimonials .testimonial-img {
	border-radius: 50%;
	width: 75px;
	height: 75px;
}

/* ==================
  Pricing Packages
  =====================*/

#pricing {
	padding: 3rem 0;
	text-align: center;
}

#pricing .subtitle {
	text-transform: uppercase;
	color: var(--bs-primary);
	font-size: 1.5rem;
}

#pricing h2 {
	margin-bottom: 2rem;
}

.pricing-tiers {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
	justify-content: center;
}

#pricing {
	padding: 5rem 0 6rem;
}

#pricing .tier li {
	position: relative;
}

#pricing .col-sm-12:nth-child(1) .tier {
	background: rgba(var(--bs-secondary-rgb), 0.25);
}

#pricing .col-sm-12:nth-child(2) .tier {
	background: rgba(var(--bs-secondary-rgb), 0.5);
}

#pricing .col-sm-12:nth-child(3) .tier {
	background: rgba(var(--bs-secondary-rgb), 0.75);
}

#pricing .tier li iconify-icon {
	position: absolute;
	left: -25px;
	top: 2px;
}

.tier .price {
	font-size: 2rem;
	font-weight: 600;
}

.tier p {
	line-height: 1.85;
}

.tier .btn {
	position: absolute;
	bottom: 1.5rem;
	display: inline-block;
	margin: 0 auto;
	max-width: 237px;
	width: 85%;
}

.tier {
	background: var(--bs-secondary);
	text-align: left;
	position: relative;
	padding: 1.5rem;
	min-height: 450px;
	border-radius: 20px;
	border: 3px solid var(--bs-primary);
}

.tier ul {
	list-style: none;
	margin: 1.5rem 0 3rem;
}

.tier h3 {
	margin-bottom: 0.75rem;
	font-size: 1.25rem;
	font-weight: 500;
	color: var(--bs-primary);
}

/* ==================
  Footer
  =====================*/

#footer .about {
	padding: 4rem 6rem 2rem 0;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
}

#footer h3 {
	font-size: 2.5rem;
}

#footer .content {
	padding: 4rem 0 2rem 4rem;
}

#footer form {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	max-width: 400px;
	margin-top: 1rem;
}

#footer form input,
#footer form textarea {
	padding: 0.5rem;
	font-size: 1rem;
	border: none;
	border-radius: 4px;
	width: 100%;
}

#footer form button {
	background: var(--bs-dark);
	color: var(--bs-light);
	padding: 0.5rem;
	border: none;
	border-radius: 4px;
	font-weight: bold;
}

.bg-block {
	height: 100%;
	width: 50%;
	content: "";
	position: absolute;
	top: 0;
	z-index: -1;
}

.left-block {
	background: var(--bs-light);
	left: 0;
}

.right-block {
	background: var(--bs-tertiary);
	right: 0;
	width: 57%;
}

#footer {
	position: relative;
}

#footer ul {
	list-style: none;
	padding-left: 0;
	margin-top: 2rem;
	justify-content: space-between;
}

#footer li {
	margin-right: 1rem;
}

.footer-columns {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: center;
	margin-bottom: 1rem;
}

.footer-columns div {
	margin: 0 1rem;
}

.footer-menu a {
	text-decoration: none;
	font-weight: 500;
}

.social-media a {
	font-weight: 500;
	text-transform: uppercase;
	padding-bottom: 0.25rem;
	text-decoration: none;
	border-bottom: 1px solid var(--bs-primary);
}

/* ==================
  Media Queries
  =====================*/

@media (max-width: 1024px) {
	.top-bar {
		flex-direction: column;
		align-items: flex-start;
	}

	.top-nav {
		display: flex;
		flex-wrap: wrap;
		gap: 0.5rem;
	}
}

@media (max-width: 768px) {
	.services-overview,
	.pricing-tiers,
	.about,
	.footer-columns {
		flex-direction: column;
		align-items: center;
	}

	.service-card,
	.tier {
		width: 90%;
	}

	.hero {
		padding: 2rem 1rem;
	}

	.about .image,
	.about .content {
		width: 100%;
	}

	.top-nav a {
		margin-left: 0;
	}
}

@media (max-width: 480px) {
	body {
		font-size: 15px;
	}

	h1 {
		font-size: 1.75rem;
	}

	.btn {
		padding: 0.5rem;
		font-size: 0.9rem;
	}
}
