@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');

:root {
	--style-font: font-family: "Poppins", sans-serif;
	--style-font-two: "Noto Sans", sans-serif;
	--style-gray: #414651;
	--style-gray-rgb: rgb(65, 70, 81);
	--style-white: #ffffff;
	--style-white-rgb: 255, 255, 255;
	--style-base: #e53b8e;
	--style-base-rgb: rgb(229, 59, 142);
	--style-secondary: #229eda;
	--style-secondary-rgb: rgb(34, 158, 218);
	--style-black: #0D121E;
	--style-black-rgb: 13, 18, 30;
	--style-primary: #F7F9FA;
	--style-primary-rgb: 247, 249, 250;
	--style-bdr-radius: 10px;
	--style-bg-light: #e6eaf1;
	--style-light-rgb: 230, 234, 241;
	--style-dark: #0b2336;
	--style-dark-rgb: 11, 35, 54;
}

html {
	-webkit-font-smoothing: antialiased;
	scroll-behavior: smooth;
}

body {
	font-family: var(--style-font-two);
	color: var(--style-gray);
	font-size: 14px;
	line-height: 1.6;
	font-weight: 400;
}

body.locked {
	overflow: hidden;
}

a {
	color: var(--style-gray);
}

a,
a:hover,
a:focus,
a:visited {
	text-decoration: none;
}

::-webkit-input-placeholder {
	color: inherit;
	opacity: 1;
}

:-ms-input-placeholder {
	color: inherit;
	opacity: 1;
}

::-ms-input-placeholder {
	color: inherit;
	opacity: 1;
}

::placeholder {
	color: inherit;
	opacity: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--style-font);
	color: var(--style-black);
	margin: 0;
}

p {
	margin: 0 0 15px;
}

dl,
ol,
ul {
	margin-top: 0;
	margin-bottom: 0;
}

::-webkit-input-placeholder {
	color: inherit;
	opacity: 1;
}

:-ms-input-placeholder {
	color: inherit;
	opacity: 1;
}

::-ms-input-placeholder {
	color: inherit;
	opacity: 1;
}

::placeholder {
	color: inherit;
	opacity: 1;
}

/* List style One */
.list-style-one li {
	display: block;
	width: 100%;
}

.list-style-one li:not(:last-child) {
	margin-bottom: 10px;
}

.list-style-one li:before {
	-webkit-box-flex: 0;
	-ms-flex: none;
	flex: none;
	margin-right: 11px;
	color: var(--style-base);
	content: "\f00c";
	font-family: 'Font Awesome 6 Pro' !important;
}

.list-style-one li .content p {
	margin-bottom: 0;
}

/* List style Two */
.list-icon {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 15px;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: 0;
	padding: 0;
	list-style: none;
}

.list-style-two li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 50%;
}

.list-style-two li:not(:last-child) {
	margin-bottom: 10px;
}

.list-style-two li:before {
	-webkit-box-flex: 0;
	-ms-flex: none;
	flex: none;
	margin-right: 11px;
	color: var(--style-base);
	content: "\f00c";
	font-family: 'Font Awesome 6 Pro' !important;
}

/* List style Three */
.list-style-three li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 33%;
}

.list-style-three li:not(:last-child) {
	margin-bottom: 10px;
}

.list-style-three li:before {
	-webkit-box-flex: 0;
	-ms-flex: none;
	flex: none;
	margin-right: 11px;
	color: var(--style-base);
	content: "\f00c";
	font-family: 'Font Awesome 6 Pro' !important;
}

/* List style Four */
.list-style-four li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 25%;
}

@media (min-width: 376px) {
	.list-style-four li {
		font-size: 15px;
	}
}

.list-style-four li:not(:last-child) {
	margin-bottom: 10px;
}

.list-style-four li:before {
	-webkit-box-flex: 0;
	-ms-flex: none;
	flex: none;
	width: 18px;
	height: 18px;
	font-size: 10px;
	margin-top: 7px;
	line-height: 14px;
	border: 2px solid;
	text-align: center;
	margin-right: 15px;
	border-radius: 50%;
	color: var(--style-base);
	content: "\f00c";
	font-family: 'Font Awesome 6 Pro' !important;
}

/*===  SPACING & INDENTS ===*/
.wide-100 {
	padding-top: 100px;
	padding-bottom: 100px;
}

.wide-90 {
	padding-top: 100px;
	padding-bottom: 90px;
}

.wide-80 {
	padding-top: 100px;
	padding-bottom: 80px;
}

.wide-70 {
	padding-top: 100px;
	padding-bottom: 70px;
}

.wide-60 {
	padding-top: 100px;
	padding-bottom: 60px;
}

.wide-50 {
	padding-top: 100px;
	padding-bottom: 50px;
}

.wide-40 {
	padding-top: 100px;
	padding-bottom: 40px;
}

.wide-30 {
	padding-top: 100px;
	padding-bottom: 30px;
}

.wide-20 {
	padding-top: 100px;
	padding-bottom: 20px;
}

/*=== Margin Top ===*/
.mt-100 {
	margin-top: 100px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mt-5 {
	margin-top: 5px !important;
}

.mt-0 {
	margin-top: 0;
}

/*=== Margin Top Inverse ===*/
.mt-inverse-150 {
	margin-top: -150px;
}

.mt-inverse-140 {
	margin-top: -140px;
}

.mt-inverse-130 {
	margin-top: -130px;
}

.mt-inverse-120 {
	margin-top: -120px;
}

.mt-inverse-110 {
	margin-top: -110px;
}

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

.mt-inverse-90 {
	margin-top: -90px;
}

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

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

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

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

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

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

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

/*=== Margin Bottom ===*/
.mb-100 {
	margin-bottom: 100px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mb-5 {
	margin-bottom: 5px !important;
}

.mb-0 {
	margin-bottom: 0;
}

/*=== Margin Left ===*/
.ml-100 {
	margin-left: 100px;
}

.ml-95 {
	margin-left: 95px;
}

.ml-90 {
	margin-left: 90px;
}

.ml-85 {
	margin-left: 85px;
}

.ml-80 {
	margin-left: 80px;
}

.ml-75 {
	margin-left: 75px;
}

.ml-70 {
	margin-left: 70px;
}

.ml-60 {
	margin-left: 60px;
}

.ml-55 {
	margin-left: 55px;
}

.ml-50 {
	margin-left: 50px;
}

.ml-45 {
	margin-left: 45px;
}

.ml-40 {
	margin-left: 40px;
}

.ml-35 {
	margin-left: 35px;
}

.ml-30 {
	margin-left: 30px;
}

.ml-25 {
	margin-left: 25px;
}

.ml-20 {
	margin-left: 20px;
}

.ml-15 {
	margin-left: 15px;
}

.ml-10 {
	margin-left: 10px;
}

.ml-5 {
	margin-left: 5px !important;
}

/*=== Margin Right ===*/
.mr-100 {
	margin-right: 100px;
}

.mr-95 {
	margin-right: 95px;
}

.mr-90 {
	margin-right: 90px;
}

.mr-85 {
	margin-right: 85px;
}

.mr-80 {
	margin-right: 80px;
}

.mr-75 {
	margin-right: 75px;
}

.mr-70 {
	margin-right: 70px;
}

.mr-65 {
	margin-right: 65px;
}

.mr-60 {
	margin-right: 60px;
}

.mr-55 {
	margin-right: 55px;
}

.mr-50 {
	margin-right: 50px;
}

.mr-45 {
	margin-right: 45px;
}

.mr-40 {
	margin-right: 40px;
}

.mr-35 {
	margin-right: 35px;
}

.mr-30 {
	margin-right: 30px;
}

.mr-25 {
	margin-right: 25px;
}

.mr-20 {
	margin-right: 20px;
}

.mr-15 {
	margin-right: 15px;
}

.mr-10 {
	margin-right: 10px;
}

.mr-5 {
	margin-right: 5px !important;
}

/*=== Padding Top ===*/
.pt-100 {
	padding-top: 100px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pt-5 {
	padding-top: 5px !important;
}

/*=== Padding Bottom ===*/
.pb-200 {
	padding-bottom: 200px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pb-5 {
	padding-bottom: 5px !important;
}

/*=== Padding Left ===*/
.pl-100 {
	padding-left: 100px;
}

.pl-95 {
	padding-left: 95px;
}

.pl-90 {
	padding-left: 90px;
}

.pl-85 {
	padding-left: 85px;
}

.pl-80 {
	padding-left: 80px;
}

.pl-75 {
	padding-left: 75px;
}

.pl-70 {
	padding-left: 70px;
}

.pl-65 {
	padding-left: 65px;
}

.pl-60 {
	padding-left: 60px;
}

.pl-55 {
	padding-left: 55px;
}

.pl-50 {
	padding-left: 50px;
}

.pl-45 {
	padding-left: 45px;
}

.pl-40 {
	padding-left: 40px;
}

.pl-35 {
	padding-left: 35px;
}

.pl-30 {
	padding-left: 30px;
}

.pl-25 {
	padding-left: 25px;
}

.pl-20 {
	padding-left: 20px;
}

.pl-15 {
	padding-left: 15px;
}

.pl-10 {
	padding-left: 10px;
}

.pl-5 {
	padding-left: 5px !important;
}

/*=== Padding Right ===*/
.pr-100 {
	padding-right: 100px;
}

.pr-95 {
	padding-right: 95px;
}

.pr-90 {
	padding-right: 90px;
}

.pr-85 {
	padding-right: 85px;
}

.pr-80 {
	padding-right: 80px;
}

.pr-75 {
	padding-right: 75px;
}

.pr-70 {
	padding-right: 70px;
}

.pr-65 {
	padding-right: 65px;
}

.pr-60 {
	padding-right: 60px;
}

.pr-55 {
	padding-right: 55px;
}

.pr-50 {
	padding-right: 50px;
}

.pr-45 {
	padding-right: 45px;
}

.pr-40 {
	padding-right: 40px;
}

.pr-35 {
	padding-right: 35px;
}

.pr-30 {
	padding-right: 30px;
}

.pr-25 {
	padding-right: 25px;
}

.pr-20 {
	padding-right: 20px;
}

.pr-15 {
	padding-right: 15px;
}

.pr-10 {
	padding-right: 10px;
}

.pr-5 {
	padding-right: 5px !important;
}

/*=== Padding Centered ===*/
.pc-70 {
	padding-right: 70px;
	padding-left: 70px;
}

.pc-65 {
	padding-right: 65px;
	padding-left: 65px;
}

.pc-60 {
	padding-right: 60px;
	padding-left: 60px;
}

.pc-55 {
	padding-right: 55px;
	padding-left: 55px;
}

.pc-50 {
	padding-right: 50px;
	padding-left: 50px;
}

.pc-45 {
	padding-right: 45px;
	padding-left: 45px;
}

.pc-40 {
	padding-right: 40px;
	padding-left: 40px;
}

.pc-35 {
	padding-right: 35px;
	padding-left: 35px;
}

.pc-30 {
	padding-right: 30px;
	padding-left: 30px;
}

.pc-25 {
	padding-right: 25px;
	padding-left: 25px;
}

.pc-20 {
	padding-right: 20px;
	padding-left: 20px;
}

.pc-15 {
	padding-right: 15px;
	padding-left: 15px;
}

.pc-10 {
	padding-right: 10px;
	padding-left: 10px;
}

.thm-btn {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	-webkit-appearance: none;
	outline: none !important;
	background-color: var(--style-base);
	color: var(--style-white);
	font-size: 16px;
	font-weight: 500;
	padding: 10px 33px 10px;
	border-radius: 33px;
	overflow: hidden;
	transition: all 0.5s linear;
	z-index: 1;
}

.thm-btn::before {
	transition-duration: 800ms;
	position: absolute;
	width: 200%;
	height: 200%;
	content: "";
	top: 110%;
	left: 50%;
	border-radius: 33px;
	background-color: var(--style-secondary);
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	border-radius: 50%;
	z-index: -1;
}

.thm-btn:hover:before {
	top: -40%;
}

.thm-btn:hover {
	color: var(--style-white);
}

.thm-btn-two {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	-webkit-appearance: none;
	outline: none !important;
	background-color: var(--style-secondary);
	color: var(--style-white);
	border: 1px solid var(--style-secondary);
	font-size: 16px;
	font-weight: 500;
	padding: 9px 33px 9px;
	border-radius: 33px;
	overflow: hidden;
	transition: all 0.5s linear;
	z-index: 1;
}

.thm-btn-two::before {
	transition-duration: 800ms;
	position: absolute;
	width: 200%;
	height: 200%;
	content: "";
	top: 110%;
	left: 50%;
	border-radius: 33px;
	background-color: var(--style-black);
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	border-radius: 50%;
	z-index: -1;
}

.thm-btn-two:hover:before {
	top: -40%;
}

.thm-btn-two:hover {
	color: var(--style-white) !important;
	background-color: var(--style-black);
	border: 1px solid var(--style-black);
}

.account-nav .account-button {
	border: 2px solid var(--style-base);
	border-radius: 30px; 
    padding: 5px 11px;
	font-size: 16px;
	color: var(--style-base);
	background-color: transparent;
}

.account-nav .account-button:hover,
.account-button:focus,
.dropdown-toggle.show {
	border-color: var(--bs-white);
	color: var(--bs-white);
	background-color: transparent;
}

.account-nav .dropdown-menu.show {
	position: relative;
	margin-top: 10px !important;
	min-width: 230px;
}

.account-nav .dropdown-toggle::after {
	display: none;
}

.account-nav .dropdown-menu.show:before {
	content: "";
	background-color: #fff;
	position: absolute;
	top: -8px;
	right: 15px;
	height: 0.9375rem;
	width: 0.9375rem;
	border-top: solid 1px #eee;
	border-left: solid 1px #eee;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	z-index: -2;
}

.account-nav .account-title {
	border-bottom: 1px solid #e5e4e4;
	margin-bottom: 10px;
}

.account-nav .account-title h6 {
	font-size: 14px;
	font-weight: bold;
	padding: 10px 15px;
}

.page-wrapper {
	position: relative;
	margin: 0 auto;
	width: 100%;
	min-width: 300px;
	/* overflow: hidden; */
}

/*  Preloader */
.preloader-mask {
	background-color: var(--style-white);
	height: 100%;
	width: 100%;
	position: fixed;
	z-index: 9999 !important;
	top: 0px;
	z-index: auto;
	display: flex;
	align-items: center;
	justify-content: center;
}

.preloader .fad:before {
	color: var(--style-base);
	opacity: 1 !important;
}

.preloader .fad:after {
	color: var(--style-secondary);
	opacity: 1 !important;
}

.preloader {
	font-size: 48px;
	color: var(--style-base);
}

.default-padding {
	padding: 90px 0 0;
}

.default-padding.padding-bottom {
	padding: 90px 0 90px;
}

.default-padding.padding-top-half {
	padding: 30px 0 90px;
}

.section-separator {
	border-color: var(--style-border);
	border-width: 1px;
	margin-top: 0;
	margin-bottom: 0;
}

.section-title {
	position: relative;
	z-index: auto;
	display: block;
	font-size: 54px;
	font-weight: 800;
	margin-bottom: 15px;
}

.half-color-title {
	background: linear-gradient(to left, var(--style-secondary) 20%, var(--style-base) 80%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.section-subtitle {
	font-size: 16px;
	margin-top: 15px;
}

.header {
	width: 100%;
	background-color: transparent;
	height: auto;
	position: absolute;
	width: 100%;
	z-index: 99;
	padding: 5px 0;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.header .logo {
	width: auto;
	height: auto;
	padding: 5px 0px;
}

.header .logo img {
	max-height: 50px;
	height: 100%;
	max-width: 100%;
	width: auto;
}

.header img.logo-dark {
	display: none;
}

.header.fixed img.logo-light {
	display: none;
}

.header.fixed img.logo-dark {
	display: block;
}

.btn-toogle-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 35px;
	height: 35px;
	background-color: transparent;
	color: var(--style-white);
	border: 0px;
	line-height: 0;
	margin-right: 25px;
}

.header .row {
	justify-content: space-between;
}

.icon {
	display: block;
	position: relative;
}

.icon-burger {
	width: 30px;
	height: 2px;
	margin: 7px 0;
	background: var(--style-white);
}

.btn-toogle-nav i {
	line-height: 0;
	font-size: 34px;
}

.icon-burger {
	width: 30px;
	height: 2px;
	margin: 7px 0;
	background: var(--style-white);
}

.icon-burger:before,
.icon-burger:after {
	position: absolute;
	left: 0;
	top: 0;
	content: "";
	height: 2px;
	width: 100%;
	background: var(--style-white);
	transition-property: transform
}

.icon-burger:before {
	transform: translateY(-7px)
}

.icon-burger:after {
	transform: translateY(7px)
}

.btn-toogle-nav:hover .icon-burger:before {
	transform: translateY(-12px);
	transition-duration: .4s;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.btn-toogle-nav:hover .icon-burger:after {
	transform: translateY(12px);
	transition-duration: .4s;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.header.fixed {
	width: 100%;
	background-color: var(--style-black);
	height: auto;
	position: fixed;
	width: 100%;
	padding: 0px 0;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.header.fixed .icon-burger:before,
.header.fixed .icon-burger:after,
.header.fixed .icon-burger {
	background: var(--style-white);
}

.offcanvas {
	max-width: 300px;
}

.offcanvas .main-nav {
	width: 100%;
	height: auto;
	position: relative;
}

.offcanvas .main-nav ul {
	margin: 0;
	padding: 0;
}

.offcanvas .main-nav ul li {
	display: block;
	margin-bottom: 10px;
}

.offcanvas .main-nav ul li a {
	color: var(--style-black);
	text-decoration: none;
	display: block;
}

.offcanvas .main-nav ul li a.active,
.main-nav ul li a:hover,
.main-nav ul li a:focus {
	color: var(--style-base);
	text-decoration: none;
}

.offcanvas .offcanvas-header {
	padding: 15px 20px 15px 10px;
	justify-content: start;
}

.offcanvas .offcanvas-header .logo {
	max-height: 60px;
	padding: 0px;
}

.nav-desktop.main-nav ul {
	display: flex !important;
	align-items: center;
	gap: 3px;
	justify-content: end;
	margin: 0;
	padding: 0;
}

.nav-desktop.main-nav ul li {
	display: block;
	align-items: center;
}

.nav-desktop.main-nav ul li a {
	line-height: 1.5;
	/* text-transform: uppercase;  */
	color: var(--style-white);
	padding: 10px 8px;
	font-weight: 700;
	text-decoration: none;
	display: block;
}

.nav-desktop.main-nav ul li a.active,
.main-nav ul li a:hover {
	color: var(--style-base);
	text-decoration: none;
}

.nav-desktop.main-nav ul li a small {
	text-transform: capitalize !important;
	font-weight: normal !important;
}

.footer-link ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-link a {
	color: var(--style-black);
}

.footer-link a:hover,
.footer-link a:focus {
	color: var(--style-base);
	text-decoration: none;
}

.offcanvas-footer {
	margin-bottom: 5px;
	border-top: 1px solid var(--style-bg-light);
}

.offcanvas-contact {
	padding: 10px 10px 0;
}

.offcanvas-social {
	padding: 0px 10px;
}

.offcanvas-contact ul li {
	margin-bottom: 2px;
}

.offcanvas-contact ul li,
.offcanvas-social ul {
	display: flex;
	gap: 10px;
}

.offcanvas-social ul {
	display: flex;
	gap: 15px;
}

.offcanvas-social ul li {
	font-size: 20px;
}

.home-banner {
	width: 100%;
	height: 100%;
	position: relative;
	overflow: hidden;
	line-height: 0;
}

.home-banner video {
	width: 100%;
	object-fit: cover;
}

.home-banner .banner-caption {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	display: flex;
	align-items: center;
	background: rgba(0, 0, 0, 0.5);
	background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(36, 33, 8, 0.8) 100%);
}

.home-banner .banner-caption .bannrt-title {
	font-size: 48px;
	font-weight: 800;
	color: var(--style-white);
	margin-bottom: 25px;
	text-shadow: 0px 2px 3px rgb(247 9 9 / 30%);
}

.home-banner .banner-caption .bannrt-description {
	font-size: 22px;
	color: var(--style-white);
	margin-top: 25px;
	line-height: 1.5 !important;
	text-shadow: 0px 2px 3px rgb(247 9 9 / 30%);
}

.inner-banner .banner-caption .bannrt-title {
	font-size: 34px;
	font-weight: 800;
	color: var(--style-white);
	margin-bottom: 0px;
	text-shadow: 0px 2px 3px rgb(247 9 9 / 30%);
}

.inner-banner .banner-caption .bannrt-description {
	font-size: 18px;
	color: var(--style-white);
	margin-top: 10px;
	line-height: 1.5 !important;
	text-shadow: 0px 2px 3px rgb(247 9 9 / 30%);
}

.bannrt-button {
	margin-top: 25px;
	border-color: #FFF !important;
	background-color: #FFF !important;
}
.bannrt-button:hover{ 
	border-color: #229eda !important;
	background-color: #229eda !important;
}
.page-plan-button{ margin-top: 30px;}
section:nth-of-type(1) .box-shadow {
	box-shadow: 0 100px 250px rgba(255, 250, 205, 0.3);
}

section:nth-of-type(2) .box-shadow {
	box-shadow: 0 100px 250px rgba(233, 150, 122, 0.3);
}

section:nth-of-type(3) .box-shadow {
	box-shadow: 0 100px 250px rgba(127, 255, 212, 0.3);
}

section:nth-of-type(4) .box-shadow {
	box-shadow: 0 100px 250px rgba(255, 157, 0, 0.3);
}

section:nth-of-type(5) .box-shadow {
	box-shadow: 0 100px 250px rgba(44, 241, 0, 0.3);
}
section:nth-of-type(6) .box-shadow {
	box-shadow:0 100px 250px rgb(99 109 185 / 30%);
}

.scroll-nav-area {
	background: #FFF;
	border-radius: 12px;
}

.parallax-scroll {
	position: relative;
	z-index: 1;
	-webkit-transition: all 0.35s;
	-moz-transition: all 0.35s;
	transition: all 0.35s;
}

.video-area {
	border-radius: 18px;
	overflow: hidden;
}

.video-area,
video {
	line-height: 0;
	width: 100%;
	line-height: 0 !important;
	position: relative;
}

.section-content {
	padding: 50px 0px 10px;
}

.section-navs {
	position: relative;
	margin-top: -60px;
	z-index: auto;
	background-color: var(--style-white);
	padding: 15px;
	border-radius: 12px;
}

.section-navs ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.section-navs ul li {
	margin-bottom: 10px;
}

.section-navs ul li a {
	display: flex;
	align-items: center;
	color: var(--style-black);
	padding: 3px 10px;
}

.section-navs ul li a i {
	color: var(--style-base);
}

.section-navs ul li a:hover,
.section-navs ul li a:focus {
	color: var(--style-secondary);
}

.section-readmore {
	color: var(--style-black);
	margin-top: 30px;
	display: inline-block;
	font-size: 16px;
	font-weight: 600;
}

.section-readmore:hover,
.section-readmore:focus {
	color: var(--style-secondary);
}

.navigation {
	position: fixed;
	width: auto;
	height: 100%;
	top: 0;
	right: 20px;
	z-index: 99;
	display: flex;
	align-items: center;
	justify-content: center;
}

.navigation ul {
	padding: 0px;
	margin: 0px;
}

.navigation li {
	list-style: none;
}

.navigation a {
	display: block;
	position: relative;
	width: 20px;
	height: 20px;
	font-size: 0;
}

.navigation a:before,
.navigation a:after {
	position: absolute;
	display: block;
	content: ""
}

.navigation a:before {
	left: 8px;
	top: 8px;
	width: 4px;
	height: 4px;
	border-radius: 4px;
	background: var(--style-black);
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.navigation a:after {
	left: 6px;
	top: 6px;
	width: 8px;
	height: 8px;
	border-radius: 8px;
	border: 1px solid var(--style-black);
	opacity: 0;
	transform: scale(1.5);
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.navigation a:active:before,
.navigation a.active:before {
	opacity: 0;
	transform: scale(3)
}

.navigation a:active:after,
.navigation a.active:after {
	opacity: 1
}

.navigation a:hover:before {
	transform: scale(3);
	opacity: 1
}

.navigation.ui-dark a:before {
	background-color: var(--style-white);
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.navigation.ui-dark a:after {
	border-color: var(--style-white);
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

a,
button,
input[type="submit"],  
.form-label,
nav a:before,
nav a:after,
.setion-title,
.banner-title,
*:before,
*:before {
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

footer.page-footer {
	padding: 90px 0 50px;
	background-color: var(--style-black);
	color: var(--style-white);
}

.footer-logo {
	width: auto;
	margin: 0 auto;
	text-align: center;
}

.footer-logo img {
	max-height: 80px;
}

.box-footer-links,
.footer-social-link {
	text-align: center;
	margin-top: 30px;
}

.box-footer-links ul,
.footer-social-link ul {
	display: inline-flex;
	list-style: none;
	justify-content: center;
	align-items: center;
	gap: 15px;
}

.box-footer-links a,
.footer-social-link a {
	color: var(--style-bg-light);
}

.box-footer-links a:hover,
.footer-social-link a:hover {
	color: var(--style-base);
}

.footer-copyright {
	text-align: center;
	margin-top: 30px;
}

.footer-copyright p {
	margin: 0px;
	padding: 0;
	color: var(--style-bg-light);
}

/* ====  inner pages ===*/
.inner-banner {
	overflow: hidden;
	position: relative;
	height: 300px;
}

.parallax-background {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.overlay:after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: auto;
	background-color: #05052058;
	left: 0;
	top: 0;
}

.inner-banner .parallax-content {
	position: absolute;
	z-index: 9;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: end;
	padding-bottom: 50px;
}

.inner-banner .banner-caption {
	width: 100%;
}

.page-title,
.page-title h2 {
	font-size: 28px;
	font-weight: 600;
}

.contacts-item {
	display: flex;
	gap: 15px;
	margin-bottom: 15px;
}

.contacts-item .contact-icon {
	width: 45px;
	height: 45px;
	background: var(--style-base);
	color: #FFF;
	font-size: 18px;
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
}

form .form-control,
form .form-select {
	height: 45px;
	background-color: #fff;
	border: 1px solid #ccc;
	box-shadow: 0 0 0 0;
	color: #3a4a56;
	padding: 5px 15px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
}

form .form-box {
	margin-bottom: 12px;
}

form .label-text {
	font-weight: 400;
	margin-bottom: 5px;
}

form .form-select {
	display: inline-block;
	width: 100%;
	color: #998da0;
	box-shadow: 0;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
}

form textarea {
	min-height: 80px !important;
}

form .error {
	color: red;
	margin-top: 3px;
	font-size: 14px;
}

/*=== Services Section ===*/
.services-section {
	position: relative;
	padding: 60px 0 30px;
	z-index: 2;
}

.service-block {
	position: relative;
	min-width: 20%;
	z-index: 1;
}

.service-block .inner-box {
	position: relative;
	height: 100%;
	padding: 35px 20px 30px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	background-color: #ffffff;
	text-align: center;
	min-height: 262px;
	-webkit-box-shadow: 0 1px 10px rgba(0, 0, 0, 0.07);
	box-shadow: 0 1px 10px rgba(0, 0, 0, 0.07);
	-webkit-transition: all 300ms linear;
	transition: all 300ms linear;
	z-index: 2;
	-webkit-border-radius: 7px;
	-moz-border-radius: 7px;
	border-radius: 7px;
}

.service-block .inner-box:after {
	position: absolute;
	left: 0;
	bottom: 0;
	height: 0%;
	width: 100%;
	content: "";
	z-index: -1;
	-webkit-transition: all 300ms linear;
	transition: all 300ms linear;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
}

.service-block .inner-box:before {
	position: absolute;
	left: 50%;
	top: 50px;
	margin-left: -51px;
	height: 102px;
	width: 102px;
	border-radius: 50%;
	background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
	content: "";
}

.service-block .inner-box:hover:after {
	background-color: var(--style-base);
}

.service-block .inner-box:hover:after {
	height: 100%;
}

.service-block .inner-box:hover:before {
	opacity: 0.2;
}

.service-block .inner-box:hover .title a {
	color: var(--style-white);
}

.service-block .inner-box:hover .read-more,
.service-block .inner-box:hover .icon,
.service-block .inner-box:hover p {
	color: var(--style-white);
}

.service-block .title a {
	display: block;
	margin-bottom: 20px;
	z-index: 1;
	position: relative;
	font-weight: 600;
}

.service-block .icon {
	position: relative;
	display: block;
	font-size: 60px;
	color: var(--style-base);
	line-height: 1em;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
	margin-bottom: 10px;
	z-index: 1;
	font-weight: 100 !important;
}

.service-block .read-more {
	position: relative;
	display: inline-block;
	font-size: 16px;
	line-height: 1em;
	color: var(--style-gray);
	margin-top: 25px;
}

/*===call action partial box ===*/
.action-section {
	position: relative;
	padding: 0px 0 60px;
	z-index: 2;
}

.action-section .action-text {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-top: 10px;
}

.action-section .action-text .inner {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 3px 10px;
	border: 2px solid var(--style-gray);
	gap: 15px;
	max-width: 860px;
	-webkit-border-radius: 7px;
	-moz-border-radius: 7px;
	border-radius: 7px;
}

@media (max-width: 1199px) {
	.action-section .action-text .inner {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		text-align: center;
		padding: 10px 20px 20px;
	}
}

.action-section .action-text .text {
	font-size: 16px;
	line-height: 30px;
	color: var(--style-gray);
	font-weight: 400;
	padding: 10px 0;
}

.action-section .action-text .theme-btn {
	line-height: 20px;
	padding: 15px 40px;
	font-size: 14px;
	margin-left: 15px;
}

/*=== Services Area ===*/
.service-item {
	z-index: 1;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
	position: relative;
	padding: 15px 15px 10px;
	text-align: center;
	background: var(--style-white);
	;
	border-radius: 7px;
	-webkit-box-shadow: 1px 0 10px var(--style-bg-light);
	box-shadow: 1px 0 10px var(--style-bg-light);
}

.service-item .icon {
	font-size: 36px;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
	margin-bottom: 10px;
	color: var(--style-base);
	line-height: 0;
}

.service-item .icon img {
	width: 100%;
	max-width: 60px;
}

.service-item h5 {
	margin-bottom: 15px;
}

.service-item h5 a {
	text-decoration: underline;
}

.service-item p {
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
	margin-bottom: 0px;
}

.service-item:after {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: -1;
	left: 0;
	top: 0;
	opacity: 0;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
}

.service-item:hover {
	background: var(--style-white)
}

.service-item:hover:after {
	opacity: 1;
}

/* .service-item:hover .icon,
  .service-item:hover a,
  .service-item:hover p {
	color: white;
  } */
.service-item.style-two {
	padding: 25px 0px 20px;
}

.service-item.style-two h5 {
	margin-bottom: 0;
}

.service-item.style-two h5 a {
	text-decoration: none;
}

.service-item.style-two:hover {
	-webkit-transform: translateY(-10px);
	-ms-transform: translateY(-10px);
	transform: translateY(-10px);
}

.service-item.style-three {
	-webkit-box-shadow: none;
	box-shadow: none;
	background: var(--style-gray);
}

.service-item.style-three .icon {
	font-size: 70px;
	margin-bottom: 22px;
}

.service-item.style-three .icon i {
	color: var(--style-base);
}

.service-item.style-three h4 {
	font-size: 22px;
}

.service-item.style-three .more-btn {
	font-size: 50px;
}

.service-item.style-three:after {
	display: none;
}

.social-icon-one li a {
	display: block;
	width: 15px;
	height: 15px;
}

.social-icon-one li a span:before {
	font-size: 15px;
}

/*===  About Us ===*/
.about .ww-do-two-images img {
	width: 100%;
	border-radius: 7px;
}

@media (min-width: 576px) {
	.border-right {
		border-right: 1px solid rgba(0, 102, 255, 0.1);
	}
}

.ww-do-two-images .image-one {
	margin-top: 60px;
}

@media (max-width: 575px) {
	.ww-do-two-images .image-one {
		margin-top: 0;
	}
}

@media (max-width: 575px) {
	.ww-do-two-images .image-two {
		margin-right: 30px;
		width: calc(40% - 18px);
	}
}

.ww-do-two-images .image-three {
	margin: 25px -55px 50px 0;
	max-width: calc(100% + 55px);
}

@media (max-width: 575px) {
	.ww-do-two-images .image-three {
		margin-right: 0;
		margin-bottom: 0;
		width: calc(60% - 18px);
	}
}

.year-of-experience {
	position: absolute;
	color: var(--style-white);
	left: 0;
	top: 50%;
	width: 200px;
	height: 200px;
	padding: 30px;
	font-size: 18px;
	line-height: 1.4;
	text-align: center;
	border-radius: 50%;
	background: var(--style-base);
	-webkit-transform: translate(-20%, -20%);
	-ms-transform: translate(-20%, -20%);
	transform: translate(-20%, -20%);
}

@media (max-width: 575px) {
	.year-of-experience {
		-webkit-transform: translate(0, -40%);
		-ms-transform: translate(0, -40%);
		transform: translate(0, -40%);
	}
}

@media (max-width: 375px) {
	.year-of-experience {
		width: 165px;
		height: 165px;
		font-size: 16px;
		-webkit-transform: translate(0, -30%);
		-ms-transform: translate(0, -30%);
		transform: translate(0, -30%);
	}
}

.year-of-experience .number {
	display: block;
	line-height: 1;
	font-size: 65px;
	margin-bottom: 15px;
}

@media (max-width: 375px) {
	.year-of-experience .number {
		font-size: 45px;
	}
}

/* ===== Eperties ===========*/
.expert-box {
	border: 1px solid #EEE;
	-webkit-box-shadow: 0 1px 10px rgba(0, 0, 0, 0.07);
	box-shadow: 0 1px 10px rgba(0, 0, 0, 0.07);
	-webkit-transition: all 300ms linear;
	transition: all 300ms linear;
	-webkit-border-radius: 7px;
	-moz-border-radius: 7px;
	border-radius: 7px;
	padding: 50px 25px;
	position: relative;
	background-color: var(--bs-white);
}

.expert-box:before {
	width: 100%;
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 0%;
	-webkit-border-radius: 7px;
	-moz-border-radius: 7px;
	border-radius: 7px;
	z-index: auto;
	-webkit-transition: all 300ms linear;
	transition: all 300ms linear;
}

.expert-box .icon:before {
	font-size: 30px;
}

.expert-box h5 {
	font-size: 18px;
}

.expert-box ul li {
	color: #555;
}

.expert-box:hover {
	-webkit-transform: translateY(-10px);
	-ms-transform: translateY(-10px);
	transform: translateY(-10px);
}

.expert-box:hover:before {
	background-color: var(--style-base);
	height: 100%;
	-webkit-transition: all 300ms linear;
	transition: all 300ms linear;
}

.expert-box:hover *,
.expert-box:hover *:after,
.expert-box:hover *:before,
.expert-box:hover .expert-box h5 {
	color: #FFF;
	position: relative;
	z-index: 99;
}

.form-conatner {
	background-color: #FFF;
	padding: 40px 35px 30px;
	border-radius: 12px;
}

.service-features-area {
	height: auto;
	width: 100%;
}

.service-features-area .app-box {
	display: flex;
	gap: 20px;
}

.service-features-area .app-box .icon-box {
	width: auto;
	text-align: center;
}

.service-features-area .app-box .title-box {
	margin-bottom: 10px;
}

.service-features-area .app-box .icon-box i {
	width: 40px;
	font-size: 45px;
	color: var(--style-base);
	font-weight: 100 !important;
	line-height: 1;
}

.rel {
	position: relative !important;
	z-index: 3;
}

/* === STATISTIC === */
#statistic-4 {
	padding-top: 60px;
	padding-bottom: 20px;
}

.statistic-block {
	width: 100%;
	display: flex;
	align-items: center;
	gap: 5px;
}

.statistic-block .statistic-block-digit {
	display: flex;
	align-items: center;
	gap: 5px;
	width: 100%;
}

.statistic-block .statistic-block-digit .icon {
	font-size: 28px;
	line-height: 0;
	color: var(--style-base);
}

.statistic-block .statistic-block-digit .statistic-number {
	display: flex;
	align-items: center;
	margin: 0px;
}

.statistic-block .statistic-block-digit .statistic-number .count-element {
	font-size: 36px;
}

.statistic-block .statistic-block-digit .statistic-number sup {
	display: flex;
	align-items: center;
	font-size: 18px;
	margin: 0px;
}

.statistic-block .statistic-block-txt {
	width: 100%;
}

.statistic-block .statistic-block-txt .statistic-text {
	font-size: 14px;
	font-weight: 500;
	line-height: 1.2;
	margin: 0;
}

/* === TESTIMONIALS === */
.testimonial-carousel {
	margin: 0 auto
}

.testimonials-wrapper {
	margin: 0 auto
}

.testimonials-wrapper .testimonial-area {
	position: relative;
	color: #000;
	border-radius: 16px;
	background: #FFFFFF;
	/* box-shadow: 5px 5px 5px 0 rgba(23, 23, 25, .3); */
	margin-bottom: 15px;
}

.testimonials-wrapper .testimonial-area:before {
	content: '\f10d';
	font-family: 'Font Awesome 6 Pro' !important;
	border-radius: 100%;
	color: #EEEEEE;
	position: absolute;
	z-index: 1;
	left: 10px;
	top: -5px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 90px;
}

/* .testimonials-wrapper .testimonial-area:after{
	content: '\f10e';
	font-family: 'Font Awesome 6 Pro' !important;
	border-radius: 100%;
	color: #EEEEEE;
	position: absolute;
	z-index: 1;
	right:10px;
	bottom:-5px; 
	display: flex;
	justify-content: center;
	align-items: center;  
	font-size: 50px;
  } */
.testimonials-wrapper .testimonial-area .testimonial-text {
	position: relative;
	padding: 30px;
	color: #000;
	border-radius: 5px;
	z-index: 99;
	height: 180px;
}

.testimonials-wrapper .testimonial-area .testimonial-text:after {
	content: "";
	display: block;
	position: absolute;
	width: 0;
	height: 0;
	right: 20px;
	bottom: -16px;
	border-left: 0px solid transparent;
	border-right: 18px solid transparent;
	border-top: 18px solid #FFFFFF;
}

.testimonials-wrapper .testimonial-area .testimonial-text p {
	margin-bottom: 0;
}

.testimonials-blob,
.testimonials-img {
	border-radius: 100%
}

.testimonials-img {
	position: relative;
	left: 50%;
	overflow: hidden !important;
	width: 80px;
	height: 80px;
	margin-bottom: 10px;
	margin-left: -50px;
	box-shadow: 0 0 0 3px #FFFFFF;
	transition: all ease-out .5s;
	transform: translateY(-30%);
	filter: brightness(2)
}

.testimonial-carousel .active .testimonials-img {
	transform: translateY(0);
	filter: brightness(1)
}

.testimonials-person-info {
	text-align: center;
	color: #fff
}

.testimonials-person-info p {
	margin-bottom: 0;
}

.testimonials-rating {
	width: 100%;
}

.testimonials-rating .star-list {
	margin: 0;
	padding: 0;
	display: flex;
	gap: 5px;
	justify-content: center;
	align-items: center;
	color: #ffd500;
}

.testimonials-blob {
	position: relative;
	left: 85%;
	width: 5px;
	height: 5px;
	border-radius: 50% !important;
	transform: rotate(45deg);
}

@keyframes anim {
	0% {
		opacity: 0;
		box-shadow: 0 0 0 0 #FFFFFF, 0 0 0 0 #FFFFFF
	}

	50% {
		box-shadow: 0 15px 0 0 #FFFFFF, 0 0 0 0 #FFFFFF
	}

	100% {
		opacity: 1;
		background: #FFFFFF;
		box-shadow: 0 15px 0 3px #FFFFFF, 0 35px 0 5px #FFFFFF
	}
}

.testimonial-carousel .active .testimonials-blob {
	transform-origin: 50% 50%;
	animation: anim linear .5s;
	animation-iteration-count: 1;
	animation-fill-mode: forwards;
}

.testimonial-carousel {
	overflow: hidden;
	cursor: grab
}

.testimonial-carousel:active {
	cursor: grabbing
}

.testimonial-carousel .owl-item {
	overflow: hidden;
	transition: all ease-out .3s;
	transform: scale(.7);
	opacity: 0
}

.testimonial-carousel .owl-item.active {
	transform: scale(1);
	opacity: 1
}

.testimonial-carousel .owl-next,
.testimonial-carousel .owl-prev {
	font-size: 13px;
	line-height: 35px;
	position: absolute;
	top: 50%;
	padding: 0 10px;
	transition: all ease-out .25s;
	transform: translateY(-100%);
	opacity: 1;
	color: #fff;
	border-radius: 3px;
	background: #171719
}

.testimonial-carousel .owl-next:hover,
.testimonial-carousel .owl-prev:hover {
	color: #fff;
	background: #615e6b
}

.testimonial-carousel .owl-prev {
	left: 0
}

.testimonial-carousel .owl-next {
	right: 0
}

.testimonial-carousel .owl-next.disabled,
.testimonial-carousel .owl-prev.disabled {
	opacity: 0
}

.testimonial-carousel .owl-dots {
	margin-top: 50px;
	display: flex;
	justify-content: center;
	gap: 5px;
	align-items: center;
}

.testimonial-carousel .owl-dots .owl-dot {
	width: 25px;
	border: 0px;
}

.testimonial-carousel .owl-dots .owl-dot.active {
	background-color: var(--style-base);
	width: 35px;
}

.scroll-section:last-of-type {
	padding-bottom: 90px;
}

@media (min-width:991px) and (max-width:1200px) {
	.nav-desktop.main-nav ul li a {
		padding: 10px 10px !important;
	}
}

@media (max-width:991px) {
	.home-banner video {
		width: 100%;
		object-fit: cover;
		height: 100%;
	}

	.home-banner {
		width: 100%;
		height: 100vh;
		position: relative;
		overflow: hidden;
	}

	.header.fixed {
		padding: 0px !important;
	}

	.section-navs {
		position: relative;
		margin-top: -50px;
	}

	.bannrt-title {
		font-size: 38px;
	}
}

@media (max-width:767px) {
	.section-title {
		font-size: 44px;
	}

	.section-navs {
		margin-top: -30px;
	}
}

@media (max-width:580px) {
	.section-title {
		font-size: 38px;
	}
}

.page-content ul {
	padding: 0 !important;
	margin: 0 !important;
}

.list-wt-bullet {
	list-style: none;
	padding: 0 !important;
	margin: 0 !important;
	columns: 2;
}

.list-wt-bullet li {
	list-style: none;
	margin: 0 0 10px;
}

.list-wt-bullet li i {
	color: var(--style-base);
}

.alert {
	margin: 0px !important; 
}

.login-page {
	background-color: #FFF;
	padding-bottom: 50px;
}

.login-page-box {
	margin-top: -100px;
	position: relative;
	z-index: 9;
}

.pricing-area .nav.nav-tabs {
	display: flex;
	border: 0px !important;
	align-items: center;
	justify-content: center;
	gap: 5px;
}

.pricing-area .nav.nav-tabs a {
	display: block;
	min-width: 120px;
}

.pricing-area .tab-content {
	border: 0px !important;
	margin-top: 50px;
	padding: 0px;
}

.pricing-area .tab-content .tab-pane.active {
	background-color: transparent;
}

.bg-baze {
	background-color: #f5f7d1;
}

.btn-check:checked+.btn,
.btn,
.btn.show,
.btn:first-child,
:not(.btn-check)+.btn {
	background-color: transparent;
	border-color: var(--style-black);
	color: var(--style-black);
}

.btn-check:checked+.btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check)+.btn:active {
	background-color: var(--style-base);
	border-color: var(--style-base);
	color: var(--style-white);
}

/*-------------------------------------------------------*/
/* Pricing Tables
/*-------------------------------------------------------*/
.switcher {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-top: 25px;
}

.switcher .switcher-btn {
	background-color: var(--style-secondary);
	border-color: var(--style-secondary);
	color: var(--style-white);
	padding: 5px 20px;
	min-width: 120px;
}

.switcher .switcher-btn.active {
	background-color: var(--style-base);
	border-color: var(--style-base);
	color: var(--style-white);
}

.pricing-table {
	background-color: #fff;
	text-align: center;
	overflow: hidden;
	padding: 30px;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	position: relative;
	border-radius: 12px;
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}

.pricing-table--best .pricing-table__price,
.pricing-table--best .pricing-table__currency {
	color: #39bad6;
}

.pricing-table__ribbon {
	background-color: #6f42c1;
	position: absolute;
	padding: 5px 10px;
	color: #fff;
	height: 34px;
	right: 0;
	top: 10px;
	font-weight: 500;
}

.pricing-table__ribbon:before {
	content: "";
	width: 0;
	height: 100%;
	border-width: 17px 15px;
	border-style: solid;
	border-color: #6f42c1 #6f42c1 #6f42c1 transparent;
	position: absolute;
	left: -20px;
	top: 0;
}

.pricing-table__icon {
	display: block;
	font-size: 56px;
	color: #929292;
}

.pricing-table__title {
	font-size: 20px;
	margin-top: 22px;
	margin-bottom: 10px;
	min-height: 50px;
}

.pricing-table__price-box {
	padding: 0 0 0px;
	color: #212121;
}

.pricing-table__currency {
	display: inline-block;
	vertical-align: top;
	margin: 16px 2px 0 0;
	font-size: 34px;
	font-weight: 300;
}

.pricing-table__amount {
	display: flex;
	justify-content: center;
	align-items: center;
}

.pricing-table__price {
	font-size: 46px;
	font-weight: 500;
	display: flex;
	align-items: baseline;
}

.pricing-table__plan {
	font-size: 16px;
	font-weight: 600;
	display: block;
	color: #e4760f;
	margin-bottom: 15px;
}

.pricing-table__validity {
	font-size: 14px !important;
}

.pricing-table__term {
	font-size: 15px;
	font-weight: 400;
	display: block;
	color: #212020;
}

.pricing-table__features {
	color: #212020;
	font-size: 15px;
	margin-top: 20px;
	margin-bottom: 20px;
}

.pricing-table__features ul {
	list-style: none;
	padding: 0px;
	margin: 0px;
	margin-left: auto;
}

.pricing-table__features li {
	padding: 4px 0;
	text-align: left;
	display: flex;
	align-items: center;
	justify-content: start;
	gap: 10px;
}

.pricing-table__features li:before {
	width: 20px;
	height: 20px;
	background-color: #f5f7d1;
	color: var(--style-base);
	content: "\f00c";
	font-family: 'Font Awesome 6 Pro' !important;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	border-radius: 0;
}

.morningMonth,
.morningYear,
.eveningMonth,
.eveningYear {
	display: none;
}

.morningMonth.active,
.morningYear.active,
.eveningMonth.active,
.eveningYear.active {
	display: block;
}

.sticky-top {
	position: -webkit-sticky;
	position: sticky;
	top: 80px;
	z-index: auto;
}
.price-aside{
	background-color: #fbfbfb;
	border: 1px solid #f5f5f5;
    padding: 20px;
    border-radius: 12px;
}
.price-aside .plan-price-detail, .price-aside .booking-data, .price-aside span{
	border-color: #f3f4f5 !important;
}
.accordion-button, .accordion-button:not(.collapsed){ 
	box-shadow: unset !important;
    border: 1px solid #f5f5f5;
	border-bottom: 0px !important;
    border-radius: 12px 12px 0 0 !important;
    overflow: hidden;
    background-color: #FFF;
}
.accordion-button.collapsed{ 
	background-color: #FFF;
	border: 1px solid #f5f5f5;
	border-bottom: 0px !important;
	border-radius:12px !important; 
	overflow: hidden;
}
.accordion-item{
	border: unset; 
	margin-bottom: 15px; 
}
.accordion-header{ 
	overflow: hidden;
} 

.accordion-body{
	background-color: #FFF;
	border: 1px solid #f5f5f5;
	border-top: 0px !important;
	border-radius:0 0 12px 12px; 
} 
.accordion-button:focus,.accordion-button:active{
	background-color: #f5f5f5;
	box-shadow: unset !important;
}

fieldset {
    min-width: 0;
    padding: 10px !important;
    margin: 0;
    border-radius: 10px !important;
    border: 1px solid #e5e5e5 !important;
}
legend {
    float: unset;
    width: auto !important;
	padding:5px 5px;
    margin-bottom: 0;
    font-size:14px !important;
    line-height: inherit;
}
.input-password{ position: relative;}
.password-eye{
	position: absolute;
    right:5px;
    top: 2px;
    padding: 0;
    background-color: #FFF;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    line-height: 0;
    justify-content: center;
}
.btn-coupon-cancel{
	position: absolute;
	right:70px;
	top:1px;
	background-color: transparent;
	color: red;
	padding: 10px;
}
.form-control.coupon{border-color:#0d121e;}

#pricing_tabs .nav-link.active{
    border: 0px !important;
    background-color: #e54692;
    border-radius: 25px !important;
    line-height: 1.8;
    color: #FFF !important;
}
#pricing_tabs .nav-link{
    border: 0px !important;
    background-color: #000000;
    border-radius: 25px !important;
    line-height: 1.8;
    color: #FFF !important;
}


.contacts .footer-social-link{ text-align:left !important;}
.contacts .footer-social-link ul{ margin:0px; padding:0px;}
.contacts .footer-social-link a{
    font-size: 18px;
    color: #ffffff;
    display: block;
    background: #040000;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding: 0;
    margin: 0;
    line-height: 0;
}
.contacts .footer-social-link a:hover{
  background-color: var(--style-base);   
}
