
/******************************/
/*     01. General Styles     */
/******************************/
body,
html {
	width: 100%;
	height: 100%;
}

body,
p {
	color: #151e2e;
	font: 400 1rem/1.625rem "Nunito", sans-serif;
	;
}

.p-large {
	font: 400 1.125rem/1.75rem "Nunito", sans-serif;
}

.p-small {
	font: 400 0.875rem/1.5rem "Nunito", sans-serif;
}

h1 {
	color: #333;
	font: 700 2.5rem/3.125rem "Nunito", sans-serif;
	letter-spacing: -0.2px;
}

h2 {
	color: #333;
	font: 700 2rem/2.625rem "Nunito", sans-serif;
	letter-spacing: -0.2px;
}

h3 {
	color: #333;
	font: 700 1.625rem/2.125rem "Nunito", sans-serif;
	letter-spacing: -0.2px;
}

h4 {
	color: #333;
	font: 700 1.375rem/1.75rem "Nunito", sans-serif;
	letter-spacing: -0.1px;
}

h5 {
	color: #333;
	font: 700 1.125rem/1.5rem "Nunito", sans-serif;
	letter-spacing: -0.1px;
}

h6 {
	color: #333;
	font: 700 1rem/1.375rem "Nunito", sans-serif;
	letter-spacing: -0.1px;
}

.section-header {
	text-align: center;
	padding-bottom: 70px;
}

.section-header .above-heading {
	text-transform: uppercase;
	margin-bottom: 1rem;
	letter-spacing: 1px;
	color: #ffffff;
	border-radius: 6px;
	padding: 0.5rem 1.5rem;
	background-color: #3f43fd;
	font-weight: 400;
	display: inline-block;
	font-size: 0.9rem;
}

.section-header .h2-heading {
	margin-bottom: 15px;
	font-size: 2.1rem;
	line-height: 1.5;
	color: #020710;
	font-weight: 600;
}

.p-heading {
	margin-bottom: 3.25rem;
}

.testimonial-text {
	font: italic 400 1rem/1.625rem "Nunito", sans-serif;
}

.testimonial-author {
	font: 700 1rem/1.625rem "Nunito", sans-serif;
	letter-spacing: -0.1px;
}

.li-space-lg li {
	margin-bottom: 0.375rem;
}

.indent {
	padding-left: 1.25rem;
}

a {
	color: #151e2e;
	text-decoration: underline;
}

a:hover {
	color: #151e2e;
	text-decoration: underline;
}

a.white {
	color: #fff;
}

section {
	padding: 130px 0;
	overflow: hidden;
}

.decorative-line {
	display: block;
	width: 5rem;
	height: 0.5rem;
	margin-right: auto;
	margin-left: auto;
}

.blue {
	color: #5f4dee;
}


.form-group {
	position: relative;
	margin-bottom: 1.25rem;
}

.form-group.has-error.has-danger {
	margin-bottom: 0.625rem;
}

.form-group.has-error.has-danger .help-block.with-errors ul {
	margin-top: 0.375rem;
}

.label-control {
	position: absolute;
	top: 0.87rem;
	left: 1.25rem;
	color: #151e2e;
	opacity: 1;
	font: 400 0.875rem/1.375rem "Nunito", sans-serif;
	cursor: text;
	transition: all 0.2s ease;
}

/* IE10+ hack to solve lower label text position compared to the rest of the browsers */
@media screen and (-ms-high-contrast: active),
screen and (-ms-high-contrast: none) {
	.label-control {
		top: 0.9375rem;
	}
}

.form-control-input:focus+.label-control,
.form-control-input.notEmpty+.label-control,
.form-control-textarea:focus+.label-control,
.form-control-textarea.notEmpty+.label-control {
	top: 0.125rem;
	opacity: 0.9;
	font-size: 0.75rem;
	/* font-weight: 700; */
}

.form-control-input,
.form-control-select {
	display: block;
	/* needed for proper display of the label in Firefox, IE, Edge */
	width: 100%;
	padding-top: 1.0625rem;
	padding-bottom: 0.0625rem;
	padding-left: 1.25rem;
	border: 1px solid #c4d8dc;
	border-radius: 0.25rem;
	background-color: #fff;
	color: #151e2e;
	font: 400 0.875rem/1.875rem "Nunito", sans-serif;
	transition: all 0.2s;
	-webkit-appearance: none;
	/* removes inner shadow on form inputs on ios safari */
}

.form-control-select {
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
	height: 3rem;
}

/* IE10+ hack to solve lower label text position compared to the rest of the browsers */
@media screen and (-ms-high-contrast: active),
screen and (-ms-high-contrast: none) {
	.form-control-input {
		padding-top: 1.25rem;
		padding-bottom: 0.75rem;
		line-height: 1.75rem;
	}

	.form-control-select {
		padding-top: 0.875rem;
		padding-bottom: 0.75rem;
		height: 3.125rem;
		line-height: 2.125rem;
	}
}

select {
	/* you should keep these first rules in place to maintain cross-browser behavior */
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	background-image: url('../images/down-arrow.png');
	background-position: 96% 50%;
	background-repeat: no-repeat;
	outline: none;
}

select::-ms-expand {
	display: none;
	/* removes the ugly default down arrow on select form field in IE11 */
}

.form-control-textarea {
	display: block;
	/* used to eliminate a bottom gap difference between Chrome and IE/FF */
	width: 100%;
	height: 8rem;
	/* used instead of html rows to normalize height between Chrome and IE/FF */
	padding-top: 1.25rem;
	padding-left: 1.3125rem;
	border: 1px solid #c4d8dc;
	border-radius: 0.25rem;
	background-color: #fff;
	color: #151e2e;
	font: 400 0.875rem/1.75rem "Nunito", sans-serif;
	transition: all 0.2s;
}

.form-control-input:focus,
.form-control-select:focus,
.form-control-textarea:focus {
	border: 1px solid #a1a1a1;
	outline: none;
	/* Removes blue border on focus */
}

.form-control-input:hover,
.form-control-select:hover,
.form-control-textarea:hover {
	border: 1px solid #a1a1a1;
}

.checkbox {
	font: 400 0.75rem/1.25rem "Nunito", sans-serif;
}

input[type='checkbox'] {
	vertical-align: -15%;
	margin-right: 0.375rem;
}

/* IE10+ hack to raise checkbox field position compared to the rest of the browsers */
@media screen and (-ms-high-contrast: active),
screen and (-ms-high-contrast: none) {
	input[type='checkbox'] {
		vertical-align: -9%;
	}
}

.form-control-submit-button {
	display: inline-block;
	width: 100%;
	height: 3.125rem;
	border: 1px solid #5f4dee;
	border-radius: 1.5rem;
	background-color: #5f4dee;
	color: #fff;
	font: 700 0.875rem/0 "Nunito", sans-serif;
	cursor: pointer;
	transition: all 0.2s;
}

.form-control-submit-button:hover {
	background-color: transparent;
	color: #5f4dee;
}

/* Form Success And Error Message Formatting */
#smsgSubmit.h3.text-center.tada.animated,
#lmsgSubmit.h3.text-center.tada.animated,
#nmsgSubmit.h3.text-center.tada.animated,
#pmsgSubmit.h3.text-center.tada.animated,
#smsgSubmit.h3.text-center,
#lmsgSubmit.h3.text-center,
#nmsgSubmit.h3.text-center,
#pmsgSubmit.h3.text-center {
	display: block;
	margin-bottom: 0;
	color: #151e2e;
	font-size: 1.125rem;
	line-height: 1rem;
}

.help-block.with-errors .list-unstyled {
	color: #151e2e;
	font-size: 0.75rem;
	line-height: 1.125rem;
	text-align: left;
}

.help-block.with-errors ul {
	margin-bottom: 0;
}

/* end of form success and error message formatting */

/* Form Success And Error Message Animation - Animate.css */
@-webkit-keyframes tada {
	from {
		-webkit-transform: scale3d(1, 1, 1);
		-ms-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}

	10%,
	20% {
		-webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
		-ms-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
		transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
	}

	30%,
	50%,
	70%,
	90% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
		-ms-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
	}

	40%,
	60%,
	80% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
		-ms-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
	}

	to {
		-webkit-transform: scale3d(1, 1, 1);
		-ms-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
}

@keyframes tada {
	from {
		-webkit-transform: scale3d(1, 1, 1);
		-ms-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}

	10%,
	20% {
		-webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
		-ms-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
		transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
	}

	30%,
	50%,
	70%,
	90% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
		-ms-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
	}

	40%,
	60%,
	80% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
		-ms-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
	}

	to {
		-webkit-transform: scale3d(1, 1, 1);
		-ms-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
}

.tada {
	-webkit-animation-name: tada;
	animation-name: tada;
}

.animated {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

/* end of form success and error message animation - Animate.css */

/* Fade-move Animation For Details Lightbox - Magnific Popup */
/* at start */
.my-mfp-slide-bottom .zoom-anim-dialog {
	opacity: 0;
	transition: all 0.2s ease-out;
	-webkit-transform: translateY(-1.25rem) perspective(37.5rem) rotateX(10deg);
	-ms-transform: translateY(-1.25rem) perspective(37.5rem) rotateX(10deg);
	transform: translateY(-1.25rem) perspective(37.5rem) rotateX(10deg);
}

/* animate in */
.my-mfp-slide-bottom.mfp-ready .zoom-anim-dialog {
	opacity: 1;
	-webkit-transform: translateY(0) perspective(37.5rem) rotateX(0);
	-ms-transform: translateY(0) perspective(37.5rem) rotateX(0);
	transform: translateY(0) perspective(37.5rem) rotateX(0);
}

/* animate out */
.my-mfp-slide-bottom.mfp-removing .zoom-anim-dialog {
	opacity: 0;
	-webkit-transform: translateY(-0.625rem) perspective(37.5rem) rotateX(10deg);
	-ms-transform: translateY(-0.625rem) perspective(37.5rem) rotateX(10deg);
	transform: translateY(-0.625rem) perspective(37.5rem) rotateX(10deg);
}

/* dark overlay, start state */
.my-mfp-slide-bottom.mfp-bg {
	opacity: 0;
	transition: opacity 0.2s ease-out;
}

/* animate in */
.my-mfp-slide-bottom.mfp-ready.mfp-bg {
	opacity: 0.8;
}

/* animate out */
.my-mfp-slide-bottom.mfp-removing.mfp-bg {
	opacity: 0;
}

/* end of fade-move animation for details lightbox - magnific popup */

/* Fade Animation For Image Lightbox - Magnific Popup */
@-webkit-keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

.fadeIn {
	-webkit-animation: fadeIn 0.6s;
	animation: fadeIn 0.6s;
}

@-webkit-keyframes fadeOut {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
	}
}

@keyframes fadeOut {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
	}
}

.fadeOut {
	-webkit-animation: fadeOut 0.8s;
	animation: fadeOut 0.8s;
}

/* end of fade animation for image lightbox - magnific popup */


/*************************/
/*     02. Preloader     */
/*************************/
.spinner-wrapper {
	position: fixed;
	z-index: 999999;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: #fff;
}

.spinner {
	position: absolute;
	top: 50%;
	/* centers the loading animation vertically one the screen */
	left: 50%;
	/* centers the loading animation horizontally one the screen */
	width: 3.75rem;
	height: 1.25rem;
	margin: -0.625rem 0 0 -1.875rem;
	/* is width and height divided by two */
	text-align: center;
}

.spinner>div {
	display: inline-block;
	width: 1rem;
	height: 1rem;
	border-radius: 100%;
	background-color: #5f4dee;
	-webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
	animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner .bounce1 {
	-webkit-animation-delay: -0.32s;
	animation-delay: -0.32s;
}

.spinner .bounce2 {
	-webkit-animation-delay: -0.16s;
	animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {

	0%,
	80%,
	100% {
		-webkit-transform: scale(0);
	}

	40% {
		-webkit-transform: scale(1.0);
	}
}

@keyframes sk-bouncedelay {

	0%,
	80%,
	100% {
		-webkit-transform: scale(0);
		-ms-transform: scale(0);
		transform: scale(0);
	}

	40% {
		-webkit-transform: scale(1.0);
		-ms-transform: scale(1.0);
		transform: scale(1.0);
	}
}


/**************************/
/*     03. Navigation     */
/**************************/
.navbar-custom {
	background-color: #ffffff;
	box-shadow: 0 0.0625rem 0.375rem 0 rgba(0, 0, 0, 0.1);
	font: 700 0.875rem/0.875rem "Nunito", sans-serif;
	transition: all 0.2s;
}


.navbar-custom .navbar-brand.logo-image img {
	height: 40px;
}

.navbar-custom .navbar-brand.logo-text {
	font: 700 2rem/1.5rem "Nunito", sans-serif;
	color: #fff;
	;
	text-decoration: none;
}

.navbar-custom .navbar-nav {
	margin-top: 0.75rem;
	margin-bottom: 0.5rem;
}

.navbar-custom .nav-item .nav-link {
	padding: 10px 0 10px 30px;
	color: #020710;
	font-size: 14px;
	text-decoration: none;
	transition: all 0.2s ease;
	text-transform: uppercase;
}

.navbar-custom .nav-item .nav-link:hover,
.navbar-custom .nav-item .nav-link.active {
	color: #3f43fd;
	opacity: 1;
}

/* Dropdown Menu */
.navbar-custom .dropdown:hover>.dropdown-menu {
	display: block;
	/* this makes the dropdown menu stay open while hovering it */
	min-width: auto;
	animation: fadeDropdown 0.2s;
	/* required for the fade animation */
}

@keyframes fadeDropdown {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

.navbar-custom .dropdown-toggle:focus {
	/* removes dropdown outline on focus */
	outline: 0;
}

.navbar-custom .dropdown-menu {
	margin-top: 0;
	border: none;
	border-radius: 0.25rem;
	background-color: #5f4dee;
}

.navbar-custom .dropdown-item {
	color: #f7f5f5;
	opacity: 0.8;
	font: 700 0.875rem/0.875rem "Nunito", sans-serif;
	text-decoration: none;
}

.navbar-custom .dropdown-item:hover {
	background-color: #5f4dee;
	color: #fff;
	opacity: 1;
}

.navbar-custom .dropdown-items-divide-hr {
	width: 100%;
	height: 1px;
	margin: 0.75rem auto 0.725rem auto;
	border: none;
	background-color: #c4d8dc;
	opacity: 0.2;
}

/* end of dropdown menu */

.navbar-custom .nav-item .btn-outline-sm {
	margin-top: 0.25rem;
	margin-bottom: 1.375rem;
	margin-left: 0.5rem;
	border: 0.125rem solid #fff;
	color: #fff;
}

.navbar-custom .nav-item .btn-outline-sm:hover {
	background-color: #fff;
	color: #5f4dee;
}

.navbar-custom .navbar-toggler {
	padding: 0;
	border: none;
	color: #020710;
	font-size: 22px;
}

.navbar-custom button[aria-expanded='false'] .navbar-toggler-awesome.fas.fa-times {
	display: none;
}

.navbar-custom button[aria-expanded='false'] .navbar-toggler-awesome.fas.fa-bars {
	display: inline-block;
}

.navbar-custom button[aria-expanded='true'] .navbar-toggler-awesome.fas.fa-bars {
	display: none;
}

.navbar-custom button[aria-expanded='true'] .navbar-toggler-awesome.fas.fa-times {
	display: inline-block;
	margin-right: 0.125rem;
}


/*********************/
/*    04. Header     */
/*********************/
.header {
	width: 100%;
	height: 850px;
}

.header .header-content {
	padding-top: 12rem;
	padding-bottom: 5rem;
	text-align: center;
}

.header .text-container {
	margin-bottom: 3rem;
}

.header h1 {
	margin-bottom: 1rem;
	font-size: 2.5rem;
	line-height: 3rem;
}

.header .p-large {
	margin: 15px 0 2rem 0;
}

/* btn get started*/
.btn-login {
	font-size: 14px;
	text-decoration: none;
	padding: 10px 20px;
	font-weight: 600;
	color: #020710;
	text-transform: uppercase;
}

.btn-getstarted {
	font-size: 14px;
	text-decoration: none;
	padding: 10px 20px;
	font-weight: 600;
	background-color: #3f43fd;
	text-transform: uppercase;
	border-radius: 6px;
	border: 2px solid transparent;
}

.btn-getstarted i {
	margin-left: 5px;
	font-size: 18px;
	transition: 0.3s;
}

.btn-getstarted:hover i {
	transform: translateX(5px);
}

.btn-getstarted:hover {
	background-color: #ffffff;
	color: #3f43fd;
	border: 2px solid #ffffff;
	-webkit-box-shadow: 0 2px 15px 3px rgba(7, 10, 87, 0.1);
            box-shadow: 0 2px 15px 3px rgba(7, 10, 87, 0.1);
}

/*************************/
/*     Counter    */
/*************************/
.counts-area {
	padding: 70px 0 60px;
}

.counts-area .count-box {
	display: flex;
	align-items: center;
	padding: 30px;
	width: 100%;
	background: #fff;
	box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
}

.counts-area .count-box i {
	font-size: 42px;
	line-height: 0;
	margin-right: 20px;
	color: #0d6efd;
}

.counts-area .count-box span {
	font-size: 36px;
	display: block;
	font-weight: 600;
	color: #0b198f;
}

.counts-area .count-box p {
	padding: 0;
	margin: 0;
	font-family: "Nunito", sans-serif;
	font-size: 14px;
}

/*************************/
/*     Social Icons    */
/*************************/

.social-icons .icon {
	margin-top: 20px;
}

.social-icons .feature-box {
	padding: 24px 20px;
	box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
	transition: 0.3s;
	height: 100%;
}

.social-icons .feature-box h3 {
	font-size: 18px;
	color: #012970;
	font-weight: 700;
	margin: 0;
}

.social-icons .feature-box i {
	line-height: 0;
	padding: 4px;
	margin-right: 10px;
	font-size: 24px;
	border-radius: 3px;
	transition: 0.3s;
}

/*************************/
/*     Features    */
/*************************/
.feature {
	background: url(https://themesdesign.in/injeto/layouts/images/bg-effect.png);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	background-color: #0d1399;
}

.feature .section-header .h2-heading {
	color: #fff;
}

.feature .feature-icons h3 {
	color: #012970;
	font-weight: 700;
	font-size: 32px;
	margin-bottom: 20px;
	text-align: center;
}

@media (max-width: 768px) {
	.feature .feature-icons h3 {
		font-size: 28px;
	}
}

.feature .feature-icons .content .icon-box {
	display: flex;
}

.feature .feature-icons .content .icon-box .icon {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 80px;
	flex: 0 0 80px;
	max-width: 80px;
	width: 80px;
	height: 80px;
	font-size: 2.25rem;
	-webkit-transition-duration: 500ms;
	transition-duration: 500ms;
	margin-right: 1.5rem;
	background-color: #0d6efd;
	color: #ffffff;
	text-align: center;
	border-radius: 50%;
	margin-top: 2px;
}

.feature .feature-icons .content .icon-box h4 {
	font-size: 20px;
	font-weight: 700;
	margin: 0 0 10px 0;
	color: #fff;
}

.feature .feature-icons .content .icon-box i {
	line-height: 80px;
	font-size: 45px;
	color: #fff;
}

.feature .feature-icons .content .icon-box p {
	font-size: 15px;
	color: rgba(255, 255, 255, 0.65);
}


/*************************/
/*     Payments   */
/*************************/
.payment-methods {
	padding-top: 5rem;
	padding-bottom: 3.25rem;
}

.payment-methods .slider-container {
	text-align: center;
}


/***************************/
/*     why-choose-us    */
/***************************/
.why-choose-us {
	padding-top: 3.25rem;
	padding-bottom: 3rem;
	text-align: center;
}

.why-choose-us .box {
	padding: 30px;
	box-shadow: 0px 0 5px rgba(1, 41, 112, 0.08);
	text-align: center;
	transition: 0.3s;
	height: 100%;
}

.why-choose-us .box img {
	padding: 30px 30px;
	transition: 0.5s;
	transform: scale(1.1);
}

.why-choose-us .box h3 {
	font-size: 24px;
	color: #012970;
	font-weight: 700;
	margin-bottom: 18px;
}

.why-choose-us .box:hover {
	box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
}

.why-choose-us .box:hover img {
	transform: scale(1);
}


/***********************************/
/*     08. Features Lightboxes     */
/***********************************/
.lightbox-basic {
	margin: 2.5rem auto;
	padding: 2rem 1.5rem 2rem 1.5rem;
	border-radius: 0.25rem;
	background: #fff;
	text-align: left;
}

.lightbox-basic .container {
	padding-right: 0;
	padding-left: 0;
}

.lightbox-basic .image-container {
	max-width: 33.75rem;
	margin-right: auto;
	margin-bottom: 3rem;
	margin-left: auto;
}

.lightbox-basic h3 {
	margin-bottom: 0.5rem;
}

.lightbox-basic hr {
	width: 2.5rem;
	height: 0.125rem;
	margin-top: 0;
	margin-bottom: 0.875rem;
	margin-left: 0;
	border: 0;
	background-color: #5f4dee;
	text-align: left;
}

.lightbox-basic h4 {
	margin-bottom: 1rem;
}

.lightbox-basic .list-unstyled .fas {
	color: #5f4dee;
	font-size: 0.5rem;
	line-height: 1.625rem;
}

.lightbox-basic .list-unstyled .media-body {
	margin-left: 0.625rem;
}

.lightbox-basic .btn-outline-reg,
.lightbox-basic .btn-solid-reg {
	margin-top: 0.75rem;
}

/* Signup Button */
.lightbox-basic .btn-solid-reg.mfp-close {
	position: relative;
	width: auto;
	height: auto;
	color: #fff;
	opacity: 1;
}

.lightbox-basic .btn-solid-reg.mfp-close:hover {
	color: #5f4dee;
}

/* end of signup Button */

/* Back Button */
.lightbox-basic a.mfp-close.as-button {
	position: relative;
	width: auto;
	height: auto;
	margin-left: 0.375rem;
	color: #5f4dee;
	opacity: 1;
}

.lightbox-basic a.mfp-close.as-button:hover {
	color: #fff;
}

/* end of back button */

.lightbox-basic button.mfp-close.x-button {
	position: absolute;
	top: -0.125rem;
	right: -0.125rem;
	width: 2.75rem;
	height: 2.75rem;
	color: #707984;
}


/***********************/
/*     Basic -1     */
/***********************/
.basic-1 {
	padding-top: 7.5rem;
	padding-bottom: 8rem;
}

.basic-1 .text-container {
	margin-bottom: 3.75rem;
	background-color: #f6f9ff;
    padding: 30px;
}

.basic-1 .text-container h4 {
	font-size: 14px;
    font-weight: 700;
    color: #0d6efd;
    text-transform: uppercase;
}

.basic-1 .text-container h2 {
	color: #333;
    font: 700 1.8rem/2.5rem "Nunito", sans-serif;
    letter-spacing: -0.2px;
}

.basic-1 .list-unstyled {
	margin-bottom: 1.375rem;
}

.basic-1 .list-unstyled .fas {
	color: #5f4dee;
	font-size: 0.5rem;
	line-height: 1.625rem;
}

.basic-1 .list-unstyled .media-body {
	margin-left: 0.625rem;
}

@media (max-width: 768px) {
	.basic-1 .text-container {
	 	margin-top: 25px;
	  	text-align: center;
	}
	.basic-1 h2 {
	  	font-size: 28px;
	}
	.basic-1 img {
	  	width: 100%;
	}
  }

/***********************/
/*     How to works     */
/***********************/
.wimax-load {
	-webkit-animation: wimax-load 1500ms linear infinite;
	animation: wimax-load 1500ms linear infinite;
	background-color: transparent;
	border-color: #ffffff;
	border-top-color: transparent;
	border-left-color: transparent;
	border-right-color: transparent;
	border-radius: 50%;
	border-style: solid;
	border-width: 2px;
	height: 50px;
	left: calc(50% - 25px);
	position: relative;
	top: calc(50% - 25px);
	width: 50px;
	z-index: 9;
}

@-webkit-keyframes wimax-load {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes wimax-load {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

.single_work_step {
	position: relative;
	z-index: 1;
	margin-bottom: 50px;
	text-align: center;
}

.single_work_step::before {
	-webkit-transition-duration: 500ms;
	transition-duration: 500ms;
	position: absolute;
	content: "\eb0d";
	top: 25%;
	right: -20%;
	font-family: "LineIcons";
	font-size: 3rem;
	width: 70px;
	height: 70px;
	margin-top: 10px;
	margin-left: -35px;
	z-index: 1;
	line-height: 1;
	color: #020710;
}

@media only screen and (max-width: 575px) {
	.single_work_step::before {
		display: none;
	}
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
	.single_work_step::before {
		display: block;
		right: -35%;
		font-size: 1.5rem;
	}
}

.single_work_step .step-icon {
	-webkit-transition-duration: 500ms;
	transition-duration: 500ms;
	position: relative;
	z-index: 1;
	width: 90px;
	height: 90px;
	border-radius: 50%;
	margin: 0 auto 30px;
}

.single_work_step .step-icon::after {
	position: absolute;
	width: 100%;
	height: 100%;
	content: "";
	border-radius: 50%;
	border: 5px dotted #0d1399;
	top: 0;
	left: 0;
}

.single_work_step .step-icon i {
	font-size: 3rem;
	line-height: 90px;
	color: #0d1399;
}

.single_work_step p {
	margin-bottom: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.single_work_step p {
		font-size: 14px;
	}
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
	.single_work_step p {
		font-size: 14px;
	}
}

.single_work_step h5 {
	-webkit-transition-duration: 500ms;
	transition-duration: 500ms;
	font-size: 20px;
	font-weight: 600;
	color: #020710;
}

.single_work_step:hover::before,
.single_work_step:focus::before {
	color: #3f43fd;
	right: -35%;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
	.single_work_step:hover::before,
	.single_work_step:focus::before {
		right: -40%;
	}
}

.single_work_step:hover .step-icon::after,
.single_work_step:focus .step-icon::after {
	-webkit-animation: wimax-load 4000ms linear infinite;
	animation: wimax-load 4000ms linear infinite;
	border-color: #3f43fd;
}

.single_work_step:hover .step-icon i,
.single_work_step:focus .step-icon i {
	color: #3f43fd;
}

.single_work_step:hover h5,
.single_work_step:focus h5 {
	color: #3f43fd;
}

.work-process-area {
	position: relative;
	z-index: 1;
	/* background-color: #f3f7fd; */
}

.work-process-area .row .col-12:last-child .single_work_step::before {
	display: none;
}

/****************************/
/*     Testimonials     */
/****************************/
.slider-2 {
	padding-top: 2.75rem;
	padding-bottom: 4rem;
	background-color: #faf5ff;
}

.slider-2 .slider-container {
	position: relative;
}

.slider-2 .swiper-container {
	position: static;
	width: 82%;
	text-align: center;
}

.slider-2 .image-wrapper {
	width: 6rem;
	margin-right: auto;
	margin-bottom: 1rem;
	margin-left: auto;
}

.slider-2 .image-wrapper img {
	border-radius: 50%;
}

.slider-2 .testimonial-text {
	margin-bottom: 0.5rem;
}

.slider-2 .testimonial-author {
	color: #333;
}

.slider-2 .swiper-button-prev,
.slider-2 .swiper-button-next {
	width: 1.125rem;
}

.slider-2 .swiper-button-prev:focus,
.slider-2 .swiper-button-next:focus {
	/* even if you can't see it chrome you can see it on mobile device */
	outline: none;
}

.slider-2 .swiper-button-prev {
	left: -0.375rem;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2028%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23505c67'%2F%3E%3C%2Fsvg%3E");
	background-size: 1.125rem 1.75rem;
}

.slider-2 .swiper-button-next {
	right: -0.375rem;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2028%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23505c67'%2F%3E%3C%2Fsvg%3E");
	background-size: 1.125rem 1.75rem;
}


/* FAQs */
.faqs {
	background-color: #faf5ff;
}
.faqs .faq-block__card {
	margin-bottom: 16px;
}

.faqs .faq-block__card .card {
	padding: 15px 20px;
	background: #fff;
	border-radius: 6px;
	border-color: #fff;
	box-shadow: 0px 2px 4px 0px rgba(50, 199, 206, 0.08);
}

.faqs .faq-block__header {
	display: flex;
	align-items: center;
	cursor: pointer;
}

.faqs .faq-block__header-title {
	width: 100%;
}

.faqs .faq-block__header-title h1 {
	margin-bottom: 0px;
}

.faqs .faq-block__header-title h2 {
	margin-bottom: 0px;
}

.faqs .faq-block__header-title h3 {
	margin-bottom: 0px;
}

.faqs .faq-block__header-title h4 {
	color: #40108b;
	margin-bottom: 10px;
	font-weight: 600;
}

.faqs .faq-block__header-title h5 {
	margin-bottom: 0px;
}

.faqs .faq-block__header-title h6 {
	margin-bottom: 0px;
}

.faqs .faq-block__icon {
	width: 52px;
	text-align: right;
}

.faqs .faq-block__header-icon {
	width: 52px;
	text-align: right;
	font-weight: 300;
	font-size: 22px;
	color: #5000ca;
}

.faqs .collapsed .faq-block__header-icon .fa-icon:before {
	content: "\f078";
}

.faqs .faq-block__header-icon .fa-icon:before {
	content: "\f077";
}


/**********************/
/*     Footer     */
/**********************/
.footer {
	background: #151e2e;
	font-size: 14px;
}

.footer .footer-newsletter {
	/* border-top: 1px solid #e1ecff; */
}

.footer .footer-newsletter h4 {
	font-size: 24px;
	margin: 0 0 5px 0;
	padding: 0;
	line-height: 1;
	font-weight: 700;
	color: #fff;
}

.footer .footer-newsletter form {
	margin-top: 20px;
	padding: 6px 10px;
	position: relative;
	border-radius: 4px;
}

.footer .footer-newsletter form input[type=email] {
	border: 1px solid #d8e8ff;
	box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
	padding: 8px;
	width: calc(100% - 140px);
}

.footer .footer-newsletter form input[type=submit] {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	border: 0;
	background: none;
	font-size: 14px;
	padding: 0 30px;
	margin: 3px;
	background: #0d6efd;
	color: #fff;
	transition: 0.3s;
	border-radius: 4px;
}

.footer .footer-newsletter form input[type=submit]:hover {
	background: #5969f3;
}

.footer .footer-top {
	background-size: contain;
	padding: 60px 0 0px 0;
}

.footer .footer-top .footer-info {
	margin-bottom: 30px;
}

.footer .footer-top .footer-info .logo {
	line-height: 0;
	margin-bottom: 15px;
}

.footer .footer-top .footer-info .logo img {
	max-height: 40px;
	margin-right: 6px;
	-webkit-filter: brightness(0) invert(1);
  	filter: brightness(0) invert(1);
}

.footer .footer-top .footer-info .logo span {
	font-size: 30px;
	font-weight: 700;
	letter-spacing: 1px;
	color: #012970;
	font-family: "Nunito", sans-serif;
	margin-top: 3px;
}

.footer .footer-top .footer-info p {
	font-size: 14px;
	line-height: 24px;
	margin-bottom: 0;
	font-family: "Nunito", sans-serif;
}

.footer p {
	color: #ffffffa6;
}

.footer .icon-container {
	margin-top: 10px;
}

.footer .fa-stack {
	width: 30px;
	margin-bottom: 0.75rem;
	margin-right: 0.375rem;
	font-size: 15px;
	height: 20px;
	line-height: 32px;
}

.footer .fa-stack .fa-stack-1x {
	color: #fff;
	transition: all 0.2s ease;
}

.footer .fa-stack .fa-stack-2x {
	color: #2b2082;
	transition: all 0.2s ease;
}

.footer .fa-stack:hover .fa-stack-1x {
	color: #2b2082;
}

.footer .fa-stack:hover .fa-stack-2x {
	color: #f3f7fd;
}

.footer .footer-top h4 {
	font-size: 16px;
	font-weight: bold;
	color: #fff;
	text-transform: uppercase;
	position: relative;
	padding-bottom: 12px;
}

.footer .footer-bottom {
	padding-top: 1rem;
	border-top: 1px solid #DBDFF3;
}

.footer .wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
	z-index: 0;
}

.copyrights {
	line-height: 170%;
	color: #646A89;
}

.footer-menu ul {
	list-style: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

@media (max-width: 992px) {
	.footer .footer-top {
		background-position: center bottom;
	}

	.footer .wrapper {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		flex-wrap: wrap;
	}

	.footer-menu ul {
		display: block;
	}

	.footer .footer-newsletter {
		margin-bottom: 30px;
	}
}

.footer .footer-bottom .footer-links {
	margin-bottom: 30px;
}

.footer .footer-bottom .footer-links ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer .footer-bottom .footer-links ul i {
	padding-right: 2px;
	color: #ffffffa6;
	font-size: 12px;
	line-height: 0;
}

.footer .footer-bottom .footer-links ul li {
	padding: 10px 0;
	display: inline;
	align-items: center;
	padding: 0 25px;
}

.footer .footer-bottom .footer-links ul li:first-child {
	padding-top: 0;
}

.footer .footer-bottom .footer-links ul a {
	color: #DBDFF3;
	transition: 0.3s;
	display: inline-block;
	line-height: 1;
	text-decoration: none;
}

.footer .footer-bottom .footer-links ul a:hover {
	color: #fff;
}


/**********************************/
/*     16. Back To Top Button     */
/**********************************/
a.back-to-top {
	position: fixed;
	z-index: 999;
	right: 0.75rem;
	bottom: 0.75rem;
	display: none;
	width: 2.625rem;
	height: 2.625rem;
	border-radius: 1.875rem;
	background: #4f3cda url("../images/up-arrow.png") no-repeat center 47%;
	background-size: 1.125rem 1.125rem;
	text-indent: -9999px;
}

a:hover.back-to-top {
	background-color: #4332c5;
}


/***************************/
/*     17. Extra Pages     */
/***************************/
.ex-header {
	padding-top: 8rem;
	padding-bottom: 5rem;
	background-color: #5f4dee;
	text-align: center;
}

.ex-header h1 {
	color: #fff;
}

.ex-basic-1 {
	padding-top: 2rem;
	padding-bottom: 0.875rem;
	background-color: #f3f7fd;
}

.ex-basic-1 .breadcrumbs {
	margin-bottom: 1.125rem;
}

.ex-basic-1 .breadcrumbs .fa {
	margin-right: 0.5rem;
	margin-left: 0.625rem;
}

.ex-basic-2 {
	padding-top: 4.75rem;
	padding-bottom: 4rem;
}

.ex-basic-2 h3 {
	margin-bottom: 1rem;
}

.ex-basic-2 .text-container {
	margin-bottom: 3.625rem;
}

.ex-basic-2 .text-container.last {
	margin-bottom: 0;
}

.ex-basic-2 .text-container.dark {
	padding: 1.625rem 1.5rem 0.75rem 2rem;
	background-color: #f3f7fd;
}

.ex-basic-2 .image-container-large {
	margin-bottom: 4rem;
}

.ex-basic-2 .image-container-large img {
	border-radius: 0.25rem;
}

.ex-basic-2 .image-container-small img {
	border-radius: 0.25rem;
}

.ex-basic-2 .list-unstyled .fas {
	color: #5f4dee;
	font-size: 0.5rem;
	line-height: 1.625rem;
}

.ex-basic-2 .list-unstyled .media-body {
	margin-left: 0.625rem;
}

.ex-basic-2 .form-container {
	margin-top: 3rem;
}

.ex-basic-2 .btn-outline-reg {
	margin-top: 1.75rem;
}

.ex-footer-frame {
	width: 100%;
	height: 2.75rem;
	background-color: #f3f7fd;
}


/****************************************/
/*     18. Sign Up and Log In Pages     */
/****************************************/
.login-form {
	padding-top: 9rem;
	text-align: center;
	min-height: 100vh;
	background: #d0d0ce;
}

.login-form .login-card-img {
    border-radius: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.login-form .form-header {
	margin-bottom: 30px;
}

.login-form .form-header img {
    max-height: 60px;
	margin-bottom: 30px;
}

.login-form .form-header h1 {
	font-family: "Nunito", sans-serif;
    font-size: 30px;
	font-weight: 600;
    color: #475569;
    line-height: 1.2;
    text-align: center;
    display: block;
}

.login-form p , 
.login-form .label-control {
	color: #495057;
}

.login-form p {
	max-width: 24rem;
	margin-right: auto;
	margin-bottom: 2.5rem;
	margin-left: auto;
}

.login-form .form-container {
	max-width: 30rem;
	margin-right: auto;
	margin-left: auto;
	padding: 2.25rem 1.25rem 1.25rem 1.25rem;
	/* border-radius: 0.5rem;
	background: #fff;
	box-shadow: 0px 10px 34px -15px rgba(0, 0, 0, 0.24); */
}

.login-form .form-control-submit-button {
	border-radius: 8px;
	background-color: #3f43fd;
}
.login-form .form-control-submit-button:hover {
	background-color: #fff;
	color: #3f43fd;
}

.login-form .form-group{
	color: #495057;
}

.login-form .help-block.with-errors .list-unstyled {
    color: #fb8c8c;
}

.login-form a{
	background-color: #fff;
	color: #495057;
}

.login-form .checkbox {
	text-align: left;
}


/*****************************/
/*     19. Media Queries     */
/*****************************/
/* Min-width width 768px */
@media (min-width: 768px) {

	/* General Styles */
	.p-heading {
		width: 85%;
		margin-right: auto;
		margin-left: auto;
	}

	.h2-heading {
		width: 80%;
		margin-right: auto;
		margin-left: auto;
	}


	/* Header */
	.header .text-container {
		margin-bottom: 4rem;
	}

	.header h1 {
		margin: 0;
		font-size: 48px;
		font-weight: 700;
		color: #151e2e;
	}

	.header .btn-solid-lg {
		margin-bottom: 0;
		margin-left: 0;
	}

	.header-frame {
		height: 5.5rem;
	}

	/* end of header */


	/* Testimonials */
	.slider-2 .swiper-button-prev {
		width: 1.375rem;
		background-size: 1.375rem 2.125rem;
	}

	.slider-2 .swiper-button-next {
		width: 1.375rem;
		background-size: 1.375rem 2.125rem;
	}

	/* end of testimonials */


	/* Newsletter */
	.form .text-container {
		padding: 4rem 2.5rem 3rem 2.5rem;
	}

	/* end of newsletter */

	/* Extra Pages */
	.ex-header {
		padding-top: 11rem;
		padding-bottom: 9rem;
	}

	.ex-basic-2 .text-container.dark {
		padding: 2.5rem 3rem 2rem 3rem;
	}

	.ex-basic-2 .form-container {
		margin-top: 0;
	}

	/* end of extra pages */


	/* Sign Up And Log In Pages */
	.login-form {
		padding-top: 11rem;
	}

	.login-form .form-container {
		padding: 2.25rem 1.75rem 1.25rem 1.75rem;
	}

	/* end of sign up and log in pages */
}

/* end of min-width width 768px */


/* Min-width width 992px */
@media (min-width: 992px) {

	/* Navigation */
	.navbar-custom {
		padding: 2.125rem 1.5rem 2.125rem 2rem;
		background: transparent;
		box-shadow: none;
	}

	.navbar-custom .navbar-nav {
		margin-top: 0;
		margin-bottom: 0;
	}

	.navbar-custom .nav-item .nav-link {
		padding: 0.25rem 0.75rem 0.25rem 0.75rem;
	}

	.navbar-custom .nav-item .nav-link:hover,
	.navbar-custom .nav-item .nav-link.active {
		opacity: 1;
	}

	.navbar-custom.top-nav-collapse {
		padding: 0.5rem 1.5rem 0.5rem 2rem;
		background: #fff;
		box-shadow: 0 0.0625rem 0.375rem 0 rgba(0, 0, 0, 0.1);
	}

	.navbar-custom.top-nav-collapse .nav-item .nav-link:hover,
	.navbar-custom.top-nav-collapse .nav-item .nav-link.active {
		color: #3f43fd;
	}

	.navbar-custom .dropdown-menu {
		padding-top: 1rem;
		padding-bottom: 1rem;
		border-top: 0.25rem solid rgba(0, 0, 0, 0);
		border-radius: 0.25rem;
	}

	.navbar-custom.top-nav-collapse .dropdown-menu {
		border-top: 0.25rem solid rgba(0, 0, 0, 0);
		box-shadow: 0 0.375rem 0.375rem 0 rgba(0, 0, 0, 0.02);
	}

	.navbar-custom .dropdown-item {
		padding-top: 0.25rem;
		padding-bottom: 0.25rem;
	}

	.navbar-custom .dropdown-items-divide-hr {
		width: 84%;
	}

	.navbar-custom .nav-item .btn-outline-sm {
		margin-top: 0;
		margin-bottom: 0;
		margin-left: 1rem;
	}

	/* end of navigation */


	/* General Styles */
	.p-heading {
		width: 65%;
	}

	.h2-heading {
		width: 60%;
	}

	/* end of general styles */


	/* Header */
	.header .header-content {
		text-align: left;
	}

	.header .text-container {
		margin-top: 4rem;
		margin-bottom: 0;
	}

	.header .image-container {
		position: relative;
		margin-top: 3rem;
	}

	.header .image-container .img-wrapper {
		position: absolute;
		display: block;
		width: 470px;
	}

	.header-frame {
		height: 8rem;
	}

	/* Features Lightboxes */
	.lightbox-basic {
		max-width: 62.5rem;
		padding: 2.5rem 2.5rem 2.5rem 2.5rem;
	}

	.lightbox-basic .image-container {
		max-width: 100%;
		margin-right: 2rem;
		margin-bottom: 0;
		margin-left: 0.5rem;
	}

	.lightbox-basic h3 {
		margin-top: 0.5rem;
	}

	/* end of features lightboxes */


	/* Details */
	.basic-1 {
		padding-top: 8rem;
	}

	.basic-1 .text-container {
		margin-bottom: 0;
	}

	/* Testimonials */
	.slider-2 .swiper-container {
		width: 92%;
		text-align: left;
	}

	.slider-2 .image-wrapper {
		float: left;
		width: 10rem;
		margin-bottom: 0;
	}

	.slider-2 .text-wrapper {
		max-width: 100%;
		margin-top: 1.25rem;
		margin-left: 13rem;
	}

	.slider-2 .swiper-button-prev {
		left: -0.75rem;
	}

	.slider-2 .swiper-button-next {
		right: -0.75rem;
	}

	/* Extra Pages */
	.ex-header h1 {
		width: 80%;
		margin-right: auto;
		margin-left: auto;
	}

	.ex-basic-2 {
		padding-bottom: 5rem;
	}
}

/* Min-width width 1200px */
@media (min-width: 1200px) {

	/* General Styles */
	.h2-heading {
		width: 50%;
	}

	/* Header */
	.header .header-content {
		padding-top: 11rem;
		padding-bottom: 5rem;
	}

	.header .text-container {
		margin-top: 5.5rem;
		margin-right: 0.5rem;
	}

	.header .image-container {
		margin-top: 1rem;
		margin-left: 1.5rem;
	}

	.header .image-container .img-wrapper {
		width: 630px;
	}

	.header-frame {
		height: 9.375rem;
	}

	/* Customer */
	.payment-methods .slider-container {
		margin-right: 3rem;
		margin-left: 3rem;
	}

	/* Description */
	.why-choose-us .card {
		width: 18.875rem;
		margin-right: 2rem;
		margin-left: 2rem;
	}

	.why-choose-us .card-image {
		width: 12.5rem;
	}

	/* Features */
	.tabs .image-container {
		margin-right: 1.5rem;
		margin-left: 1rem;
	}

	.tabs .text-container {
		margin-top: 1.5rem;
		margin-right: 1rem;
		margin-left: 1.5rem;
	}


	/* Details */

	.basic-1 .text-container {
		margin-top: 1rem;
		margin-right: 1.5rem;
		margin-left: 1rem;
	}

	.basic-1 h2 {
		margin-bottom: 1rem;
	}

	/* Testimonials */
	.slider-2 .slider-container {
		width: 64.125rem;
		margin-right: auto;
		margin-left: auto;
	}


	/* Extra Pages */
	.ex-header h1 {
		width: 60%;
		margin-right: auto;
		margin-left: auto;
	}

	.ex-basic-2 .form-container {
		margin-left: 1.75rem;
	}

	.ex-basic-2 .image-container-small {
		margin-left: 1.75rem;
	}

	/* end of extra pages */
}

#newsletterForm .subscribe-box {
	position: relative;
    border: 2px solid #3f43fd;
    height: 48px;
    overflow: hidden;
    margin-bottom: 10px;
}

#newsletterForm .alert-message-reponse {
    height: 50px;
    margin-bottom: 10px;
}


.btn-loading {
	color: transparent !important;
	pointer-events: none;
	position: relative;
}
  
.btn-loading:after {
	content: '';
	-webkit-animation: loader 500ms infinite linear;
	animation: loader 500ms infinite linear;
	border: 2px solid #fff;
	border-radius: 50%;
	border-right-color: transparent !important;
	border-top-color: transparent !important;
	display: block;
	height: 1.4em;
	width: 1.4em;
	position: absolute;
	left: calc(50% - (1.4em / 2));
	top: calc(50% - (1.4em / 2));
	-webkit-transform-origin: center;
	transform-origin: center;
	position: absolute !important;
}
  
@-webkit-keyframes loader {
	from {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	to {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes loader {
	from {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	to {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

/*
|--------------------------------------------------------------------------
| 2026 Neo Homepage Theme Overrides
|--------------------------------------------------------------------------
*/

:root {
	--nico-blue-900: #0f172a;
	--nico-blue-800: #2563eb;
	--nico-blue-700: #3b82f6;
	--nico-blue-600: #60a5fa;
	--nico-blue-500: #93c5fd;
	--nico-sky-100: #f3f6ff;
	--nico-sky-200: #eef4ff;
	--nico-sky-300: #dbeafe;
	--nico-accent: #6366f1;
	--nico-accent-soft: #e0e7ff;
	--nico-text: #0f172a;
	--nico-text-soft: #64748b;
	--nico-border: rgba(229, 234, 245, 0.95);
	--nico-shadow: 0 28px 60px rgba(37, 99, 235, 0.12);
	--nico-shadow-soft: 0 18px 42px rgba(59, 130, 246, 0.1);
	--nico-radius-xl: 32px;
	--nico-radius-lg: 24px;
	--nico-radius-md: 18px;
}

body {
	background:
		radial-gradient(circle at top left, rgba(108, 196, 255, 0.28), transparent 32%),
		linear-gradient(180deg, #f8fcff 0%, #eef7ff 48%, #fdfefe 100%);
	color: var(--nico-text);
}

p {
	color: var(--nico-text-soft);
}

a,
a:hover {
	color: var(--nico-blue-800);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--nico-text);
}

section {
	padding: 64px 0;
}


.spinner-wrapper {
	background: linear-gradient(180deg, #f6fbff 0%, #edf7ff 100%);
}

.spinner > div {
	background: linear-gradient(135deg, var(--nico-blue-700), var(--nico-accent));
}

.navbar-custom {
	background: rgba(247, 252, 255, 0.92);
	backdrop-filter: blur(18px);
	box-shadow: 0 10px 35px rgba(15, 79, 148, 0.08);
	padding: 10px 0;
}

.navbar-custom.top-nav-collapse {
	background: rgba(247, 252, 255, 0.97);
}

.navbar-custom .navbar-brand.logo-image img {
	height: 46px;
	max-height: 46px;
	width: auto;
}

.navbar-custom .nav-item .nav-link {
	color: var(--nico-text);
	font-weight: 700;
	letter-spacing: 0.02em;
	text-transform: none;
	padding: 6px 0 6px 24px;
}

.navbar-custom .navbar-nav {
	margin-top: 0;
	margin-bottom: 0;
}

.navbar-custom .nav-item .nav-link:hover,
.navbar-custom .nav-item .nav-link.active {
	color: var(--nico-blue-700);
}

.nav-main-menu .nav-item {
	display: flex;
	align-items: center;
}

.nav-main-menu .nav-item-cta .btn {
	margin-left: 6px;
	padding: 10px 20px;
}

.nav-cta-group {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	margin-left: 18px;
}

.btn-login,
.btn-getstarted,
.btn-hero-secondary,
.final-cta-actions .btn,
.hero-submit {
	border-radius: 999px;
	padding: 13px 24px;
	font-weight: 700;
	text-decoration: none;
	transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.btn-login {
	background: rgba(255, 255, 255, 0.88);
	border: 1px solid rgba(20, 77, 143, 0.16);
	color: var(--nico-blue-900);
	box-shadow: 0 10px 26px rgba(18, 86, 158, 0.08);
}

.btn-login:hover {
	color: var(--nico-blue-900);
	transform: translateY(-2px);
}

.btn-getstarted,
.btn.btn-primary,
.hero-submit {
	border: 0;
	background: linear-gradient(135deg, var(--nico-blue-800) 0%, var(--nico-blue-600) 52%, var(--nico-accent) 100%);
	box-shadow: 0 18px 35px rgba(34, 120, 201, 0.24);
	color: #fff;
}

.btn-getstarted:hover,
.btn.btn-primary:hover,
.hero-submit:hover {
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 22px 42px rgba(34, 120, 201, 0.28);
}

.btn-hero-secondary {
	background: rgba(255, 255, 255, 0.78);
	border: 1px solid rgba(28, 95, 168, 0.14);
	color: var(--nico-blue-900);
	box-shadow: 0 14px 34px rgba(17, 89, 166, 0.08);
}

.btn-hero-secondary:hover {
	color: var(--nico-blue-900);
	transform: translateY(-2px);
}

.home-neo-header {
	position: relative;
	height: auto;
	min-height: 0;
	padding-top: 72px;
	padding-bottom: 28px;
	background:
		radial-gradient(circle at 15% 20%, rgba(108, 196, 255, 0.34), transparent 22%),
		radial-gradient(circle at 85% 10%, rgba(255, 140, 26, 0.18), transparent 18%),
		linear-gradient(140deg, #f5fbff 0%, #e8f5ff 44%, #fff7ef 100%);
}

.home-neo-header:before,
.home-neo-header:after {
	content: "";
	position: absolute;
	border-radius: 999px;
	filter: blur(10px);
	opacity: 0.55;
}

.home-neo-header:before {
	top: 90px;
	right: 10%;
	width: 180px;
	height: 180px;
	background: rgba(108, 196, 255, 0.24);
}

.home-neo-header:after {
	left: 8%;
	bottom: 60px;
	width: 220px;
	height: 220px;
	background: rgba(255, 140, 26, 0.12);
}

.hero-shell {
	position: relative;
	z-index: 2;
}

.home-neo-header .header-content {
	padding-top: 2.25rem;
}

.hero-copy {
	padding-right: 30px;
}

.hero-action-block {
	margin-top: 18px;
}

.hero-eyebrow,
.section-badge,
.hero-card-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 9px 16px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.72);
	border: 1px solid rgba(37, 115, 194, 0.12);
	color: var(--nico-blue-800);
	font-size: 0.84rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	box-shadow: 0 14px 32px rgba(22, 93, 169, 0.08);
}

.hero-copy h1 {
	margin-top: 24px;
	margin-bottom: 22px;
	font-size: 3.65rem;
	line-height: 1.08;
	letter-spacing: -0.03em;
}

.hero-lead,
.section-subtitle {
	font-size: 1.08rem;
	line-height: 1.85;
	color: var(--nico-text-soft);
}

.hero-trust,
.hero-cta-group,
.platform-pill-wrap,
.final-cta-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.hero-cta-group {
	margin-top: 20px;
}

.hero-support-note {
	margin: 16px 0 14px;
	font-weight: 700;
	color: var(--nico-text);
}

.hero-trust span {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 8px 0;
	color: var(--nico-text);
	font-weight: 700;
}

.hero-trust i,
.benefit-item i,
.trust-item i {
	color: var(--nico-accent);
}

.hero-panel,
.service-card,
.stat-card,
.benefits-card,
.why-card-item,
.how-card,
.faq-item,
.final-cta-card,
.brand-ribbon,
.trust-item {
	background: rgba(255, 255, 255, 0.82);
	border: 1px solid var(--nico-border);
	box-shadow: var(--nico-shadow-soft);
}

.hero-panel {
	position: relative;
	padding: 32px;
	border-radius: var(--nico-radius-xl);
	backdrop-filter: blur(18px);
	overflow: hidden;
}

.hero-panel:before {
	content: "";
	position: absolute;
	inset: auto -40px -80px auto;
	width: 180px;
	height: 180px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 140, 26, 0.18), transparent 68%);
}

.hero-card-topline {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 18px;
}

.hero-card-note {
	font-weight: 700;
	color: var(--nico-text-soft);
}

.hero-panel h2 {
	font-size: 2rem;
	margin-bottom: 10px;
}

.hero-panel p {
	margin-bottom: 22px;
}

.hero-form-label {
	display: block;
	margin-bottom: 8px;
	color: var(--nico-text);
	font-weight: 700;
}

.hero-form-control {
	min-height: 54px;
	border-radius: 16px;
	border: 1px solid rgba(21, 90, 163, 0.14);
	background: rgba(248, 252, 255, 0.96);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.hero-form-control:focus {
	border-color: rgba(55, 132, 214, 0.45);
	box-shadow: 0 0 0 0.2rem rgba(80, 164, 240, 0.14);
}

.hero-form-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 18px;
	font-size: 0.92rem;
}

.hero-form-meta label,
.hero-form-meta a {
	color: var(--nico-text-soft);
}

.hero-submit {
	width: 100%;
	min-height: 54px;
}

.hero-card-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: 18px;
	padding-top: 18px;
	border-top: 1px solid rgba(33, 111, 187, 0.1);
	font-weight: 700;
	color: var(--nico-text-soft);
}

.hero-dashboard-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	margin: 22px 0 28px;
}

.hero-mini-stat {
	padding: 18px;
	border-radius: 18px;
	background: linear-gradient(180deg, #fafdff 0%, #eef7ff 100%);
	border: 1px solid rgba(40, 116, 192, 0.12);
}

.hero-mini-stat strong {
	display: block;
	font-size: 1.4rem;
	color: var(--nico-blue-900);
}

.hero-mini-stat span {
	color: var(--nico-text-soft);
	font-weight: 700;
}

.hero-panel-actions {
	margin-top: 0;
}

.brand-ribbon {
	margin-top: 22px;
	margin-bottom: 10px;
	padding: 14px;
	border-radius: 26px;
	box-shadow: 0 18px 34px rgba(20, 89, 160, 0.1);
}

.brand-ribbon-item {
	height: 100%;
	padding: 14px 14px;
	border-radius: 20px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(237, 246, 255, 0.95) 100%);
	text-align: center;
}

.brand-ribbon-item strong {
	display: block;
	color: var(--nico-blue-900);
	font-size: 1.65rem;
}

.brand-ribbon-item span {
	color: var(--nico-text-soft);
	font-weight: 700;
}

.section-intro {
	max-width: 760px;
	margin: 0 auto 26px;
}

.section-intro-left {
	margin-left: 0;
}

.section-title {
	margin: 18px 0 14px;
	font-size: 2.4rem;
	line-height: 1.18;
}

.platform-support-strip,
.services-section,
.stats-section,
.smm-info-section,
.why-choose-split,
.how-it-works-section,
.faq-section,
.trust-guarantee-strip,
.final-cta-section {
	position: relative;
	overflow: hidden;
}

.platform-support-strip:before,
.services-section:before,
.stats-section:before,
.smm-info-section:before,
.why-choose-split:before,
.how-it-works-section:before,
.faq-section:before,
.trust-guarantee-strip:before,
.final-cta-section:before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.platform-support-strip {
	padding-top: 44px;
	padding-bottom: 44px;
	background: linear-gradient(180deg, rgba(241, 248, 255, 0.98) 0%, rgba(233, 244, 255, 0.94) 100%);
	border-top: 1px solid rgba(33, 111, 187, 0.08);
	border-bottom: 1px solid rgba(33, 111, 187, 0.08);
}

.platform-support-strip:before {
	background:
		radial-gradient(circle at 12% 30%, rgba(108, 196, 255, 0.18), transparent 18%),
		radial-gradient(circle at 85% 70%, rgba(255, 140, 26, 0.08), transparent 16%);
}

.services-section {
	background: linear-gradient(180deg, rgba(249, 253, 255, 0.98) 0%, rgba(237, 246, 255, 0.95) 100%);
}

.services-section:before {
	background:
		radial-gradient(circle at 90% 14%, rgba(108, 196, 255, 0.16), transparent 20%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0));
}

.stats-section {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 250, 255, 0.98) 100%);
}

.stats-section:before {
	background: radial-gradient(circle at 12% 15%, rgba(108, 196, 255, 0.12), transparent 18%);
}

.smm-info-section {
	background: linear-gradient(180deg, rgba(241, 248, 255, 0.86) 0%, rgba(255, 251, 247, 0.86) 100%);
}

.smm-info-section:before {
	background:
		radial-gradient(circle at 88% 24%, rgba(255, 140, 26, 0.08), transparent 16%),
		radial-gradient(circle at 14% 80%, rgba(108, 196, 255, 0.12), transparent 20%);
}

.why-choose-split {
	background: linear-gradient(180deg, rgba(249, 253, 255, 0.98) 0%, rgba(239, 247, 255, 0.98) 100%);
}

.why-choose-split:before {
	background: radial-gradient(circle at 82% 50%, rgba(108, 196, 255, 0.12), transparent 24%);
}

.how-it-works-section {
	background: linear-gradient(180deg, rgba(241, 248, 255, 0.95) 0%, rgba(235, 245, 255, 0.92) 100%);
	border-top: 1px solid rgba(33, 111, 187, 0.08);
	border-bottom: 1px solid rgba(33, 111, 187, 0.08);
}

.how-it-works-section:before {
	background:
		radial-gradient(circle at 10% 22%, rgba(108, 196, 255, 0.16), transparent 18%),
		radial-gradient(circle at 90% 78%, rgba(255, 140, 26, 0.08), transparent 16%);
}

.faq-section {
	background: linear-gradient(180deg, rgba(252, 254, 255, 0.98) 0%, rgba(244, 250, 255, 0.98) 100%);
}

.faq-section:before {
	background: radial-gradient(circle at 84% 18%, rgba(108, 196, 255, 0.12), transparent 18%);
}

.trust-guarantee-strip {
	padding-top: 42px;
	padding-bottom: 42px;
	background: linear-gradient(180deg, rgba(240, 248, 255, 0.96) 0%, rgba(233, 244, 255, 0.92) 100%);
	border-top: 1px solid rgba(33, 111, 187, 0.08);
	border-bottom: 1px solid rgba(33, 111, 187, 0.08);
}

.trust-guarantee-strip:before {
	background: radial-gradient(circle at 50% 100%, rgba(108, 196, 255, 0.12), transparent 24%);
}

.final-cta-section {
	padding-top: 46px;
	padding-bottom: 56px;
	background: linear-gradient(180deg, rgba(246, 251, 255, 0.98) 0%, rgba(232, 244, 255, 0.98) 100%);
}

.final-cta-section:before {
	background:
		radial-gradient(circle at 18% 24%, rgba(108, 196, 255, 0.16), transparent 18%),
		radial-gradient(circle at 82% 72%, rgba(255, 140, 26, 0.1), transparent 18%);
}

.platform-pill-wrap {
	justify-content: center;
}

.platform-pill {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 18px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.86);
	border: 1px solid rgba(33, 111, 187, 0.12);
	box-shadow: 0 12px 26px rgba(19, 91, 166, 0.06);
	font-weight: 700;
	text-decoration: none;
}

.platform-pill i {
	color: var(--nico-accent);
}

.services-grid > [class*="col-"] {
	margin-bottom: 30px;
}

.service-card {
	height: 100%;
	padding: 24px;
	border-radius: 26px;
	position: relative;
	overflow: hidden;
}

.service-card:before {
	content: "";
	position: absolute;
	top: -40px;
	right: -36px;
	width: 130px;
	height: 130px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(108, 196, 255, 0.26), transparent 70%);
}

.service-icon,
.stat-icon,
.why-icon,
.how-step {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.service-icon {
	width: 64px;
	height: 64px;
	border-radius: 22px;
	background: linear-gradient(135deg, rgba(19, 91, 166, 0.95), rgba(255, 140, 26, 0.92));
	color: #fff;
	font-size: 1.5rem;
	box-shadow: 0 18px 30px rgba(29, 106, 183, 0.2);
}

.service-card h3,
.why-card-item h3,
.how-card h3 {
	font-size: 1.35rem;
	margin: 20px 0 12px;
}

.service-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-top: 16px;
	font-weight: 800;
	text-decoration: none;
}

.stat-card {
	height: 100%;
	padding: 24px 20px;
	border-radius: 26px;
	text-align: center;
}

.stat-icon {
	width: 68px;
	height: 68px;
	margin: 0 auto 18px;
	border-radius: 50%;
	background: linear-gradient(135deg, rgba(255, 140, 26, 0.18), rgba(52, 151, 236, 0.18));
	color: var(--nico-blue-800);
	font-size: 1.45rem;
}

.stat-card strong {
	display: block;
	font-size: 2rem;
	color: var(--nico-blue-900);
}

.stat-card span {
	font-weight: 700;
	color: var(--nico-text-soft);
}

.info-copy p {
	margin-bottom: 18px;
}

.benefits-card,
.final-cta-card {
	padding: 30px;
	border-radius: 30px;
	position: relative;
	overflow: hidden;
}

.benefits-card h3 {
	margin-bottom: 22px;
}

.benefit-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 14px 0;
	border-bottom: 1px solid rgba(33, 111, 187, 0.09);
	font-weight: 700;
	color: var(--nico-text);
}

.benefit-item:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}

.why-card-list {
	display: grid;
	gap: 18px;
	margin-top: 24px;
}

.why-card-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.why-card-item {
	display: flex;
	align-items: flex-start;
	gap: 18px;
	padding: 18px 20px;
	border-radius: 24px;
}

.why-icon {
	flex: 0 0 58px;
	width: 58px;
	height: 58px;
	border-radius: 18px;
	background: linear-gradient(135deg, rgba(20, 77, 143, 0.95), rgba(74, 162, 234, 0.92));
	color: #fff;
	font-size: 1.2rem;
}

.how-card {
	height: 100%;
	padding: 24px 20px;
	border-radius: 26px;
	text-align: center;
}

.how-step {
	width: 68px;
	height: 68px;
	margin: 0 auto 18px;
	border-radius: 22px;
	background: linear-gradient(135deg, var(--nico-blue-800), var(--nico-accent));
	color: #fff;
	font-size: 1.35rem;
	font-weight: 800;
	box-shadow: 0 18px 32px rgba(27, 105, 184, 0.22);
}

.how-cta-wrap {
	margin-top: 42px;
}

.faq-list {
	max-width: 920px;
	margin: 0 auto;
}

.faq-item {
	margin-bottom: 18px;
	border-radius: 24px;
	overflow: hidden;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(246, 251, 255, 0.96) 100%);
}

.faq-question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 24px 26px;
	border: 0;
	background: transparent;
	color: var(--nico-text);
	font-size: 1.05rem;
	font-weight: 800;
	text-align: left;
	cursor: pointer;
}

.faq-question i {
	color: var(--nico-accent);
	transition: transform 0.25s ease;
}

.faq-question:not(.collapsed) i {
	transform: rotate(45deg);
}

.faq-answer p {
	padding: 0 26px 24px;
	margin: 0;
}

.trust-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100%;
	min-height: 150px;
	padding: 24px 16px;
	border-radius: 24px;
	text-align: center;
	gap: 10px;
	font-weight: 800;
	color: var(--nico-text);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(245, 250, 255, 0.96) 100%);
}

.trust-item i {
	font-size: 1.7rem;
}

.final-cta-card {
	background:
		radial-gradient(circle at top left, rgba(108, 196, 255, 0.28), transparent 28%),
		linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(232, 246, 255, 0.96) 55%, rgba(255, 242, 229, 0.97) 100%);
	border-radius: 28px;
	box-shadow: 0 22px 48px rgba(18, 88, 160, 0.12);
}

.final-cta-card h2 {
	margin: 20px auto 14px;
	max-width: 760px;
	font-size: 3rem;
}

.final-cta-card p {
	max-width: 720px;
	margin: 0 auto 24px;
}

.final-cta-note {
	margin-top: 22px;
	font-weight: 700;
	color: var(--nico-blue-800);
}

.final-cta-actions {
	justify-content: center;
	align-items: center;
}

.final-cta-actions .btn-light {
	box-shadow: 0 18px 30px rgba(25, 98, 172, 0.16);
}

.footer {
	position: relative;
	padding-top: 64px;
	padding-bottom: 24px;
	background:
		linear-gradient(120deg, rgba(13, 49, 95, 0.98) 0%, rgba(24, 91, 160, 0.96) 46%, rgba(255, 140, 26, 0.94) 100%);
}

.footer:before {
	content: "";
	position: absolute;
	top: -1px;
	left: 0;
	right: 0;
	height: 74px;
	background:
		radial-gradient(80px 38px at 12% 100%, rgba(255, 255, 255, 0.08), transparent 70%),
		radial-gradient(120px 48px at 88% 100%, rgba(255, 255, 255, 0.08), transparent 70%);
}

.footer p,
.footer a,
.footer h4,
.footer .copyrights p,
.footer .footer-links a {
	color: rgba(255, 255, 255, 0.92);
}

.footer .logo img {
	max-height: 64px;
	width: auto;
}

.footer .footer-top {
	position: relative;
	padding: 24px;
	border-radius: 34px 34px 0 0;
	background: linear-gradient(90deg, rgba(11, 27, 79, 0.9) 0%, rgba(20, 77, 143, 0.78) 52%, rgba(255, 140, 26, 0.22) 100%);
	border: 1px solid rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(10px);
	box-shadow: 0 24px 44px rgba(8, 30, 60, 0.2);
}

.footer .footer-grid {
	align-items: stretch;
}

.footer .footer-brand-col,
.footer .footer-links-col,
.footer .footer-contact-col,
.footer .footer-newsletter-col {
	margin-bottom: 20px;
}

.footer-brand-card,
.footer-column-card {
	height: 100%;
	padding: 10px 8px;
}

.footer-brand-card {
	padding-right: 30px;
}

.footer-brand-copy {
	max-width: 360px;
	margin: 18px 0 22px;
	color: rgba(255, 255, 255, 0.78);
}

.footer-mini-label,
.footer-column-title {
	display: inline-block;
	margin-bottom: 16px;
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.7);
}

.footer-language-wrap {
	margin-bottom: 22px;
}

.footer-list,
.footer-contact-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-list li + li,
.footer-contact-item + .footer-contact-item {
	margin-top: 14px;
}

.footer-list a {
	display: inline-flex;
	align-items: center;
	color: #fff;
	font-weight: 700;
	text-decoration: none;
	transition: transform 0.25s ease, color 0.25s ease;
}

.footer-list a:hover {
	color: #fff;
	transform: translateX(4px);
}

.footer-contact-item {
	display: flex;
	align-items: flex-start;
	gap: 14px;
}

.footer-contact-item i {
	width: 40px;
	height: 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	flex: 0 0 40px;
}

.footer-contact-item strong,
.footer-newsletter-card p,
.footer-list a,
.footer-brand-copy,
.footer-contact-item span,
.footer-contact-item a {
	font-family: "Nunito", sans-serif;
}

.footer-contact-item strong {
	display: block;
	margin-bottom: 4px;
	color: #fff;
	font-size: 0.98rem;
}

.footer-contact-item span,
.footer-contact-item a {
	color: rgba(255, 255, 255, 0.72);
	line-height: 1.65;
}

.footer-contact-item a:hover {
	color: #fff;
}

.footer-newsletter-card p {
	margin-bottom: 18px;
	color: rgba(255, 255, 255, 0.76);
}

.footer-socials {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
}

.footer .icon-container .fa-stack .fa-circle {
	color: rgba(255, 255, 255, 0.14);
}

.footer .icon-container .fa-stack .fab {
	color: #fff;
}

.footer .fa-stack {
	margin: 0;
	width: 42px;
	height: 42px;
	line-height: 42px;
}

.footer .subscribe-box {
	height: auto;
	padding: 10px;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.18);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.footer .subscribe-box input[type="email"] {
	min-height: 54px;
	border: 1px solid rgba(21, 90, 163, 0.14);
	border-radius: 16px;
	background: rgba(248, 252, 255, 0.96);
	color: #fff;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
	padding: 14px 12px;
}

.footer .subscribe-box input[type="email"]::placeholder {
	color: rgba(255, 255, 255, 0.72);
}

#newsletterForm .subscribe-box .btn-submit {
	border-radius: 16px;
	background: linear-gradient(135deg, #ffffff 0%, #eef7ff 100%);
	color: var(--nico-blue-900);
	font-weight: 800;
	padding: 14px 24px;
}

.footer-lang-selector {
	display: inline-block;
	width: 120px;
	border: 1px solid rgba(21, 90, 163, 0.14);
	border-color: rgba(255, 255, 255, 0.2);
	color: #fff;
	background: rgba(255, 255, 255, 0.08);
	border-radius: 14px;
	font-size: 14px;
	line-height: 24px;
	padding: 8px 10px;
	margin-left: 0;
	margin-top: 0;
	outline: none;
}

.footer .footer-bottom {
	margin-top: 0;
	padding: 14px 22px;
	border-radius: 0 0 28px 28px;
	background: rgba(6, 18, 56, 0.72);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer .copyrights p {
	margin: 0;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.84);
}

.footer .footer-bottom .footer-links ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 16px 20px;
	margin: 0;
	padding: 0;
}

.footer .footer-bottom .footer-links ul li {
	margin: 0;
	padding: 0;
}

.footer .footer-bottom .footer-links ul a {
	color: rgba(255, 255, 255, 0.78);
	font-weight: 700;
}

.footer .footer-bottom .footer-links ul a:hover {
	color: #fff;
}

@media (max-width: 991px) {
	section {
		padding: 56px 0;
	}

	.nav-cta-group {
		display: flex;
		margin-top: 18px;
		margin-left: 0;
	}

	.hero-copy {
		padding-right: 0;
		margin-bottom: 28px;
	}

	.hero-copy h1 {
		font-size: 2.55rem;
	}

	.hero-panel {
		padding: 26px;
	}

	.brand-ribbon-item {
		margin-bottom: 12px;
	}

	.footer .footer-info,
	.footer .footer-newsletter {
		padding-left: 15px;
		padding-right: 15px;
	}
}

@media (max-width: 767px) {
	.home-neo-header {
		padding-top: 96px;
	}

	.hero-copy h1,
	.section-title,
	.final-cta-card h2 {
		font-size: 2rem;
	}

	.hero-form-meta,
	.hero-card-footer {
		flex-direction: column;
		align-items: flex-start;
	}

	.hero-dashboard-grid {
		grid-template-columns: 1fr;
	}

	.footer .subscribe-box {
		border-radius: 24px;
	}

	#newsletterForm .subscribe-box .btn-submit,
	.footer .subscribe-box input[type="email"] {
		width: 100%;
	}

	.footer .footer-top,
	.footer .footer-bottom {
		padding: 20px;
	}

	.footer .footer-top {
		border-radius: 26px 26px 0 0;
	}

	.footer .footer-bottom {
		border-radius: 0 0 24px 24px;
	}

	.footer .footer-bottom .footer-links ul {
		justify-content: flex-start;
		gap: 12px 18px;
		margin-top: 14px;
	}

	.footer-brand-card {
		padding-right: 8px;
	}

	.why-card-grid {
		grid-template-columns: 1fr;
	}

	.final-cta-actions {
		flex-direction: column;
	}
}

.nico-homepage {
	background:
		radial-gradient(circle at top left, rgba(96, 165, 250, 0.2), transparent 28%),
		linear-gradient(180deg, #fbfdff 0%, #f3f6ff 44%, #eef4ff 100%);
}

.nico-homepage .navbar-custom {
	background: rgba(255, 255, 255, 0.9);
	border-bottom: 1px solid rgba(229, 234, 245, 0.9);
	box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.nico-homepage .home-neo-header {
	padding-bottom: 24px;
	background:
		radial-gradient(circle at 14% 18%, rgba(59, 130, 246, 0.18), transparent 22%),
		radial-gradient(circle at 86% 14%, rgba(99, 102, 241, 0.14), transparent 18%),
		linear-gradient(145deg, #fbfdff 0%, #eef4ff 48%, #f3f6ff 100%);
}

.nico-homepage .home-neo-header:before {
	background: rgba(96, 165, 250, 0.16);
}

.nico-homepage .home-neo-header:after {
	background: rgba(99, 102, 241, 0.12);
}

.hero-shell--premium {
	max-width: 1180px;
	margin: 0 auto;
}

.hero-main-row {
	row-gap: 1.35rem;
}

.nico-homepage section {
	padding: 58px 0;
}

.nico-homepage .hero-copy {
	max-width: 580px;
}

.nico-homepage .hero-copy h1 {
	max-width: 11.5ch;
	margin-bottom: 12px;
	font-size: clamp(2.55rem, 4vw, 3.7rem);
	line-height: 1.04;
	letter-spacing: -0.05em;
	color: var(--nico-text);
}

.nico-homepage .hero-lead {
	max-width: 54ch;
	font-size: 0.98rem;
	line-height: 1.68;
}

.nico-homepage .hero-cta-group {
	align-items: center;
	gap: 14px;
	margin-top: 18px;
}

.nico-homepage .btn-hero-main {
	padding: 14px 26px;
	box-shadow: 0 22px 40px rgba(37, 99, 235, 0.22);
}

.nico-homepage .btn-getstarted,
.nico-homepage .btn.btn-primary,
.nico-homepage .hero-submit {
	background: linear-gradient(135deg, #2563eb 0%, #3b82f6 56%, #6366f1 100%);
}

.nico-homepage .btn-hero-secondary {
	background: rgba(255, 255, 255, 0.94);
	border: 1px solid rgba(229, 234, 245, 0.96);
	color: var(--nico-blue-900);
}

.nico-homepage .hero-support-note {
	margin: 12px 0 8px;
	font-size: 0.93rem;
	line-height: 1.55;
}

.nico-homepage .hero-panel {
	padding: 28px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(244, 248, 255, 0.98) 100%);
	border: 1px solid rgba(229, 234, 245, 0.98);
	box-shadow: 0 26px 48px rgba(37, 99, 235, 0.12);
}

.nico-homepage .hero-panel:before {
	background: radial-gradient(circle, rgba(99, 102, 241, 0.16), transparent 68%);
}

.nico-homepage .hero-panel h2 {
	margin-bottom: 10px;
	font-size: 1.8rem;
	line-height: 1.1;
	color: var(--nico-text);
}

.nico-homepage .hero-panel p {
	color: var(--nico-text-soft);
}

.nico-homepage .hero-form-control {
	min-height: 56px;
	padding: 14px 16px;
	border-color: rgba(229, 234, 245, 0.96);
}

.nico-homepage .hero-form-label {
	margin-bottom: 9px;
	font-size: 0.92rem;
}

.nico-homepage .hero-card-footer {
	margin-top: 20px;
	padding-top: 20px;
}

.nico-homepage .brand-ribbon {
	margin-top: 14px;
	padding: 10px;
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.9);
	border-color: rgba(229, 234, 245, 0.98);
}

.nico-homepage .brand-ribbon-item {
	padding: 12px 10px;
	border-radius: 18px;
	border: 1px solid rgba(229, 234, 245, 0.9);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.nico-homepage .section-intro {
	margin-bottom: 22px;
}

.nico-homepage .section-title {
	max-width: 24ch;
	margin: 12px auto 10px;
	font-size: clamp(1.72rem, 2.5vw, 2.2rem);
	line-height: 1.14;
	letter-spacing: -0.04em;
}

.nico-homepage .section-intro-left .section-title {
	margin-left: 0;
}

.nico-homepage .section-subtitle {
	max-width: 54ch;
	margin: 0 auto;
	font-size: 0.96rem;
	line-height: 1.66;
}

.nico-homepage .section-intro-left .section-subtitle {
	margin-left: 0;
}

.nico-homepage .platform-support-strip,
.nico-homepage .services-section,
.nico-homepage .stats-section,
.nico-homepage .smm-info-section,
.nico-homepage .why-choose-split,
.nico-homepage .how-it-works-section,
.nico-homepage .faq-section,
.nico-homepage .trust-guarantee-strip,
.nico-homepage .final-cta-section {
	border-color: rgba(229, 234, 245, 0.9);
}

.nico-homepage .platform-support-strip {
	background: linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
}

.nico-homepage .services-section,
.nico-homepage .stats-section,
.nico-homepage .faq-section,
.nico-homepage .final-cta-section {
	background: linear-gradient(180deg, #fbfdff 0%, #f3f6ff 100%);
}

.nico-homepage .smm-info-section,
.nico-homepage .how-it-works-section,
.nico-homepage .trust-guarantee-strip,
.nico-homepage .why-choose-split {
	background: linear-gradient(180deg, #f7faff 0%, #eef4ff 100%);
}

.nico-homepage .platform-pill {
	padding: 11px 15px;
	border-color: rgba(229, 234, 245, 0.96);
	background: rgba(255, 255, 255, 0.95);
	box-shadow: 0 10px 20px rgba(37, 99, 235, 0.05);
}

.nico-homepage .service-card,
.nico-homepage .stat-card,
.nico-homepage .benefits-card,
.nico-homepage .why-card-item,
.nico-homepage .how-card,
.nico-homepage .faq-item,
.nico-homepage .final-cta-card,
.nico-homepage .trust-item {
	border-color: rgba(229, 234, 245, 0.98);
	box-shadow: 0 20px 42px rgba(37, 99, 235, 0.09);
}

.nico-homepage .service-card {
	padding: 24px;
}

.nico-homepage .service-icon {
	background: linear-gradient(135deg, #2563eb 0%, #3b82f6 58%, #6366f1 100%);
}

.nico-homepage .service-link {
	margin-top: 18px;
	color: var(--nico-blue-800);
}

.nico-homepage .service-link i {
	transition: transform 0.25s ease;
}

.nico-homepage .service-card:hover .service-link i {
	transform: translateX(3px);
}

.nico-homepage .stat-card,
.nico-homepage .how-card {
	padding: 22px 18px;
}

.nico-homepage .stat-icon,
.nico-homepage .how-step,
.nico-homepage .why-icon {
	box-shadow: 0 18px 30px rgba(37, 99, 235, 0.16);
}

.nico-homepage .benefits-card,
.nico-homepage .final-cta-card {
	padding: 26px;
}

.nico-homepage .why-card-list {
	margin-top: 20px;
}

.nico-homepage .why-card-item {
	padding: 16px 18px;
}

.nico-homepage .faq-list-home {
	max-width: 980px;
}

.nico-homepage .faq-item {
	margin-bottom: 16px;
	border-radius: 24px;
}

.nico-homepage .faq-question {
	padding: 18px 20px;
	font-size: 0.98rem;
}

.nico-homepage .faq-answer p {
	padding: 0 20px 18px;
	color: var(--nico-text-soft);
}

.nico-homepage .trust-item {
	min-height: 124px;
	padding: 20px 14px;
}

.nico-homepage .final-cta-card {
	background:
		radial-gradient(circle at top left, rgba(96, 165, 250, 0.22), transparent 28%),
		linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(238, 244, 255, 0.98) 62%, rgba(243, 246, 255, 0.98) 100%);
}

.nico-homepage .final-cta-card h2 {
	max-width: 16ch;
}

.nico-homepage .footer {
	padding-top: 48px;
	background:
		linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
}

.nico-homepage .footer-top-premium {
	padding: 22px 22px 16px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 249, 255, 0.98) 100%);
	border-color: rgba(226, 232, 240, 0.9);
	box-shadow: 0 20px 42px rgba(37, 99, 235, 0.08);
}

.nico-homepage .footer-bottom-premium {
	padding: 18px 24px;
}

.nico-homepage .footer-brand-card,
.nico-homepage .footer-column-card {
	padding: 10px 8px;
}

.nico-homepage .footer-brand-copy,
.nico-homepage .footer-newsletter-card p,
.nico-homepage .footer-contact-item span,
.nico-homepage .footer-contact-item a {
	color: var(--nico-text-soft);
}

.nico-homepage .footer:before {
	display: none;
}

.nico-homepage .footer p,
.nico-homepage .footer a,
.nico-homepage .footer h4,
.nico-homepage .footer .copyrights p,
.nico-homepage .footer .footer-links a,
.nico-homepage .footer-contact-item strong,
.nico-homepage .footer-mini-label,
.nico-homepage .footer-column-title {
	color: var(--nico-text);
}

.nico-homepage .footer .logo img {
	-webkit-filter: none;
	filter: none;
}

.nico-homepage .footer .icon-container .fa-stack .fa-circle {
	color: rgba(37, 99, 235, 0.12);
}

.nico-homepage .footer .icon-container .fa-stack .fab {
	color: var(--nico-blue-800);
}

.nico-homepage .footer-contact-item i {
	background: rgba(37, 99, 235, 0.08);
	color: var(--nico-blue-800);
}

.nico-homepage .footer .subscribe-box {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px;
	border-radius: 20px;
	background: #fff;
	border-color: rgba(226, 232, 240, 0.95);
	box-shadow: 0 14px 28px rgba(37, 99, 235, 0.06);
}

.nico-homepage .footer .subscribe-box input[type="email"] {
	width: 100%;
	color: var(--nico-text);
}

.nico-homepage .footer .subscribe-box input[type="email"]::placeholder {
	color: var(--nico-text-soft);
}

.nico-homepage #newsletterForm .subscribe-box .btn-submit {
	min-height: 52px;
	background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
	color: #fff;
}

.nico-homepage .footer-lang-selector {
	border-color: rgba(226, 232, 240, 0.95);
	background: #fff;
	color: var(--nico-text);
}

.nico-homepage .footer .footer-bottom {
	background: rgba(255, 255, 255, 0.92);
	border-color: rgba(226, 232, 240, 0.95);
}

@media (max-width: 991px) {
	.nico-homepage section {
		padding: 48px 0;
	}

	.nico-homepage .hero-copy h1 {
		max-width: none;
	}

	.nico-homepage .section-title {
		max-width: 100%;
	}

	.nico-homepage .hero-panel {
		padding: 24px;
	}

	.nico-homepage .brand-ribbon-item {
		margin-bottom: 8px;
	}
}

@media (max-width: 767px) {
	.nico-homepage section,
	.nico-homepage .platform-support-strip,
	.nico-homepage .services-section,
	.nico-homepage .stats-section,
	.nico-homepage .smm-info-section,
	.nico-homepage .why-choose-split,
	.nico-homepage .how-it-works-section,
	.nico-homepage .faq-section,
	.nico-homepage .trust-guarantee-strip,
	.nico-homepage .final-cta-section {
		padding-top: 30px;
		padding-bottom: 30px;
	}

	.nico-homepage .navbar-custom .navbar-collapse {
		margin-top: 14px;
		padding: 14px 16px;
		border-radius: 20px;
		background: rgba(255, 255, 255, 0.96);
		border: 1px solid rgba(229, 234, 245, 0.96);
		box-shadow: 0 20px 38px rgba(15, 23, 42, 0.08);
	}

	.nico-homepage .navbar-custom .navbar-collapse:not(.show) {
		display: none;
	}

	.nico-homepage .navbar-custom .navbar-collapse.show {
		display: block;
	}

	.nico-homepage .navbar-custom .navbar-collapse.collapsing {
		display: block;
	}

	.nico-homepage .navbar-custom {
		padding: 8px 0;
	}

	.nico-homepage .navbar-custom .container {
		padding-left: 14px;
		padding-right: 14px;
	}

	.nico-homepage .navbar-custom .navbar-brand {
		margin-right: 0;
	}

	.nico-homepage .navbar-custom .navbar-toggler {
		margin-left: auto;
	}

	.nico-homepage .navbar-custom .navbar-brand.logo-image img {
		height: 40px;
		max-height: 40px;
	}

	.nico-homepage .navbar-custom .nav-item .nav-link {
		padding: 9px 0;
	}

	.nico-homepage .home-neo-header .header-content {
		padding-top: 0.25rem;
		padding-bottom: 0;
	}

	.nico-homepage .home-neo-header,
	.nico-homepage .home-neo-header:before,
	.nico-homepage .home-neo-header:after,
	.nico-homepage .hero-panel:before,
	.nico-homepage .service-card:before,
	.nico-homepage .platform-support-strip:before,
	.nico-homepage .services-section:before,
	.nico-homepage .stats-section:before,
	.nico-homepage .smm-info-section:before,
	.nico-homepage .why-choose-split:before,
	.nico-homepage .how-it-works-section:before,
	.nico-homepage .faq-section:before,
	.nico-homepage .trust-guarantee-strip:before,
	.nico-homepage .final-cta-section:before {
		filter: none;
	}

	.nico-homepage .home-neo-header:before,
	.nico-homepage .home-neo-header:after,
	.nico-homepage .hero-panel:before,
	.nico-homepage .service-card:before,
	.nico-homepage .platform-support-strip:before,
	.nico-homepage .services-section:before,
	.nico-homepage .stats-section:before,
	.nico-homepage .smm-info-section:before,
	.nico-homepage .why-choose-split:before,
	.nico-homepage .how-it-works-section:before,
	.nico-homepage .faq-section:before,
	.nico-homepage .trust-guarantee-strip:before,
	.nico-homepage .final-cta-section:before {
		display: none;
	}

	.nico-homepage .hero-shell--premium {
		max-width: 100%;
	}

	.nico-homepage .hero-main-row > [class*="col-"] {
		width: 100%;
	}

	.nico-homepage .hero-main-row > [class*="col-"]:first-child {
		order: 2;
	}

	.nico-homepage .hero-main-row > [class*="col-"]:last-child {
		order: 1;
	}

	.nico-homepage .hero-main-row {
		row-gap: 0.75rem;
	}

	.nico-homepage .hero-copy h1 {
		max-width: 100%;
		margin-top: 10px;
		margin-bottom: 10px;
		font-size: clamp(1.78rem, 6.9vw, 2.05rem);
		line-height: 1.08;
		letter-spacing: -0.04em;
	}

	.nico-homepage .hero-copy,
	.nico-homepage .hero-lead,
	.nico-homepage .section-subtitle {
		max-width: 100%;
	}

	.nico-homepage .hero-lead,
	.nico-homepage .section-subtitle {
		font-size: 0.92rem;
		line-height: 1.54;
	}

	.nico-homepage .hero-trust,
	.nico-homepage .hero-cta-group {
		gap: 8px;
	}

	.nico-homepage .hero-action-block {
		margin-top: 12px;
	}

	.nico-homepage .hero-trust {
		flex-direction: column;
		align-items: flex-start;
	}

	.nico-homepage .hero-cta-group {
		flex-direction: column;
		align-items: stretch;
	}

	.nico-homepage .hero-cta-group .btn,
	.nico-homepage .hero-trust span {
		width: 100%;
		justify-content: flex-start;
		padding: 10px 14px;
		font-size: 0.88rem;
		line-height: 1.3;
	}

	.nico-homepage .hero-trust span {
		min-height: 0;
		border-radius: 12px;
		background: rgba(245, 249, 255, 0.76);
		border: 1px solid rgba(226, 232, 240, 0.9);
		box-shadow: none;
	}

	.nico-homepage .hero-support-note {
		margin: 10px 0 6px;
		font-size: 0.89rem;
		line-height: 1.45;
	}

	.nico-homepage .hero-panel {
		padding: 16px 14px;
		border-radius: 20px;
		box-shadow: 0 18px 34px rgba(37, 99, 235, 0.1);
	}

	.nico-homepage .hero-auth-card,
	.nico-homepage .hero-dashboard-card {
		margin-bottom: 6px;
	}

	.nico-homepage .hero-panel h2 {
		font-size: 1.4rem;
		line-height: 1.15;
	}

	.nico-homepage .hero-panel p {
		margin-bottom: 14px;
		font-size: 0.92rem;
		line-height: 1.55;
	}

	.nico-homepage .hero-card-topline,
	.nico-homepage .hero-form-meta,
	.nico-homepage .hero-card-footer {
		gap: 10px;
	}

	.nico-homepage .hero-card-topline,
	.nico-homepage .hero-form-meta,
	.nico-homepage .hero-card-footer {
		flex-direction: column;
		align-items: flex-start;
	}

	.nico-homepage .hero-form-control {
		min-height: 50px;
		padding: 12px 14px;
	}

	.nico-homepage .hero-form-label {
		margin-bottom: 7px;
		font-size: 0.88rem;
	}

	.nico-homepage .brand-ribbon {
		margin-top: 12px;
		padding: 6px;
		border-radius: 16px;
		box-shadow: 0 14px 28px rgba(37, 99, 235, 0.08);
	}

	.nico-homepage .brand-ribbon .row > [class*="col-"] {
		margin-bottom: 6px;
	}

	.nico-homepage .brand-ribbon-item {
		padding: 9px 8px;
		border-radius: 14px;
	}

	.nico-homepage .brand-ribbon-item strong {
		font-size: 1.08rem;
	}

	.nico-homepage .brand-ribbon-item span {
		font-size: 0.76rem;
	}

	.nico-homepage .platform-pill-wrap {
		justify-content: flex-start;
		overflow: visible;
		padding-bottom: 0;
	}

	.nico-homepage .platform-pill {
		flex: 0 1 auto;
		padding: 9px 12px;
		font-size: 0.84rem;
		box-shadow: none;
	}

	.nico-homepage .service-card,
	.nico-homepage .stat-card,
	.nico-homepage .benefits-card,
	.nico-homepage .why-card-item,
	.nico-homepage .how-card,
	.nico-homepage .faq-item,
		.nico-homepage .trust-item,
		.nico-homepage .final-cta-card {
		border-radius: 24px;
	}

	.nico-homepage .section-intro {
		margin-bottom: 16px;
	}

	.nico-homepage .section-title {
		margin: 10px 0 8px;
		font-size: clamp(1.36rem, 5.4vw, 1.62rem);
		line-height: 1.18;
		letter-spacing: -0.03em;
	}

	.nico-homepage .service-card,
	.nico-homepage .stat-card,
	.nico-homepage .how-card,
	.nico-homepage .benefits-card,
	.nico-homepage .final-cta-card {
		padding: 16px 14px;
	}

	.nico-homepage .services-grid > [class*="col-"],
	.nico-homepage .stats-section .row > [class*="col-"],
	.nico-homepage .how-it-works-section .row > [class*="col-"],
	.nico-homepage .trust-guarantee-strip .row > [class*="col-"] {
		margin-bottom: 10px;
	}

	.nico-homepage .service-card h3,
	.nico-homepage .why-card-item h3,
	.nico-homepage .how-card h3 {
		margin: 16px 0 10px;
		font-size: 1.15rem;
		line-height: 1.28;
	}

	.nico-homepage .service-card p,
	.nico-homepage .stat-card span,
	.nico-homepage .benefit-item,
	.nico-homepage .why-card-item p,
	.nico-homepage .how-card p {
		font-size: 0.9rem;
		line-height: 1.52;
	}

	.nico-homepage .service-icon,
	.nico-homepage .stat-icon,
	.nico-homepage .how-step,
	.nico-homepage .why-icon {
		box-shadow: none;
	}

	.nico-homepage .service-icon,
	.nico-homepage .stat-icon,
	.nico-homepage .how-step {
		width: 56px;
		height: 56px;
	}

	.nico-homepage .why-card-item {
		padding: 14px;
		gap: 12px;
	}

	.nico-homepage .why-icon {
		flex: 0 0 48px;
		width: 48px;
		height: 48px;
		border-radius: 14px;
		font-size: 1rem;
	}

	.nico-homepage .benefits-card h3 {
		margin-bottom: 12px;
	}

	.nico-homepage .benefit-item {
		gap: 10px;
		padding: 9px 0;
	}

	.nico-homepage .faq-question {
		padding: 13px 14px;
		font-size: 0.94rem;
		line-height: 1.35;
	}

	.nico-homepage .faq-answer p {
		padding: 0 14px 14px;
		font-size: 0.9rem;
		line-height: 1.55;
	}

	.nico-homepage .trust-item {
		min-height: 92px;
		padding: 14px 10px;
		font-size: 0.86rem;
		line-height: 1.35;
	}

	.nico-homepage .trust-item i {
		font-size: 1.35rem;
	}

	.nico-homepage .footer-top-premium,
	.nico-homepage .footer-bottom-premium {
		padding-left: 16px;
		padding-right: 16px;
	}

	.nico-homepage .footer {
		padding-top: 28px;
		padding-bottom: 16px;
	}

	.nico-homepage .footer-top-premium {
		padding-top: 16px;
		padding-bottom: 10px;
		border-radius: 20px 20px 0 0;
	}

	.nico-homepage .footer-bottom-premium {
		padding-top: 14px;
		padding-bottom: 14px;
		border-radius: 0 0 20px 20px;
	}

	.nico-homepage .footer-brand-card,
	.nico-homepage .footer-column-card {
		padding: 8px 0;
	}

	.nico-homepage .footer-brand-copy,
	.nico-homepage .footer-newsletter-card p {
		margin-bottom: 12px;
		font-size: 0.88rem;
		line-height: 1.55;
	}

	.nico-homepage .footer .subscribe-box {
		flex-direction: column;
		align-items: stretch;
		padding: 8px;
		border-radius: 16px;
	}

	.nico-homepage #newsletterForm .subscribe-box .btn-submit {
		width: 100%;
		min-height: 46px;
		padding: 12px 16px;
	}

	.nico-homepage .footer .footer-bottom .footer-links ul {
		gap: 10px 14px;
	}

	.nico-homepage .footer .copyrights p,
	.nico-homepage .footer .footer-bottom .footer-links ul a {
		font-size: 0.88rem;
	}
}
