:root{
	--default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
	--heading-font: "Nunito",  sans-serif;
	--nav-font: "Poppins",  sans-serif;
}
:root{
	--background-color: #ffffff;
	--default-color: #444444;
	--heading-color: #012970;
	--accent-color: #09B850;
	--contrast-color: #ffffff;
}
body{
	font-family: var(--default-font);
	color: #444444;
}
a {
	color: #09B850;
	text-decoration: none;
}

a:hover {
	color: #f1775d;
	text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--heading-color);
	font-family: var(--heading-font);
}
@media (min-width: 1200px) {
  h3, .h3 {
      font-size: 1.3rem;
  }
}
.sub-header{
	background-color: #09B850;
}

.sub-header .navbar-brand,
.sub-header a{
	color: #fff !important;
	font-size: 0.9rem !important;
}

.sub-header .navbar-brand{
	font-size: .9rem !important;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
	background: #fff;
	transition: all 0.5s;
	z-index: 997;
	padding: 20px 0;
}

#header.header-scrolled {
	padding: 12px 0;
	box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo {
	font-size: 26px;
	margin: 0;
	padding: 0;
	line-height: 1;
	font-weight: 700;
	letter-spacing: 0.5px;
	text-transform: uppercase;
}

#header .logo a {
	color: #0b2341;
}

#header .logo img {
	max-height: 40px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
	padding: 0;
}

.navbar ul {
	margin: 0;
	padding: 0;
	display: flex;
	list-style: none;
	align-items: center;
}

.navbar li {
	position: relative;
}

.navbar a,
.navbar a:focus {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 0 10px 30px;
	font-size: 15px;
	color: #0b2341;
	white-space: nowrap;
	transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
	font-size: 12px;
	line-height: 0;
	margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
	color: #09B850;
}

.navbar .getstarted,
.navbar .getstarted:focus {
	background: #ed502e;
	padding: 8px 20px;
	margin-left: 30px;
	border-radius: 4px;
	color: #fff;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
	color: #fff;
	background: #ef6445;
}

.navbar .dropdown ul {
	display: block;
	position: absolute;
	left: 14px;
	top: calc(100% + 30px);
	margin: 0;
	padding: 10px 0;
	z-index: 99;
	opacity: 0;
	visibility: hidden;
	background: #fff;
	box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
	transition: 0.3s;
}

.navbar .dropdown ul li {
	min-width: 200px;
}

.navbar .dropdown ul a {
	padding: 10px 20px;
	text-transform: none;
}

.navbar .dropdown ul a i {
	font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
	color: #ed502e;
}

.navbar .dropdown:hover>ul {
	opacity: 1;
	top: 100%;
	visibility: visible;
}

.navbar .dropdown .dropdown ul {
	top: 0;
	left: calc(100% - 30px);
	visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
	opacity: 1;
	top: 0;
	left: 100%;
	visibility: visible;
}

@media (max-width: 1366px) {
	.navbar .dropdown .dropdown ul {
		left: -90%;
	}

	.navbar .dropdown .dropdown:hover>ul {
		left: -100%;
	}
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
	color: #0b2341;
	font-size: 28px;
	cursor: pointer;
	display: none;
	line-height: 0;
	transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
	color: #fff;
}

@media (max-width: 991px) {
	.mobile-nav-toggle {
		display: block;
	}

	.navbar ul {
		display: none;
	}
}

.navbar-mobile {
	position: fixed;
	overflow: hidden;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background: rgba(4, 12, 21, 0.9);
	transition: 0.3s;
	z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
	position: absolute;
	top: 15px;
	right: 15px;
}

.navbar-mobile ul {
	display: block;
	position: absolute;
	top: 55px;
	right: 15px;
	bottom: 15px;
	left: 15px;
	padding: 10px 0;
	background-color: #fff;
	overflow-y: auto;
	transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
	padding: 10px 20px;
	font-size: 15px;
	color: #0b2341;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
	color: #ed502e;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
	margin: 15px;
}

.navbar-mobile .dropdown ul {
	position: static;
	display: none;
	margin: 10px 20px;
	padding: 10px 0;
	z-index: 99;
	opacity: 1;
	visibility: visible;
	background: #fff;
	box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
	min-width: 200px;
}

.navbar-mobile .dropdown ul a {
	padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
	font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
	color: #ed502e;
}

.navbar-mobile .dropdown>.dropdown-active {
	display: block;
}

.scrolled .header {
  box-shadow: 0px 0 18px color-mix(in srgb, var(--default-color), transparent 85%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
	color: var(--default-color);
	background-color: var(--background-color);
	padding: 60px 0;
	scroll-margin-top: 100px;
	overflow: clip;
}
@media (max-width: 1199px) {
	section,
	.section {
		scroll-margin-top: 66px;
	}
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
	--default-color: #ffffff;
	--background-color: #000000;
	--heading-color: #ffffff;
	width: 100%;
	min-height: calc(100vh - 100px);
	position: relative;
	padding: 80px 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--default-color);
}

.hero img {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
}

.hero:before {
	content: "";
	background: color-mix(in srgb, var(--background-color), transparent 30%);
	position: absolute;
	inset: 0;
	z-index: 2;
}

.hero .container {
	position: relative;
	z-index: 3;
}

.hero h2 {
	margin: 0;
	font-size: 48px;
	font-weight: 700;
}

.hero p {
	color: color-mix(in srgb, var(--default-color), transparent 20%);
	margin: 10px 0 0 0;
	font-size: 24px;
}

.hero .btn-get-started {
	font-weight: 400;
	font-size: 15px;
	letter-spacing: 1px;
	display: inline-block;
	padding: 10px 30px;
	border-radius: 4px;
	transition: 0.3s;
	background: var(--accent-color);
	color: var(--contrast-color);
}

.hero .btn-get-started:hover {
	background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.hero .btn-watch-video {
	font-size: 16px;
	transition: 0.5s;
	margin-left: 25px;
	font-weight: 600;
	color: var(--default-color);
}

.hero .btn-watch-video i {
	color: var(--accent-color);
	font-size: 32px;
	transition: 0.3s;
	line-height: 0;
	margin-right: 8px;
}

.hero .btn-watch-video:hover {
	color: var(--accent-color);
}

.hero .btn-watch-video:hover i {
	color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

@media (max-width: 768px) {
	.hero h2 {
		font-size: 32px;
	}

	.hero p {
		font-size: 18px;
	}
}

/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/
.blog-posts article {
	box-shadow: 0 4px 16px color-mix(in srgb, var(--default-color), transparent 90%);
	padding: 30px;
	height: 100%;
}
.blog-posts .post-img {
	max-height: 440px;
	margin: -30px -30px 0 -30px;
	overflow: hidden;
}
.blog-posts .title {
	font-size: 24px;
	font-weight: 700;
	padding: 0;
	margin: 30px 0;
}
.blog-posts .title a {
	color: var(--heading-color);
	transition: 0.3s;
}
.blog-posts .title a:hover {
	color: var(--accent-color);
}
.blog-posts .meta-top {
	margin-top: 20px;
	color: color-mix(in srgb, var(--default-color), transparent 40%);
}
.blog-posts .meta-top ul {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	align-items: center;
	padding: 0;
	margin: 0;
}
.blog-posts .meta-top ul li+li {
	padding-left: 20px;
}

.blog-posts .meta-top i {
	font-size: 16px;
	margin-right: 8px;
	line-height: 0;
	color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-posts .meta-top a {
	color: color-mix(in srgb, var(--default-color), transparent 40%);
	font-size: 14px;
	display: inline-block;
	line-height: 1;
}

.blog-posts .content {
	margin-top: 20px;
}

.blog-posts .content .read-more {
	text-align: right;
}
.blog-posts .content .read-more a {
	background: var(--accent-color);
	color: var(--contrast-color);
	display: inline-block;
	padding: 8px 30px;
	transition: 0.3s;
	font-size: 14px;
	border-radius: 4px;
}

.blog-posts .content .read-more a:hover {
	background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Blog Pagination Section
--------------------------------------------------------------*/
.blog-pagination {
	padding-top: 0;
	color: color-mix(in srgb, var(--default-color), transparent 40%);
}
.blog-pagination ul {
	display: flex;
	padding: 0;
	margin: 0;
	list-style: none;
}
.blog-pagination li {
	margin: 0 5px;
	transition: 0.3s;
}
.blog-pagination li a {
	color: color-mix(in srgb, var(--default-color), transparent 40%);
	padding: 7px 16px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.blog-pagination li a.active,
.blog-pagination li a:hover {
	background: var(--accent-color);
	color: var(--contrast-color);
}
.blog-pagination li a.active a,
.blog-pagination li a:hover a {
	color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.blog-details {
	padding-bottom: 30px;
}

.blog-details .article {
	padding: 30px;
	box-shadow: 0 4px 16px color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-details .post-img {
	margin: -30px -30px 20px -30px;
	overflow: hidden;
}
.blog-details .title {
	color: var(--heading-color);
	font-size: 28px;
	font-weight: 700;
	padding: 0;
	margin: 30px 0;
}
.blog-details .content {
	margin-top: 20px;
}
.blog-details .content h3 {
	font-size: 22px;
	margin-top: 30px;
	font-weight: bold;
}
.blog-details .content blockquote {
	overflow: hidden;
	background-color: color-mix(in srgb, var(--default-color), transparent 95%);
	padding: 60px;
	position: relative;
	text-align: center;
	margin: 20px 0;
}
.blog-details .content blockquote p {
	color: var(--default-color);
	line-height: 1.6;
	margin-bottom: 0;
	font-style: italic;
	font-weight: 500;
	font-size: 22px;
}
.blog-details .content blockquote:after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 3px;
	background-color: var(--accent-color);
	margin-top: 20px;
	margin-bottom: 20px;
}
.blog-details .meta-top {
	margin-top: 20px;
	color: color-mix(in srgb, var(--default-color), transparent 40%);
}
.blog-details .meta-top ul {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	align-items: center;
	padding: 0;
	margin: 0;
}
.blog-details .meta-top ul li+li {
	padding-left: 20px;
}
.blog-details .meta-top i {
	font-size: 16px;
	margin-right: 8px;
	line-height: 0;
	color: color-mix(in srgb, var(--default-color), transparent 40%);
}
.blog-details .meta-top a {
	color: color-mix(in srgb, var(--default-color), transparent 40%);
	font-size: 14px;
	display: inline-block;
	line-height: 1;
}
.blog-details .meta-bottom {
	padding-top: 10px;
	border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}
.blog-details .meta-bottom i {
	color: color-mix(in srgb, var(--default-color), transparent 40%);
	display: inline;
}
.blog-details .meta-bottom a {
	color: color-mix(in srgb, var(--default-color), transparent 40%);
	transition: 0.3s;
}
.blog-details .meta-bottom a:hover {
	color: var(--accent-color);
}
.blog-details .meta-bottom .cats {
	list-style: none;
	display: inline;
	padding: 0 20px 0 0;
	font-size: 14px;
}

.blog-details .meta-bottom .cats li {
	display: inline-block;
}
.blog-details .meta-bottom .tags {
	list-style: none;
	display: inline;
	padding: 0;
	font-size: 14px;
}
.blog-details .meta-bottom .tags li {
	display: inline-block;
}
.blog-details .meta-bottom .tags li+li::before {
	padding-right: 6px;
	color: var(--default-color);
	content: ",";
}
.blog-details .meta-bottom .share {
	font-size: 16px;
}
.blog-details .meta-bottom .share i {
	padding-left: 5px;
}

/*--------------------------------------------------------------
# Blog Author Section
--------------------------------------------------------------*/
.blog-author {
  padding: 10px 0 40px 0;
}

.blog-author .author-container {
  padding: 20px;
  box-shadow: 0 4px 16px color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-author img {
  max-width: 120px;
  margin-right: 20px;
}

.blog-author h4 {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 0px;
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-author .social-links {
  margin: 0 10px 10px 0;
}

.blog-author .social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  margin-right: 5px;
}

.blog-author p {
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Blog Comments Section
--------------------------------------------------------------*/
.blog-comments {
	padding: 10px 0;
}
.blog-comments .comments-count {
	font-weight: bold;
}
.blog-comments .comment {
	margin-top: 30px;
	position: relative;
}
.blog-comments .comment .comment-img {
	margin-right: 14px;
}
.blog-comments .comment .comment-img img {
	width: 60px;
}
.blog-comments .comment h5 {
	font-size: 16px;
	margin-bottom: 2px;
}
.blog-comments .comment h5 a {
	font-weight: bold;
	color: var(--default-color);
	transition: 0.3s;
}
.blog-comments .comment h5 a:hover {
	color: var(--accent-color);
}
.blog-comments .comment h5 .reply {
	padding-left: 10px;
	color: color-mix(in srgb, var(--default-color), transparent 20%);
}
.blog-comments .comment h5 .reply i {
	font-size: 20px;
}
.blog-comments .comment time {
	display: block;
	font-size: 14px;
	color: color-mix(in srgb, var(--default-color), transparent 40%);
	margin-bottom: 5px;
}
.blog-comments .comment.comment-reply {
	padding-left: 40px;
}

/*--------------------------------------------------------------
# Comment Form Section
--------------------------------------------------------------*/
.comment-form {
	padding-top: 10px;
}

.comment-form form {
	margin-top: 30px;
	padding: 30px;
	box-shadow: 0 4px 16px color-mix(in srgb, var(--default-color), transparent 90%);
}

.comment-form form h4 {
	font-weight: bold;
	font-size: 22px;
}

.comment-form form p {
	font-size: 14px;
}

.comment-form form input {
	background-color: var(--background-color);
	color: var(--default-color);
	border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
	font-size: 14px;
	border-radius: 4px;
	padding: 10px 10px;
}

.comment-form form input:focus {
	box-shadow: none;
	border-color: var(--accent-color);
}

.comment-form form textarea {
	background-color: var(--background-color);
	color: var(--default-color);
	border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
	border-radius: 4px;
	padding: 10px 10px;
	font-size: 14px;
	height: 120px;
}

.comment-form form textarea:focus {
	box-shadow: none;
	border-color: var(--accent-color);
}

.comment-form form .form-group {
	margin-bottom: 25px;
}

.comment-form form .btn-primary {
	border-radius: 4px;
	padding: 10px 20px;
	border: 0;
	background-color: var(--accent-color);
	color: var(--contrast-color);
}

.comment-form form .btn-primary:hover {
	color: var(--contrast-color);
	background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
	padding: 30px;
	margin: 60px 0 30px 0;
	box-shadow: 0 4px 16px color-mix(in srgb, var(--default-color), transparent 90%);
}
.widget-title {
	color: var(--heading-color);
	font-size: 20px;
	font-weight: 700;
	padding: 0;
	margin: 0 0 20px 0;
}
.widget-item {
	margin-bottom: 40px;
}
.widget-item:last-child {
	margin-bottom: 0;
}
.search-widget form {
	background: var(--background-color);
	border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
	padding: 3px 10px;
	position: relative;
	transition: 0.3s;
}
.search-widget form input[type=text] {
	border: 0;
	padding: 4px;
	border-radius: 4px;
	width: calc(100% - 40px);
	background-color: var(--background-color);
	color: var(--default-color);
}
.search-widget form input[type=text]:focus {
	outline: none;
}
.search-widget form button {
	background: var(--accent-color);
	color: var(--contrast-color);
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	border: 0;
	font-size: 16px;
	padding: 0 15px;
	margin: -1px;
	transition: 0.3s;
	border-radius: 0 4px 4px 0;
	line-height: 0;
}
.search-widget form button i {
	line-height: 0;
}
.search-widget form button:hover {
	background: color-mix(in srgb, var(--accent-color), transparent 20%);
}
.search-widget form:is(:focus-within) {
	border-color: var(--accent-color);
}
.categories-widget ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.categories-widget ul li {
	padding-bottom: 10px;
}

.categories-widget ul li:last-child {
	padding-bottom: 0;
}
.categories-widget ul a {
	color: color-mix(in srgb, var(--default-color), transparent 20%);
	transition: 0.3s;
}
.categories-widget ul a:hover {
	color: var(--accent-color);
}
.categories-widget ul a span {
	padding-left: 5px;
	color: color-mix(in srgb, var(--default-color), transparent 50%);
	font-size: 14px;
}
.recent-posts-widget .post-item {
	display: flex;
	margin-bottom: 15px;
}
.recent-posts-widget .post-item:last-child {
	margin-bottom: 0;
}
.recent-posts-widget .post-item img {
	width: 80px;
	margin-right: 15px;
}
.recent-posts-widget .post-item h4 {
	font-size: 15px;
	font-weight: bold;
	margin-bottom: 5px;
}
.recent-posts-widget .post-item h4 a {
	color: var(--default-color);
	transition: 0.3s;
}
.recent-posts-widget .post-item h4 a:hover {
	color: var(--accent-color);
}
.recent-posts-widget .post-item time {
	display: block;
	font-style: italic;
	font-size: 14px;
	color: color-mix(in srgb, var(--default-color), transparent 50%);
}
.tags-widget {
	margin-bottom: -10px;
}
.tags-widget ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.tags-widget ul li {
	display: inline-block;
}
.tags-widget ul a {
	color: color-mix(in srgb, var(--default-color), transparent 30%);
	font-size: 14px;
	padding: 6px 14px;
	margin: 0 6px 8px 0;
	border: 1px solid color-mix(in srgb, var(--default-color), transparent 60%);
	display: inline-block;
	transition: 0.3s;
}
.tags-widget ul a:hover {
	background: var(--accent-color);
	color: var(--contrast-color);
	border: 1px solid var(--accent-color);
}
.tags-widget ul a span {
	padding-left: 5px;
	color: color-mix(in srgb, var(--default-color), transparent 60%);
	font-size: 14px;
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
	color: var(--default-color);
	background-color: var(--background-color);
	font-size: 14px;
/*	padding-bottom: 50px;*/
	position: relative;
}
.footer .footer-newsletter {
	background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
	border-top: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
	border-bottom: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
	padding: 50px 0;
}
.footer .footer-newsletter h4 {
	font-size: 24px;
}
.footer .footer-newsletter .newsletter-form {
	margin-top: 30px;
	padding: 6px 8px;
	position: relative;
	background-color: color-mix(in srgb, var(--background-color), transparent 50%);
	border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
	box-shadow: 0px 2px 25px color-mix(in srgb, var(--default-color), transparent 95%);
	display: flex;
	transition: 0.3s;
	border-radius: 4px;
}
.footer .footer-newsletter .newsletter-form:focus-within {
	border-color: var(--accent-color);
}
.footer .footer-newsletter .newsletter-form input[type=email] {
	border: 0;
	padding: 4px;
	width: 100%;
	background-color: color-mix(in srgb, var(--background-color), transparent 50%);
	color: var(--default-color);
}
.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
	outline: none;
}
.footer .footer-newsletter .newsletter-form input[type=submit] {
	border: 0;
	font-size: 16px;
	padding: 0 20px;
	margin: -7px -8px -7px 0;
	background: var(--accent-color);
	color: var(--contrast-color);
	transition: 0.3s;
	border-radius: 0 4px 4px 0;
}
.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
	background: color-mix(in srgb, var(--accent-color), transparent 20%);
}
.footer .footer-newsletter .error-message {
	display: none;
	background: #df1529;
	color: #ffffff;
	text-align: left;
	padding: 15px;
	margin-top: 10px;
	font-weight: 600;
	border-radius: 4px;
}
.footer .footer-newsletter .sent-message {
	display: none;
	color: #ffffff;
	background: #059652;
	text-align: center;
	padding: 15px;
	margin-top: 10px;
	font-weight: 600;
	border-radius: 4px;
}
.footer .footer-newsletter .loading {
	display: none;
	background: var(--background-color);
	text-align: center;
	padding: 15px;
	margin-top: 10px;
}
.footer .footer-newsletter .loading:before {
	content: "";
	display: inline-block;
	border-radius: 50%;
	width: 24px;
	height: 24px;
	margin: 0 10px -6px 0;
	border: 3px solid var(--accent-color);
	border-top-color: var(--background-color);
	animation: subscription-loading 1s linear infinite;
}
@keyframes subscription-loading {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

.footer .footer-top {
	padding-top: 50px;
}
.footer .social-links a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 4px;
	background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
	border: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
	font-size: 16px;
	color: var(--accent-color);
	margin-right: 10px;
	transition: 0.3s;
}
.footer .social-links a:hover {
	color: var(--contrast-color);
	background-color: var(--accent-color);
}
.footer h4 {
	font-size: 16px;
	font-weight: bold;
	position: relative;
	padding-bottom: 12px;
}
.footer .footer-links {
	margin-bottom: 30px;
}
.footer .footer-links ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.footer .footer-links ul i {
	margin-right: 3px;
	font-size: 12px;
	line-height: 0;
	color: var(--accent-color);
}
.footer .footer-links ul li {
	padding: 10px 0;
	display: flex;
	align-items: center;
}

.footer .footer-links ul li:first-child {
	padding-top: 0;
}

.footer .footer-links ul a {
	display: inline-block;
	color: color-mix(in srgb, var(--default-color), transparent 20%);
	line-height: 1;
}

.footer .footer-links ul a:hover {
	color: var(--accent-color);
}
.footer .footer-about a {
	color: var(--heading-color);
	font-size: 16px;
	font-weight: 600;
	font-family: var(--heading-font);
}
.footer .footer-contact p {
	margin-bottom: 5px;
}
.footer .copyright {
	padding-top: 25px;
	padding-bottom: 25px;
	border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}
.footer .copyright p {
	margin-bottom: 0;
}
.footer .credits {
	margin-top: 6px;
	font-size: 13px;
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
	position: fixed;
	visibility: hidden;
	opacity: 0;
	right: 15px;
	bottom: 15px;
	z-index: 99999;
	background-color: var(--accent-color);
	width: 40px;
	height: 40px;
	border-radius: 4px;
	transition: all 0.4s;
}
.scroll-top i {
	font-size: 24px;
	color: var(--contrast-color);
	line-height: 0;
}
.scroll-top:hover {
	background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
	color: var(--contrast-color);
}
.scroll-top.active {
	visibility: visible;
	opacity: 1;
}

.icon-stack{
	display:inline-flex;
	justify-content:center;
	align-items:center;
	border-radius:100%;
	height:2.5rem;
	width:2.5rem;
	font-size:1rem;
	background-color:#f2f6fc;
	flex-shrink:0
}
.icon-stack svg{height:1rem;width:1rem}
.icon-stack-sm{height:2rem;width:2rem}
.icon-stack-lg{height:4rem;width:4rem;font-size:1.5rem}
.icon-stack-lg svg{height:1.5rem;width:1.5rem}
.icon-stack-xl{height:5rem;width:5rem;font-size:1.75rem}
.icon-stack-xl svg{height:1.75rem;width:1.75rem}

@media (min-width: 992px){
	.divider-right{border-right:.0625rem solid #e0e5ec}
}
.pointer{cursor:pointer!important}
i-feather{height:auto!important;width:auto!important}
.icon-stack i{height:1rem!important;width:1rem!important}
.icon-stack-lg i{height:1.5rem!important;width:1.5rem!important}
.icon-stack-xl i{height:1.75rem!important;width:1.75rem!important}

.bg-orange{background-color:rgba(247, 100, 0, 1)!important}
.bg-green{background-color:rgba(9, 184, 80, 1)!important}
.bg-yellow {background-color: rgba(244, 161, 0, 1) !important;}
.bg-red {background-color: rgba(232, 21, 0, 1) !important;}
.bg-blue {background-color: rgba(0, 97, 242, 1) !important;}
.bg-indigo{background-color:rgba(88, 0, 232, 1)!important}
.bg-purple{background-color:rgba(105, 0, 199, 1)!important}
.bg-pink{background-color:rgba(227, 0, 89, 1)!important}
.bg-cyan {background-color: rgba(0, 207, 213, 1) !important;}