/*----------------------------------------------
Typography
----------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap");

:root {
	--body-font: "Outfit", sans-serif;
	--heading-font: "Space Grotesk", sans-serif;
	--primary-color: #635BFF;
	--heading-color: #060607;
	--black: #060607;
	--grayish-blue: #929cbf;
	--btn-after-bg: #5655ef;
	--btn-after-bg: #7b75ff;
	--white: #ffffff;
	--magenta: #b125c0;
	--blue: #0057ff;
	--orange: #f6b91c;
	--bg-color1: transparent;
	--bg-color2: #ffffff;
	--bg-color3: #ffffff;
	--bg-color4: #0a1c3a;
	--bg-color5: #ffffff;
	--bg-color6: #EBEBFD;
	--body-color: #0d0c22;
	--border-color1: #e5e7eb;
	--border-color2: #DCD8E8;
	--border-color3: #e1f1ee;
	--primary-color-opacity-low: #EBEBFD;
	--primary-color-opacity-low2: #D0CEFD;
	--shadow1: 0px 7px 6px 0px rgba(0, 15, 44, 0.19), inset -1px 0px 27px 0px rgba(0, 0, 0, 0.29);
	--shadow2: 0px 3px 5px 0px rgba(0, 0, 0, 0.10);
	--shadow3: 0px 0px 5px 0px rgba(0, 0, 0, 0.10);
	--transition: all .3s ease-in-out;
}

.dark-theme {
	--bg-color1: #000000;
	--bg-color2: #111827;
	--bg-color3: #1F2937;
	--bg-color5: #212837;
	--bg-color6: #111827;
	--heading-color: #ffffff;
	--border-color1: #37333e;
}

.dark-theme p {
	color: #d1cbdb;
}

.dark-theme .form-control,
.dark-theme .form-select {
	color: var(--white);
	border: 1px solid var(--bg-color3);
}

.dark-theme .cmn-btn3 {
	background-color: var(--bg-color3);
	border-color: var(--bg-color2);
	color: var(--white);
}

.dark-theme .section-subtitle::after {
	background: linear-gradient(90deg, #30185f, rgba(217, 217, 217, 0));
}

.dark-theme .shape1 {
	position: absolute;
	max-width: 800px;
	height: 800px;
	background: linear-gradient(0deg, #D25EA4, #635BFF, #D25EA4, #635BFF);
	border-radius: 50%;
	filter: blur(150px);
	width: 100%;
	transform: translate(-50%, -50%);
	top: 50%;
	left: 50%;
	opacity: 0.3;
	z-index: -1;
}

.dark-theme .shape2 {
	position: absolute;
	max-width: 700px;
	height: 400px;
	background: linear-gradient(0deg, #D25EA4, #635BFF, #D25EA4, #635BFF);
	border-radius: 50%;
	filter: blur(150px);
	width: 100%;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	opacity: 0.4;
	z-index: -1;
}

.dark-theme .shape3 {
	position: absolute;
	max-width: 700px;
	height: 400px;
	background: linear-gradient(0deg, #D25EA4, #635BFF, #D25EA4, #635BFF);
	border-radius: 50%;
	filter: blur(150px);
	width: 100%;
	top: 50%;
	transform: translateY(-50%);
	right: 0;
	opacity: 0.4;
	z-index: -1;
}

.dark-theme .shape4 {
	position: absolute;
	max-width: 700px;
	height: 400px;
	background: linear-gradient(0deg, #D25EA4, #635BFF, #D25EA4, #635BFF);
	border-radius: 50%;
	filter: blur(150px);
	width: 100%;
	top: 0;
	right: 0;
	opacity: 0.4;
	z-index: -1;
}

.dark-theme .shape5 {
	position: absolute;
	max-width: 700px;
	height: 400px;
	background: linear-gradient(0deg, #D25EA4, #635BFF, #D25EA4, #635BFF);
	border-radius: 50%;
	filter: blur(150px);
	width: 100%;
	bottom: 0;
	left: 0;
	opacity: 0.4;
	z-index: -1;
}

/*----------------------------------------------
Dark theme section end
----------------------------------------------*/
/*----------------------------------------------
Reset section start
----------------------------------------------*/
::-moz-selection {
	color: #fff;
	background: #635BFF;
}

::selection {
	color: #fff;
	background: #635BFF;
}

/* preloader-start */
#preloader {
	position: fixed;
	width: 100%;
	height: 100vh;
	z-index: 99999;
	background-color: var(--black);
}

@keyframes animateC {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

@keyframes animate {
	0% {
		transform: rotate(45deg);
	}

	100% {
		transform: rotate(405deg);
	}
}

#preloader .loader {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 150px;
	height: 150px;
	background: transparent;
	border: 3px solid var(--primary-color-opacity-low);
	border-radius: 50%;
	text-align: center;
	line-height: 150px;
	font-size: 20px;
	color: var(--primary-color);
	letter-spacing: 2px;
	text-transform: uppercase;
	text-shadow: 0 0 10px var(--primary-color);
	box-shadow: var(--shadow3);
}

#preloader .loader::before {
	content: "";
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	border: 3px solid transparent;
	border-top: 3px solid var(--primary-color);
	border-right: 3px solid var(--primary-color);
	border-radius: 50%;
	animation: animateC 2s linear infinite;
}

#preloader .loader span {
	display: block;
	position: absolute;
	top: calc(50% - 2px);
	left: 50%;
	width: 50%;
	height: 4px;
	background: transparent;
	transform-origin: left;
	animation: animate 2s linear infinite;
}

#preloader .loader span::before {
	content: "";
	position: absolute;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: var(--primary-color);
	top: -6px;
	right: -6px;
	box-shadow: 0 0 20px 5px var(--primary-color);
}

/* preloader-end */
.rtl {
	direction: rtl;
}

.scroll-up {
	position: fixed;
	bottom: 40px;
	right: 40px;
	z-index: 99999;
}

.rtl .scroll-up {
	left: 50px;
	right: auto;
}

@media (max-width: 767px) {
	.scroll-up {
		bottom: 50px;
		right: 20px;
	}

	.rtl .scroll-up {
		left: 20px;
	}
}

.scroll-up i {
	color: #fff;
	height: 40px;
	width: 40px;
	background: var(--btn-bg1);
	border-radius: 4px;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: var(--transition);
}

.scroll-up i:hover {
	background: var(--btn-bg2);
}

*,
*::after,
*::before {
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}

ul,
ol {
	list-style: none;
	margin: 0;
	padding: 0;
}

h1,
h2,
h3,
h4,
h5 {
	font-family: var(--heading-font);
	font-weight: 500;
	line-height: 1.3;
	color: var(--heading-color);
}

h1 {
	font-size: 50px;
	margin-bottom: 25px;
	font-weight: 600;
	line-height: 70px;
	text-transform: capitalize;
}

h2 {
	font-size: 36px;
	text-transform: capitalize;
	margin-bottom: 10px;
	color: var(--heading-color);
}

h3 {
	font-size: 26px;
	margin-bottom: 10px;
}

h4 {
	font-size: 22px;
	text-transform: capitalize;
	margin-bottom: 5px;
}

h5 {
	font-size: 18px;
	margin-bottom: 5px;
}

h6 {
	font-size: 16px;
	line-height: 25px;
	font-weight: 500;
	margin-bottom: 0;
	color: var(--heading-color);
}

body {
	font-family: var(--body-font);
	line-height: 1.5;
	color: var(--body-color);
	font-size: 16px;
	overflow-x: hidden;
	background-color: var(--bg-color1);
}

body.dark-theme {
	color: #d1cbdb;
	background-image: none;
}

@media (max-width: 991px) {
	body {
		padding-bottom: initial;
	}
}

html {
	scroll-behavior: smooth;
	overflow-x: hidden;
}

textarea.form-control {
	height: initial;
}

.form-control {
	color: var(--black);
}

.form-select {
	color: var(--body-color);
}

.form-control,
.form-select {
	border-radius: 5px;
	background-color: var(--bg-color3);
	border: 1px solid var(--border-color1);
	height: 45px;
}

.form-control:focus,
.form-select:focus {
	box-shadow: 0 0 0 4px rgba(99, 91, 255, 0.1);
	border: 1px solid var(--primary-color);
	background-color: var(--secondary-color);
}

.form-check label,
.form-check-input {
	cursor: pointer;
}

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

.form-check-input:focus {
	border-color: var(--primary-color);
	box-shadow: none;
}

.rtl .form-check {
	padding-left: auto;
	padding-right: 1.5em;
}

.rtl .form-check .form-check-input {
	float: right;
	margin-right: -1.5em;
}

.form-select {
	background-image: url(../images/accordion/arrow-down.png);
	background-repeat: no-repeat;
}

.input-group-text {
	width: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: none;
	background: var(--secondary-color);
}

/*----------------------------------------------
intlTelInput section start
----------------------------------------------*/
.iti {
	display: flex;
}

.iti__selected-flag {
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
}

.iti__country-list {
	box-shadow: var(--shadow2);
	border: 1px solid var(--border-color1);
	border-radius: 5px;
}

.iti-mobile .iti__country-list {
	z-index: 9999;
}

.rtl .iti--allow-dropdown .iti__flag-container,
.rtl .iti--separate-dial-code .iti__flag-container {
	right: 0;
	left: auto;
}

.rtl .iti__selected-flag {
	border-top-left-radius: 0;
	border-top-right-radius: 10px;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 10px;
}

.rtl .iti--allow-dropdown input,
.rtl .iti--allow-dropdown input[type=tel],
.rtl .iti--allow-dropdown input[type=text],
.rtl .iti--separate-dial-code input,
.rtl .iti--separate-dial-code input[type=tel],
.rtl .iti--separate-dial-code input[type=text] {
	padding-left: 6px !important;
	padding-right: 96px;
}

.dark-theme .iti__country-list {
	background-color: var(--bg-color3);
	border-color: var(--bg-color3);
	color: var(--white);
}

.dark-theme .iti__country.iti__highlight {
	background-color: var(--primary-color);
}

/*----------------------------------------------
intlTelInput end
----------------------------------------------*/
span.select2.select2-container.select2-container--default {
	width: 100% !important;
}

.select2-container .select2-selection--single,
.select2-container .select2-selection--multiple {
	border: 1px solid transparent;
}

.select2-container .select2-selection--single:focus,
.select2-container .select2-selection--multiple:focus {
	border: 1px solid var(--primary-color);
}

.select2-container .select2-dropdown {
	border: 1px solid var(--border-color2);
}

.select2-container .select2-dropdown .select2-search__field {
	border-radius: 5px;
	border: 1px solid var(--border-color2);
	outline: 0;
}

.select2-container .select2-dropdown .select2-search__field:focus-visible {
	border-color: var(--primary-color);
}

.select2-results__option {
	border-radius: 5px;
}

.select2-container--default .select2-results__option--selected {
	background: var(--primary-color);
	color: var(--white);
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
	background: var(--primary-color);
}

.select2-container--default .select2-results>.select2-results__options {
	text-transform: capitalize;
	padding: 5px;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
	border: 1px solid var(--primary-color);
	box-shadow: 0 0 0 4px rgba(5, 160, 129, 0.1);
}

.select2-container--default .select2-selection--multiple {
	border: 1px solid var(--border-color2);
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
	padding-right: 10px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
	border-color: var(--primary-color) transparent transparent transparent;
	border-width: 5px 6px 0 6px;
	margin-left: -10px;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
	border-color: transparent transparent var(--primary-color) transparent;
	border-width: 0 6px 5px 6px;
}

.rtl .select2-container--default .select2-selection--single .select2-selection__arrow {
	left: 1px;
}

.rtl .select2-container .select2-selection--single .select2-selection__rendered {
	text-align: right;
}

.breadcrumb {
	display: flex;
	justify-content: center;
}

.breadcrumb .breadcrumb-item+.breadcrumb-item::before {
	content: "\f105";
	color: var(--black);
	font-family: "Font Awesome 6 Pro";
	font-weight: 400;
}

.breadcrumb .breadcrumb-item.active {
	color: var(--primary-color);
	text-transform: capitalize;
}

.rtl .breadcrumb-item+.breadcrumb-item::before {
	float: right;
	padding-left: var(--bs-breadcrumb-item-padding-x);
	transform: rotate(180deg);
}

.dark-theme .breadcrumb .breadcrumb-item+.breadcrumb-item::before {
	color: var(--white);
}

p {
	color: #0d0c22;
	margin-bottom: 10px;
	line-height: 1.4;
}

a {
	color: inherit;
	text-decoration: none;
	transition: var(--transition);
}

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

.link {
	text-decoration: underline;
	color: var(--primary-color);
	transition: var(--transition);
}

.link:hover {
	text-decoration: none;
}

button {
	background: none;
	border: none;
	padding: 0;
}

img {
	max-width: 100%;
	height: auto;
}

figure {
	margin: 0;
}

.logo {
	max-width: 100px;
	min-width: 100px;
}

.rtl .logo {
	margin-right: 0;
	margin-left: var(--bs-navbar-brand-margin-end);
}

.footer-logo {
	max-width: 100px;
	min-width: 100px;
}

.cmn-scroll {
	max-height: 255px;
	overflow: scroll;
	padding-right: 5px;
	padding-top: 10px;
}

::-webkit-scrollbar {
	width: 3px;
	height: 6px;
}

::-webkit-scrollbar-thumb {
	border-radius: 2px;
	background: var(--primary-color);
	visibility: hidden;
	opacity: 0;
}

:hover::-webkit-scrollbar-thumb {
	visibility: visible;
	opacity: 1;
}

body::-webkit-scrollbar {
	width: 8px;
}

body::-webkit-scrollbar-thumb {
	visibility: visible;
	opacity: 1;
}

body::-webkit-scrollbar-thumb:hover {
	background-color: var(--black);
}

.owl-theme .owl-dots .owl-dot span {
	width: 10px;
	height: 5px;
	background: var(--primary-color);
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
	background: var(--primary-color);
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots span {
	background: var(--primary-color);
	width: 30px;
	height: 5px;
}

.owl-theme .owl-dots .owl-dot span {
	transition: all 0.5s ease-in-out;
}

/*----------------------------------------------
Reset section end
----------------------------------------------*/
/*----------------------------------------------
Reuseble style section start
----------------------------------------------*/
.shape1 {}

.search-box {
	position: relative;
	display: flex;
	align-items: center;
}

.search-box .form-control {
	border-radius: 5px;
	background-color: var(--bg-color3);
	padding-right: 50px;
}

.search-box .form-control:focus {
	border-color: var(--primary-color);
}

.search-box .search-btn {
	position: absolute;
	background-color: var(--primary-color);
	width: 45px;
	height: 90%;
	border-radius: 5px;
	right: 2px;
}

.search-box .search-btn i {
	color: var(--white);
	font-size: 18px;
}

.rtl .search-box .search-btn {
	left: 2px;
	right: auto;
}

.rtl .search-box .form-control {
	padding-right: 10px;
	padding-left: 50px;
}

.offcanvas {
	background: var(--bg-color5);
}

.offcanvas.offcanvas-end {
	border-left: 1px solid var(--border-color1);
}

.offcanvas-backdrop {
	background-color: rgba(228, 235, 248, 0.4784313725);
	-webkit-backdrop-filter: blur(8.8px);
	backdrop-filter: blur(8.8px);
}

.offcanvas-backdrop.show {
	opacity: 1;
}

.animation1 {
	position: absolute;
	animation-name: animation1;
	animation-duration: 3s;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
}

@keyframes animation1 {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

.section-header {
	margin-bottom: 50px;
}

.top-right-radius-0 {
	border-top-right-radius: 0 !important;
}

.top-left-radius-0 {
	border-top-left-radius: 0 !important;
}

.bottom-right-radius-0 {
	border-bottom-right-radius: 0 !important;
}

.bottom-left-radius-0 {
	border-bottom-left-radius: 0 !important;
}

.highlight {
	color: var(--primary-color);
}

.dark-theme .highlight {
	color: var(--primary-color);
}

.bg-highlight {
	background: var(--primary-color) !important;
}

.text-gradient {
	background-image: linear-gradient(90deg, #3f3eed, #ddcd86);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.cmn-btn {
	position: relative;
	background: var(--primary-color);
	padding: 8px 15px;
	border-radius: 5px;
	border: 1px solid var(--primary-color);
	transition: all 0.3s ease-in-out;
	font-size: 16px;
	color: var(--white);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 500;
	text-transform: capitalize;
	font-family: var(--heading-font);
	z-index: 1;
}

.cmn-btn:hover {
	color: var(--white);
	background-color: var(--btn-after-bg);
	border-color: var(--btn-after-bg);
}

.cmn-btn:hover::after {
	height: 100%;
	width: 100%;
}

.cmn-btn::after {
	position: absolute;
	content: "";
	height: 0;
	width: 100%;
	top: 0;
	left: 0;
	background-color: var(--btn-after-bg);
	transition: var(--transition);
	border-radius: 5px;
	z-index: -1;
}

.cmn-btn2 {
	background: var(--btn-bg3);
	padding: 8px 15px;
	border-radius: 8px;
	transition: all 0.3s ease-in-out;
	font-size: 18px;
	color: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 500;
	text-transform: capitalize;
}

.cmn-btn2:hover {
	color: var(--white);
	background: var(--btn-bg4);
}

.cmn-btn3 {
	position: relative;
	z-index: 1;
	background: var(--white);
	padding: 8px 15px;
	border-radius: 5px;
	transition: var(--transition);
	font-size: 16px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-transform: capitalize;
	border: 1px solid var(--primary-color);
}

.cmn-btn3:hover {
	color: var(--white);
	background: var(--btn-after-bg);
}

.cmn-btn3:hover::after {
	height: 100%;
	width: 100%;
}

.cmn-btn3::after {
	position: absolute;
	content: "";
	height: 0;
	width: 100%;
	top: 0;
	left: 0;
	background-color: var(--btn-after-bg);
	transition: var(--transition);
	border-radius: 5px;
	z-index: -1;
}

.login-btn {
	display: flex;
	padding: 25px 15px;
	transition: all 0.5s ease-in-out;
	font-size: 15px;
	margin-left: 5px;
	color: var(--heading-color);
	font-weight: 700;
	font-family: var(--heading-font);
}

.get-start-btn {
	position: relative;
	padding: 8px 15px;
	border-radius: 5px;
	font-size: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 500;
	background: var(--primary-color);
	color: var(--white);
	transition: var(--transition);
	text-transform: capitalize;
	border: 1px solid var(--primary-color);
	z-index: 1;
}

.get-start-btn:hover {
	background-color: var(--btn-after-bg);
	color: var(--white);
	border: 1px solid var(--btn-after-bg);
}

.get-start-btn:hover::after {
	height: 100%;
	width: 100%;
}

.get-start-btn::after {
	position: absolute;
	content: "";
	height: 0;
	width: 100%;
	top: 0;
	left: 0;
	background-color: var(--btn-after-bg);
	transition: var(--transition);
	border-radius: 5px;
	z-index: -1;
}

.alert {
	display: flex;
	align-items: center;
	padding: 10px 15px;
	border-radius: 15px;
	border-left: 15px solid;
	box-shadow: 0px 3px 3px #BABABA;
}

.alert .icon-area i {
	font-size: 30px;
	margin-right: 15px;
}

.alert .title {
	font-size: 16px;
	text-transform: capitalize;
	font-weight: 600;
}

.alert .title {
	font-size: 18px;
}

.alert .title,
.alert .description {
	color: var(--heading-color);
}

.alert-dismissible .btn-close {
	position: absolute;
	top: 50%;
	right: 30px;
	z-index: 2;
	transform: translateY(-50%);
	padding: 0;
	background: none;
	height: initial;
	width: initial;
}

.alert-dismissible .btn-close i {
	font-size: 24px;
}

.alert-success {
	color: #3AC279;
	background: #C5F7DC;
	border-color: #C5F7DC;
	border-left-color: #3ac279;
}

.alert-success .btn-close {
	color: #3AC279;
}

.alert-danger {
	color: #E9594C;
	background: #FFCFCB;
	border-color: #FFCFCB;
	border-left-color: #E9594C;
}

.alert-danger .btn-close {
	color: #E9594C;
}

.alert-warning {
	color: #E89F29;
	background: #FFE8C3;
	border-color: #FFE8C3;
	border-left-color: #E89F29;
}

.alert-warning .btn-close {
	color: #E89F29;
}

.cmn-tabs {
	display: flex;
	justify-content: center;
	margin-bottom: 30px;
}

.cmn-tabs .nav-pills {
	background-color: var(--primary-color-opacity-low);
	padding: 5px 7px;
	border-radius: 5px;
}

.cmn-tabs .nav-pills .nav-link {
	padding: 3px 20px;
	font-size: 16px;
	font-weight: 600;
	text-transform: capitalize;
	border-radius: 5px;
	color: var(--heading-color);
	font-family: var(--heading-font);
}

.cmn-tabs .nav-pills .nav-link.active,
.cmn-tabs .nav-pills .show>.nav-link {
	background: var(--primary-color);
	color: var(--white);
}

.video_play_btn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.video_play_btn i {
	color: var(--white);
	background: var(--primary-color);
	height: 75px;
	width: 75px;
	font-size: 25px;
	transition: all 0.3s ease-in;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

section {
	padding: 100px 0;
}

@media (max-width: 991px) {
	section {
		padding: 50px 0;
	}
}

.pro-title {
	overflow: hidden;
	text-overflow: ellipsis;
	color: var(--heading-color);
	-webkit-box-orient: vertical;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	font-size: 16px;
	text-transform: capitalize;
	font-weight: 500;
	margin-bottom: 0;
	font-family: var(--heading-font);
}

.cmn-para-text {
	max-width: 600px;
	font-size: 18px;
}

.section-title {
	max-width: 555px;
	margin-bottom: 20px;
}

.section-subtitle {
	position: relative;
	font-size: 20px;
	color: var(--primary-color);
	font-weight: 500;
	max-width: 662px;
	display: inline-block;
	font-family: "Meddon", cursive;
	margin-bottom: 15px;
	margin-left: 20px;
	text-transform: capitalize;
}

.section-subtitle::after {
	position: absolute;
	z-index: -1;
	content: "";
	top: 50%;
	transform: translateY(-50%);
	left: -20px;
	height: 30px;
	width: 90px;
	background: linear-gradient(90deg, #d8d8ff, rgba(217, 217, 217, 0));
	border-top-left-radius: 3px;
	border-bottom-left-radius: 3px;
}

.social-area ul li a {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	margin-right: 14px;
	border: 1px solid var(--border-color1);
	border-radius: 8px;
}

.social-area ul li a:hover {
	border-color: var(--primary-color);
	background-color: var(--primary-color);
}

.star ul li i {
	color: var(--primary-color);
}

.star_area li .active {
	color: var(--primary-color);
}

.opacity {
	opacity: 0.5;
}

.badge {
	background: var(--secondary-color2);
	font-weight: 600;
	text-transform: uppercase;
	margin-left: 8px;
	padding: 3px;
	border-radius: 3px;
}

.badge:hover {
	background: var(--primary-color);
}

.rtl .badge {
	margin-right: 8px;
	margin-left: 0;
}

.cmn-hr {
	background-color: transparent;
	background-image: linear-gradient(90deg, rgba(206, 211, 246, 0) 0, #CED3F6 38%, #CED3F6 64%, rgba(206, 211, 246, 0) 99%);
	opacity: 0.3;
	border-top: initial;
	height: 1px;
	margin: 50px 0;
}

hr.divider {
	margin-top: 50px;
	padding: 0;
	overflow: visible;
	border: none;
	border-top: 1px solid var(--border-color2);
	color: #6e6d7a;
	text-align: center;
	opacity: 0.75;
}

hr.divider:after {
	content: "Or";
	display: inline-block;
	position: relative;
	top: -12px;
	padding: 0 16px;
	background: var(--bg-color2);
	color: var(--heading-color);
}

.dropdown-menu {
	max-height: 30rem;
	min-width: 13rem;
	overflow-y: auto;
	border-radius: 5px;
	padding: 8px;
	background: var(--white);
	border: 1px solid var(--border-color1);
	box-shadow: var(--shadow2);
}

.dropdown-menu .dropdown-item {
	border-radius: 5px;
	padding: 3px 8px;
	transition: none !important;
	font-size: 14px;
	font-family: "Roboto", sans-serif;
	margin-bottom: 5px;
	text-transform: capitalize;
	font-weight: 500;
}

.dropdown-menu .dropdown-item:hover {
	background: var(--primary-color);
	color: var(--white) !important;
}

.mt-10 {
	margin-top: 10px;
}

.mt-15 {
	margin-top: 15px;
}

.mt-20 {
	margin-top: 20px;
}

.mt-25 {
	margin-top: 25px;
}

.mt-30 {
	margin-top: 30px;
}

.mt-35 {
	margin-top: 35px;
}

.mt-40 {
	margin-top: 40px;
}

.mt-45 {
	margin-top: 45px;
}

.mt-50 {
	margin-top: 50px;
}

.mt-60 {
	margin-top: 60px;
}

.mt-70 {
	margin-top: 70px;
}

.mt-75 {
	margin-top: 75px;
}

.mt-80 {
	margin-top: 80px;
}

.mt-100 {
	margin-top: 100px;
}

.mt-150 {
	margin-top: 150px;
}

.mt-190 {
	margin-top: 190px;
}

/* margin_bottom */
.mb-10 {
	margin-bottom: 10px;
}

.mb-15 {
	margin-bottom: 15px;
}

.mb-20 {
	margin-bottom: 20px;
}

.mb-25 {
	margin-bottom: 25px;
}

.mb-30 {
	margin-bottom: 30px;
}

.mb-35 {
	margin-bottom: 35px;
}

.mb-40 {
	margin-bottom: 40px;
}

.mb-45 {
	margin-bottom: 45px;
}

.mb-50 {
	margin-bottom: 50px;
}

.mb-60 {
	margin-bottom: 60px;
}

.mb-65 {
	margin-bottom: 65px;
}

.mb-75 {
	margin-bottom: 75px;
}

.mb-70 {
	margin-bottom: 70px;
}

.mb-80 {
	margin-bottom: 80px;
}

.mb-100 {
	margin-bottom: 100px;
}

.mb-150 {
	margin-bottom: 150px;
}

/* padding_top */
.pt-15 {
	padding-top: 15px;
}

.pt-20 {
	padding-top: 20px;
}

.pt-25 {
	padding-top: 25px;
}

.pt-30 {
	padding-top: 30px;
}

.pt-35 {
	padding-top: 35px;
}

.pt-40 {
	padding-top: 40px;
}

.pt-45 {
	padding-top: 45px;
}

.pt-50 {
	padding-top: 50px;
}

.pt-75 {
	padding-top: 75px;
}

.pt-60 {
	padding-top: 60px;
}

.pt-80 {
	padding-top: 80px;
}

.pt-100 {
	padding-top: 100px;
}

.pt-150 {
	padding-top: 150px;
}

.pt-190 {
	padding-top: 190px;
}

.pt-200 {
	padding-top: 200px;
}

.pb-15 {
	padding-bottom: 15px;
}

.pb-20 {
	padding-bottom: 20px;
}

.pb-25 {
	padding-bottom: 25px;
}

.pb-30 {
	padding-bottom: 30px;
}

.pb-35 {
	padding-bottom: 35px;
}

.pb-40 {
	padding-bottom: 40px;
}

.pb-45 {
	padding-bottom: 45px;
}

.pb-50 {
	padding-bottom: 50px;
}

.pb-65 {
	padding-bottom: 65px;
}

.pb-70 {
	padding-bottom: 70px;
}

.pb-75 {
	padding-bottom: 75px;
}

.pb-80 {
	padding-bottom: 80px;
}

.pb-100 {
	padding-bottom: 100px;
}

.pb-150 {
	padding-bottom: 150px;
}

/*----------------------------------------------
Reuseble style section end
----------------------------------------------*/
/*----------------------------------------------
01. Nav section start
----------------------------------------------*/
.navbar.active {
	background-color: var(--bg-color5);
	box-shadow: var(--shadow2);
	z-index: 999;
}

.navbar.active .navbar-nav .nav-link {
	color: var(--heading-color);
}

.navbar {
	transition: var(--transition);
	padding: 20px;
	z-index: 9999;
}

.navbar .navbar-toggler {
	background: var(--primary-color);
	color: var(--white);
	height: 40px;
	width: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	border: 1px solid var(--primary-color);
	border-radius: 62% 38% 46% 54%/60% 63% 37% 40%;
	box-shadow: none;
}

.navbar .cmn-btn-close {
	font-size: 18px;
	background: var(--primary-color);
	width: 40px;
	height: 40px;
	border-radius: 62% 38% 46% 54%/60% 63% 37% 40%;
	color: var(--white);
	padding: 0;
	margin: 0;
	opacity: 1;
	box-shadow: none;
}

.navbar .navbar-nav .nav-link {
	font-size: 16px;
	font-weight: 500;
	color: var(--heading-color);
	text-transform: capitalize;
	padding: 12px 15px;
	transition: var(--transition);
	border-radius: 5px;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
	color: var(--primary-color);
}

.navbar .login-icon {
	margin-right: 5px;
	color: var(--primary-color);
}

.navbar .nav-right {
	font-size: 16px;
	font-weight: 500;
	color: var(--heading-color);
}

.navbar .nav-right .custom-nav {
	display: flex;
	align-items: center;
	gap: 15px;
}

.navbar .toggle-btn {
	font-size: 20px;
	cursor: pointer;
}

/*----------------------------------------------
user nav Profile start
----------------------------------------------*/
.profile-box {
	position: relative;
	display: inline-block;
	width: auto;
	padding: 0;
}

.profile-box:hover .user-dropdown {
	opacity: 1;
	visibility: visible;
	top: 58px;
}

.profile-box .profile {
	cursor: pointer;
	border: 1px solid var(--border-color1);
	padding: 2px;
	background-color: var(--white);
	border-radius: 50%;
}

.profile-box .profile img {
	width: 40px;
	height: 40px;
	border-radius: 50%;
}

.profile-box .user-dropdown {
	background: var(--white);
	box-shadow: var(--shadow2);
	width: 200px;
	overflow: hidden;
	padding-top: 0;
	padding-left: 0;
	position: absolute;
	right: 0;
	top: 0%;
	border-radius: 5px;
	visibility: hidden;
	transition: 0.2s;
	transition: var(--transition);
	opacity: 0;
	z-index: 3;
}

.profile-box .user-dropdown li {
	list-style: none;
}

.profile-box .user-dropdown li button {
	width: 190px;
	height: 38px;
	padding: 5px;
	margin: 5px;
	margin-bottom: 0;
	border-radius: 5px;
	font-size: 13px;
}

.profile-box .user-dropdown li a {
	color: var(--heading-color);
	font-weight: 400;
	padding: 5px;
	margin: 5px;
	border-radius: 5px;
	display: flex;
	transition: 0.4s;
}

.profile-box .user-dropdown li a:active,
.profile-box .user-dropdown li a:focus,
.profile-box .user-dropdown li a:hover {
	background-color: var(--primary-color-opacity-low);
}

.profile-box .user-dropdown li a:last-child {
	border-bottom: none;
}

.profile-box .user-dropdown li a i {
	width: 25px;
	height: 25px;
	border-radius: 5px;
	color: var(--primary-color);
	margin: 0 5px;
	font-size: 16px;
	text-align: center;
}

.rtl .profile-box .user-dropdown {
	left: 0;
	right: auto;
}

/*----------------------------------------------
user nav Profile end
----------------------------------------------*/
@media (min-width: 992px) {
	.navbar {
		padding: 15px 0;
	}

	.navbar-expand-lg .navbar-toggler {
		display: none !important;
	}
}

@media (max-width: 991px) {
	.navbar .navbar-nav .nav-link {
		padding: 15px;
	}

	.navbar .nav-right {
		margin-right: 70px;
		position: absolute;
		right: 0;
	}
}

.rtl .navbar .navbar-nav .nav-link .login-icon {
	margin-right: 0;
	margin-left: 5px;
	transform: rotate(180deg);
}

.rtl .navbar .nav-right {
	left: 0;
	right: auto;
	margin-left: 70px;
	margin-right: 0;
}

.dark-theme .profile-box .user-dropdown {
	background-color: var(--bg-color3);
}

.dark-theme .profile-box .user-dropdown li a:hover {
	background-color: var(--bg-color2);
}

/*----------------------------------------------
Nav end
----------------------------------------------*/
/*----------------------------------------------
02. Bottom Mobile, Tab Nav section start
----------------------------------------------*/
.bottom-nav {
	background: var(--bg-color5);
	justify-content: space-around;
	box-shadow: var(--shadow3);
	border-top-right-radius: 8px;
	border-top-left-radius: 8px;
	height: 55px;
	display: flex;
	align-items: center;
}

.bottom-nav .nav-item .nav-link {
	color: var(--heading-color);
	width: 45px;
	height: 45px;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: var(--transition);
}

.bottom-nav .nav-item .nav-link.active,
.bottom-nav .nav-item .nav-link:hover {
	color: var(--white);
	background: var(--primary-color);
	margin-top: -22px;
}

.bottom-nav .nav-item .nav-link i {
	font-size: 20px;
}

/*----------------------------------------------
Bottom Mobile, Tab Nav section end
----------------------------------------------*/
/*----------------------------------------------
03. Hero section start
----------------------------------------------*/
.hero-section {
	background-color: var(--bg-color1);
	position: relative;
	padding: 250px 0 220px;
	overflow: hidden;
	z-index: 0;
}

.hero-section::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: -1;
	background: url(../images/background/banner_bg2.jpg);
	background-repeat: no-repeat;
	background-size: cover;
}

.hero-section::before {
	content: "";
	font-family: "shape divider from ShapeDividers.com";
	position: absolute;
	z-index: 3;
	pointer-events: none;
	background-repeat: no-repeat;
	bottom: -0.1vw;
	left: -0.1vw;
	right: -0.1vw;
	top: -0.1vw;
	background-size: 100% 53px;
	background-position: 50% 100%;
	background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.28 2.17" preserveAspectRatio="none"><path d="M35.28 1.67c-3.07-.55-9.27.41-16.15 0-6.87-.4-13.74-.58-19.13.1v.4h35.28z" fill="%23ffffff"/><path d="M35.28 1.16c-3.17-.8-7.3.4-10.04.56-2.76.17-9.25-1.47-12.68-1.3-3.42.16-4.64.84-7.04.86C3.12 1.31 0 .4 0 .4v1.77h35.28z" opacity=".5" fill="%23ffffff"/><path d="M35.28.31c-2.57.84-7.68.3-11.8.43-4.1.12-6.85.61-9.57.28C11.18.69 8.3-.16 5.3.02 2.3.22.57.85 0 .87v1.2h35.28z" opacity=".5" fill="%23ffffff"/></svg>');
}

.hero-section .hero-para-text {
	font-size: 20px;
}

.hero-section .hero-btn-area {
	display: flex;
	margin-top: 25px;
	gap: 10px;
}

.hero-section .hero-image-area {
	position: relative;
	max-width: 450px;
	margin: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 1;
}

.hero-section .hero-image-area::after {
	position: absolute;
	content: "";
	width: 600px;
	height: 570px;
	background: url(../images/hero/hero-shape2.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	z-index: -1;
	animation: animation1 linear 15s infinite;
}

@media (max-width: 991px) {
	h1 {
		font-size: 38px;
		line-height: 50px;
	}

	.cmn-btn {
		font-size: 16px;
	}

	.cmn-btn2 {
		font-size: 16px;
	}

	.hero-section {
		padding: 130px 0 120px;
		text-align: center;
	}

	.hero-section .hero-para-text {
		font-size: 16px;
	}

	.hero-btn-area {
		justify-content: center;
	}
}

@media (max-width: 575px) {
	.dark-theme .hero-section {
		padding: 130px 0 70px;
	}
}

.rtl .hero-section::after {
	transform: rotate(180deg);
}

.rtl .hero-section .hero-btn-area .btn {
	margin-right: 0;
	margin-left: 10px;
}

.dark-theme .hero-section::before {
	background: none;
}

.dark-theme .hero-section::after {
	background: none;
}

/*----------------------------------------------
Hero section start
----------------------------------------------*/
/*----------------------------------------------
04. Feature section start
----------------------------------------------*/
.feature-section {
	position: relative;
	z-index: 0;
	background-color: var(--bg-color1);
}

.feature-box {
	display: flex;
	flex-direction: column;
	box-shadow: var(--shadow3);
	padding: 40px 25px;
	border-radius: 5px;
	gap: 15px;
	text-align: center;
	background-color: var(--bg-color2);
	margin-top: 50px;
}

.feature-box .icon-box {
	margin-top: -95px;
}

.feature-box .text-box .highlight {
	text-transform: capitalize;
	font-size: 16px;
	font-weight: 500;
}

.icon-box {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.icon-box .svg-icon {
	width: 110px;
	height: 110px;
	fill: var(--primary-color-opacity-low);
	stroke: none;
}

.icon-box .icon {
	position: absolute;
	color: var(--primary-color);
	font-size: 20px;
}

.icon-box .number {
	position: absolute;
	font-size: 20px;
	color: var(--primary-color);
}

@media (max-width: 991px) {
	h2 {
		font-size: 28px;
	}
}

.rtl .feature-box .icon-box {
	margin-right: 0;
	margin-left: 15px;
}

.dark-theme .icon-box .svg-icon {
	fill: var(--bg-color3);
}

/*----------------------------------------------
Feature section end
----------------------------------------------*/
/*----------------------------------------------
05. About section start
----------------------------------------------*/
.about-section {
	position: relative;
	z-index: 0;
	background-color: var(--bg-color1);
}

.about-section .about-image-area {
	text-align: center;
}

.about-section .about-image-area img {
	max-width: 550px;
	width: 100%;
}

.about-section .about-content .item-list-container {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.about-section .about-content .item-list-container .item {
	display: flex;
	gap: 10px;
}

.about-section .about-content .icon-box .svg-icon {
	width: 60px;
	height: 60px;
}

@media (max-width: 767px) {
	.about-section {
		text-align: center;
	}

	.about-section .about-content .item-list-container .item {
		flex-direction: column;
	}
}

/*----------------------------------------------
About section end
----------------------------------------------*/
/*----------------------------------------------
06. Qr section start
----------------------------------------------*/
.qr-section {
	position: relative;
	z-index: 0;
	background: var(--bg-color1);
}

.qr-section .qr-box {
	background: var(--white);
	box-shadow: var(--shadow2);
	width: 200px;
	border-radius: 8px;
}

.qr-section .qr-box img {
	border-radius: 8px;
}

@media (max-width: 767px) {
	.qr-section {
		text-align: center;
	}

	.qr-section .qr-box {
		margin: auto;
	}
}

/*----------------------------------------------
Qr section end
----------------------------------------------*/
/*----------------------------------------------
07. How it works section start
----------------------------------------------*/
.how-it-work {
	position: relative;
	z-index: 0;
	background-color: var(--bg-color1);
}

.how-it-work .how-it-work-item .thumbs-area img {
	border-radius: 8px;
}

.how-it-work .how-it-work-item .content-area .icon-area {
	position: relative;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

.how-it-work .how-it-work-item .content-area .icon-area .svg-icon {
	width: 120px;
	height: 140px;
}

.how-it-work .how-it-work-item .content-area .icon-area .cls-1,
.how-it-work .how-it-work-item .content-area .icon-area .cls-2,
.how-it-work .how-it-work-item .content-area .icon-area .cls-3 {
	fill: var(--primary-color);
}

.how-it-work .how-it-work-item .content-area .icon-area .cls-1 {
	opacity: 0.2;
}

.how-it-work .how-it-work-item .content-area .icon-area .cls-2 {
	opacity: 0.32;
}

.how-it-work .how-it-work-item .content-area .icon-area .cls-3 {
	fill-rule: evenodd;
}

.how-it-work .how-it-work-item .content-area .number {
	position: absolute;
	font-size: 20px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -70%);
	color: var(--white);
}

.how-it-work .how-it-work-item .content-area .text-area {
	background-color: var(--primary-color-opacity-low);
	padding: 20px;
	border-radius: 5px;
	text-align: center;
}

.how-it-work .how-it-work-item .content-area .text-area p {
	font-size: 18px;
}

.how-it-work .section-devider-area {
	padding: 10px 25%;
	margin: 0 auto;
}

@media (max-width: 991px) {
	.how-it-work .how-it-work-item .content-area .text-area p {
		font-size: 16px;
	}
}

@media (max-width: 575px) {
	.how-it-work .how-it-work-item .content-area .icon-area .svg-icon {
		width: 100px;
		height: 120px;
	}

	.how-it-work .how-it-work-item .content-area .icon-area .number {
		font-size: 18px;
	}

	.how-it-work .section-devider-area {
		display: none;
	}
}

.rtl .how-it-work .how-it-work-wrapper .how-it-work-item .section-header .number {
	margin-right: 0;
	margin-left: 15px;
}

.dark-theme .how-it-work .how-it-work-item .content-area .text-area {
	background-color: var(--bg-color2);
}

/*----------------------------------------------
How it works section end
----------------------------------------------*/
/*----------------------------------------------
08. Pricing section start
----------------------------------------------*/
.pricing-section {
	position: relative;
	z-index: 0;
	background-color: var(--bg-color1);
}

.pricing-box {
	position: relative;
	border-radius: 10px;
	background: var(--bg-color2);
	box-shadow: var(--shadow3);
	padding: 45px 32px 32px;
}

.pricing-box .featured-title {
	position: absolute;
	background: var(--primary-color);
	top: 15px;
	right: 15px;
	padding: 4px 15px;
	border-radius: 5px;
	color: var(--white);
	text-transform: capitalize;
}

.pricing-box .section-header {
	margin-bottom: 0;
}

.pricing-box .section-header .title-area {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 5px;
}

.pricing-box .section-header .icon-area {
	font-size: 24px;
	color: var(--primary-color);
}

.pricing-box .section-header .title {
	text-transform: capitalize;
	margin-bottom: 0;
}

.pricing-box .section-body {
	color: var(--heading-color);
}

.pricing-box .section-body .title {
	font-size: 20px;
	margin: 20px 0;
	font-family: var(--heading-font);
}

.pricing-box .section-body .title .price {
	font-weight: 500;
	font-size: 50px;
}

.pricing-box .section-body .pricing-feature {
	margin-bottom: 32px;
}

.pricing-box .section-body .pricing-feature li i {
	color: var(--primary-color);
	margin-right: 10px;
}

.pricing-box .section-body .pricing-feature li:not(:last-child) {
	margin-bottom: 16px;
}

.pricing-box .section-body .btn-area .cmn-btn2 {
	width: 100%;
}

.pricing-box .btn-area {
	display: flex;
	align-items: center;
	justify-content: center;
}

.pricing-box.featured {
	background-color: var(--primary-color-opacity-low);
}

.pricing-box.featured .section-header {
	border-color: var(--primary-color);
}

.prepaid-plan {
	background-color: var(--bg-color2);
	box-shadow: var(--shadow3);
	border-radius: 5px;
}

.prepaid-plan .section-body {
	display: flex;
	justify-content: space-between;
	padding: initial;
}

.prepaid-plan .price-area {
	padding: 15px;
	background-color: var(--black);
	color: var(--white);
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;
	width: 35%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.prepaid-plan .price-area .price-title {
	font-size: 40px;
	font-family: var(--heading-font);
	font-weight: 500;
	word-break: break-all;
}

.prepaid-plan .content-details {
	padding: 15px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.prepaid-plan .prepaid-title {
	font-size: 22px;
	font-weight: 600;
	font-family: var(--heading-font);
}

.prepaid-plan sup {
	font-size: 22px;
	text-transform: uppercase;
	font-weight: 600;
	color: var(--grayish-blue);
}

.prepaid-plan .prepaid-info {
	margin-bottom: 0;
}

.prepaid-plan .prepaid-info .highlight {
	font-weight: 600;
}

.prepaid-plan .btn-area {
	padding: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
}

@media (max-width: 1199px) {
	.prepaid-plan .prepaid-title {
		font-size: 20px;
	}

	.prepaid-plan .prepaid-title sup {
		font-size: 10px;
	}
}

@media (max-width: 991px) {
	.prepaid-plan .price-area .price-title {
		font-size: 28px;
	}

	.prepaid-plan sup {
		font-size: 18px;
	}
}

@media (max-width: 480px) {
	.prepaid-plan .section-body {
		flex-direction: column;
		text-align: center;
	}

	.prepaid-plan .section-body .price-area {
		width: 100%;
		border-radius: 10px;
	}
}

@media (max-width: 400px) {
	.cmn-tabs .nav-pills {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.cmn-tabs .nav-pills .nav-item {
		width: 100%;
	}

	.cmn-tabs .nav-pills .nav-item .nav-link {
		width: 100%;
	}
}

.rtl .pricing-box .section-body .pricing-feature li i {
	margin-right: 0;
	margin-left: 10px;
}

.rtl .pricing-box .featured-title {
	left: 15px;
	right: auto;
}

.rtl .prepaid-plan .price-area {
	border-top-right-radius: 10px;
	border-top-left-radius: 0;
	border-bottom-right-radius: 10px;
	border-bottom-left-radius: 0;
}

.dark-theme .pricing-box.featured {
	background-color: var(--bg-color3);
}

.dark-theme .cmn-tabs .nav-pills {
	background-color: var(--bg-color2);
}

.dark-theme .prepaid-plan .price-area {
	background-color: var(--bg-color3);
}

/*----------------------------------------------
Pricing section end
----------------------------------------------*/
/*----------------------------------------------
09. Testimonial section start
----------------------------------------------*/
.testimonial-section {
	position: relative;
	z-index: 0;
	background-color: var(--bg-color1);
}

.testimonial-section .testimonial-box {
	padding: 20px;
	border-radius: 15px;
	transition: var(--transition);
	display: flex;
	align-items: center;
	flex-direction: column;
}

.testimonial-section .testimonial-thumbs {
	border: 1px transparent;
}

.testimonial-section .testimonial-thumbs img {
	width: 110px;
	height: 110px;
	border-radius: 50%;
	filter: grayscale(1);
}

.testimonial-section .owl-item.active.center .testimonial-thumbs img {
	width: 110px;
	height: 110px;
	border-radius: 50%;
	filter: grayscale(0);
}

.testimonial-section .owl-item.active.center .testimonial-box {
	border: 1px solid var(--border-color1);
	background-color: var(--bg-color2);
}

.testimonial-section .quote-area {
	width: 25px;
	height: 25px;
}

.testimonial-section .quote-area:last-child {
	display: flex;
	justify-content: end;
}

.testimonial-section .owl-theme .owl-nav.disabled+.owl-dots {
	margin-top: 30px;
}

.dark-theme .testimonial-section .owl-item.active.center .testimonial-box {
	border-color: var(--bg-color2);
}

/*----------------------------------------------
Testimonial section end
----------------------------------------------*/
/*----------------------------------------------
10. Faq section start
----------------------------------------------*/
.faq-area {
	position: relative;
	z-index: 0;
	background-color: var(--bg-color1);
}

.faq-area .accordion-button {
	color: var(--heading-color);
	font-weight: 600;
	font-size: 18px;
	gap: 10px;
}

.faq-area .accordion-button:focus {
	box-shadow: none;
}

.faq-area .accordion-button:not(.collapsed) {
	box-shadow: none;
	background: var(--primary-color-opacity-low);
}

.accordion-item {
	margin: 10px 0;
	background: var(--bg-color1);
	border: none;
	border: none;
	border-bottom: 1px solid var(--border-color1);
}

.accordion-item:last-of-type {
	border-radius: 0;
}

.accordion-button {
	background: var(--bg-color1);
}

.accordion-button::after {
	background: url(../images/accordion/plus.png);
	width: 25px;
	height: 25px;
	background-color: var(--primary-color);
	background-size: 50%;
	background-repeat: no-repeat;
	background-position: center;
	border-radius: 8px;
}

.accordion-button:not(.collapsed)::after {
	background: url(../images/accordion/minus.png);
	width: 25px;
	height: 25px;
	background-color: var(--primary-color);
	background-size: 50%;
	background-repeat: no-repeat;
	background-position: center;
	border-radius: 8px;
}

.rtl .accordion-button {
	text-align: right;
}

.rtl .accordion-button::after {
	margin-right: auto;
	margin-left: 0;
}

.dark-theme .faq-area .accordion-button:not(.collapsed) {
	background-color: var(--bg-color2);
}

/*----------------------------------------------
10. Faq section start
----------------------------------------------*/
/*----------------------------------------------
11. Blog section start
----------------------------------------------*/
.blog-section {
	position: relative;
	z-index: 0;
	background-color: var(--bg-color1);
}

.blog-box {
	background: var(--bg-color1);
}

.blog-box:hover {
	box-shadow: none;
}

.blog-box:hover .img-box {
	overflow: hidden;
}

.blog-box:hover .img-box img {
	transform: scale(1.1);
}

.blog-box .img-box {
	overflow: hidden;
	position: relative;
	border-radius: 5px;
}

.blog-box .img-box img {
	transition: var(--transition);
	width: 100%;
	height: 270px;
	border-radius: 5px;
}

.blog-box .content-box {
	position: relative;
	padding: 20px;
	box-shadow: var(--shadow2);
	padding: 50px 15px 20px;
	position: relative;
	margin: -40px 20px 0;
	z-index: 1;
	background: var(--bg-color2);
	border-radius: 5px;
}

.blog-box .content-box .blog-btn {
	border-top: 1px solid var(--border-color1);
	color: var(--primary-color);
	font-weight: 500;
	font-family: var(--heading-font);
	margin-top: 20px;
	display: flex;
	text-transform: capitalize;
	gap: 5px;
	padding-top: 15px;
}

.blog-box .content-box .blog-btn i {
	transform: rotate(-45deg);
}

.blog-box .content-box .para-text {
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	display: -webkit-box;
	-webkit-line-clamp: 3;
}

.blog-box .blog-author {
	display: inline-flex;
	align-items: center;
	margin-bottom: 20px;
}

.blog-box .blog-author .author-img {
	margin-right: 10px;
}

.blog-box .blog-author .author-img img {
	width: 35px;
	height: 35px;
	border-radius: 50%;
}

.blog-box .blog-author .author-info h5 {
	margin: 0;
}

.blog-box .blog-author .author-info span {
	font-size: 14px;
}

.blog-box .blog-title {
	margin-bottom: 25px;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	display: -webkit-box;
	-webkit-line-clamp: 2;
}

.date {
	position: absolute;
	width: 70px;
	height: 65px;
	background: var(--primary-color);
	top: -35px;
	left: 50%;
	text-align: center;
	padding: 5px;
	transform: translateX(-50%);
	border-radius: 5px;
}

.date p,
.date h4 {
	color: var(--white);
	text-transform: uppercase;
}

@media (max-width: 1400px) {
	h5 {
		font-size: 18px;
	}

	.blog-box .img-box img {
		height: 20vw;
	}

	.blog-box .blog-author .author-info span {
		font-size: 14px;
	}
}

@media (max-width: 767px) {
	.blog-box .img-box img {
		height: 40vw;
	}
}

@media (max-width: 575px) {
	.blog-box .img-box img {
		height: 55vw;
	}
}

.rtl .blog-box .blog-author .author-img {
	margin-right: 0;
	margin-left: 10px;
}

.rtl .blog-box .content-box .blog-btn i {
	transform: rotate(-135deg);
}

/*----------------------------------------------
Blog section end
----------------------------------------------*/
/*----------------------------------------------
12. Newsletter section start
----------------------------------------------*/
.newsletter-area {
	margin-top: 50px;
}

.newsletter-area .newslatter-title {
	color: #CED3F6;
	font-weight: 500;
	margin-bottom: 30px;
	text-transform: capitalize;
}

.subscribe-form {
	position: relative;
	width: 100%;
	max-width: 480px;
}

.subscribe-form .form-control {
	color: var(--white);
	text-transform: capitalize;
	padding: 5px 40px 5px 5px;
	background: transparent;
	caret-color: var(--primary-color);
	height: 45px;
	border: none;
	border-radius: 0;
	border-bottom: 1px solid var(--border-color1);
}

.subscribe-form .form-control:focus {
	border-bottom: 1px solid var(--primary-color);
	box-shadow: none;
}

.subscribe-form .form-control::-moz-placeholder {
	color: var(--grayish-blue);
}

.subscribe-form .form-control::placeholder {
	color: var(--grayish-blue);
}

.subscribe-form .subscribe-btn {
	background-color: var(--primary-color);
	border: none;
	cursor: pointer;
	transition: var(--transition);
	position: absolute;
	right: 0;
	top: 0;
	height: 35px;
	width: 35px;
	border-radius: 5px;
	color: var(--white);
}

.subscribe-form .subscribe-btn i {
	transform: rotate(-45deg);
}

@media (max-width: 991px) {
	.newsletter-area .newslatter-title {
		font-size: 22px;
	}
}

.rtl .subscribe-form input {
	padding: 5px 5px 5px 40px;
}

.rtl .subscribe-form .subscribe-btn {
	left: 0;
	right: auto;
}

.rtl .subscribe-form .subscribe-btn i {
	transform: rotate(-135deg);
}

.dark-theme .subscribe-form .form-control {
	border-bottom: 1px solid #e5e7eb;
}

/*----------------------------------------------
Newsletter section end
----------------------------------------------*/
/*----------------------------------------------
13. Footer section start
----------------------------------------------*/
.footer-area {
	background-color: var(--bg-color4);
	background-image: url(../images/background/blur-c.png);
	background-position: top center;
	background-repeat: no-repeat;
}

.footer-area .footer-widget h5 {
	position: relative;
	color: #CED3F6;
	margin-bottom: 40px;
	font-weight: 500;
	text-transform: capitalize;
	font-size: 20px;
}

.footer-area .footer-widget h5::after {
	content: "";
	position: absolute;
	height: 1px;
	width: 50px;
	background: #CED3F6;
	bottom: -12px;
	left: 0;
	opacity: 0.7;
}

.footer-widget p {
	color: var(--grayish-blue);
	font-weight: 400;
}

.footer-widget .cmn-para-text {
	max-width: 450px;
}

.footer-widget ul li {
	line-height: 2.5;
}

.footer-widget a {
	color: var(--grayish-blue);
	font-weight: 400;
}

.footer-widget a:hover {
	color: var(--primary-color);
}

@media (min-width: 992px) {
	.footer-area {
		margin: 0 10px 10px;
		border-radius: 15px;
	}
}

@media (max-width: 991px) {
	.footer-area {
		padding-bottom: 90px;
	}
}

.rtl .footer-area .footer-widget h5::after {
	right: 0;
	left: auto;
}

.social-area ul li a {
	border-color: #e5e7eb;
}

/*----------------------------------------------
Footer section end
----------------------------------------------*/
/*----------------------------------------------
14. Copyright section start
----------------------------------------------*/
.copy-right-area p {
	margin-bottom: 0;
	font-weight: 400;
	color: var(--grayish-blue);
}

.language a {
	color: var(--grayish-blue);
}

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

.language a:not(:last-child) {
	margin-right: 10px;
}


@media (max-width: 575px) {
	.copy-right-area {
		text-align: center;
	}

	.language {
		text-align: center;
	}
}

.rtl .copy-right-area .text-end {
	text-align: left !important;
}

/*----------------------------------------------
Copyright section end
----------------------------------------------*/
/*----------------------------------------------
15. Banner section start
----------------------------------------------*/
.banner-nav {
	background: transparent;
}

.banner-area {
	padding-top: 150px;
	padding-bottom: 100px;
	position: relative;
	z-index: 1;
	background-color: var(--primary-color-opacity-low);
	overflow: hidden;
	position: relative;
}

.banner-area .shapedividers_com-8659 {
	overflow: hidden;
	position: relative;
}

.banner-area::before {
	content: "";
	font-family: "shape divider from ShapeDividers.com";
	position: absolute;
	z-index: 3;
	pointer-events: none;
	background-repeat: no-repeat;
	bottom: -0.1vw;
	left: -0.1vw;
	right: -0.1vw;
	top: -0.1vw;
	background-size: 100% 53px;
	background-position: 50% 100%;
	background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.28 2.17" preserveAspectRatio="none"><path d="M35.28 1.67c-3.07-.55-9.27.41-16.15 0-6.87-.4-13.74-.58-19.13.1v.4h35.28z" fill="%23ffffff"/><path d="M35.28 1.16c-3.17-.8-7.3.4-10.04.56-2.76.17-9.25-1.47-12.68-1.3-3.42.16-4.64.84-7.04.86C3.12 1.31 0 .4 0 .4v1.77h35.28z" opacity=".5" fill="%23ffffff"/><path d="M35.28.31c-2.57.84-7.68.3-11.8.43-4.1.12-6.85.61-9.57.28C11.18.69 8.3-.16 5.3.02 2.3.22.57.85 0 .87v1.2h35.28z" opacity=".5" fill="%23ffffff"/></svg>');
}

@media (min-width: 2100px) {
	.banner-area::before {
		background-size: 100% calc(2vw + 53px);
	}
}

.banner-area h3 {
	font-size: 40px;
	margin-bottom: 10px;
}

.breadcrumb-area {
	font-size: 18px;
	color: var(--heading-color);
	font-weight: 500;
	text-align: center;
}

.breadcrumb-area h3 {
	text-transform: capitalize;
}

@media (max-width: 991px) {
	.banner-area {
		padding-top: 100px;
		padding-bottom: 70px;
	}

	.banner-area h3 {
		font-size: 36px;
	}
}

.dark-theme .banner-area {
	background-color: var(--bg-color2);
}

.dark-theme .banner-area::before {
	background: none;
}

/*----------------------------------------------
Banner section end
----------------------------------------------*/
/*----------------------------------------------
16. Contact section start
----------------------------------------------*/
.contact-section {
	background-color: var(--bg-color1);
	position: relative;
	z-index: 0;
}

.contact-section .contact-area .contact-item-list {
	margin-top: 30px;
}

.contact-section .contact-area .contact-item-list .item {
	display: flex;
	align-items: center;
	margin-bottom: 30px;
}

.contact-section .contact-area .contact-item-list .item .icon-area {
	margin-right: 15px;
	border-radius: 5px;
	width: 40px;
	height: 40px;
	font-size: 18px;
	color: var(--primary-color);
	background-color: var(--primary-color-opacity-low);
	display: flex;
	align-items: center;
	justify-content: center;
}

.contact-section .contact-message-area {
	background-color: var(--bg-color2);
	padding: 30px 25px;
	box-shadow: var(--shadow3);
	border-radius: 5px;
}

.contact-section .contact-message-area .contact-header {
	margin-bottom: 30px;
}

.contact-section .contact-message-area .btn-area {
	margin-top: 30px;
}

.contact-section .contact-message-area .form-label {
	text-transform: capitalize;
}

.contact-section .contact-message-area .form-label h5 {
	font-weight: 600;
}

@media (max-width: 575px) {
	.contact-section .contact-message-area {
		padding: 20px;
	}

	.contact-section .contact-message-area .btn-area {
		margin-top: 10px;
	}
}

.rtl .contact-section .contact-area .contact-item-list .item .icon-area {
	margin-right: 0;
	margin-left: 15px;
}

.dark-theme .contact-section .contact-area .contact-item-list .item .icon-area {
	background-color: var(--bg-color2);
}

/*----------------------------------------------
Contact end
----------------------------------------------*/
/*----------------------------------------------
17. Login Signup section start
----------------------------------------------*/
.login-signup-page {
	background-color: var(--bg-color1);
}

.login-signup-page .login-signup-form {
	background-color: var(--bg-color2);
	padding: 30px 25px;
	border-radius: 5px;
	box-shadow: var(--shadow3);
}

.login-signup-page .login-signup-form .cmn-btn {
	height: 45px;
}

.login-signup-page .login-signup-form .cmn-btn2 {
	height: 45px;
	border-radius: 5px;
}

.login-signup-page .login-signup-form .cmn-btn-group .btn img {
	margin-right: 5px;
	width: 16px;
}

.password-box {
	position: relative;
	display: flex;
	align-items: center;
}

.password-box .form-control {
	padding-right: 35px;
}

.password-box .password-icon {
	position: absolute;
	right: 15px;
	cursor: pointer;
}

@media (max-width: 575px) {
	.login-signup-page .login-signup-form {
		padding: 20px;
	}
}

.rtl .login-signup-page .login-signup-form .cmn-btn-group .btn img {
	margin-left: 5px;
	margin-right: 0;
}

.rtl .password-box .form-control {
	padding-right: 0.75rem;
	padding-left: 35px;
}

.rtl .password-box .password-icon {
	right: auto;
	left: 15px;
}

/*----------------------------------------------
Login Signup end
----------------------------------------------*/
/*----------------------------------------------
18. Blog details section start
----------------------------------------------*/
.blog-details-section {
	background-color: var(--bg-color1);
}

.blog-details-section .blog-details .thum-inner {
	position: relative;
}

.blog-details-section .blog-details .blog-image {
	position: relative;
}

.blog-details-section .blog-details .blog-image img {
	width: 100%;
	max-height: 490px;
	border-radius: 5px;
}

.blog-details-section .blog-details .blog-author {
	display: flex;
	align-items: center;
	margin: 30px 0 20px 0;
}

.blog-details-section .blog-details .blog-author .author-img {
	margin-right: 15px;
}

.blog-details-section .blog-details .blog-author .author-img img {
	width: 40px;
	height: 40px;
	border-radius: 50%;
}

.blog-details-section .blog-header {
	margin-bottom: 20px;
}

.blog-details-section .blog-header h3 {
	margin-bottom: 0;
}

.blog-details-section .blog-header span {
	margin-right: 15px;
}

.blog-details-section .blog-header span i {
	margin-right: 10px;
	color: var(--primary-color);
}

.blog-details-section .blog-widget-image {
	width: 100px;
}

.blog-details-section .blog-widget-content {
	margin-left: 15px;
	width: calc(100% - 100px);
}

.blog-details-section .blog-widget-content .blog-title {
	font-size: 16px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	transition: all ease 0.3s;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	font-weight: 500;
	line-height: 1.3;
	color: var(--heading-color);
	margin-bottom: 10px;
	font-family: var(--heading-font);
}

.blog-details-section .categories-area li {
	border-bottom: 1px solid var(--border-color1);
	padding: 10px 0;
}

.blog-details-section .categories-area li a {
	font-size: 16px;
	font-weight: 500;
	display: flex;
	justify-content: space-between;
	color: var(--heading-color);
	font-family: var(--heading-font);
}

.blog-details-section .categories-area li a:hover {
	color: var(--primary-color);
}

.blog-details-section .categories-area li:first-child {
	padding-top: 0;
}

.blog-sidebar .blog-widget-area {
	padding: 30px;
	background-color: var(--bg-color6);
	border-radius: 5px;
	margin-bottom: 30px;
}

.blog-sidebar .blog-widget-area .widget-title {
	margin-bottom: 20px;
	position: relative;
	padding-bottom: 10px;
}

.blog-sidebar .blog-widget-area .widget-title::before {
	position: absolute;
	bottom: 0;
	left: 0;
	content: "";
	width: 50px;
	height: 2px;
	background-color: var(--primary-color);
}

.blog-sidebar .blog-widget-area .widget-title::after {
	position: absolute;
	bottom: 0px;
	left: 0;
	content: "";
	width: 150px;
	height: 2px;
	background-color: rgba(225, 225, 225, 0.4);
}

.blog-sidebar .blog-widget-area .blog-widget-item {
	display: flex;
	transition: var(--transition);
}

.blog-sidebar .blog-widget-area .blog-widget-item:hover .blog-widget-content .blog-title {
	color: var(--primary-color);
}

.blog-sidebar .blog-widget-area .blog-widget-item:not(:last-child) {
	margin-bottom: 20px;
}

.blog-sidebar .blog-widget-image img {
	width: 100%;
	height: 85px;
	border-radius: 5px;
}

.blog-sidebar .tag-list .item {
	display: inline-block;
	font-size: 14px;
	padding: 10px 15px;
	background-color: var(--bg-color3);
	transition: var(--transition);
	border-radius: 5px;
	margin: 0 5px 5px 0;
	border: 1px solid var(--border-color1);
}

.blog-sidebar .tag-list .item:hover {
	background-color: var(--primary-color);
	color: var(--white);
}

.blog-sidebar .tag-list .item:last-child {
	margin-bottom: 0;
}

.blog-date {
	color: var(--heading-color);
	font-size: 14px;
}

.blog-date i {
	margin-right: 5px;
	color: var(--primary-color);
}

.rtl .blog-details-section .blog-widget-content {
	margin-left: 0;
	margin-right: 15px;
}

.rtl .blog-details-section .blog-details .blog-author .author-img {
	margin-right: 0;
	margin-left: 15px;
}

.rtl .blog-sidebar .blog-widget-area .widget-title::before,
.rtl .blog-sidebar .blog-widget-area .widget-title::after {
	right: 0;
	left: auto;
}

.dark-theme .blog-sidebar .tag-list .item {
	border-color: var(--bg-color3);
}

.dark-theme .blog-sidebar .tag-list .item:hover {
	background-color: var(--primary-color);
}

/*----------------------------------------------
Blog details end
----------------------------------------------*/
/*----------------------------------------------
19. Pagination section start
----------------------------------------------*/
.pagination-section {
	margin-top: 50px;
	display: flex;
	justify-content: end;
}

.pagination .page-item .page-link {
	margin: 5px;
	width: 40px;
	height: 40px;
	border-radius: 8px !important;
	color: var(--heading-color);
	background-color: var(--bg-color2);
	display: flex;
	justify-content: center;
	align-items: center;
	border: 1px solid var(--border-color2);
	box-shadow: none;
}

.pagination .page-item .page-link:hover,
.pagination .page-item .page-link:focus {
	background-color: var(--primary-color);
	color: var(--white);
	border: 1px solid var(--primary-color);
}

.pagination .page-item.active .page-link {
	background-color: var(--primary-color);
	color: var(--white);
	border-color: var(--primary-color);
}

.rtl .pagination-section nav .pagination .page-item .page-link i {
	transform: rotate(180deg);
}

.dark-theme .pagination .page-item .page-link {
	border-color: var(--bg-color2);
}

/*----------------------------------------------
Pagination end
----------------------------------------------*/
/*----------------------------------------------
20. Error section start
----------------------------------------------*/
.error-section {
	height: 100vh;
	width: 100vw;
	background-color: var(--bg-color1);
	display: flex;
	justify-content: center;
	align-items: center;
}

.error-section .error-content {
	color: var(--heading-color);
}

.error-section .error-content .error-title {
	font-size: 150px;
	font-family: var(--heading-font);
	font-weight: 600;
	line-height: 1;
}

.error-section .error-content .error-info {
	font-size: 40px;
	line-height: 1.3;
}

.error-section .error-content .btn-area {
	margin-top: 30px;
}

.error-section .error-content .btn-area .cmn-btn {
	text-transform: none;
}

@media (max-width: 991px) {
	.error-section {
		padding: 100px 0;
	}

	.error-section .error-content .error-title {
		font-size: 100px;
	}

	.error-section .error-content .error-info {
		font-size: 30px;
	}
}

@media (max-width: 991px) {
	.error-section .error-content .error-title {
		font-size: 60px;
	}

	.error-section .error-content .error-info {
		font-size: 26px;
	}
}

@media (max-width: 575px) {
	.error-section {
		height: 100%;
		width: 100%;
		text-align: center;
	}
}

/*----------------------------------------------
Error section start
----------------------------------------------*/

.policy-section {
	position: relative;
	background-image: url(../images/background/popular-bg2.png);
	background-color: var(--bg-color1);
	background-size: cover;
	background-position: center;
}

.payment-section {
	background-color: var(--bg-color1);
}

.payment-section .section-title {
	margin-bottom: 20px;
}

.payment-section .btn-area {
	margin-top: 30px;
}

.payment-options {
	height: 260px;
	overflow-y: auto;
	overflow-x: hidden;
}

.payment-options .btn-check+.btn-primary {
	background: var(--bg-color1);
	border: 2px solid var(--border-color1);
	border-radius: 15px;
	padding: 8px;
	color: #212529;
	position: relative;
	transition: 0.4s;
}

.payment-options .btn-check+.btn-primary .check {
	position: absolute;
	left: 15px;
	top: 15px;
	opacity: 0;
	width: 18px;
}

.payment-options .btn-check+.btn-primary::after {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.4);
	top: 0;
	left: 0;
	border-radius: 15px;
}

.dark-theme .payment-options .btn-check+.btn-primary::after {
	background: rgb(0, 0, 0, 0.4);
}

.payment-options .btn-check:checked+.btn-primary .check {
	opacity: 1;
}

.payment-options .btn-check:checked+.btn-primary::after {
	background: none;
}

.payment-options label img {
	border-radius: 6px;
}

.payment-options .btn-check:checked+.btn-primary {
	border: 2px solid var(--primary-color) !important;
}

.payment-summary {
	padding: 20px;
	border-radius: 15px;
	background-color: var(--bg-color1);
	box-shadow: var(--bg-color2);
}

.payment-summary .summary-list li {
	display: flex;
	justify-content: space-between;
	padding: 7px;
	color: var(--heading-color);
}

.payment-summary .summary-list li:not(:last-child) {
	border-bottom: 1px solid var(--border-color1);
}

.wh-200-150 {
	width: 200px !important;
}