/* ------------------------------------------------
  Project:   NLWD - Bootstrap 5 Multipurpose Landing Page
  Author:
------------------------------------------------ */
:root {
	--alexpro-primary-color   : #019aff;
	--alexpro-secondary-color : #3250fa;
	--alexpro-accent-color    : #ffd200;
	--alexpro-light-color     : #ecf8ff;
	--alexpro-dark-color      : #000101;
}

body {
	font-family: "Courier New", monospace;
	font-style: normal;
	font-size: 1rem;
	font-weight: 400;
	color: #535353;
	overflow-x: hidden;
}

.page-wrapper {
	overflow-x: hidden;
}

a {
	text-decoration: none;
	color: var(--alexpro-primary-color);
}

a:hover {
	color: var(--alexpro-primary-color);
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
	margin-bottom: 0.5rem;
	color: var(--alexpro-dark-color);
	font-weight: 700;
	line-height: 1.3;
}

h1, .h1 {
	font-size: 3.5rem;
}

h2, .h2 {
	font-size: 2.5rem;
}

h3, .h3 {
	font-size: 1.875rem;
}

h4, .h4 {
	font-size: 1.5rem;
}

h5, .h5 {
	font-size: 1.25rem;
}

h6, .h6 {
	font-size: 1.125rem;
}

h4, h5, h6, .h4, .h5, .h6 {
	font-weight: 600;
}

p {
	line-height: 1.7;
}

.lead {
	font-size: 1.25rem;
	font-weight: 300;
}

.text-dark {
	color: var(--alexpro-dark-color) !important;
}

.text-primary {
	color: var(--alexpro-primary-color) !important;
}

.text-muted {
	color: #535353 !important
}

.text-light {
	color: var(--alexpro-light-color) !important;
}

a.text-light:focus, a.text-light:hover {
	color: var(--alexpro-primary-color) !important;
}

a.text-dark:focus, a.text-dark:hover {
	color: var(--alexpro-primary-color) !important;
}

section {
	padding: 5rem 0
}

.z-index-1 {
	z-index: 9;
	position: relative;
}

/* ------------------------
Transition
------------------------*/
a, i, .btn, button, img, span, .dropdown-item, .hover-translate, .btn:before, .feature-hover, .feature-hover:before, .testimonial-carousel .controls li, .scroll-top a:before {
	-webkit-transition: all 0.5s ease-in-out 0s;
	-moz-transition: all 0.5s ease-in-out 0s;
	-ms-transition: all 0.5s ease-in-out 0s;
	-o-transition: all 0.5s ease-in-out 0s;
	transition: all 0.5s ease-in-out 0s;
}

.hover-translate:hover {
	box-shadow: 0 10px 30px 5px rgba(1, 154, 255, .06);
	background-color: #ffffff;
	-webkit-transform: translate3d(0, -20px, 0);
	-moz-transform: translate3d(0, -20px, 0);
	transform: translate3d(0, -20px, 0);
}

a:hover {
	text-decoration: none;
}

.font-w-3 {
	font-weight: 300;
}

.font-w-4 {
	font-weight: 400;
}

.font-w-5 {
	font-weight: 500;
}

.font-w-6 {
	font-weight: 600;
}

.font-w-7 {
	font-weight: 700;
}

.font-w-8 {
	font-weight: 800;
}

.font-w-9 {
	font-weight: 900;
}

/* ------------------------
Border Radius
------------------------*/
.rounded, .card {
	border-radius: .5rem !important;
}

/* ------------------------
Pre Loader
------------------------*/
#ht-preloader {
	background: var(--alexpro-dark-color);
	bottom: 0;
	height: 100%;
	left: 0;
	overflow: hidden !important;
	position: fixed;
	right: 0;
	text-align: center;
	top: 0;
	width: 100%;
	z-index: 99999;
}

.loader {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	text-align: center;
	margin: auto;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
}

.loader span {
	animation: moving 4s linear infinite;
	animation-delay: calc((var(--n) - 10) * 0.4s);
	font-size: 3.5em;
	color: var(--alexpro-primary-color);
	font-weight: 700
}

@keyframes moving {
	0% {
		filter: opacity(0);
	}

	33% {
		filter: opacity(1);
	}

	66% {
		filter: opacity(1);
	}

	100% {
		filter: opacity(0);
	}

}

.loader span:nth-child(1) {
	--n: 1;
}

.loader span:nth-child(2) {
	--n: 2;
}

.loader span:nth-child(3) {
	--n: 3;
}

.loader span:nth-child(4) {
	--n: 4;
}

.loader span:nth-child(5) {
	--n: 5;
}

/* ------------------------
Button
------------------------*/
.btn {
	font-weight: 600;
	padding: 0.70rem 1.5rem;
	border-radius: .5rem;
	position: relative;
	overflow: hidden;
	z-index: 9
}

.btn-sm {
	padding: .35rem 1.0rem;
}

.btn-primary {
	color: var(--alexpro-dark-color);
	background-color: rgba(1, 154, 255, 0.1);
	border-color: var(--alexpro-primary-color);
}

.btn-primary:hover, .btn-primary:focus, .btn-outline-primary:not(:disabled):not(.disabled).active, .btn-outline-primary:not(:disabled):not(.disabled):active, .show > .btn-outline-primary.dropdown-toggle, .btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show > .btn-primary.dropdown-toggle {
	color: #ffffff;
	background-color: var(--alexpro-primary-color);
	border-color: var(--alexpro-primary-color);
	box-shadow: none;
}

.btn-outline-primary {
	color: var(--alexpro-primary-color);
	border-color: var(--alexpro-primary-color);
}

.btn-outline-primary:hover {
	background-color: var(--alexpro-primary-color);
	border-color: var(--alexpro-primary-color);
}

.btn-dark {
	background-color: var(--alexpro-dark-color);
	border-color: var(--alexpro-dark-color);
}

.btn-dark:hover {
	background-color: var(--alexpro-primary-color);
	border-color: var(--alexpro-primary-color);
}

.btn-white {
	background-color: #ffffff;
	border-color: #ffffff;
}

.btn-white:hover {
	background-color: var(--alexpro-primary-color);
	border-color: var(--alexpro-primary-color);
	color: #ffffff
}

.btn.focus, .btn:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus, .btn-outline-primary:not(:disabled):not(.disabled):active:focus, .show > .btn-outline-primary.dropdown-toggle:focus {
	box-shadow: none;
}

button:focus {
	outline: none;
}

.btn:before {
	content: "";
	background: var(--alexpro-primary-color);
	width: 10px;
	height: 10px;
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: -1;
	border-radius: 50%;
	z-index: -1;
	border-radius: 50%
}

.btn:hover:before {
	border-radius: .5rem;
	transform: scale(100);
}

.btn-link {
	color: var(--alexpro-dark-color)
}

.btn-link:hover {
	color: var(--alexpro-primary-color)
}

.border-primary {
	border-color: var(--alexpro-primary-color) !important;
}

a.text-primary:focus, a.text-primary:hover {
	color: var(--alexpro-dark-color) !important;
}

.border-light {
	border-color: var(--alexpro-light-color) !important;
}

/* ------------------------
Background
------------------------*/
.bg-primary {
	background-color: var(--alexpro-primary-color) !important;
}

.bg-light {
	background-color: var(--alexpro-light-color) !important;
}

.bg-dark {
	background-color: var(--alexpro-dark-color) !important;
}

.bg-primary-soft {
	background-color: rgba(1, 155, 121, .1);
}

.bg-dark .bg-primary-soft {
	background-color: rgba(1, 164, 121, 0.02);
}

/* ------------------------
Badge
------------------------*/
.badge-dark {
	background-color: var(--alexpro-dark-color) !important;
}

/* ------------------------
Icon
------------------------*/
.ic-2x {
	font-size: 2em;
}

.ic-3x {
	font-size: 3em;
}

.ic-5x {
	font-size: 5em;
}

.ic-7x {
	font-size: 7em;
}

/* ------------------------
Shadow
------------------------*/
.shadow-primary {
	-webkit-box-shadow: 0 0.5rem 1rem rgba(1, 154, 255, .30) !important;
	box-shadow: 0 0.5rem 1rem rgba(1, 154, 255, .30) !important;
}

.shadow-sm {
	box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075) !important;
}

.shadow {
	box-shadow: 0 10px 30px 5px rgba(1, 154, 255, .06) !important;
}

.shadow-lg {
	box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175) !important;
}

.shadow-none {
	box-shadow: none !important;
}

/* ------------------------
  Header
------------------------*/
#header-wrap {
	padding: 15px 0;
	position: relative;
}

#header-wrap.fixed-header {
	padding: 5px 0;
	position: fixed !important;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 999 !important;
	background: #ffffff !important;
	box-shadow: 0 10px 30px 5px rgba(1, 154, 255, .06) !important;
	animation: smoothScroll 1s forwards;
}

/*--navigation--*/
.navbar {
	padding: 0;
}

.navbar-nav .nav-item.dropdown .dropdown-menu {
	background: #ffffff;
	padding: 0;
	border: none;
	-webkit-box-shadow: 0 0.5rem 1rem rgba(1, 154, 255, .30) !important;
	box-shadow: 0 0.5rem 1rem rgba(1, 154, 255, .30) !important;
}

.navbar-brand {
	margin-right: 0;
	padding: 0;
	font-size: 2.5rem;
	line-height: 2.5rem;
}

header .navbar-nav .nav-item {
	margin: 0 8px
}

.navbar-nav .nav-link {
	font-weight: 600;
	padding: .3rem;
	border-radius: .5rem;
	text-transform: capitalize;
	position: relative;
}

.navbar-dark #header-wrap.fixed-header {
	background: var(--alexpro-primary-color) !important
}

.navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .show > .nav-link, .dropdown-item:focus, .dropdown-item:hover {
	background-color: rgba(1,154,255, 0.04);
	color: var(--alexpro-primary-color);
}

.dropdown-item:focus, .dropdown-item:hover {
	background: var(--alexpro-primary-color);
	color: #ffffff;
}

.navbar-dark .navbar-nav .nav-link {
	color: rgba(255, 255, 255, .8);
}

.navbar-dark .navbar-nav .nav-link:focus, .navbar-dark .navbar-nav .nav-link:hover {
	color: rgba(255, 255, 255, 1);
}

.dropdown-submenu {
	position: relative;
}

.dropdown-submenu a::after {
	transform: translateY(-50%) rotate(-90deg);
	position: absolute;
	right: 1.5rem;
	top: 50%;
}

.dropdown-submenu .dropdown-menu {
	top: 0;
	left: 100%;
	margin-left: .1rem;
	margin-right: .1rem;
	margin-top: 0 !important;
}

.dropdown-submenu > .dropdown-item {
	padding-right: 2.5rem;
	position: relative;
}

.dropdown-item {
	padding: .50rem 1.5rem;
	font-weight: 400;
	color: var(--alexpro-dark-color);
	font-size: 0.9rem
}


@media (max-width : 991.98px) {

	/*Header*/
	#header-wrap {
		padding: 15px 0;
	}

	#header-wrap.fixed-header {
		padding: 15px 0;
	}

	.navbar-toggler {
		background: none;
		height: 40px;
		width: 40px;
		padding: 0;
		border-radius: 0;
		margin-right: 0;
	}

	.navbar-toggler:focus {
		box-shadow: none;
	}

	.site-header .navbar-nav ul {
		position: static;
	}

	.site-header .navbar-nav .nav-item {
		margin: 0;
	}

	.site-header .navbar-nav .nav-link {
		padding: 10px !important;
		border-radius: 0;
	}

	.navbar-nav a .sub-arrow {
		position: absolute;
		top: 50%;
		right: 0;
		margin: -0.7em 0.5em 0 0;
		border-radius: .5rem;
		padding: 0;
		width: 2em;
		height: 1.4em;
		font-size: 1.25rem;
		line-height: 1.2em;
		text-align: center;
	}

	.navbar-collapse {
		border-radius: 7px;
		background: #ffffff;
		max-height: 400px;
		left: 0;
		padding: 10px;
		position: absolute;
		z-index: 99;
		top: 50px;
		width: 100%;
		overflow: auto;
		border: medium none;
		-webkit-box-shadow: 0 10px 30px 5px rgba(1, 154, 255, .06);
		-moz-box-shadow: 0 10px 30px 5px rgba(1, 154, 255, .06);
		box-shadow: 0 10px 30px 5px rgba(1, 154, 255, .06);
	}

	.navbar-nav .dropdown-toggle::after {
		position: absolute;
		top: 50%;
		right: 0;
		margin: -.1rem 0.5em 0 0;
	}

}

/* -------------------------------
 Background Position & Size
-------------------------------*/
[data-bg-img] {
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

.bg-cover {
	background-size: cover;
}

.bg-contain {
	background-size: contain;
}

.bg-pos-l {
	background-position: left;
}

.bg-pos-r {
	background-position: right;
}

.bg-pos-rt {
	background-position: right top;
}

.bg-pos-lt {
	background-position: left top;
}

.bg-pos-rb {
	background-position: right bottom;
}

.bg-pos-lb {
	background-position: left bottom;
}

.bg-repeat {
	background-repeat: repeat;
}

.bg-pos-b {
	background-position: bottom;
}

/* ------------------------
	Hero Shape
------------------------*/
.hero-shape1:before {
	width: 50%;
	height: 100%;
	background: var(--alexpro-light-color);
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	z-index: -1;
	border-bottom-left-radius: 30%;
}

.hero-shape2:before {
	width: 1000px;
	height: 1000px;
	background: #ffeff8;
	content: "";
	position: absolute;
	right: -30%;
	top: -40%;
	z-index: -1;
	border-radius: 100%;
}

.hero-shape3:before {
	width: 60%;
	height: 100%;
	background: var(--alexpro-primary-color);
	content: "";
	position: absolute;
	right: -18%;
	top: -18%;
	z-index: -1;
	border-radius: 100px;
	transform: rotate(-30deg);
}

/* ------------------------
Shape
------------------------*/
.shape-1 {
	position: absolute;
	top: -1px;
	width: 100%;
	left: 0;
	right: 0;
}

.shape-2 {
	position: absolute;
	right: 0;
	top: 0;
	height: 100%;
	width: 100%;
}

.shape-1.bottom {
	top: inherit;
	bottom: -1px;
}

.round-shape {
	clip-path: circle(100% at 50% -50%);
}

/* ------------------------
Contact
------------------------*/
.form-control {
	height: 3rem;
	font-size: 0.8rem;
	border: none;
	border-bottom: 1px solid #43434d;
	border-radius: 0
}

.form-control:focus {
	color: #495057;
	background-color: none;
	border-color: var(--alexpro-primary-color);
	outline: 0;
	box-shadow: none;
}

.form-group {
	margin-bottom: 1.3rem;
	position: relative;
}

.help-block.with-errors {
	position: absolute;
	color: #fa0000;
	right: 15px;
	font-size: 10px;
	line-height: 14px;
}

/* ------------------------
Tab
------------------------*/
.nav-tabs .nav-item.nav-link {
	padding: 1.5rem 2rem;
	font-size: 1.2rem;
	color: var(--alexpro-dark-color);
	margin: 0 5px;
	border-radius: .5rem;
	box-shadow: 0 10px 30px 5px rgba(1, 154, 255, .06) !important;
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active, .nav-tabs .nav-link:focus, .nav-tabs .nav-link:hover {
	background: var(--alexpro-primary-color);
	color: #ffffff;
}

@media (max-width : 575.98px) {
	.nav-tabs .nav-item.nav-link {
		padding: .5rem 1rem;
	}

}

/* ------------------------
Video
------------------------*/
.video-btn {
	position: relative;
	display: inline-block;
}

.play-btn {
	font-size: 30px;
	background: #ffffff;
	color: var(--alexpro-primary-color);
	line-height: 70px;
	width: 70px;
	height: 70px;
	-webkit-border-radius: 100%;
	border-radius: 100%;
	text-align: center;
	cursor: pointer;
	z-index: 9;
	position: relative;
	display: inline-block;
	-webkit-transition: .15s ease-in-out;
	transition: .15s ease-in-out;
	-webkit-transition-property: color, background, border-color;
	transition-property: color, background, border-color;
}

.video-btn-pos {
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 99;
	transform: translateX(-50%) translateY(-50%);
	-webkit-transform: translateX(-50%) translateY(-50%);
	-o-transform: translateX(-50%) translateY(-50%);
	-ms-transform: translateX(-50%) translateY(-50%);
	-moz-transform: translateX(-50%) translateY(-50%);
}

.video-btn .spinner-eff {
	position: absolute;
	width: 200px;
	height: 200px;
	left: 50%;
	top: 50%;
	transform: translateX(-50%) translateY(-50%);
	-webkit-transform: translateX(-50%) translateY(-50%);
	-o-transform: translateX(-50%) translateY(-50%);
	-ms-transform: translateX(-50%) translateY(-50%);
	-moz-transform: translateX(-50%) translateY(-50%);
}

/* ------------------------
Spinner
------------------------*/
.spinner-eff .spinner-circle {
	border-radius: 100px;
	position: absolute;
	left: 0;
	right: 0;
	margin: auto;
	transform: scale(1);
	transform-origin: center center;
}

.spinner-eff .circle-1 {
	width: 100%;
	height: 100%;
	background-color: var(--alexpro-primary-color);
	top: 0;
	animation: pulse 1.6s linear 0s infinite;
}

.spinner-eff .circle-2 {
	width: 66.6%;
	height: 66.6%;
	background-color: var(--alexpro-primary-color);
	top: 16.5%;
	animation: pulse-2 1.6s linear 0s infinite;
}

/* -------------------------------
 Shop Page
-------------------------------*/
.product-card {
	border: none;
	padding-bottom: 20px;
	overflow: hidden;
}

.product-card:hover {
	box-shadow: 0 10px 55px 5px rgba(137, 173, 255, .15) !important;
}

.product-link button {
	border: none;
	border-radius: .5rem;
	padding: 0.50rem 0.75rem;
	background: #ffffff;
	box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
}

.product-link button:hover {
	background: var(--alexpro-primary-color);
	color: #ffffff
}

.product-link button i, .product-link a i {
	display: inline-block;
	font-size: 24px;
	line-height: 24px;
	vertical-align: bottom;
}

.product-card .card-body {
	padding: 20px;
	position: relative;
	text-align: center;
	background: #ffffff
}

.product-price {
	color: var(--alexpro-primary-color);
	font-weight: 600;
}

.product-price del {
	font-size: 0.9rem
}

.product-list.product-card {
	padding: 0;
}

.product-list.product-card .card-body {
	padding: 0;
	text-align: left;
}

.star-rating {
	color: #fdcc0d;
}

.form-check-input:checked {
	background-color: var(--alexpro-primary-color);
	border-color: var(--alexpro-primary-color);
}

.widget-color [type="radio"]:checked, .widget-color [type="radio"]:not(:checked) {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.widget-color .form-check-label {
	width: 26px;
	height: 26px !important;
	border-radius: .5rem;
	padding: 0 !important;
}

.widget-color .form-check-input[type="radio"]:checked + label, .widget-color .form-check-input[type="radio"]:not(:checked) + label, label.btn input[type="radio"]:checked + label, label.btn input[type="radio"]:not(:checked) + label {
	position: relative;
	padding-left: 35px;
	cursor: pointer;
	display: inline-block;
	height: 1.5625rem;
	line-height: 1.5625rem;
	transition: .28s ease;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.widget-color .form-check-input[type="radio"] + label::after, .widget-color .form-check-input[type="radio"] + label::before, label.btn input[type="radio"] + label::after, label.btn input[type="radio"] + label::before {
	content: '';
	position: absolute;
	left: -2px;
	top: -2px;
	width: 30px;
	height: 30px;
	z-index: 0;
	transition: .28s ease;
	z-index: -1;
	border-radius: .5rem;
}

.widget-color .form-check-input[type="radio"]:checked + label::after, label.btn input[type="radio"]:checked + label::after {
	transform: scale(1.02);
}

.widget-color .form-check-input[type="radio"]:checked + label::after {
	background-color: var(--alexpro-primary-color);
}

.widget-size input[type="radio"] {
	visibility: hidden;
	position: absolute;
}

.widget-size label {
	background: var(--alexpro-light-color);
	margin-bottom: 0;
	display: inline-block;
	height: 40px;
	min-width: 40px;
	text-align: center;
	font-size: 14px;
	color: var(--alexpro-dark-color);
	font-weight: 500;
	cursor: pointer;
	border-radius: .5rem;
	line-height: 40px;
}

.widget-size input[type="radio"]:checked + label {
	background: var(--alexpro-primary-color);
	color: #ffffff;
}

.widget-color li {
	list-style-type: none;
	display: inline-block;
	margin-right: 1%;
	margin-bottom: 20px;
	width: 22%;
	text-align: center;
}

.widget-color li:nth-child(4n+4) {
	margin-right: 0;
}

.widget-size li {
	list-style-type: none;
	display: inline-block;
	width: 20%;
	text-align: center;
	float: left;
}

.widget-size li:nth-child(4n+4) {
	margin-right: 0;
}

input.form-product {
	-moz-appearance: textfield;
	height: 40px;
	border: none;
	background: #ffffff;
	text-align: center;
	width: 50px;
	border-top: 1px solid #43434d;
	border-bottom: 1px solid #43434d;
	color: var(--alexpro-dark-color);
	vertical-align: middle;
}

.btn-product {
	background: none;
	color: var(--alexpro-dark-color);
	border: 1px solid #43434d;
	height: 40px;
	width: auto;
	padding: 0 10px;
	font-size: 13px;
	cursor: pointer;
}

.view-filter a.active {
	color: var(--alexpro-primary-color);
}

.view-filter a {
	color: var(--alexpro-dark-color);
	padding-right: 8px;
	display: inline-block;
	vertical-align: middle;
	font-size: 30px;
}

.cart-table thead th {
	padding: 20px;
	text-align: center;
	border: none;
	vertical-align: middle;
	color: var(--alexpro-dark-color);
	font-size: 18px;
	font-weight: 500;
}

.cart-table td {
	padding: 10px;
	color: var(--alexpro-dark-color);
	vertical-align: middle;
}

/* ------------------------
	Accordion
------------------------*/
.accordion .accordion-item {
	background: none;
	position: relative;
	border: 1px solid rgba(0, 0, 0, .125);
}

.accordion .accordion-item .accordion-button {
	font-weight: 400;
	text-transform: capitalize;
	font-size: 1.125rem;
	padding: .5rem 1rem
}

.accordion-button:focus {
	border-color: inherit;
	box-shadow: none;
}

.accordion .accordion-item .accordion-button:after {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	text-align: center;
	line-height: 20px;
	background: var(--alexpro-light-color);
	content: "\f107";
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	font-size: 0.7rem;
	top: 50%;
	position: absolute;
	right: 0.5rem;
	margin-top: -10px;
}

.accordion .accordion-item .accordion-button[aria-expanded="true"] {
	color: var(--alexpro-primary-color);
}

.accordion .accordion-item .accordion-button[aria-expanded="true"]:after {
	background: var(--alexpro-primary-color);
	color: #ffffff;
	transform: rotate(180deg);
}

.accordion .accordion-body {
	padding: 15px;
	line-height: 2;
}

.accordion .accordion-body li a {
	font-size: 0.9rem;
	color: var(--alexpro-dark-color)
}

/* ------------------------
Countdown
------------------------*/
.countdown {
	margin: 50px 0;
	width: 100%;
}

.countdown > li {
	font-weight: 700;
	list-style-type: none;
}

.countdown > li span {
	font-size: 70px;
	font-weight: 700;
	line-height: 80px;
	display: inline-block;
	color: var(--alexpro-primary-color);
}

.countdown > li p {
	font-size: 20px;
	display: block;
	line-height: 30px;
	margin-bottom: 0;
	color: #ffffff;
}

/* ------------------------
	Scroll to Top
------------------------*/
.scroll-top {
	-webkit-transform: translateY(-50%) rotate(90deg);
	-ms-transform: translateY(-50%) rotate(90deg);
	transform: translateY(-50%) rotate(90deg);
	position: fixed;
	top: 50%;
	right: -20px;
	z-index: 600;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.8s ease-in-out;
	transition: all 0.8s ease-in-out;
}

.scroll-top a, .scroll-top a:visited {
	font-size: 14px;
	font-weight: 600;
	color: var(--alexpro-dark-color);
	display: block;
	text-transform: uppercase;
}

.scroll-top a:before {
	content: "\f309";
	font-family: 'Font Awesome 5 Free';
	position: absolute;
	top: 50%;
	font-size: 2rem;
	color: var(--alexpro-primary-color);
	transform: translateY(-50%) rotate(90deg);
	left: -40px;
}

.scroll-top a:hover:before {
	left: -30px;
}

.scroll-top a:hover, .scroll-top a:focus {
	color: var(--alexpro-primary-color);
}

.scroll-top.scroll-visible {
	opacity: 1;
	visibility: visible;
}

/* ------------------------
	Feature Box
------------------------*/
.feature-hover:before {
	width: 100%;
	height: 100%;
	background: #ffffff;
	border-radius: 30% 90% 20% 30% / 30% 90% 30% 30%;
	box-shadow: 0 10px 30px 5px rgba(1, 154, 255, .06);
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
	opacity: 0;
	transform: scale(0);
	transition: opacity 0.80s, transform 0.80s;
}

.feature-hover:hover:before, .feature-hover.active:before {
	opacity: 1;
	transform: scale(1)
}

.feature-hover:hover .f-icon {
	animation: headShake 1.2s infinite;
	animation-duration: 5s;
	color: var(--alexpro-primary-color);
	position: relative;
}

.f-icon {
	font-size: 3.5rem;
	line-height: 3.5rem
}

.f-icon-m {
	font-size: 2.7rem;
	line-height: 2.7rem
}

.f-icon-s {
	font-size: 2rem;
	line-height: 2rem
}

.list-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	display: inline-block;
}

/* ------------------------
   Testimonial
------------------------*/
.testimonial-carousel .carousel-inner {
	z-index: 9;
}

.testimonial-carousel .controls li {
	animation: leftRight 1.2s infinite;
	animation-duration: 5s;
	width: 70px;
	position: absolute;
	border-radius: 100%;
	z-index: 99;
}

.testimonial-carousel .controls li.active {
	width: auto;
}

.testimonial-carousel .controls li:nth-child(1) {
	left: 0;
	top: 0;
}

.testimonial-carousel .controls li:nth-child(2) {
	left: 10%;
	top: 30%;
}

.testimonial-carousel .controls li:nth-child(3) {
	left: 0;
	bottom: 30%;
	animation: topBottom 1.2s infinite;
	animation-duration: 5s;
}

.testimonial-carousel .controls li:nth-child(4) {
	left: 10%;
	bottom: 0;
}

.testimonial-carousel .controls li:nth-child(5) {
	right: 0;
	top: 0;
}

.testimonial-carousel .controls li:nth-child(6) {
	right: 10%;
	top: 30%;
}

.testimonial-carousel .controls li:nth-child(7) {
	right: 0;
	bottom: 30%;
	animation: topBottom 1.2s infinite;
	animation-duration: 5s;
}

.testimonial-carousel .controls li:nth-child(8) {
	right: 10%;
	bottom: 0;
}

/* ------------------------
Other
------------------------*/
.clients-logo img {
	opacity: 0.2;
}

.clients-logo img:hover {
	opacity: 1;
}

#particles-js {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}

.list-group-item-action:focus, .list-group-item-action:hover {
	color: var(--alexpro-primary-color);
	background-color: inherit;
}

.page-item.active .page-link {
	background-color: var(--alexpro-primary-color);
	color: #ffffff !important;
	border-color: var(--alexpro-primary-color);
}

.page-item a.page-link:hover {
	color: #ffffff !important;
	background-color: var(--alexpro-primary-color);
	border-color: var(--alexpro-primary-color);
}

.link-title {
	color: var(--alexpro-dark-color)
}

.link-title:hover {
	color: var(--alexpro-primary-color)
}

.line-h-0 {
	line-height: 0;
}

.la {
	line-height: inherit
}

.bg-dark hr, .bg-primary hr {
	border-top-color: rgba(255, 255, 255, 0.2);
}

/* ------------------------
   Responsive
------------------------*/
@media (max-width : 991.98px) {
	.hero-shape3:before {
		height: 40%;
		top: -8%;
	}

}

@media (max-width : 767.98px) {
	h1, .h1 {
		font-size: calc(1.575rem + 3.9vw);
	}

	h2, .h2 {
		font-size: 2rem;
	}

	h2 span.d-block {
		display: inline !important;
	}

	.testimonial-carousel .controls li {
		width: 30% !important;
		text-align: center;
		margin-top: 1rem;
		position: relative;
		left: inherit !important;
		right: inherit !important;
		top: inherit !important;
		bottom: inherit !important;
	}

	.testimonial-carousel .controls li img {
		width: 60px;
	}

	.countdown > li span {
		font-size: 50px;
		line-height: 50px;
	}

	.countdown > li p {
		font-size: 16px;
		line-height: 24px;
	}

}

@media (max-width : 575.98px) {
	.countdown > li span {
		font-size: 35px;
		line-height: 35px;
	}

	.countdown > li p {
		font-size: 15px;
	}

}