body {
	--color-1: #0fa352;
	--color-2: #F4F4F4;
	--color-3: #F9F9F9;
	--color-4: #FFF;
	--color-5: #00b65c;
	--color-6: #009c4f;
	--color-7: rgb(0, 182, 92, .15)
}

body,
html {
	margin: 0;
	padding: 0;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
	color: var(--color-4);
	background: rgb(0, 0, 0);
	background: linear-gradient(100deg, rgba(0, 0, 0, 1) 20%, rgba(15, 163, 82, 1) 100%)
}

.hidden {
	display: none !important
}

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

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

.primary-color {
	color: var(--color-5)
}

.cursor-pointer {
	cursor: pointer
}

.p-relative {
	position: relative
}

:focus {
	outline: 0px !important;
	-webkit-appearance: none;
	box-shadow: none !important
}

select,
textarea,
input {
    -webkit-appearance: none !important;
       -moz-appearance: none !important;
            appearance: none !important;
}

textarea {
	resize: none
}

.alert {
	border-radius: 25px;
	border: none !important
}

.alert.alert-success {
	color: #09b797 !important;
	background: #2dfad431 !important
}

.alert.alert-danger {
	color: #EE5B5B !important;
	background: #ee5b5b41 !important
}

.no-auth .container {
	max-width: 1200px
}

.auth .container {
	max-width: 100%
}

@media (min-width:992px) {
	.auth .container {
		padding: 0 40px
	}
}

@media (min-width:1200px) {
	.auth .container {
		padding: 0 60px
	}
}

@media (min-width:1400px) {
	.auth .container {
		padding: 0 100px
	}
}

.no-auth .page-content {
	min-height: calc(100vh - 100px)
}

.btn {
	position: relative;
	border-radius: 35px;
	font-weight: 600;
	font-size: 16px;
	line-height: 20px;
	padding: 13px 30px;
	color: var(--color-4)
}

.btn:hover {
	color: var(--color-4)
}

.btn-sm {
	padding: 6px 12px;
	font-size: 14px
}

.btn-rounded {
	border-radius: 50px
}

.btn-100 {
	display: block;
	width: 100%
}

.btn-100.btn-icon {
	display: flex
}

.btn-primary {
	background-color: var(--color-5);
	border-color: var(--color-5);
	color: var(--color-4)
}

.btn-primary:focus,
.btn-primary:hover {
	background-color: var(--color-6) !important;
	border-color: var(--color-6) !important;
	color: var(--color-4)
}

.btn-secondary {
	background: #15251b;
	border-color: #15251b;
	color: #fff
}

.btn-secondary:focus,
.btn-secondary:hover {
	background-color: #1c2e23!important
}

.btn-secondary.btn-border {
	border-color: #222a54 !important
}

.pagination .page-item.active .page-link {
	background-color: #0f163a;
	color: #fff
}

.pagination .page-item:first-child {
	border-right: 1px solid #1b2454
}

.pagination .page-item:first-child .page-link {
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;
	font-weight: 400
}

.pagination .page-item:last-child {
	border-left: 1px solid #1b2454
}

.pagination .page-item:last-child .page-link {
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px;
	font-weight: 400
}

.pagination .page-item .page-link {
	background: #0f163a;
	border: none;
	margin: 0;
	height: 50px;
	padding: 0;
	min-width: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	font-size: 17.3005px;
	line-height: 18px;
	color: #5a6081;
	position: relative
}

.pagination .page-item .page-link:focus {
	z-index: 20
}

.mobile-nav {
	z-index: 1001;
	position: relative;
	display: block;
	height: 72px;
	position: fixed;
	width: 100%;
	left: 0;
	top: 0;
	background: rgba(0, 0, 0, .8);
	backdrop-filter: blur(15px)
}

.mobile-nav .row {
	height: 72px;
	align-items: center
}

@media (min-width:992px) {
	.mobile-nav {
		display: none
	}
}

.menu-toggle-btn {
	width: 42px;
	height: 42px;
	border-radius: 10px;
	background-color: var(--color-7);
	color: var(--color-5);
	outline: none;
	border: none;
	display: flex;
	align-items: center;
	justify-content: center
}

.header {
	position: fixed;
	width: 100%;
	bottom: 0;
	left: 0;
	z-index: 1000
}

@media (min-width:992px) {
	.header {
		height: 110px;
		padding: 5px 0 0 0;
		top: 0;
		bottom: initial
	}
}

.header .header-row {
	align-items: center
}

@media (min-width:992px) {
	.header .header-row {
		height: 105px
	}
}

@media (min-width:992px) {
	.header.active {
		padding-top: 0;
		height: 90px;
		background: rgb(0, 0, 0, .35);
		backdrop-filter: blur(15px);
		transition: 0.14s ease
	}

	.header.active .row {
		height: 90px
	}

	.header.active .header-menu>li>a {
		padding: 36px 5px
	}
}

.header .menu-toggle-close {
	display: none
}

@media (max-width:992px) {
	.header-logo {
		object-fit: cover
	}

	.header {
		background-color: #000;
		padding: 20px 20px 30px 20px;
		border-radius: 20px 20px 0 0;
		border-top: 1px solid rgba(255, 255, 255, .2);
		max-height: calc(100vh - 100px);
		transform: translateY(100%);
		transition: 0.2s ease
	}

	.header.opened {
		transform: translateY(0)
	}

	.header .menu-toggle-close {
		width: 36px;
		height: 36px;
		border-radius: 50%;
		font-size: 24px;
		background-color: var(--color-7);
		color: var(--color-5);
		border: none;
		outline: none;
		display: flex;
		align-items: center;
		justify-content: center;
		position: absolute;
		top: 17px;
		right: 20px
	}

	.header .header-menu {
		padding-top: 30px;
		flex-direction: column;
		gap: 10px
	}

	.header .header-menu li {
		padding: 0
	}

	.header .header-menu li a {
		padding: 10px 0;
		font-weight: 400;
		font-size: 18px;
		color: rgba(255, 255, 255, .8)
	}

	.header .header-menu li a.active {
		color: #fff
	}

	.header .header-menu li a::after {
		background-color: transparent !important
	}
}

.header-menu {
	display: flex;
	margin: 0;
	padding: 0;
	list-style: none;
	gap: 40px;
	justify-content: center
}

.header-menu>li {
	margin: 0;
	padding: 0
}

.header-menu>li>a {
	display: block;
	margin: 0;
	padding: 42px 5px;
	font-weight: 400;
	font-size: 14px;
	line-height: 125%;
	color: #fff;
	text-decoration: none;
	position: relative
}

.header-btn {
	border-radius: 25px;
	display: inline-flex;
	align-items: center;
	gap: 14px;
	padding: 9px 9px 9px 30px;
	overflow: hidden;
	background-color: var(--color-5);
	color: var(--color-4);
	text-decoration: none;
	transition: 0.14s ease
}

.header-btn:hover {
	color: var(--color-4)
}

.header-btn:hover .icon::after {
	transform: scale(8)
}

.header-btn .text {
	font-weight: 400;
	font-size: 14px;
	line-height: 22px;
	letter-spacing: -.03em;
	position: relative;
	z-index: 1004
}

.header-btn .icon {
	display: flex;
	width: 32px;
	height: 32px;
	align-items: center;
	justify-content: center;
	position: relative
}

.header-btn .icon .icon-ri {
	z-index: 1003
}

.header-btn .icon::after {
	content: "";
	z-index: 1002;
	background: rgba(0, 0, 0, .15);
	border-radius: 16px;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	transition: 0.4s ease
}

@media (min-width:992px) {
	.header-btn.without-icon {
		background-color: transparent;
		padding: 14px 30px;
		cursor: pointer
	}

	.header-btn.without-icon .icon {
		display: none
	}
}

.page-head {
	position: relative;
	padding-top: 72px
}

@media (min-width:992px) {
	.page-head {
		padding-top: 110px
	}
}

.page-head-container {
	padding: 40px 0 10px 0
}

@media (min-width:768px) {
	.page-head-container {
		padding: 40px 0 15px 0
	}
}

.ph-title {
	font-weight: 400;
	padding-top: 25px;
	margin-bottom: 20px;
	font-size: 32px;
	line-height: 46px
}

h2.ph-text,
.ph-text {
	font-size: 15px;
	line-height: 23px;
	color: var(--color-4);
	max-width: 650px;
	font-weight: 400
}

.ph-card {
	height: 100%;
	position: relative;
	text-align: right
}

.ph-card img {
	max-width: 450px
}

.ph-card .himg-1,
.ph-card .himg-2 {
	position: absolute;
	height: 100px
}

.ph-card .himg-1 {
	left: 5px;
	top: 220px
}

.ph-card .himg-2 {
	left: -10px;
	top: 240px
}

@media (min-width:992px) {
	.ph-card .img {
		display: block
	}
}

@-webkit-keyframes floating {
	0% {
		box-shadow: 0 5px 15px 0 rgba(0, 0, 0, .6);
		-webkit-transform: translatey(0);
		transform: translatey(0)
	}

	50% {
		box-shadow: 0 25px 15px 0 rgba(0, 0, 0, .2);
		-webkit-transform: translatey(-20px);
		transform: translatey(-20px)
	}

	100% {
		box-shadow: 0 5px 15px 0 rgba(0, 0, 0, .6);
		-webkit-transform: translatey(0);
		transform: translatey(0)
	}
}

@keyframes floating {
	0% {
		box-shadow: 0 5px 15px 0 rgba(0, 0, 0, .6);
		-webkit-transform: translatey(0);
		transform: translatey(0)
	}

	50% {
		box-shadow: 0 25px 15px 0 rgba(0, 0, 0, .2);
		-webkit-transform: translatey(-20px);
		transform: translatey(-20px)
	}

	100% {
		box-shadow: 0 5px 15px 0 rgba(0, 0, 0, .6);
		-webkit-transform: translatey(0);
		transform: translatey(0)
	}
}

.floating {
	-webkit-animation-name: floating;
	animation-name: floating;
	-webkit-animation-duration: 3s;
	animation-duration: 3s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-timing-function: ease-in-out;
	animation-timing-function: ease-in-out;
	margin-top: 5px;
	box-shadow: none !important
}

.page-alt {
	padding: 50px 0
}

.page-alt .t-widget-area {
	display: flex;
	align-items: center;
	padding: 35px 0;
	gap: 75px
}

.page-alt .t-widget {
	text-align: center
}

.page-alt .t-widget img {
	height: 50px
}

.page-alt .t-widget p {
	padding-left: 7px;
	font-size: 18px
}

.music-section {
	padding: 125px 0;
	text-align: center
}

.music-section img {
	height: 65px
}

.music-section .ms-title {
	padding-bottom: 50px
}

.music-section .ms-title h2 {
	font-size: 36px;
	font-weight: 600
}

.what-we-do {
	padding: 150px 0 25px 0
}

.what-we-do .wwd-content {
	text-align: left
}

.what-we-do .wwd-content .wwd-title {
	font-size: 36px;
	font-weight: 600;
	padding-bottom: 25px;
	position: relative;
	z-index: 2
}

.what-we-do .wwd-content .wwd-text {
	max-width: 425px
}

.what-we-do .circle-bg {
	position: absolute;
	left: -250px;
	top: -250px;
	width: 850px
}

.hp-bf-box {
	padding: 44px 34px;
	border-radius: 15px;
	color: #fff;
	-webkit-transition: .14s ease;
	transition: .14s ease;
	text-align: left;
	transition: 500ms all
}

.hp-bf-box:hover {
	transform: translateY(-1rem);
	transition: 500ms all;
	cursor: pointer
}

.hp-bf-box.bg-1 {
	background: rgb(27, 67, 44);
	background-image: url(https://storage.perfectcdn.com/dvj0ve/pbm3a38j7zr6r6f4.png), linear-gradient(180deg, rgba(27, 67, 44, 1) 25%, rgba(6, 155, 79, 1) 100%);
	background-repeat: no-repeat;
	background-size: cover
}

.hp-bf-box.bg-2 {
	background: rgb(27, 67, 44);
	background: url(https://storage.perfectcdn.com/dvj0ve/e7ixwy1yy4k60xc4.png), linear-gradient(360deg, rgba(27, 67, 44, 1) 25%, rgba(6, 155, 79, 1) 100%);
	background-repeat: no-repeat;
	background-size: cover
}

.hp-bf-box.bg-3 {
	background: rgb(27, 67, 44);
	background-image: url(https://storage.perfectcdn.com/dvj0ve/pjubby343w7htegh.png), linear-gradient(180deg, rgba(27, 67, 44, 1) 25%, rgba(6, 155, 79, 1) 100%);
	background-repeat: no-repeat;
	background-size: cover
}

.hp-bf-box.bg-4 {
	background: rgb(27, 67, 44);
	background-image: url(https://storage.perfectcdn.com/dvj0ve/p4oe4j4qmtu569s4.png), linear-gradient(180deg, rgba(27, 67, 44, 1) 25%, rgba(6, 155, 79, 1) 100%);
	background-repeat: no-repeat;
	background-size: cover
}

.hp-bf-box:hover {
	border-color: #FA0
}

.hp-bf-box .hp-bf-title {
	font-weight: 600;
	font-size: 19px;
	line-height: 135%;
	color: #fff
}

.hp-bf-box .hp-bf-text {
	font-size: 14px;
	line-height: 150%;
	letter-spacing: -.4px;
	color: #fff;
	margin-bottom: 0
}

.calc-section {
	padding: 100px 0 50px 0
}

.ctm-section {
	padding: 100px 0 0 0
}

.calc-section .calculator {
	background: rgb(21, 35, 27);
	background: linear-gradient(90deg, rgba(21, 35, 27, 1) 0%, rgba(22, 47, 32, 1) 100%);
	border-radius: 15px;
	border: 2px solid #84988d;
	margin-top: 50px
}

.calc-section .calculator .calc-body {
	padding: 20px
}

.calc-section .calculator .calc-body .form-control {
	background-color: var(--color-5);
	border: 1px solid var(--color-5);
	border-radius: 30px;
	font-weight: 600;
	font-size: 15px;
	line-height: 24px;
	color: #fff;
	height: 60px
}

.calc-section .calculator .calc-body .form-control:focus {
	outline: none;
	border-color: var(--color-6);
	background-color: var(--color-6);
	color: #fff
}

.calc-section .calculator .calc-body .form-range {
	width: 100%;
	height: 4px
}

.form-range {
	background: #fff;
	border: solid 2px #fff;
	border-radius: 8px;
	height: 7px;
	width: 400px;
	outline: none;
	transition: background 450ms ease-in;
	-webkit-appearance: none
}

.form-range::-webkit-slider-thumb {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	-webkit-appearance: none;
	cursor: ew-resize;
	background: var(--color-5)
}

.calc-section .ms-title h3 {
	font-size: 36px;
	font-weight: 600;
	text-align: center;
	margin-top: -100px
}

@media (max-width:991.98px) {
	.music-section .ms-title h2 {
		font-size: 24px
	}

	.music-section .ms-title {
		padding-bottom: 20px
	}

	.music-section img {
		margin-bottom: 15px;
		width: 100%
	}

	.page-alt .t-widget-area {
		display: block
	}

	.page-alt .t-widget-area .t-widget {
		margin-bottom: 25px
	}

	.ph-title {
		font-size: 32px;
		padding-top: 7px
	}

	.music-section,
	.what-we-do {
		padding: 0 0 50px 0
	}

	.calc-section .ms-title h3,
	.what-we-do .wwd-content .wwd-title {
		font-size: 24px
	}
}

.home-section {
	padding: 50px 0;
	position: relative
}

.home-section .h-bg {
	position: absolute;
	content: "";
	border-radius: 50% 0 0 50%;
	right: 0;
	top: 100px;
	height: 100%;
	width: 50%;
	opacity: .5;
	background-color: #000;
	filter: blur(100px)
}

.home-section .hsec-text h2 {
	font-size: 36px;
	font-weight: 600;
	padding-bottom: 25px
}

.home-section .hsec-img {
	position: relative
}

.home-section .hsec-img .h-img3 {
	position: absolute;
	height: 125px;
	left: 60px;
	top: 325px
}

.home-section2 {
	padding: 0;
	position: relative
}

.home-section2 .h-bg {
	position: absolute;
	content: "";
	border-radius: 50% 0 0 50%;
	right: 0;
	top: 100px;
	height: 100%;
	width: 50%;
	opacity: .5;
	background-color: #000;
	filter: blur(100px)
}

.home-section2 .hsec-text h2 {
	font-size: 36px;
	font-weight: 600;
	padding-bottom: 25px
}

.home-section2 .hsec-img {
	position: relative
}

.home-section2 .hsec-img .himg-4 {
	position: absolute;
	height: 125px;
	right: 60px;
	top: 275px
}

@media (max-width:991.98px) {
	.home-section2 .hsec-img {
		display: none
	}
}

.product-section {
	padding: 0 0 75px 0
}

#productSlide {
	position: relative
}

#productSlide .ri-arrow-left-s-line,
#productSlide .ri-arrow-right-s-line {
	position: absolute;
	background: #ffffff30;
	width: 40px;
	height: 40px;
	border-radius: 100%;
	border: 1px solid #fff
}

#productSlide .ri-arrow-left-s-line {
	top: 200px;
	left: -60px
}

#productSlide .ri-arrow-right-s-line {
	top: 200px;
	right: -30px
}

.prItem {
	overflow: hidden;
	border-radius: 25px;
	background: rgb(21, 35, 27);
	background: linear-gradient(90deg, #068043 40%, #1a3526 90%);
	border-radius: 15px;
	border: 2px solid #84988d;
	width: 90%;
	position: relative;
	margin-right: 5px
}

.prItem .prContent {
	padding: 15px 20px
}

.prItem .prContent {
	position: relative;
	z-index: 1;
	color: #fff;
	flex-direction: column;
	height: 100%;
	justify-content: space-between
}

.prItem .prContent>.title {
	font-size: 24px;
	font-weight: 400;
	margin-bottom: 10px;
	text-align: center;
	letter-spacing: 1px
}

.prItem .prContent>p {
	font-size: 32px;
	font-weight: 500;
	color: #FFF;
	padding: 5px 10px;
	border-radius: 15px;
	width: max-content
}

.prItem .prContent>ul {
	padding-left: 10px;
	margin: 20px 0 20px;
	list-style-type: none;
	min-height: 250px
}

.prItem .prContent>ul>li:not(:last-child) {
	padding-bottom: 15px
}

.prItem .prContent>ul>li {
	font-size: 16px;
	font-weight: 400
}

.prItem .prContent>ul>li>i {
	width: 30px;
	color: #1547D5
}

@media (max-width:991.98px) {

	#productSlide .ri-arrow-left-s-line,
	#productSlide .ri-arrow-right-s-line {
		display: none !important
	}

	.prItem {
		width: 100% !important
	}

	.home-section,
	.home-section2,
	.product-section {
		padding: 50px 0
	}

	.home-section .hsec-text h2,
	.home-section2 .hsec-text h2 {
		font-size: 24px
	}
}

.steps-section {
	padding: 0
}

.steps-section .steps-content h2 {
	font-size: 36px;
	font-weight: 600;
	padding-bottom: 25px
}

.steps-section .steps-content h3 {
	font-weight: 400;
	font-size: 28px
}

.steps-section .steps-content p {
	font-size: 14px
}

@media (max-width:991.98px) {
	.steps-section .steps-content h2 {
		font-size: 24px;
		text-align: center
	}

	.steps-section .steps-content h3 {
		font-size: 20px
	}
}

.faq-section {
	padding: 50px 0 75px 0
}

.gnyFAQs .gnyFtab {
	position: relative;
	cursor: pointer;
	background: transparent;
	color: #fff;
	padding: 13px 20px;
	-webkit-transition: .2s ease;
	transition: .2s ease;
	margin-bottom: 14px;
	border-bottom: 1px solid #aab2a4
}

.gnyFAQs .gnyFtab .fa-minus {
	display: none
}

.gnyFAQs .gnyFtab.active {
	background: transparent;
	color: #fff
}

.gnyFAQs .gnyFtab.active .gnyFhead {
	color: #fff
}

.gnyFAQs .gnyFtab.active .gnyFhead .right-p {
	color: #fff
}

.gnyFAQs .gnyFtab.active .fa-minus {
	display: block
}

.gnyFAQs .gnyFtab.active .fa-plus {
	display: none
}

.gnyFAQs .gnyFtab .gnyFhead {
	font-size: 20px;
	font-weight: 400;
	color: #fff
}

.gnyFAQs .gnyFtab .gnyFhead .right-p {
	color: #fff;
	font-size: 14px;
	height: 30px;
	line-height: 30px
}

.gnyFAQs .gnyFtab .gnyFcontent {
	display: none;
	padding-top: 12px;
	color: #fff;
	font-size: 15px;
	line-height: 170%;
	padding-bottom: 8px
}

.footer-top {
	margin-top: 125px
}

.footer-top .ms-title h3 {
	font-weight: 400;
	line-height: 42px
}

footer {
	background: var(--color-1);
	padding: 50px 0 25px 0
}

footer .footer-links a {
	font-size: 16px;
	color: #fff
}

footer .footer-links a:hover {
	color: #ccc
}

footer span {
	font-size: 14px
}

@media (max-width:991.98px) {
	.footer-top .ms-title h3 {
		font-size: 20px;
		line-height: 28px;
		font-weight: 400
	}

	.faq-section {
		padding: 50px 0
	}

	.footer-top {
		margin-top: 75px
	}

	.gnyFAQs .gnyFtab .gnyFhead {
		font-size: 16px
	}

	footer {
		text-align: center;
		padding: 25px 0
	}

	footer .footer-links {
		margin-top: 20px;
		line-height: 2.2rem
	}
}

.loginModal .modal-content {
	background: url(https://storage.perfectcdn.com/dvj0ve/yuayz1e2ax6gmc70.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	border-radius: 35px;
	padding: 50px 20px
}

.loginModal .login-input {
	background: linear-gradient(120deg, #00b52f 0%, #008023 100%);
	height: 60px;
	border-radius: 35px;
	border: none;
	outline: 0;
	width: 100%;
	padding: 0 20px;
	font-size: 14px;
	color: #fff
}

.loginModal .login-input::placeholder {
	color: #fff
}

.loginModal a {
	font-size: 13px;
	color: #00c358
}

.loginModal .login-remember-me {
	font-size: 13px
}

.loginModal .close-btn {
	position: absolute;
	top: -60px;
	left: 20px;
	background: none;
	border: none;
	outline: 0;
	color: #fff;
	font-size: 32px
}

.register-right {
	border-left: 1px solid #ffffff80;
	padding: 25px
}

.register-right h6 {
	font-size: 15px
}

.register-right p,
.register-right span {
	font-size: 13px
}

.card {
	background: transparent;
	border: none
}

#appDashboard .card {
	position: relative;
	z-index: 2;
	box-shadow: none
}

.form-control,
.form-control:read-only,
.form-control:disabled {
    border: 1px solid #222 !important;
    background: #162f20;
	border-radius: 25px;
	line-height: 20px;
	padding: 14px 18px;
	outline: none;
	font-weight: 600;
	font-size: 14px;
	line-height: 17px;
	color: rgba(255, 255, 255, .842);
	height: 50px
}

.form-control:focus {
	box-shadow: 0 0 0 4px rgba(2, 88, 255, .3);
	background-color: #162f2070;
	border: 1px solid transparent;
	color: #fff
}

.form-control::placeholder {
	color: #fff
}

.form-control:disabled {
	background-color: #222;
	opacity: .7
}

.form-select,
select.form-control {
    border: 1px solid #222 !important;
    background: #0b0b0b;
	border-radius: 25px;
	line-height: 20px;
	padding: 14px 18px;
	font-weight: 600;
	font-size: 14px;
	line-height: 17px;
	color: rgba(255, 255, 255, .842);
	width: 100%
}

.form-select:focus,
select.form-control:focus {
	box-shadow: none;
	background: #222;
	border: 1px solid #222!important
}

.form-select::placeholder,
select.form-control::placeholder {
	color: rgba(255, 255, 255, .5)
}

.form-label,
label {
	font-weight: 600;
	font-size: 14px;
	line-height: 16px;
	color: #fff;
	margin-bottom: 12px
}

.form-control-lg {
	padding: 20px 18px
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
	box-shadow: 0 0 0 30px #f7fafc inset !important;
	-webkit-text-fill-color: #0c2447 !important
}

.form-check-label {
	font-weight: 600;
	font-size: 14px;
	line-height: 17px;
	color: #fff
}

.appAuth {
	position: relative;
	min-height: 100vh;
	background: linear-gradient(360deg, rgba(2, 10, 5, 1) 0%, rgba(1, 80, 27, 1) 100%);
	padding-left: 280px;
	padding-top: 100px;
	color: #fff
}

.appAuth .container {
	max-width: 1400px
}

.appAuth .menu-btn {
	position: fixed;
	top: 14px;
	left: 14px
}

.appAuth .menu-btn .ri-close-line,
.appAuth .menu-btn .ri-menu-line {
	position: absolute;
	left: 50%;
	top: 50%
}

.appAuth .menu-btn .ri-close-line {
	transform: scale(0) translate(-50%, -50%);
	transition: 0.2s ease
}

.appAuth .menu-btn .ri-menu-line {
	transition: 0.2s ease;
	transform: translate(-50%, -50%)
}

@media (max-width:992px) {
	.appAuth {
		padding-top: 90px;
		padding-left: 0
	}

	.appAuth.sidebar-active .appSidebar {
		transform: translateX(0) translateX(0)
	}

	.appAuth.sidebar-active .menu-btn {
		left: 300px
	}

	.appAuth.sidebar-active .menu-btn .ri-close-line {
		transform: scale(1) translate(-50%, -50%)
	}

	.appAuth.sidebar-active .menu-btn .ri-menu-line {
		transform: scale(0) translate(-50%, -50%)
	}

	.appAuth .appSidebar {
		transform: translateX(-110%);
		transition: 0.24s ease;
		box-shadow: 4px 0 30px rgba(0, 0, 0, .3)
	}
}

.appSidebar {
	background: rgb(0, 174, 82);
	background: linear-gradient(180deg, rgba(0, 174, 82, 1) 0%, rgba(35, 31, 32, 1) 100%);
	border-right: 1px solid rgba(0, 174, 82, 1);
	border-radius: 0;
	width: 280px;
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	display: flex;
	flex-direction: column;
	z-index: 1040
}

.sbLogo {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 6px 0 0 0;
	margin-bottom: -10px
}

.sbLogo img {
	max-width: 190px
}

.sbMenuWr {
	flex: 1;
	overflow-y: scroll;
	padding: 20px 0 40px
}

.sbMenu {
	list-style: none;
	margin: 0;
	padding: 0 0 0 10px;
	gap: 5px;
	display: flex;
	flex-direction: column
}

.sbMenu .mItem {
	display: block
}

.sbMenu .mLink {
	color: #7db590;
	display: flex;
	align-items: center;
	padding: 15px 20px;
	transition: 0.14s ease;
	cursor: pointer
}

.sbMenu .mLink .mText {
	font-weight: 600;
	font-size: 15px;
	line-height: 16px
}

.sbMenu .mLink.active {
	background: rgb(3, 88, 43);
	background: linear-gradient(180deg, rgba(3, 88, 43, 1) 0%, rgba(23, 146, 80, 1) 100%);
	border-radius: 50px 0 0 50px;
	color: #fff;
	border-right: 5px solid var(--color-5)
}

.sbMenu .mLink.active:hover {
	color: #fff
}

.sbMenu .mLink:hover {
	color: #fff
}

.sbMenu .mSMore {
	background: #0c2447;
	border: 1px solid #2a4771;
	color: #fff;
	display: flex;
	justify-content: center;
	gap: 10px;
	align-items: center;
	border-radius: 30px;
	display: flex;
	align-items: center;
	padding: 15px 20px;
	transition: 0.14s ease;
	cursor: pointer
}

.sbMenu .mSMore .mText {
	font-weight: 600;
	font-size: 14px;
	line-height: 16px
}

.appHeader {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	height: 90px;
	z-index: 1001;
    background: rgb(0, 0, 0);
    background: linear-gradient(270deg, rgb(22, 47, 32, 1) 0%, rgba(0, 255, 127, .2) 100%);
    border-image: linear-gradient(to right, transparent 0%, #00FF7F 100%) 1;
    border-radius: 0;
    border-width: 2px;
    border-style: solid;
    border-left: none;
    border-top: none;
    border-right: 0;
}

@media (min-width:768px) {
	.appHeader {
		padding: 0 30px;
		height: 90px;
	}
}

.appHeader.darkHeader {
	background: #0d111791;
	backdrop-filter: blur(32px)
}

.appHeader .headerLeft {
	height: 74px;
	align-items: center
}

@media (min-width:992px) {
	.appHeader .headerLeft {
		height: 90px
	}
}

@media (min-width:992px) {
	.appHeader {
		left: 280px
	}
}

.hWelcome {
	font-weight: 600;
	font-size: 19px;
	line-height: 22px;
	color: #fff
}

.hAltext {
	font-weight: 400;
	font-size: 13px;
	line-height: 16px;
	color: #fff;
	margin: 0 !important
}

.hleft-logout {
	position: relative;
	background-color: transparent;
	display: flex;
	gap: 12px;
	align-items: center;
	text-align: left;
	padding: 0
}

.hleft-logout::after {
	display: none
}

.hleft-item {
	font-size: 24px;
	color: #fff;
	padding: 0 15px
}

.hleft-item:hover {
	opacity: .7
}

@media (min-width:768px) {
	.hleft-logout {
		padding: 9px 20px
	}

	.hleft-logout::after {
		display: block
	}
}

.hleft-logout .icon {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--color-6);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 20px;
	overflow: hidden
}

.hleft-logout .icon.avatar {
	background-color: transparent
}

.hleft-logout .icon.avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover
}

.hleft-logout .title {
	font-weight: 600;
	font-size: 14px;
	line-height: 16px;
	color: #fff
}

.hleft-logout .text {
	font-weight: 600;
	font-size: 12px;
	line-height: 12px;
	color: rgba(255, 255, 255, .4);
	margin-top: 6px
}

.hleft-logout .arrows {
	color: #fff;
	display: flex;
	align-items: center
}

.hleft-logout.apHdPrb {
	background: #161d44;
	border-radius: 50px;
	padding: 10px 0 10px 10px
}

.appContent {
	padding-bottom: 40px
}

@media (min-width:992px) {
	.appContent {    
      	position: relative;
		padding: 0 30px 30px
	}
}

.service-item .modal-title {
    font-size: 15px;
}

.SidebarHelp {
	background: var(--color-5);
	width: max-content;
	border-radius: 15px 15px 0 0;
	text-align: center;
	padding: 10px 20px 0 20px;
	margin: auto
}

.SidebarHelp {
	color: #fff
}

.SidebarHelp:hover {
	color: #ffffff90
}

.SidebarHelp h3 {
	font-size: 14px;
	font-weight: 400
}

.SidebarHelp i {
	font-size: 36px
}

.menu-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 15px;
	background-color: var(--color-5);
	color: #fff;
	outline: none;
	border: none;
	font-size: 18px;
	transition: 0.14s ease;
	z-index: 1020
}

.menu-btn:focus {
	box-shadow: 0 0 0 4px rgba(2, 88, 255, .1)
}

.appPicture {
	position: relative;
	margin: 30px auto 10px
}

.appPicture .app-bg {
	background: url(https://storage.perfectcdn.com/dvj0ve/sc1bpph12x5zz6o8.png);
	position: absolute;
	top: -70px;
	left: -98px;
	height: 85px;
	width: 280px;
	background-size: 100% auto;
	background-repeat: no-repeat;
	box-shadow: 0 25px 50px #0c24471c;
	border-radius: 0 0 50px 50px;
	z-index: -1
}

.appPicture img {
	width: 85px;
	border-radius: 100%;
	border: 5px solid #fff;
	box-shadow: 0 25px 50px #0c24471c
}

.sidebar-player {
	background-color: rgba(255, 255, 255, .03);
	padding: 5px;
	width: 100%;
	margin: auto;
	text-align: center
}

.fs-25 {
	font-size: 25px
}

.player-content {
	display: flex;
	align-items: center;
	gap: 10px;
	flex: 0 0 1;
	width: 100%;
	justify-content: center
}

.album-cover {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	transition: 0.14s ease
}

.player-right {
	flex: 1
}

.album-cover img {
	object-fit: cover;
	max-width: 100%;
	height: 100%;
	border-radius: 50%
}

.player-right .song-name {
	font-size: 13px;
	color: rgba(255, 255, 255, .7);
	font-weight: 600;
	margin-bottom: 0
}

.sidebar-player .control-wrapper {
	margin: 4px -6px 0;
	display: flex;
	align-items: center;
	gap: 6px
}

.sidebar-player .control-btn {
	outline: none;
	border: none;
	width: 28px;
	height: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	color: rgba(255, 255, 255, .769);
	background-color: transparent;
	border-radius: 50%
}

.sidebar-player .a-of-total {
	font-size: 12px;
	color: rgba(255, 255, 255, .5)
}

.control-wrapper {
	justify-content: center
}

.control-btn i {
	font-size: 24px
}

.control-btn .i-off {
	display: flex
}

.control-btn .i-on {
	display: none
}

.sidebar-player.playing .control-btn .i-play {
	display: none
}

.sidebar-player .control-btn .i-pause {
	display: none
}

.sidebar-player.playing .control-btn .i-pause {
	display: flex
}

.control-btn.enabled .i-off {
	display: none
}

.control-btn .i-off {
	display: flex
}

.control-btn.enabled .i-on {
	display: flex
}

.currency-toggle,
.language-toggle {
	background: none;
	border: none;
	outline: none;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-4);
	font-size: 24px;
	overflow: hidden
}

.currency-toggle.dropdown-toggle::after,
.language-toggle.dropdown-toggle::after {
	display: none
}

.currency-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, .2);
	backdrop-filter: blur(10px);
	z-index: 2000;
	display: none
}

.currency-drawer {
	display: none;
	transform: translateX(100%);
	position: fixed;
	right: 0;
	top: 0;
	height: 100vh;
	z-index: 2003;
	background: #00000050;
	border-left: 1px solid var(--color-5);
	width: 280px;
	display: flex;
	flex-direction: column;
	transition: 0.14s ease;
	border-radius: 15px 0 0 15px
}

.currency-drawer .drawer-header {
	display: flex;
	align-items: center;
	gap: 20px;
	height: 80px;
	padding: 0 20px;
	background-color: var(--color-6);
	border-radius: 15px 0 0 0
}

.currency-drawer .drawer-header-title {
	font-weight: 600;
	font-size: 16px;
	line-height: 22px;
	color: var(--color-4);
	margin-bottom: 0
}

.currency-drawer .drawer-header-close {
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: auto;
	font-size: 20px;
	cursor: pointer
}

.currency-drawer .drawer-body {
	display: flex;
	flex-direction: column;
	gap: 10px;
	flex: 1;
	padding: 10px 20px 40px;
	overflow-y: auto
}

.currency-item {
	background: var(--color-7);
	border: 1px solid var(--color-1);
	border-radius: 10px;
	padding: 18px 23px;
	display: block;
	font-weight: 600;
	font-size: 14px;
	line-height: 16px;
	color: var(--color-4);
	transition: 0.14s ease;
	cursor: pointer
}

.currency-item:hover,
.currency-item:focus {
	background: var(--color-5);
	border: 1px solid var(--color-6);
	color: var(--color-4)
}

.currency-item.active {
	background: var(--color-7);
	border: 1px solid var(--color-6)
}

.bs-toast {
	background: var(--color-6);
	border: 1px solid var(--color-7) !important;
	color: #fff;
	padding: 10px 24px;
	border-radius: 15px;
	position: fixed;
	bottom: 30px;
	right: 40px;
	width: 100%;
	width: max-content;
	max-width: 350px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: none;
	z-index: 3000;
	text-align: center
}

.bs-toast .bs-toast-content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex
}

.bs-toast .toast-text {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	font-size: 14px;
	font-weight: 500
}

.bs-toast .toast-times {
	cursor: pointer;
	border: none;
	outline: 0;
	color: #fff;
	background: 0 0
}

.neworder-filter {
	text-align: center;
	margin: 25px auto;
	background: var(--color-7);
	border-radius: 15px;
	padding: 15px;
	width: max-content
}

.neworder-filter i {
	font-size: 24px;
	cursor: pointer;
	opacity: .6;
	padding: 0 15px
}

.neworder-filter i:hover {
	opacity: 1
}

@media (max-width:991.98px) {
	.appHeader {
		height: auto;
	}
	.appPicture img {
		width: 75px
	}

	.appPicture .app-bg {
		width: 150px;
		height: 75px;
		top: -37px;
		left: -38px
	}

	.neworder-filter {
		padding: 5px;
		width: auto;
		margin: 15px 0
	}

	.neworder-filter i {
		margin: 5px 0
	}
}

.gnyNeworder .ctgry .form-control {
	border-radius: 0 25px 25px 25px
}

.nav.g-nav {
	background: #005121;
	width: max-content;
	border-radius: 25px 25px 0 0
}

.nav.g-nav li {
	padding: 14px 0
}

.nav.g-nav li a {
	background: #005121;
	font-size: 14px;
	padding: 17px 35px;
	color: #fff;
	border-radius: 25px 30px 30px 0
}

.nav.g-nav li a.active {
	background: #00af52;
	color: #fff
}

.nwoNav.nav-tabs {
	background: #005121;
	width: max-content;
	border-radius: 25px 25px 0 0;
	border-color: #005121
}

.nwoNav .nwoNavLink {
	background: #005121;
	font-size: 14px;
	padding: 15px 35px;
	color: #fff;
	border-radius: 25px 30px 30px 0;
	border: none
}

.nwoNav .nwoNavLink:focus {
	outline: 0
}

.nwoNav .nwoNavLink.active {
	background: #00af52;
	color: #fff
}

.nwoTabs .nwoTab {
	display: none
}

.nwoTabs .nwoTab.active {
	display: block
}

.Neworder-rl .tab-pane {
	background: #005121;
	border-radius: 0 25px 25px 25px;
	padding: 25px
}

.Neworder-rl .tab-body {
	max-height: 500px;
	min-height: 250px;
	overflow-y: scroll
}

@media (max-width:991.98px) {

	.nwoNav .nwoNavLink,
	.nav-tabs .nav-item {
		width: 100%
	}

	.Neworder-rl .tab-pane {
		border-radius: 25px
	}

	.nwoNav.nav-tabs {
		border-radius: 25px;
		margin-bottom: 10px
	}

	.nwoNav .nwoNavLink {
		border-radius: 25px
	}

	.Neworder-rl {
		position: relative;
		z-index: 10
	}
}

.dash-head {
	text-align: center;
	padding: 50px 0
}

.dash-head h1 {
	font-size: 24px;
	padding-bottom: 10px
}

.dash-head p,
.dash-head strong {
	font-size: 13px;
	margin-bottom: 5px
}

.dash-head a {
	background: #ffffff60;
	border-radius: 100%;
	width: 36px;
	height: 36px;
	margin: 0 10px;
	font-size: 20px;
	line-height: 36px;
	color: #023213
}

.dash-head a:hover {
	background: #ffffff30
}

.panel-body {
	background: #162f20;
    border: 1px solid #313131;
	border-radius: 25px;
	padding: 15px 10px
}

.myaccordion .card {
	background-color: transparent;
	border-radius: 25px;
	border: none
}

.myaccordion .card-header button {
	width: 100%;
	text-decoration: none !important;
	outline: 0 !important;
	display: flex;
	align-items: center;
	justify-content: space-between
}

.payMethods .card-header {
	background: #005121;
	box-sizing: border-box;
	box-shadow: 0 25px 50px rgba(10, 39, 83, .07);
	border-radius: 0 15px 0 0;
	padding: 0 !important;
	border: none;
	margin-bottom: 10px
}

.payMethods .payment-faq {
	background: var(--color-7);
	padding: 10px;
	font-size: 14px;
	border-radius: 25px;
	margin-bottom: 15px
}

.old-trans {
	background: #005121;
	box-sizing: border-box;
	box-shadow: 0 25px 50px rgba(10, 39, 83, .07);
	border-radius: 25px;
	padding: 20px;
	min-height: 250px
}

.old-trans .table {
	color: #fff
}

.old-trans .table td {
	padding: .75rem;
	vertical-align: top;
	border-top: 1px solid var(--color-7)
}

.old-trans .table th {
	border: none
}

.z-1 {
	z-index: 1
}

.pay-body {
	background: var(--color-7);
	border: 1px solid #005121;
	border-radius: 25px;
	padding: 30px
}

.old-tickets {
	height: 330px;
	overflow-y: scroll
}

.sbMenuWr::-webkit-scrollbar,
.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar,
.Neworder-rl .tab-body::-webkit-scrollbar,
.calc-desc::-webkit-scrollbar,
.sm-texts::-webkit-scrollbar,
.old-tickets::-webkit-scrollbar,
.desc-list.description .text::-webkit-scrollbar {
	width: 7px;
	height: 7px
}

.sbMenuWr::-webkit-scrollbar-thumb,
.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar-thumb,
.Neworder-rl .tab-body::-webkit-scrollbar-thumb,
.calc-desc::-webkit-scrollbar-thumb,
.sm-texts::-webkit-scrollbar-thumb,
.old-tickets::-webkit-scrollbar-thumb,
.desc-list.description .text::-webkit-scrollbar-thumb {
	background: var(--color-6);
	border-radius: 5px
}

.sbMenuWr::-webkit-scrollbar-track,
.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar-track,
.Neworder-rl .tab-body::-webkit-scrollbar-track,
.calc-desc::-webkit-scrollbar-track,
.sm-texts::-webkit-scrollbar-track,
.old-tickets::-webkit-scrollbar-track,
.desc-list.description .text::-webkit-scrollbar-track {
	background: var(--color-7)
}

.g-chat-side .g-chat {
	max-height: 553px;
	overflow-y: auto;
	padding: 25px;
	background: #005121;
	border: 1px solid #005121;
	border-radius: 25px
}

.g-chat-side .g-chat::-webkit-scrollbar {
	width: 6px;
	border-radius: 3px
}

.g-chat-side .g-chat::-webkit-scrollbar-track {
	background: transparent;
	border-radius: 3px
}

.g-chat-side .g-chat::-webkit-scrollbar-thumb {
	background: rgba(255, 255, 255, .2);
	border-radius: 3px
}

.g-chat-side .g-chat::-webkit-scrollbar-thumb:hover {
	background: rgba(255, 255, 255, .4)
}

.g-chat-side .schat-input {
	padding-top: 10px
}

.g-chat-input {
	position: relative;
	display: flex;
	background: #005121;
	border-radius: 25px;
	height: 70px;
	align-items: center
}

.g-chat-input textarea {
	border: none;
	outline: 0;
	border-radius: 0;
	background: transparent;
	flex: 1;
	font-size: 14px;
	line-height: 17px;
	color: #fff;
	height: 75px;
	padding: 10px
}

.g-chat-input textarea:focus {
	border: none;
	outline: 0;
	background: transparent
}

.g-chat-input textarea::placeholder {
	color: rgba(255, 255, 255, .6)
}

.g-chat .g-chat-area ul.chat {
	max-height: 350px;
	min-height: 350px;
	overflow-y: scroll;
	padding-right: 20px
}

.g-chat .g-chat-area ul.chat::-webkit-scrollbar {
	width: 5px;
	border-radius: 2px
}

.g-chat .g-chat-area ul.chat::-webkit-scrollbar-track {
	border-radius: 2px;
	background-color: rgba(255, 255, 255, .2)
}

.g-chat .g-chat-area ul.chat::-webkit-scrollbar-thumb {
	border-radius: 2px;
	background-color: #fff
}

.g-chat .g-chat-area ul.chat::-webkit-scrollbar-thumb:hover {
	background: #fff
}

.g-chat .g-chat-area ul.chat li.user {
	display: flex;
	align-items: start;
	justify-content: flex-start;
	margin-bottom: 20px
}

.g-chat .g-chat-area ul.chat li.user .r {
	text-align: end;
	margin-right: 10px
}

.g-chat .g-chat-area ul.chat li.user .r .answer {
	background-color: var(--color-7);
	color: var(--color-5);
	font-size: 14px;
	font-weight: 500;
	padding: 20px;
	border-radius: 10px;
	border-bottom-left-radius: 0;
	margin-bottom: 10px
}

.g-chat .g-chat-area ul.chat li.user .r small {
	color: #afbbc6;
	font-size: 12px;
	font-weight: 600;
	text-align: end
}

.g-chat .g-chat-area ul.chat li.user .l {
	min-width: 100px;
	max-width: 100px
}

.g-chat .g-chat-area ul.chat li.user .l span.avatar {
	width: 54px;
	height: 54px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background-color: var(--color-3);
	color: var(--color-5);
	font-size: 20px;
	font-weight: 700;
	margin: 0 auto;
	text-transform: uppercase
}

.g-chat .g-chat-area ul.chat li.user .l .name {
	margin-top: 8px;
	color: #dadada;
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 4px;
	text-align: center
}

.g-chat .g-chat-area ul.chat li.user .l small {
	color: #afbbc6;
	font-size: 12px;
	font-weight: 600;
	text-align: center;
	display: block
}

.g-chat .g-chat-area ul.chat li.web {
	display: flex;
	align-items: start;
	justify-content: end;
	margin-bottom: 10px
}

.g-chat .g-chat-area ul.chat li.web .l {
	text-align: start;
	margin-left: 10px
}

.g-chat .g-chat-area ul.chat li.web .l .answer {
	background-color: var(--color-6);
	color: var(--color-4);
	font-size: 14px;
	font-weight: 500;
	padding: 20px;
	border-radius: 10px;
	border-bottom-right-radius: 0;
	margin-bottom: 10px
}

.g-chat .g-chat-area ul.chat li.web .l small {
	color: #afbbc6;
	font-size: 12px;
	font-weight: 600;
	text-align: start
}

.g-chat .g-chat-area ul.chat li.web .r {
	min-width: 100px;
	max-width: 100px
}

.g-chat .g-chat-area ul.chat li.web .r span.avatar {
	width: 54px;
	height: 54px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background-color: #fff;
	color: #3d455a;
	font-size: 20px;
	font-weight: 700;
	margin: 0 auto;
	text-transform: uppercase
}

.g-chat .g-chat-area ul.chat li.web .l .name {
	margin-top: 8px;
	color: #dadada;
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 4px;
	text-align: center
}

.g-chat .g-chat-area ul.chat li.web .l small {
	color: #afbbc6;
	font-size: 12px;
	font-weight: 600;
	text-align: center;
	display: block
}

.g-chat .g-chat-area ul.chat {
	padding-left: 0
}

.nwo-cat-btn {
	background: none;
	border: none;
	outline: 0
}

.nwo-cat-btn i {
	font-size: 24px;
	line-height: 26px;
	cursor: pointer;
	padding: 0 15px;
	color: #fff
}

.select2-results__option a {
	color: var(--color-4) !important;
	font-size: 13px !important;
	border-bottom: 1px solid var(--color-1) !important;
	padding: 10px !important
}

.select2-results__option a:hover {
	background: var(--color-1);
	color: var(--color-4) !important
}

.select2-container--default .select2-results>.select2-results__options,
.select2-container--open .select2-dropdown--below,
.select2-container--default .select2-results__option[aria-selected=true],
.select2-container--default .select2-results__option:hover {
	background-color: var(--color-5) !important
}

.select2-container--default .select2-selection--single {
	height: 45px;
	line-height: 24px
}

.select2-container .badge-secondary {
	background: var(--color-6);
	color: #fff
}

.alert-primary {
	color: var(--color-6);
	background-color: var(--color-7);
	border-color: var(--color-7)
}

.search-services {
  	display: flex;
  	align-items: center;
  	justify-content: space-between;
	height: 55px;
  	background: #222;
  	border-radius: 15px;
  	padding: 7px 19px 7px 7px;
  	gap: 7px
}

.search-services:focus-within .icon {
	color: var(--color-3)
}

.search-services .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-5);
    color: #fff;
  	flex-shrink: 0
}

.search-services .textbox {
	width: 100%;
	height: 55px;
	background-color: #222;
	outline: none;
	border: none;
	color: var(--color-3);
	font-weight: 600;
	font-size: 14px;
	line-height: 16px
}

.search-services .textbox::placeholder {
	color: #92969d
}

.s-row {
	display: flex;
	align-items: center;
	gap: 10px
}

.s-row.s-title {
	font-weight: 600;
	display: none
}

.category-card .service-item {
	width: 100%;
	padding: 12px 30px;
	border-radius: 15px;
	margin-bottom: 5px;
	background: linear-gradient(90deg, rgba(21, 35, 27, 1) 0%, rgba(22, 47, 32, 1) 100%);
	box-sizing: border-box;
	border-radius: 15px
}

.si-wrapper {
	flex: 0 0 auto;
	width: 100%;
	position: relative
}

.s-col {
	flex: 0 0 auto
}

.service-item .s-col-id i {
	cursor: pointer
}

.services-head-row .service-item {
	background-color: transparent;
	border: none
}

.services-head-row .service-top {
  	width: 100%;
	box-sizing: border-box;    
    padding: 12px 30px;
    background: transparent !important;
    border-bottom: 1px solid #000;
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-top: none;
  	font-size: 13px
}

.sp-serv-title {
	font-weight: 600;
	font-size: 14px;
	line-height: 17px
}

.sp-services .card {
	margin-bottom: 30px
}

.si-header {
 	display: flex;
    align-items: center;
    justify-content: space-between;
	padding: 15px 25px;
	background: var(--color-6);
	border-radius: 15px;
	border: 1px solid var(--color-7);
	margin-bottom: 14px;
  	cursor: pointer
}

.si-header .fa-chevron-down {
    background: #077c42;
    width: 24px;
    height: 24px;
    border-radius: 100%;
    text-align: center;
    line-height: 24px;
    font-size: 13px;
    flex-shrink: 0
}

.si-header.active .fa-chevron-down {
	transform: rotate(180deg);
}

.si-header .si-title {
	font-weight: 600;
	font-size: 15px;
	line-height: 23px;
	color: #fff;
	margin-bottom: 0
}

.modal-wrapper {
	margin: auto;
	background-color: rgba(0, 0, 0, .5);
	backdrop-filter: blur(5px);
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 2222;
	display: none;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 5px #000
}

.modal-wrapper.active {
	display: flex
}

.mbo-wrapper {
	height: 100%;
	width: 100%;
	padding: 40px 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: nowrap;
	white-space: nowrap;
	overflow-y: auto
}

.modal-box {
	margin: auto 0;
	max-width: 560px;
	width: 100%;
	border-radius: 25px;
	background: rgb(21, 35, 27);
	background: linear-gradient(90deg, rgba(21, 35, 27, 1) 0%, rgba(22, 47, 32, 1) 100%);
	border: 2px solid #84988d;
	text-align: left;
	position: relative
}

.modal-box .m-body .form-control {
	background: var(--color-1);
	border: 1px solid var(--color-4)
}

.m-header {
	padding: 30px 30px 60px;
	background-color: transparent;
	border-radius: 25px 25px 0 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center
}

.m-header>* {
	text-align: center
}

.m-body {
	padding: 30px
}

.m-title {
	font-weight: 600;
	font-size: 18px;
	line-height: 30px;
	letter-spacing: -.005em;
	color: var(--color-5);
	margin-bottom: 0;
	word-break: break-word;
	word-wrap: break-word;
	white-space: normal;
	max-width: 100%;
	min-width: 40%
}

.m-close {
	border: none;
	outline: none;
	background-color: transparent;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 20px;
	border-radius: 15px;
	position: absolute;
	z-index: 3001;
	top: 15px;
	right: 15px
}

.m-close:focus {
	box-shadow: 0 0 0 .25rem rgba(1, 57, 255, .2)
}

.m-sub-title {
	margin-top: 4px;
	font-weight: 600;
	font-size: 14px;
	line-height: 26px;
	letter-spacing: -.005em;
	color: rgba(255, 255, 255, .6);
	margin-bottom: 0
}

#serviceModalText {
	background: var(--color-7);
	border: 1px solid #009c4f;
	border-radius: 15px;
	padding: 30px;
	margin-top: -60px;
	white-space: initial
}

.sm-texts {
	white-space: break-spaces;
	max-height: 250px;
	overflow-y: scroll;
	overflow-x: hidden;
    font-size: 13px
}

.service-modal-id {
	font-weight: 600;
	font-size: 16px;
	line-height: 18px;
	color: #fff;
	background: var(--color-6);
	border-radius: 15px;
	padding: 14px 23px;
	margin-bottom: 16px
}

@media only screen and (max-width:991.98px) {
	.category-card .service-item {
		margin-bottom: 10px!important
	}
  
	.service-item .s-row {
		flex-wrap: wrap;
		align-items: center
	}

	.service-item .s-col-avtime {
		width: 100%;
		text-align: center
	}

	.service-item .s-col-btn {
		flex: 1
	}

	.service-item .s-col {
		padding: 0 0
	}

	.service-item .s-col::before {
		content: attr(data-title);
		display: block;
		padding-bottom: 6px;
		font-weight: 600;
		color: var(--color-3);
		font-size: 13px
	}

	.service-item .s-col-fav {
		order: 100
	}

	.service-item .s-col-id {
		width: 100%;
		text-align: center
	}

	.service-item .s-title {
		width: 100%;
		text-align: center
	}

	.service-item .s-col-c {
		width: 30%;
		text-align: center
	}

	.service-item .s-col-d {
		width: 100%;
		text-align: center
	}

	.m-title {
		font-size: 16px
	}

	#serviceModalText {
		padding: 15px;
		margin-top: 0
	}

	.search-input.input-group {
		width: 100%;
		margin: 20px 0
	}

	.m-body,
	.m-header {
		padding: 15px
	}
}

@media only screen and (min-width:992px) {
	.si-wrapper {
		flex: 0 0 auto;
		width: 50%
	}

	.s-row.s-title {
		display: flex
	}

	.s-col {
		flex: 0 0 50px;
		width: 50px
	}

	.s-col.s-col-sm {
		flex: 0 0 70px;
		width: 70px
	}

	.s-col.s-col-md {
		flex: 0 0 100px;
		width: 100px
	}

	.s-col.s-col-lg {
		flex: 0 0 180px;
		width: 180px
	}

	.s-col.s-title {
		flex: 1 0 0%;
		width: auto
	}

	.services-wrapper {
		flex-direction: column
	}

	.si-wrapper {
		width: 100%
	}

	.sp-services .card {
		background-color: #fff;
		border: 1px solid #eee;
		overflow: hidden
	}
}

.btn-dark,
.btn-dark:hover,
.btn-dark:focus {
	background: #005121 !important;
	border: #005121 !important
}

.btn-dark.active {
	background: var(--color-5) !important;
	border: 1px solid var(--color-5) !importan
}

.api-page .card {
	background: #003c18;
	border: 1px solid #009c4f;
	border-radius: 15px;
	margin-bottom: 15px
}

.api-page .card-body {
	padding: 15px 25px
}

pre.code {
	color: var(--color-5)
}

.pagination .page-item.active .page-link::before {
	content: "";
	bottom: 0;
	height: 3px;
	width: 14px;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	background-color: var(--color-5)
}

.pagination .page-item.active .page-link {
	background-color: #005121;
	color: #fff
}

.pagination .page-item:first-child {
	border-right: 1px solid #005121
}

.pagination .page-item:first-child .page-link {
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;
	font-weight: 400
}

.pagination .page-item:last-child {
	border-left: 1px solid #005121
}

.pagination .page-item:last-child .page-link {
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px;
	font-weight: 400
}

.pagination .page-item .page-link {
	background: #005121;
	border: none;
	margin: 0;
	height: 50px;
	padding: 0;
	min-width: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	font-size: 17.3005px;
	line-height: 18px;
	color: #fff;
	position: relative
}

.pagination .page-item .page-link:focus {
	z-index: 2
}

.tickets-nav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: 0 -10px
}

.tickets-nav .nav-item {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	padding: 10px 10px
}

.tickets-nav .nav-item .cc-input {
	display: none
}

.tickets-nav .nav-item .cc-input:checked~.nav-link {
	background: var(--color-5);
	border-radius: 25px
}

.tickets-nav .nav-item .nav-link {
	background: #005121;
	border-radius: 25px;
	padding: 15px 20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	cursor: pointer;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}

.tickets-nav .nav-item .nav-link .nav-text {
	font-weight: 700;
	font-size: 14px;
	line-height: 22px;
	text-align: center;
	color: #fff
}

.tickets {
	cursor: pointer;
	margin-bottom: 10px;
	position: relative;
	background: #005121;
	border-radius: 15px;
	padding: 10px 15px
}

.tickets:hover {
	background: var(--color-6);
	transition: 500ms all
}

.tickets .avatar.me-3 {
	margin-right: 15px !important
}

.tickets .avatar .tickets-img {
	height: 40px;
	width: 40px;
	border-radius: 100%;
	background-color: var(--color-4);
	color: var(--color-3) !important;
	text-align: center;
	position: relative;
	border: 3px solid var(--color-8);
	box-shadow: 0 0 20px 3px rgb(0 0 0 / 5%)
}

.tickets .avatar .tickets-img span {
	font-size: 24px;
	color: var(--color-6)
}

.tickets h6 {
	margin-bottom: 10px;
	font-size: 14px;
	color: #fff
}

.tickets span {
	color: #71738d;
	font-size: 12px
}

.tickets .date {
	position: absolute;
	top: 15px;
	right: 10px;
	font-size: 12px;
	color: #f4f5f6
}

.ticketstatus.completed {
	color: #00B67A
}

.ticketstatus.pending {
	color: #fbbc05
}

.ticketstatus.closed {
	color: #ff3e7c
}

.gnyBlog {
	margin-bottom: 30px
}

.gnyBlog .blog-img-wrapper {
	overflow: hidden;
	position: relative;
	padding-top: 48%
}

.gnyBlog .blog-img-wrapper img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 15px
}

.gnyBlog .blog-title {
	padding: 30px 0
}

.gnyBlog .blog-title h2 {
	margin-bottom: 0;
	font-weight: 500;
	font-size: 18px;
	line-height: 24px
}

.gnyBlog .blog-content {
	padding: 30px;
	font-size: 14px;
	line-height: 21px;
	color: #92969d
}

.gnyBlog .blog-footer {
	padding: 20px 0 0 0
}

.gnyBlog .blog-read-more {
	font-size: 14px;
	line-height: 14px;
	letter-spacing: -.02em;
	color: var(--color-4);
	display: flex;
	align-items: center
}

.gnyBlog .blog-read-more:hover {
	color: var(--color-6)
}

.gnyBlog .blog-read-more i {
	display: flex;
	align-items: center;
	justify-content: center
}

.gnyBlog .blog-read-more span {
	font-weight: 600
}

.gnyBlogWr {
	display: flex;
	gap: 10px
}

.gnyBlogBtn {
	display: inline-block;
	background: var(--color-5);
	border: 1px solid var(--color-6);
	box-sizing: border-box;
	border-radius: 8px;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	transition: 0.14s ease
}

.gnyBlogBtn i {
	transition: 0.14s ease
}

.gnyBlogBtn:focus {
	box-shadow: 0 0 0 .25rem rgba(255, 255, 255, .25)
}

.gnyBlogBtn:hover {
	color: #ffffff80
}

.gnyBlogBtn:hover i {
	transform: scale(1.2)
}

.gnyBlog .gcard,
.gnyBlog .g-card {
	background: var(--color-7);
	border: 1px solid var(--color-5);
	border-radius: 15px
}

.gnyBlog .gcard-body {
	padding: 31px 15px
}

.modal-header,
.modal-body,
.modal-footer {
	background: #1b1b1b
}

.modal-header,
.modal-footer {
	border-color: #313131;
}

.card-head {
	border-radius: 15px 15px 0 0;
	background: var(--color-7);
	padding: 15px 25px
}

.card-head h4 {
	color: #fff;
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 0;
	line-height: 32px
}

.calculator {
	background: rgb(21, 35, 27);
	background: linear-gradient(90deg, rgba(21, 35, 27, 1) 0%, rgba(22, 47, 32, 1) 100%);
	border-radius: 15px;
	border: 2px solid #023212;
	padding: 20px
}

.calc-desc-wrapper {
	background: #005121;
	border-radius: 25px;
	padding: 25px
}

.calc-desc {
	height: 500px;
	overflow-y: scroll
}

.calc-desc h2 {
	font-size: 16px
}

.nav-custom-3 {
	background: var(--color-7);
	border-radius: 15px;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	padding: 9px 12px
}

.nav-custom-3 .nav-item .nav-link {
	font-weight: 500;
	font-size: 16px;
	line-height: 20px;
	padding: 16px 24px;
	letter-spacing: .02em;
	color: #fff;
	display: block;
	background: transparent;
	border-radius: 15px;
	border: none
}

.nav-custom-3 .nav-item .nav-link.active {
	background: var(--color-5)
}

.nav-custom-3 .nav-item .nav-link i {
	margin-right: 8px
}

.aff-item {
	background: var(--color-7);
	border-radius: 15px;
	padding: 10px 15px;
	margin-bottom: 10px
}

.aff-item span.aff-bold {
	font-weight: 600
}

.orderNav li a {
    background-color: #0b0b0b;
    border: 1px solid #222;
	color: #fff;
	padding: 12px 15px;
	font-size: 12px;
	outline: none;
	border-radius: 10px;
	cursor: pointer;
	-webkit-transition: .15s ease;
	transition: .15s ease;
	min-height: 40px;
	display: inline-block;
	margin-bottom: 4px;
	width: 100%;
	text-decoration: none
}

.orderNav li a:hover {
	background: #222;
	color: #fff
}

.orderNav li a.active {
	background: var(--color-5);
	color: #fff
}

.orderNav li:last-child {
	margin-left: auto
}

.dfb-search {
	background-color: #15251b;
	color: #fff;
	font-size: 11px;
	border: none;
	outline: none;
	border-radius: 10px;
	cursor: pointer;
	-webkit-transition: .15s ease;
	transition: .15s ease;
	min-height: 40px;
	position: relative;
	overflow: hidden
}

.dfb-search .dfb-input {
	width: calc(100% - 40px);
	background: #15251b;
	border: none;
	outline: none;
	height: 40px;
	color: #fff;
	padding: 0 14px;
	min-width: 250px
}

.dfb-search i {
	color: #fff
}

.dfb-search .dfb-submit {
	position: absolute;
	right: 0;
	top: 0;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	border: none;
	background: var(--color-5);
	color: #fff
}

@media (max-width: 991.98px) {
    .orderNav {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
		gap: 7px
    }
	.dfb-search .dfb-input {
		width: calc(100% - 40px);
		min-width: auto;
	}
	.orderNav li:last-child {
		margin-left: unset;
	}
}

.op-card--bottom {
	border-top: 1px solid #021809;
	padding-top: 15px
}

.op-card--top {
	padding-bottom: 15px
}

.orders-nav-link {
	background: var(--color-7);
	border: 1px solid var(--color-5);
	box-sizing: border-box;
	border-radius: 15px;
	color: #fff;
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 20px;
	transition: 0.14s ease
}

.op-search-box {
	transition: 0.14s ease
}

.op-search-box:focus-within {
	box-shadow: 0 0 0 .25rem rgba(2, 88, 255, .25)
}

.op-search-box .icon {
	color: #637990
}

.op-search-box input {
	transition: 0.14s ease;
	background-color: transparent;
	border: none;
	outline: none;
	flex: 1;
	color: #fff;
	font-weight: 600;
	font-size: 14px;
	line-height: 16px
}

.op-search-box input::placeholder {
	color: #566676
}

.op-card {
	margin-bottom: 30px
}

.op-card .op-card--top {
	padding-bottom: 30px;
	border-bottom: 1px solid #1b2454
}

.op-card .op-card--bottom {
	padding-top: 30px
}

.op-stats {
	display: block;
	font-weight: 600;
	font-size: 14px;
	line-height: 20px;
	text-align: center;
	border: 1px solid #fff;
	background-color: rgba(255, 255, 255, .15);
	border-radius: 10px;
	padding: 10px 34px
}

.op-stats.op-stats-sm {
	padding: 10px 30px;
	border-radius: 10px
}

.op-stats.op-stats-btn {
	padding: 20px 20px;
	display: inline-block;
	background: #0258FF;
	border: none;
	color: #566676;
	transition: 0.14s ease;
	color: #fff
}

.op-stats.op-stats-btn:focus {
	box-shadow: 0 0 0 .25rem rgba(2, 88, 255, .25)
}

.op-stats.op-stats-btn.cs-btn {
	font-size: 24px;
	margin-bottom: 0
}

.op-stats.danger-btn {
	border: 1px solid var(--color-5);
	background: var(--color-7);
	color: var(--color-5)
}

.op-service-title {
	font-weight: 600;
	font-size: 14px;
	line-height: 25px;
	color: #fff;
	margin-bottom: 0
}

.op-search-box.op-order-link {
	display: flex;
	width: 100%
}

.op-search-box.op-order-link .link {
	display: block;
	width: 100%;
	flex: 1 0 0%;
	font-weight: 500;
	font-size: 12px;
	line-height: 18px;
	color: #fff;
	opacity: .8;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden
}

.op-date {
	font-weight: 600;
	font-size: 16px;
	line-height: 25px;
	color: #566676
}

.op-date::before {
	content: "";
	width: 9px;
	height: 9px;
	background: #9aacbd;
	display: inline-block;
	border-radius: 50%;
	margin-right: 14px;
	margin-left: 0
}

.op-item {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-direction: column
}

@media (min-width:992px) {
	.op-item {
		flex-direction: row
	}
}

.op-item .title {
	font-size: 14px;
	line-height: 18px;
	color: #72879d
}

.op-item .text {
	font-weight: 600;
	font-size: 18px;
	color: #fff;
	line-height: 27px
}

@media (max-width:991.98px) {
	.op-stats {
		width: max-content;
		margin: auto
	}

	.op-stats.op-stats-sm {
		padding: 5px 25px;
		border-radius: 10px
	}
}

.op-stats {
	display: block;
	font-weight: 600;
	font-size: 14px;
	line-height: 20px;
	text-align: center;
	border: 1px solid #fff;
	background-color: rgba(255, 255, 255, .15);
	border-radius: 10px;
	padding: 5px 15px
}

.op-stats.completed {
	background-color: rgb(0, 182, 122, .25);
	border: 1px solid #00B67A;
	color: #00B67A
}

.op-stats.processing {
	background-color: rgb(246, 86, 25, .25);
	border: 1px solid #f65619;
	color: #f65619
}

.op-stats.inprogress {
	background-color: rgb(2, 159, 255, .25);
	border: 1px solid #029fff;
	color: #029fff
}

.op-stats.pending {
	background-color: rgb(251, 188, 5, .25);
	border: 1px solid #fbbc05;
	color: #fbbc05
}

.op-stats.partial {
	background-color: rgb(129, 129, 129, .25);
	border: 1px solid #818181;
	color: #818181
}

.op-stats.cancelled {
	background-color: rgb(255, 62, 124, .25);
	border: 1px solid #ff3e7c;
	color: #ff3e7c
}

.footer-links {
	display: flex;
	flex-direction: column;
	text-align: left
}

.contact-icon {
	background: #ffffff60;
	border-radius: 100%;
	width: 36px;
	height: 36px;
	margin: 10px 0;
	font-size: 20px;
	line-height: 36px;
	color: #023213;
	text-align: center
}

.hw-img img {
	border-radius: 15px
}

.hw-img {
	border-radius: 15px;
	border: 3px solid var(--color-5)
}

.page-content.inpages {
	background: rgb(0, 0, 0);
	background: linear-gradient(100deg, rgba(0, 0, 0, 1) 30%, rgba(15, 163, 82, 1) 120%)
}

.page-content.inpages .page-head,
.page-content.inpages .calc-section,
.page-content.inpages .home-section,
.page-content.inpages .home-section2,
.page-content.inpages .steps-section,
.page-content.inpages .faq-section {
	background: transparent
}

.more-text {
	display: none
}

@media (max-width:991.98px) {

	.ph-title,
	.ph-text,
	.wwd-title,
	.wwd-text,
	.hsec-text {
		text-align: center
	}

	.ph-card img {
		width: 100%
	}

	.ph-card .himg-1,
	.ph-card .himg-2 {
		width: 175px;
		height: auto
	}

	.ph-card .himg-1 {
		top: 175px
	}

	.ph-card .himg-2 {
		top: 215px
	}
}

.b-user {
	display: flex;
	align-items: center;
	gap: 20px
}

.b-user-right {
	text-align: left;
	font-weight: 600
}

.b-user-name {
	font-size: 19px;
	line-height: 22px;
	color: #bac4d2;
	margin-bottom: 3px
}

.b-user-title {
	font-size: 12px;
	line-height: 14px;
	color: #92969d
}

p.f-14 {
	margin-bottom: 0.5rem !important;
	font-size: 15px
}

.steps-img iframe {
	position: absolute;
	left: 250px;
	top: 170px;
	border-radius: 15px
}

.tut-img {
	width: 500px
}

@media (max-width:991.98px) {
	.tut-img {
		width: 350px
	}

	.steps-img iframe {
		width: 215px !important;
		height: 100px !important
	}

	.steps-img iframe {
		left: 128px !important;
		top: 90px !important
	}
}

.dash-head h1 {
	font-weight: 700
}

.dash-head h1 span,
h1.ph-title span {
	position: relative
}

.dash-head h1 span::before {
	content: '';
	position: absolute;
	right: 0;
	background-image: url(https://storage.perfectcdn.com/dvj0ve/0kn6s6ztfq194prt.png);
	background-repeat: no-repeat;
	background-position: right top;
	top: 100%;
	height: 40px;
	width: 100%
}

h1.ph-title span::before {
	content: '';
	position: absolute;
	right: 0;
	background-image: url(https://storage.perfectcdn.com/dvj0ve/0kn6s6ztfq194prt.png);
	background-repeat: no-repeat;
	background-position: center top;
	top: 100%;
	height: 40px;
	width: 100%
}

.hh-box-title {
	background: #002e15;
	border: 1px solid #004b22;
	box-sizing: border-box;
	backdrop-filter: blur(16px);
	border-radius: 50px;
	display: inline-flex;
	align-items: center;
	gap: 14px;
	padding: 7px 15px;
	color: #fff;
	font-size: 12px
}

.sbMenu li .mLink.active {
	background: linear-gradient(180deg, rgb(0 246 115) 0%, rgb(0 175 82) 100%);
	color: #fff;
	border-radius: 50px 0 0 50px
}

.mbadge-one {
	position: absolute;
	right: 40px;
	top: -10px
}

.main-badge {
	clip-path: polygon(92.32051% 40%, 93.79385% 43.1596%, 94.69616% 46.52704%, 95% 50%, 94.69616% 53.47296%, 93.79385% 56.8404%, 92.32051% 60%, 79.82051% 81.65064%, 77.82089% 84.50639%, 75.35575% 86.97152%, 72.5% 88.97114%, 69.3404% 90.44449%, 65.97296% 91.34679%, 62.5% 91.65064%, 37.5% 91.65064%, 34.02704% 91.34679%, 30.6596% 90.44449%, 27.5% 88.97114%, 24.64425% 86.97152%, 22.17911% 84.50639%, 20.17949% 81.65064%, 7.67949% 60%, 6.20615% 56.8404%, 5.30384% 53.47296%, 5% 50%, 5.30384% 46.52704%, 6.20615% 43.1596%, 7.67949% 40%, 20.17949% 18.34936%, 22.17911% 15.49361%, 24.64425% 13.02848%, 27.5% 11.02886%, 30.6596% 9.55551%, 34.02704% 8.65321%, 37.5% 8.34936%, 62.5% 8.34936%, 65.97296% 8.65321%, 69.3404% 9.55551%, 72.5% 11.02886%, 75.35575% 13.02848%, 77.82089% 15.49361%, 79.82051% 18.34936%);
	width: 124px;
	height: 124px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin-bottom: 24px;
	color: #fff;
	background: rgb(255, 221, 87);
	background: linear-gradient(90deg, #00b65c 0%, #047f42 100%)
}

.main-badge h6 {
	font-weight: 700;
	font-size: 26px
}

.main-badge span {
	font-size: 14px;
	line-height: 16px;
	margin-top: -5px
}

.trust-badge {
	display: flex;
	align-items: center
}

.trust-badge .tp-people {
	padding-right: 10px
}

.trust-badge .tp-rates {
	padding: 0 10px
}

.homeLogin {
	padding: 50px 0
}

.homeLogin .card {
	background: rgb(21, 35, 27);
	background: linear-gradient(90deg, rgba(21, 35, 27, 1) 0%, rgba(22, 47, 32, 1) 100%);
	border-radius: 15px;
	border: 2px solid #84988d
}

.homeLogin .card .hlTitle {
	background: linear-gradient(89.31deg, rgb(98 245 164) 4.55%, rgba(255, 255, 255, 0) 69.39%), linear-gradient(0deg, #ffffff, #ffffff);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-size: 14px
}

.homeLogin .hl-group {
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 25px 0
}

.homeLogin .hl-group .hl-item {
	width: 100%
}

.homeLogin .hl-group .hl-item:last-child {
	max-width: 200px
}

.homeLogin .hlText {
	font-size: 14px
}

.google-play img {
	margin-top: 15px
}

.page-alt .ms-title h3 {
	font-size: 36px;
	font-weight: 600;
	text-align: center;
	padding-bottom: 35px
}

.page-alt .rate-brand img {
	background: rgb(21, 35, 27);
	background: linear-gradient(90deg, rgba(21, 35, 27, 1) 0%, rgba(22, 47, 32, 1) 100%);
	border-radius: 13px;
	border: 2px solid #476153;
	padding: 5px 15px
}

.page-alt .rate-brand-text {
	text-align: center;
	font-size: 16px;
	color: #fff;
	margin-top: 5px
}

.page-alt .rate-brand-text p {
	margin-bottom: 5px
}

.page-alt .rate-brand-text {
	text-align: center;
	font-size: 16px;
	color: #fff
}

.page-alt .rate-brand-text span {
	font-weight: 600
}

.s-number {
	background-color: var(--color-5);
	color: var(--color-4);
	width: 24px;
	height: 24px;
	border-radius: 5px;
	text-align: center;
	font-weight: 700
}

.s-text {
	font-weight: 700;
	font-size: 24px;
	margin-left: -20px
}

.owner-sign {
	padding-bottom: 50px
}

.ow-sign {
	margin-top: 50px;
	display: flex;
	align-items: center;
	gap: 20px;
	justify-content: center
}

.ow-profile {
	display: flex;
	align-items: center;
	gap: 10px
}

.ow-profile img {
	border-radius: 100%;
	border: 5px solid #00b65c
}

.ow-flex {
	display: flex;
	flex-direction: column
}

.ow-name {
	font-weight: 600
}

#contentSlide .ri-arrow-left-s-line,
#contentSlide .ri-arrow-right-s-line {
	position: absolute;
	background: #ffffff30;
	width: 40px;
	height: 40px;
	border-radius: 100%;
	border: 1px solid #fff
}

#contentSlide .ri-arrow-left-s-line {
	top: 200px;
	left: -60px
}

#contentSlide .ri-arrow-right-s-line {
	top: 200px;
	right: -30px
}

.text-slide {
	padding: 100px 0
}

#textSlide {
	text-align: center
}

#textSlide p {
	font-size: 56px;
	font-weight: 600;
	line-height: 64px;
	padding-bottom: 32px
}

#textSlide span {
	font-size: 24px;
	color: #c6c6c6
}

#textSlide .ri-arrow-left-s-line,
#textSlide .ri-arrow-right-s-line {
	position: absolute;
	background: #ffffff30;
	width: 40px;
	height: 40px;
	border-radius: 100%;
	border: 1px solid #fff
}

#textSlide .ri-arrow-left-s-line {
	top: 125px;
	left: -60px
}

#textSlide .ri-arrow-right-s-line {
	top: 125px;
	right: -30px
}

.world-area {
	/*background:#000 url(https://storage.perfectcdn.com/dvj0ve/ftlgq6sl8a5hcjz8.webp);background-position:bottom center;background-repeat:no-repeat;*/
	border: 1px solid #84988d;
	border-radius: 25px;
	padding: 50px 50px 225px 50px
}

.world-area h2 {
	text-align: center;
	font-size: 42px
}

.world-area .btn {
	display: flex;
	width: max-content;
	margin: auto
}

.world-area .btn svg {
	width: 20px;
	height: 20px;
	margin-left: 10px
}

.world-statics {
	display: flex;
	justify-content: space-between;
	text-align: center;
	padding-bottom: 50px
}

.world-statics .ws-item h5 {
	font-size: 46px;
	margin: 15px 0 0 0
}

.helped-over {
	/*background:#000 url(https://storage.perfectcdn.com/dvj0ve/z8z1xzc6sh52nep2.webp);background-position:top left;background-size:cover;background-repeat:no-repeat;*/
	margin: 75px 0;
	text-align: center
}

.ho-area {
	padding: 125px 0
}

.ho-area h5 {
	font-size: 46px;
	max-width: 650px;
	margin: auto;
	line-height: 60px
}

.ho-stars {
	padding: 35px 0
}

.ho-review {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px
}

.spotify-panel {
	padding: 75px 0 25px 0
}

.sp-area {
	/*background:url(https://storage.perfectcdn.com/dvj0ve/0psizxew8wn29ljq.webp);background-position:top left;background-size:cover;background-repeat:no-repeat;*/
	text-align: center;
	border-radius: 25px
}

.sp-area {
	padding: 125px 75px
}

.sp-area h5 {
	font-size: 46px;
	max-width: 600px;
	margin: auto;
	line-height: 60px
}

.sp-area .btn svg {
	width: 20px;
	height: 20px;
	margin-left: 10px
}

.sp-area p {
	max-width: 600px;
	margin: 25px auto
}

.meet-team {
	padding: 75px 0 25px 0
}

.meet-team .ms-title h2,
.features .ms-title h2 {
	font-size: 36px;
	font-weight: 600;
	padding-bottom: 25px
}

.meet-team .mt-item {
	text-align: center
}

.meet-team .mt-item h6 {
	font-size: 24px;
	padding-top: 24px
}

.discord-section {
	padding: 75px 0 0 0
}

.discord-area {
	/*background:#000 url(https://storage.perfectcdn.com/dvj0ve/fxalyey7togl7f00.webp);background-position:top center;background-repeat:no-repeat;*/
	border: 1px solid #84988d;
	text-align: center;
	border-radius: 25px
}

.discord-area {
	padding: 35px 75px
}

.discord-area h5 {
	font-size: 36px;
	max-width: 600px;
	margin: auto;
	line-height: 42px
}

.discord-area .btn svg {
	width: 20px;
	height: 20px;
	margin-left: 10px
}

.discord-area p {
	max-width: 750px;
	margin: 25px auto
}

.discord-area .btn {
	margin-top: 35px
}

.artists-area {
	/*background:#000 url(https://storage.perfectcdn.com/dvj0ve/1f6cwswxsmdajecj.webp);background-position:top center;background-size:cover;background-repeat:no-repeat;*/
	border: 1px solid #84988d;
	text-align: center;
	border-radius: 25px;
	padding: 35px 75px
}

#artistsSlide .slide-item {
	text-align: center !important
}

#artistsSlide .slide-item p {
	margin-bottom: 50px
}

#artistsSlide .slide-item img {
	margin: 20px auto
}

#artistsSlide .ri-arrow-left-s-line,
#artistsSlide .ri-arrow-right-s-line {
	position: absolute;
	background: #ffffff30;
	width: 40px;
	height: 40px;
	border-radius: 100%;
	border: 1px solid #fff
}

#artistsSlide .ri-arrow-left-s-line {
	top: 200px;
	left: -50px
}

#artistsSlide .ri-arrow-right-s-line {
	top: 200px;
	right: -50px
}

.page-alt .ms-title {
	text-align: center;
	padding-bottom: 50px
}

.page-alt .ms-title h2 {
	font-size: 36px;
	font-weight: 600
}

.deg-green {
	background: linear-gradient(to bottom, rgb(0, 182, 92, .6) 0%, rgba(255, 255, 255, 0) 120%);
	border-radius: 5px
}

.deg-yellow {
	background: linear-gradient(to bottom, rgb(255, 253, 72, .6) 0%, rgba(255, 255, 255, 0) 120%);
	border-radius: 5px
}

.ow-text p {
	line-height: 36px
}

@media (max-width:991.98px) {
    .si-header {
        padding: 15px 10px;
        gap: 5px;
    }
	body,
	html {
		background: rgb(0, 0, 0);
		background: linear-gradient(100deg, rgba(0, 0, 0, 1) 0%, rgba(15, 163, 82, 1) 70%)
	}

	.homeLogin .hl-group {
		flex-direction: column
	}

	.homeLogin .hl-group .hl-item:last-child {
		max-width: 100%
	}

	.trust-badge {
		flex-direction: column
	}

	.main-badge {
		width: 92px;
		height: 92px
	}

	.mbadge-one {
		position: absolute;
		right: 0;
		top: 10px
	}

	.main-badge h6 {
		font-weight: 600;
		font-size: 18px
	}

	.main-badge span {
		font-size: 12px;
		line-height: 12px;
		margin-top: -10px
	}

	.trust-badge .tp-rates {
		width: 90px;
		height: 17px
	}

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

	.rate-brand-text p {
		margin-bottom: 0
	}

	.page-alt .ms-title h3 {
		font-size: 24px
	}

	#contentSlide .ri-arrow-left-s-line,
	#contentSlide .ri-arrow-right-s-line {
		display: none !important
	}

	#textSlide .ri-arrow-left-s-line,
	#textSlide .ri-arrow-right-s-line {
		display: none !important
	}

	#artistsSlide .ri-arrow-left-s-line,
	#artistsSlide .ri-arrow-right-s-line {
		display: none !important
	}

	#textSlide p {
		font-size: 24px;
		line-height: 32px;
		padding-bottom: 18px
	}

	#textSlide span {
		font-size: 16px
	}

	.text-slide {
		padding: 50px 0
	}

	.world-statics {
		display: grid;
		grid-template-columns: repeat(2, 1fr)
	}

	.world-area h2 {
		font-size: 24px
	}

	.world-area {
		padding: 25px 15px 200px 15px
	}

	.world-statics .ws-item h5 {
		font-size: 32px
	}

	.world-statics .ws-item span {
		font-size: 14px
	}

	.ho-area h5 {
		font-size: 24px;
		max-width: auto;
		margin: auto;
		line-height: 36px
	}

	.ho-area {
		padding: 75px 0
	}

	.spotify-panel {
		padding: 0
	}

	.sp-area {
		padding: 35px 15px
	}

	.sp-area h5 {
		font-size: 32px
	}

	.mt-item {
		margin-bottom: 25px
	}

	.discord-area h5 {
		font-size: 32px;
		line-height: 48px
	}

	.discord-area img {
		max-width: 75%;
		height: auto
	}

	.discord-area {
		padding: 35px 15px
	}

	.discord-section {
		padding: 0
	}

	.artists-area {
		padding: 35px 15px
	}

	.artists-area .artist-img {
		width: 150px;
		height: 150px
	}
}

.hh-box-title h2 {
	font-size: 14px;
	font-weight: 400;
	margin-bottom: 0
}


.acc_sta_box {
	position: relative;
	width: 100%;
	padding: 20px 25px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.card-2 {
	border: 1px solid #313131;
    background-color: #131313;
	border-radius: 10px;
}

.dahsboard_icon {
	font-size: 24px;
	color: #00af52;
}

.dashboard_text h6 {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 3px;
}

.acc_sta_box .icon {
	background: linear-gradient(180deg, #00af52 0%, transparent 100%);
	width: 60px;
	height: 60px;
	border-radius: 50px;
	font-size: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #00ff7f
}

.acc_sta_box .box_info h6 {
	font-size: 13px;
	font-weight: normal;
	margin-bottom: 0px;
}

.acc_sta_box h2 {
	font-size: 23px;
	font-weight: bold;
	margin-bottom: 0px;
}

.acc_sta_box a {
	font-size: 12px;
}


.account_benifit_wrap h2 {
	font-size: 24px;
	font-weight: bold;
	color: var(--color-3);
}

.nwoNavLink.btn-new.active {
	border-radius: 50px;
}

.card-dashboard .card-body {
	background: #00af5257;
	border-radius: 0 0 10px 10px;
}

.acc_level_name {
	font-size: 24px;
	color: var(--color-3);
	font-weight: bold;
	margin-bottom: 10px;
}

.user_point_data,
.user_level_benifits .user_level {
	color: #fff;
	font-weight: bold;
	font-size: 24px;
	margin-bottom: 15px;
}

.acc_level_benifit ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
}

.acc_level_benifit ul li {
	font-size: 15px;
	font-weight: normal;
	color: var(--color-3);
}


.user_point_data {
	display: flex;
	gap: 10px;
	align-items: center;
}

.point_note ul,
.user_benifits ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

.point_note ul li,
.user_benifits ul li {
	font-size: 16px;
	font-weight: normal;
	color: var(--color-4);
}


table.level_table tr td {
	font-size: 15px;
	padding: 2px 5px;
	font-weight: bold;
}

/* Level Wraper */
#levelModal {
	padding-top: 70px;
}

#levelModal .modal-content {
	border-radius: 15px;
}

#levelModal .modal-body {
	background: linear-gradient(90deg, rgba(21, 35, 27, 1) 0%, rgba(22, 47, 32, 1) 100%);
	border-radius: 15px;
}

.levelNav {
	display: flex;
	gap: 10px;
}

.levelNav li .nav-link {
	padding: 5px 20px;
	border: none;
	border-radius: 50px;
	background: #00512194;
	;
	color: #fff;
	transition: 0.5s ease;
}

.levelNav li .nav-link.active,
.levelNav li .nav-link:hover {
	background: #00af52;
}

.sidebar_userinfo {
	display: none;
}

.sidebar_userinfo h4 {
	font-size: 18px;
	font-weight: bold;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.card-info {
	background: #005121;
	border: 1px solid #005121;
	border-radius: 23px;
}

.album-cover {
	margin-left: 15px
}

.sidebar-player.playing .album-cover {
	animation: rotating 10s linear infinite
}

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

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

@media only screen and (max-width:992px) {
	.sidebar_userinfo {
		display: block;
	}

	.card-text-center {
		text-align: center
	}
}

@media only screen and (max-width:550px) {
	.acc_sta_box {
		padding: 10px 5px;
		gap: 5px
	}

	.acc_sta_box .icon {
		width: 32px;
		height: 32px;
		font-size: 16px
	}

	.acc_sta_box h2 {
		font-size: 16px;
	}

	.stm-hello .col-6 {
		padding-right: 5px;
		padding-left: 5px;
	}

	.stm-hello .row {
		margin: auto
	}
}

.nsm7Bb-HzV7m-LgbsSe {
	border-radius: 35px !important
}

.google-btn {
	position: absolute;
	right: 15px;
	top: 15px
}

@media only screen and (max-width:550px) {
	.google-btn {
		position: relative;
		right: 0;
		top: 10px;
		left: 0;
		margin-left: auto;
		margin-right: auto;
	}
}

.select2-results__option a {
	background: var(--color-5);
}

.head-review {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-top: 10px
}

.head-review .list {
	display: flex;
	align-items: center;
}

.head-review .list img {
	min-width: 42px;
	width: 42px;
	height: 42px;
	border-radius: 100%;
	margin-left: -20px;
	border: 3px solid #fff
}

.head-review .list img:first-child {
	margin-left: 0
}

.head-review .hr-rates {
	display: flex;
	align-items: center;
	gap: 10px
}

.head-review .hr-rates .fa-star {
	color: #faca15
}

.head-review .hr-rates small {
	font-size: 16px;
	color: #fff
}

.head-review .hr-trust {
	color: rgb(255, 255, 255, .9);
	font-size: 13px
}

.head-review .hr-video {
	position: relative;
	opacity: .6
}

.head-review .hr-video:hover {
	opacity: 1;
	cursor: pointer;
	transition: 250ms all
}

.head-review .hr-video .hr-thumb {
	max-width: 100px;
	height: 54px;
	border-radius: 10px;
	transition: 250ms all
}

.head-review .hr-video .hr-play {
	position: absolute;
	left: 30px;
	top: 10px;
	width: 32px;
	height: 32px;
	line-height: 32px;
	background: #fff;
	color: var(--color-5);
	text-align: center;
	border-radius: 100%
}

@media (max-width: 991.98px) {
	.head-review {
		justify-content: center;
		margin-top: 15px
	}

	.head-review .hr-video .hr-thumb {
		border-radius: 100%;
		width: 36px;
		height: 36px
	}

	.head-review .hr-video .hr-play {
		left: 6px;
		top: 6px;
		width: 24px;
		height: 24px;
		line-height: 24px;
		font-size: 12px
	}

	.head-review .hr-text {
		font-size: 13px
	}

}

.YouTubePopUp-Wrap {
	position: fixed;
	width: 100%;
	height: 100%;
	background-color: #000;
	background-color: rgba(0, 0, 0, 0.8);
	top: 0;
	left: 0;
	z-index: 9999999999999;
}

.YouTubePopUp-animation {
	opacity: 0;
	-webkit-animation-duration: 0.5s;
	animation-duration: 0.5s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: YouTubePopUp;
	animation-name: YouTubePopUp;
}

@-webkit-keyframes YouTubePopUp {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@keyframes YouTubePopUp {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

.YouTubePopUp-Content {
	max-width: 680px;
	display: block;
	margin: 0 auto;
	height: 100%;
	position: relative;
}

.YouTubePopUp-Content iframe {
	max-width: 100% !important;
	width: 100% !important;
	display: block !important;
	height: 480px !important;
	border: none !important;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto 0;
}

.YouTubePopUp-Hide {
	-webkit-animation-duration: 0.5s;
	animation-duration: 0.5s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: YouTubePopUpHide;
	animation-name: YouTubePopUpHide;
}

@-webkit-keyframes YouTubePopUpHide {
	0% {
		opacity: 1;
	}

	100% {
		opacity: 0;
	}
}

@keyframes YouTubePopUpHide {
	0% {
		opacity: 1;
	}

	100% {
		opacity: 0;
	}
}

.YouTubePopUp-Close {
	position: absolute;
	top: 0;
	cursor: pointer;
	bottom: 528px;
	right: 0px;
	margin: auto 0;
	width: 24px;
	height: 24px;
	background: url(../images/close.png) no-repeat;
	background-size: 24px 24px;
	-webkit-background-size: 24px 24px;
	-moz-background-size: 24px 24px;
	-o-background-size: 24px 24px;
}

.YouTubePopUp-Close:hover {
	opacity: 0.5;
}

@media all and (max-width: 768px) and (min-width: 10px) {
	.YouTubePopUp-Content {
		max-width: 90%;
	}
}

@media all and (max-width: 600px) and (min-width: 10px) {
	.YouTubePopUp-Content iframe {
		height: 320px !important;
	}

	.YouTubePopUp-Close {
		bottom: 362px;
	}
}

@media all and (max-width: 480px) and (min-width: 10px) {
	.YouTubePopUp-Content iframe {
		height: 220px !important;
	}

	.YouTubePopUp-Close {
		bottom: 262px;
	}
}

.ww-img {
	text-align: right
}

.ww-img img {
	max-width: 525px
}

.ww-content small {
	font-size: 22px;
	color: #a7ffcd
}

.ww-content h2 {
	font-size: 52px;
	font-weight: 700;
	padding-top: 15px
}

.ww-alt-text {
	padding-top: 35px
}

.ww-alt-text h3 {
	font-size: 22px;
	color: #a7ffcd
}

.ws-header {
	text-align: center;
	margin-bottom: 55px
}

.ws-header small {
	font-size: 22px;
	color: #00ff6e
}

.ws-header h2 {
	font-size: 52px;
	font-weight: 700;
	padding-top: 15px;
	max-width: 650px;
	margin: auto;
}

.ws-box {
	display: flex;
	background: rgb(255, 255, 255, .1);
	border-radius: 15px;
	padding: 15px;
	gap: 15px;
	margin-bottom: 15px
}

.ws-box .ws-text h3 {
	font-size: 22px
}

.ws-box .ws-text p {
	color: #a7ffcd
}

.ws-box .ws-icon i {
	background: #1b7b45;
	width: 42px;
	height: 42px;
	border-radius: 7px;
	font-size: 20px;
	text-align: center;
	line-height: 42px;
	color: #00ff6e;
}

.why-spotify {
	padding-top: 75px
}

.choose-box {
	background: url(https://storage.perfectcdn.com/dvj0ve/b6cga3poo7h37e49.jpg);
	background-position: top left;
	background-size: cover;
	background-repeat: no-repeat;
	margin-bottom: 15px;
	padding: 15px 25px;
	border-radius: 15px;
	border: 2px solid #1f1c1d;
	transition: 250ms all;
	cursor: pointer
}

.choose-box:hover {
	background: url(https://storage.perfectcdn.com/dvj0ve/tdwk5o6yrtnkho1q.jpg);
	transition: 250ms all;
	border: 2px solid #122c19
}

.choose-box:hover h3 {
	color: #a7ffcd
}

.choose-box .cb-icon i {
	background: #a7ffcd;
	width: 62px;
	height: 62px;
	line-height: 62px;
	font-size: 20px;
	text-align: center;
	border-radius: 100%;
	box-shadow: 0 1px 17px #a7ffcd;
	color: #1e1e1e
}

.choose-box h3 {
	font-size: 28px;
	font-weight: 600;
	padding-top: 20px;
	max-width: 250px
}

.choose-box .cb-text {
	min-height: 150px;
	margin-bottom: 15px
}

.choose-box a {
	color: #a7ffcd
}

.choose {
	padding: 75px 0
}

.choose-header h2 {
	font-size: 42px;
	font-weight: 600;
	padding-bottom: 75px;
	margin: auto;
}

.promo {
	background: #231f20 url(https://storage.perfectcdn.com/dvj0ve/uonuldatmzbpctmg.jpg);
	background-position: bottom center;
	background-size: cover;
	background-repeat: no-repeat;
	padding: 25px 0 75px 0
}

.promo-boxes {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 35px;
	border: 1px solid #fff8cf;
	border-radius: 25px;
	padding: 35px 25px 0 25px;
	position: relative
}

.promo-boxes::after {
	content: '';
	width: 100%;
	height: 100%;
	background: rgba(35, 21, 32, 0.3);
	backdrop-filter: blur(15px);
	position: absolute;
	border-radius: 25px
}

.promo-item {
	position: relative;
	z-index: 1;
	text-align: center;
	margin-bottom: 25px
}

.promo-item h3 {
	font-size: 22px;
	color: #a7ffcd;
	padding-bottom: 10px
}

.promo-title {
	text-align: center
}

.promo-title h2 {
	font-size: 52px;
	font-weight: 700;
	padding-bottom: 25px
}

.promo-title img {
	padding-bottom: 50px
}

.pros-title h2 {
	font-size: 42px;
	font-weight: 600;
	padding-bottom: 75px;
	margin: auto;
}

.pros-box {
	display: flex;
	background: rgb(255, 255, 255, .1);
	border-radius: 15px;
	padding: 15px;
	gap: 15px;
	max-width: 95%;
	margin: auto;
}

.pros-box .pros-icon i {
	font-size: 20px;
	color: #00ff6e;
}

.pros-box .pros-text h3 {
	font-size: 22px;
}

.pros-box .pros-text p {
	color: #a7ffcd;
}

.slick-dots {
	display: flex;
	justify-content: center;
	margin: 0;
	padding: 1rem 0;
	list-style-type: none;
}

.slick-dots li {
	margin: 0 0.25rem;
}

.slick-dots button {
	display: block;
	width: 1rem;
	height: 1rem;
	padding: 0;
	border: none;
	border-radius: 100%;
	background-color: rgba(255, 255, 255, .1);
	text-indent: -9999px;
}

.slick-dots li.slick-active button {
	background-color: #fff;
}

.promo-item p {
	min-height: 150px
}

.promo-item .btn {
	padding: 7px 15px;
	font-size: 14px;
}

.dot-item {
	display: flex;
	align-items: center;
	gap: 5px
}

.nwo-cat-btn {
	display: flex;
	align-items: center;
	gap: 15px;
	background: #005121;
	border: 1px solid #00af52;
	border-radius: 100%;
	padding: 15px;
	justify-content: center;
	width: 45px;
	height: 45px;
	color: #fff !important
}

#noc-wrapper {
	display: flex;
	justify-content: center;
}

#new-order-cats .swiper-slide {
	width: auto;
}

.nwo-cat-btn[data-change-cat="deezer"] {
	background: #a238ff;
	border-color: #a238ff
}

.nwo-cat-btn[data-change-cat="apple"] {
	background: #fc3c44;
	border-color: #fc3c44
}

.nwo-cat-btn[data-change-cat="mixcloud"] {
	background: #5000FF;
	border-color: #5000FF
}

.nwo-cat-btn[data-change-cat="youtube"] {
	background: #ff0042;
	border-color: #ff0042
}

.nwo-cat-btn[data-change-cat="spotify"] {
	background: #1DB954;
	border-color: #1DB954
}

.nwo-cat-btn[data-change-cat="tiktok"] {
	background: #ff0042;
	border-color: #ff0042
}

.nwo-cat-btn[data-change-cat="soundcloud"] {
	background: #ff8800;
	border-color: #ff8800
}

.nwo-cat-btn[data-change-cat="shazam"] {
	background: #0088FF;
	border-color: #0088FF
}

.nwo-cat-btn[data-change-cat=""] {
	background: #005121;
	border-color: #005121
}

.card {
    background-color: #0b4a28;
    border: 1px solid #313131;
    border-radius: 15px;
}

.card .card-header {
    background: rgb(0, 0, 0);
    background: linear-gradient(90deg, transparent 0%, rgba(0, 255, 127, .2) 100%);
    border-image: linear-gradient(to right, transparent 0%, #00FF7F 100%) 1;
    border-radius: 15px 15px 0 0;
    border-width: 1px;
    border-style: solid;
    border-left: none;
    border-top: none;
    border-right: 0;
	padding: 20px;
}

.card .card-header .d-icon {
	width: 34px;
	height: 34px;
	border-radius: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 400;
	color: #fff;
	background: linear-gradient(180deg, var(--color-6) 0%, transparent 100%)
}

.fw-600 {
	font-weight: 600;
}

.card.card-desc {
	position: relative;
	z-index: 1
}

.bottom-navigation {
	position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgb(21, 35, 27);
    background: #000;
    border-top: 1px solid #00773c;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    padding: 10px;
    gap: 10px;
    z-index: 50;
    box-shadow: 1px 1px 22px 10px rgb(12 53 33);
}

.bottom-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	gap: 5px;
	line-height: 1;
	padding: 10px 0px;
	color: #fff
}

.bottom-item i {
	font-size: 18px;
}

.bottom-item-name {
	white-space: nowrap;
}

.bottom-item.active {
	color: var(--color-5);
}

.stm-hello {
    border: 1px solid #313131;
    background-color: #131313;
	border-radius: 15px
}

#s_desc {
	font-size: 14px
}

#service_description {
	display: none
}

.tickets-uploader {
	padding: 3px 10px;
	border-radius: 12px;
	background: var(--color-7);
	transition: .5s ease-in-out !important;
	border: 1px solid #005121;
	color: var(--text-color);
	width: max-content;
}

.files-wrapper {
	display: flex;
	flex-direction: column;
	line-height: 29px;
}

.files-wrapper a {
	color: var(--color-5);
}

.files-label {
	color: #fff;
	font-size: 13px;
}

.meet-header {
	display: flex;
	justify-content: center;
	flex-direction: column;
	text-align: center;
	gap: 15px;
}

.meet-header small {
	background: #ddffee;
	color: #1f583d;
	width: max-content;
	font-size: 18px;
	border-radius: 15px;
	padding: 5px 15px;
	margin: auto;
}

.meet-header h1 {
	color: #a7ffcd;
	font-size: 42px;
	font-weight: 700;
}

.meet-owner-area {
	display: flex;
	justify-content: space-around;
	gap: 15px;
}

.meet-owner-left,
.meet-owner-right {
	display: flex;
	align-items: center;
	width: 100%;
}

.mo-content-left,
.mo-content-right {
	display: flex;
	flex-direction: column;
	background: #a7ffcd;
	height: 305px;
	margin-top: 48px;
	padding: 35px 45px;
	width: 100%;
}

.mo-img-left img,
.mo-img-right img {
	max-width: 300px;
}

.mo-content-left small,
.mo-content-right small {
	font-size: 18px;
	font-weight: 600;
	color: #1f583d;
}

.mo-content-left p,
.mo-content-right p {
	font-size: 14px;
	color: #000;
}

.mo-content-left i,
.mo-content-right i {
	width: 42px;
	height: 42px;
	text-align: center;
	line-height: 42px;
	border-radius: 100%;
	background: #1f583d;
	color: #fff;
	font-size: 16px;
}

.meet-owner-right .mo-content-right {
	order: 1;
}

.meet-owner-right .mo-img-right {
	order: 2;
}

.story-2,
.story-3,
.story-4,
.story-5,
.story-6,
.story-7,
.story-8,
.story-9 {
	padding: 100px 0
}

.story-2 small {
	position: relative;
	font-size: 15px;
	color: rgb(255, 255, 255, .7);
	padding-left: 20px
}

.story-2 small:before {
	content: "";
	display: block;
	border-top: 3px solid #02da70;
	width: 15px;
	height: 3px;
	position: absolute;
	top: 50%;
	z-index: 1;
}

.story-2 h2 {
	font-size: 42px;
	font-weight: 700;
	color: #a7ffcd
}

.story-2 p {
	padding-top: 15px
}

.story-3 .story-highlight {
	font-size: 36px;
	line-height: 46px;
	font-weight: 600;
	color: #fff;
	text-align: center;
	max-width: 750px;
	margin: auto;
	position: relative
}

.story-3 .left-quote,
.story-3 .right-quote {
	position: absolute;
	width: 45px
}

.story-3 .left-quote {
	top: -15px;
	left: -25px
}

.story-3 .right-quote {
	bottom: -25px;
	right: -50px
}

.story-4 {
	background: url(https://storage.perfectcdn.com/dvj0ve/a5jl8s42ra7xck95.jpg);
	position: relative;
	background-position: center center;
	background-repeat: no-repeat;
	padding: 75px 0;
}

.story-4 .story-table {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 100px;
	margin-bottom: 75px
}

.story-4 .story-table h2 {
	font-size: 42px;
	font-weight: 700;
	color: #a7ffcd;
}

.story-4 .story-table p {
	max-width: 600px;
	margin-bottom: 0
}

.story-4 .story-4-box {
	display: flex;
	align-items: center;
	flex-direction: column;
	gap: 15px;
	text-align: center;
	background: #1e5c38;
	border-radius: 10px;
	padding: 25px 35px;
	min-height: 100%;
	transition: 250ms all;
	cursor: pointer
}

.story-4 .story-4-box:hover {
	background: #a7ffcd70;
	transition: 250ms all
}

.story-4 .s4-icon {
	background: #3dffbc15;
	color: #3dffbc;
	width: 60px;
	height: 60px;
	line-height: 60px;
	font-size: 28px;
	border-radius: 8px
}

.story-4 .s4-title {
	font-size: 18px;
	font-weight: 600
}

.story-4 .story-4-box:hover .s4-title,
.story-4 .story-4-box:hover .s4-text,
.story-4 .story-4-box:hover .s4-icon {
	color: #04451f
}

.story-5 small {
	position: relative;
	font-size: 15px;
	color: rgb(255, 255, 255, .7);
	padding-left: 20px
}

.story-5 small:before {
	content: "";
	display: block;
	border-top: 3px solid #02da70;
	width: 15px;
	height: 3px;
	position: absolute;
	top: 50%;
	z-index: 1;
}

.story-5 h2 {
	font-size: 42px;
	font-weight: 700;
	color: #a7ffcd
}

.story-5 p {
	padding-top: 15px
}

.story-6 {
	background: url(https://storage.perfectcdn.com/dvj0ve/ggal7js2ki994f3z.jpg);
	position: relative;
	background-position: center center;
	background-repeat: no-repeat;
	padding: 50px 0;
}

.join-team-content {
	display: flex;
	align-items: center;
	flex-direction: column;
	gap: 15px;
	text-align: center
}

.join-team-content small {
	font-size: 18px;
	font-weight: 600;
	color: rgb(255, 255, 255, .7)
}

.join-team-content h1 {
	font-size: 42px;
	font-weight: 600;
	color: #a7ffcd
}

.join-team-content p {
	max-width: 850px;
	text-align: center;
	padding-top: 30px
}

.join-team-buttons {
	display: flex;
	align-items: center;
	gap: 25px;
	margin-top: 35px
}

.join-team-buttons a {
	font-size: 18px;
	color: #030303;
	border-radius: 25px;
	transition: 250ms all
}

.join-team-buttons a:hover {
	opacity: .7;
	transition: 250ms all
}

.join-team-buttons a:nth-child(1) {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 7px 5px 7px 15px;
	background: #3dffbc
}

.join-team-buttons a:nth-child(1) i {
	background: #030303;
	color: #3dffbc;
	width: 32px;
	height: 32px;
	line-height: 32px;
	text-align: center;
	border-radius: 100%
}

.join-team-buttons a:nth-child(2) {
	background: transparent;
	border: 1px solid #3dffbc;
	padding: 7px 15px;
	color: #fff
}

.story-7 h2 {
	font-size: 42px;
	font-weight: 700;
	color: #a7ffcd;
}

.story-7 p {
	padding-top: 15px;
}

.story-7 .story-7-rated {
	background: #fff;
	padding: 10px 15px;
	width: max-content;
	border-radius: 25px;
	color: #030303;
	margin-bottom: 50px
}

.story-7 .story-7-rated i {
	color: #ffb401
}

.story-7 .story-7-sign {
	display: flex;
	flex-direction: column;
	margin-top: 50px;
	font-size: 22px;
	position: relative;
	border-left: 5px solid #0eff85;
	padding-left: 15px
}

.story-7 .story-7-sign span {
	font-weight: 600
}

#story .story-sliders {
	position: relative;
}

#story .story-sliders .swiper-wrapper {
	-webkit-transition-timing-function: linear !important;
	transition-timing-function: linear !important;
	position: relative;
	pointer-events: none;
}

#story .story-sliders .swiper-wrapper .swiper-slide {
	width: -webkit-max-content !important;
	width: -moz-max-content !important;
	width: max-content !important;
}

#story .story-sliders.slider {
	position: relative;
	background-color: #0eff85;
	padding: 25px 0;
	color: #030303;
	width: 140%;
	left: -30%;
}

#story .story-sliders.slider:first-of-type {
	-webkit-transform: rotate(-11deg);
	transform: rotate(-11deg);
	z-index: 10;
}

#story .story-sliders.slider:last-of-type {
	-webkit-transform: rotate(-2deg);
	transform: rotate(-2deg);
}

#story .story-sliders.slider .swiper-slide span {
	position: relative
}

#story .story-sliders.slider .swiper-slide span::after {
	position: absolute;
	font-family: "remixicon";
	font-style: normal;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: "\f53f";
	left: -100px;
	color: #e3ff04
}

#story .story-sliders.slider .swiper-slide span {
	font-size: 28px;
	font-weight: 600;
	color: #030303;
}

.story-9 {
	background: url(https://storage.perfectcdn.com/dvj0ve/dcuybhcn56pq1jwm.jpg);
	position: relative;
	background-position: center center;
	background-repeat: no-repeat;
	padding: 50px 0;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff
}

.story-9 .story-9-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
	border-radius: 25px;
	border: 2px solid #a7ffcd
}

.story-9 .story-9-content::after {
	content: '';
	width: 100%;
	height: 100%;
	background: rgba(35, 21, 32, 0.3);
	backdrop-filter: blur(15px);
	border-radius: 25px;
	position: absolute;
}

.story-9 .story-9-text,
.story-9 .story-9-content a {
	position: relative;
	z-index: 1;
	padding: 35px
}

.story-9 .story-9-text h2 {
	font-size: 36px;
	font-weight: 600;
	color: #a7ffcd;
}

.story-9 .story-9-text p {
	font-size: 16px;
	color: #fff;
	margin-bottom: 0;
	max-width: 500px
}

.story-9 .story-9-content a {
	background: #a7ffcd;
	font-size: 16px;
	color: #086c34;
	border-radius: 5px;
	margin-right: 35px;
	padding: 15px 25px
}

.story-9 .story-9-content a:hover {
	opacity: .7
}

.desc-list {
    background: #162f20;
    border: 1px solid #313131;
    border-radius: 35px;
    line-height: 20px;
    padding: 10px 10px 10px 7px;
    outline: none;
    font-weight: 400;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.desc-list .icon {
    width: 32px;
    height: 32px;
    color: #fff;
    background-color: var(--color-5);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 25px;
}

.desc-list.description .text {
    min-height: 250px;
    max-height: 400px;
    overflow-y: scroll;
}

.sf-1 {
    background: url(https://storage.perfectcdn.com/dvj0ve/8xj6kqcnjeg6y6wz.jpg);
    position: relative;
  	background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 50px 0;
}

.sf-1 .sf-bg-effects .sf-bg-1, 
.sf-1 .sf-bg-effects .sf-bg-2, 
.sf-1 .sf-bg-effects .sf-bg-3 {
	position: absolute
}

.sf-1 .sf-bg-effects .sf-bg-1 {
	top: 0;
  	left: 0
}

.sf-1 .sf-bg-effects .sf-bg-2 {
	top: 25px;
  	right: 125px
}

.sf-1 .sf-bg-effects .sf-bg-3 {
	bottom: -150px;
  	right: 0
}

.sf-1 h1 {
	color: #dafff1;
  	text-align: center
}

.sf-1 p {
	color: #dafff1;
  	text-align: center;
  	max-width: 625px;
  	margin: 25px auto 0 auto
}

.sf-1 .sf-wrapper {
	display: flex;
  	gap: 50px;
  	margin-top: 60px
}

.sf-1 .sf-wrapper .sf-img img {
	width: 135px;
    height: 135px
}

.sf-1 .sf-wrapper .sf-img {
	width: 135px;
    height: 135px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    position: relative;
  	z-index: 1;
  	margin-top: 30px
}

.sf-1 .sf-wrapper .sf-img::before {
    content: "";
    position: absolute;
    left: -15px;
    top: -15px;
    right: -15px;
    bottom: -15px;
    border-radius: 100%;
    background: rgb(218, 255, 241, 1);
    opacity: 0.1;
}

.sf-1 .sf-wrapper .sf-img::after {
    content: "";
    position: absolute;
    left: -30px;
    top: -30px;
    right: -30px;
    bottom: -30px;
    border-radius: 100%;
    background: rgb(218, 255, 241, 1);
    opacity: 0.03;
}

.sf-1 .sf-form {
  	width: 100%;
}

.sf-1 .sf-form .form {
	display: flex;
  	align-items: center;
  	justify-content: space-between;
	background: rgb(255, 255, 255, .15);
  	border-radius: 15px;
  	padding: 50px 35px 65px 35px;
  	width: 100%;
  	gap: 60px
}

.sf-1 .sf-form .form .sf-group {
  	width: 100%
}

.sf-1 .sf-form .form .sf-group label {
  	color: #dafff1
}

.sf-1 .sf-form .form .sf-group .form-control {
  	background: rgb(255, 255, 255, .15);
  	border-radius: 10px;
  	color: #42ff97
}

.sf-1 .sf-form .btn-sf {
  	background: rgb(7,198,125);
 	background: linear-gradient(90deg, rgba(7,198,125,1) 0%, rgba(11,219,81,1) 100%);	
  	color: #000;
  	width: 100%;
  	transition: 150ms all;
	position:relative;
 	overflow:hidden;
}

.sf-1 .sf-form .btn-sf:hover, .sf-1 .sf-form .btn-sf:focus {
  	background: rgb(7,198,125);
 	background: linear-gradient(270deg, rgba(7,198,125,1) 0%, rgba(11,219,81,1) 100%);
  	color: #000;
  	transition: 150ms all
}

.sf-1 .sf-form .btn-sf:before{
  content:'';
  position: absolute;
  left: -20%;
  top:-10%;
  width: 0;
  height: 100%;
  transform: rotate(15deg) scale(1, 2);
  box-shadow: 0 0 30px 15px rgba(255, 255, 255, 0.7);
  animation: button-glow 2000ms ease-in-out infinite;
}

@keyframes button-glow {
  0% {
    left: -20%;
  }
  50% {
    left: 120%;
  }
  100% {
    left: 120%;
  }
}

.sf-1 .sf-content {
	display: flex;
  	justify-content: space-between;
  	margin-top: 50px
}

.sf-1 .sf-content .text p {
	text-align: left;
  	margin: 0;
  	color: #96baac
}

.sf-1 .sf-content .sf-count {
  	display: flex;
  	align-items: center;
  	gap: 60px;
  	margin-top: 50px
}

.sf-1 .sf-content .sf-count small {
	background: linear-gradient(to right, #07c67d, #0bdb51);
    background: -webkit-linear-gradient(to right, #07c67d, #0bdb51);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  	font-size: 28px;
  	font-weight: 700
}

.sf-1 .sf-content .sf-count p {
  	font-size: 15px;
  	color: #dafff1
}

.sf-1 .sf-content .text p i {
  	color: #84ffcd
}

.sf-2 {
	margin: 100px 0
}

.sf-2 .ww-img img {
    max-width: 425px;
}

.sf-2 .ww-content h2 {
    font-size: 42px;
    font-weight: 600;
    padding: 10px 0 15px 0
}

.sf-3#story .story-sliders.slider {
    background-color: #a7ffcd
}

.sf-3 {
    overflow: hidden;
    padding: 35px 0
}

.sf-4 {
    margin: 100px 0
}

.sf-4 .services-bg {
    background: url(https://storage.perfectcdn.com/dvj0ve/rnc07j1prrdilm1o.png);
    position: relative;
  	background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
  	border-radius: 15px;
  	padding: 275px 0 50px 0
}

.sf-4 .services-bg .services-texts {
    padding: 0 100px
}

.sf-4 .services-bg .services-texts h2 {
    max-width: 400px;
    color: #dafff1
}

.sf-4 .services-bg .services-texts p {
    max-width: 600px;
    color: #dafff1;
  	padding-top: 35px
}

.sf-5 .sf-5-header {
	text-align: center;
  	color: #dafff1
}

.sf-5 .sf-5-header small {
	font-size: 2rem
}

.sf-5 .gnyFAQs {
	margin-top: 50px
}

.sf-5 .gnyFAQs .gnyFhead .row .col {
    display: flex;
  	align-items: center;
    gap: 25px
}

.sf-5 .gnyFAQs .gnyFtab .gnyFhead {
    font-size: 18px;
    font-weight: 400;
    color: #dafff1;
  	margin-bottom: 0
}

.sf-5 .gnyFAQs .gnyFtab .gnyFhead span {
    color: rgb(218, 255, 241, .5)
}

.sf-5 .gnyFAQs .gnyFtab .gnyFhead h4 {
    font-size: 18px;
    font-weight: 400;
    color: #dafff1;
  	margin-bottom: 0
}

.sf-5 .gnyFAQs .gnyFtab {
    padding: 13px 20px;
    -webkit-transition: .2sease;
    transition: .2sease;
    margin-bottom: 25px;
    border: 1px solid #0bdb51;
}

.sf-5 .gnyFAQs .gnyFtab .gnyFhead .right-p {
    color: #dafff1
}

.sf-5 .gnyFAQs .gnyFtab .gnyFhead .right-p i {
    font-weight: 400
}

.sf-6 {
	margin: 50px 0
}

.sf-6 .contact-wrapper {
	background: rgb(255, 255, 255, .13);
  	border-radius: 15px;
  	padding: 50px 35px
}

.sf-6 .contact-wrapper .cw-texts {
	display: flex;
  	align-items: center;
  	justify-content: space-between
}

.sf-6 .contact-wrapper .cw-texts span {
	display: flex;
  	align-items: center;
  	gap: 25px
}

.sf-6 .contact-wrapper .cw-texts span i {
	background: #dafff1;
  	color: #000;
  	width: 46px;
  	height: 46px;
  	line-height: 46px;
  	font-size: 24px;
  	text-align: center;
  	border-radius: 5px
}

.sf-6 .contact-wrapper .cw-texts span h2 {
  	color: #dafff1;
  	font-size: 24px;
  	font-weight: 500
}

.sf-6 .contact-wrapper .cw-texts p {
  	color: #dafff1;
  	margin-bottom: 0
}

.app-avatar {
	position: relative;
  	cursor: pointer
}

.app-avatar::before {
    content: "";
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-family: "Font Awesome 5 Pro";
    font-weight: 400;
    position: absolute;
    top: 3px;
    right: -2px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #007bff 0%, #1284ff 100%);
    transition: .14s ease all;
}

.avatar-list {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
}

.avatar-item {
    border-radius: 15px;
    border: 2px solid #00f673;
    transition: .14s ease all;
    position: relative;
    cursor: pointer;
}

.avatar-item:hover {
  transform:scale(1.1) rotate(2deg);
    transition: .14s ease all
}

.avatar-item img {
    max-width: 100%;
    transition: .14s ease all;
    border-radius: 15px;
}

.avatar-item::before {
    content: "";
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #00f673;
    color: #fff;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    right: 3px;
    top: 3px;
    transform: scale(0);
    transition: .14s ease all;
}

.avatar-item.active::before {
    transform: scale(1);
}

.modal-content {
	background: #1b1b1b
}

.modal-content, .modal-body {
	border-radius: 15px
}

.modal-header {
    border-radius: 15px 15px 0 0
}

.modal-footer {
    border-radius: 0 0 15px 15px 
}

@media all and (max-width: 991.98px) {
    .services-head-row .service-top {
        display: none!important
    }
  
	.meet-header {
		margin-bottom: 25px;
	}

	.meet-owner-area {
		flex-direction: column;
	}

	.meet-owner-left,
	.meet-owner-right {
		flex-direction: column;
	}

	.mo-content-left,
	.mo-content-right {
		flex-direction: column;
		margin-top: 0;
		height: auto;
		width: 88%;
		padding: 10px;
		text-align: center;
	}

	.meet-owner-right .mo-img-right {
		order: 1;
	}

	.meet-owner-right .mo-content-right {
		order: 2;
	}

	.panel-body {
		max-height: 250px;
		overflow-y: scroll
	}

	.card.card-desc {
		display: none
	}

	#service_description {
		display: block
	}

	.promo-item p {
		min-height: auto
	}

	.pros-box {
		max-width: 100%
	}

	.promo-title h2,
	.pros-title h2 {
		font-size: 24px;
		padding-bottom: 15px;
	}

	.promo-boxes {
		grid-template-columns: repeat(1, 1fr);
		gap: 0;
		padding: 15px;
	}

	.choose {
		padding: 0 0 50px 0;
	}

	.choose-header h2 {
		font-size: 24px;
		padding-bottom: 30px;
	}

	.ws-header h2 {
		font-size: 24px;
	}

	.why-spotify {
		padding: 0 0 50px 0
	}

	.calc-section {
		padding: 50px 0;
	}

	.ms-title,
	.ww-content {
		text-align: center
	}

	.ms-title h2 {
		font-size: 24px;
	}

	.ww-content h2 {
		font-size: 24px;
	}

	.ww-img {
		margin-bottom: 25px
	}

	.ww-img img {
		width: 100%
	}

	.choose-box .cb-text {
		min-height: auto
	}

	.hh-box-title h2 {
		font-size: 12px;
		text-align: center
	}

	.no-auth .btn-primary {
		font-size: 13px
	}

	.page-alt .col-lg:last-child {
		margin: auto
	}

	.nav-custom-3 {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		text-align: center;
		width: 100%
	}

	.nav-custom-3 .nav-item .nav-link {
		font-size: 13px;
		padding: 16px 14px;
		width: 100%
	}

	.appContent {
		padding-bottom: 90px;
	}

	.intercom-namespace .intercom-with-namespace-52k34s {
		bottom: 90px !important
	}

	.tickets .date {
		position: relative;
		top: auto;
		right: auto
	}

	.story-2,
	.story-3,
	.story-4,
	.story-5,
	.story-6,
	.story-7,
	.story-8,
	.story-9 {
		padding: 35px 0;
	}

	.story-2 .story-2-text {
		margin-top: 25px;
		text-align: center
	}

	.story-2 .story-2-text h2 {
		font-size: 24px
	}

	.story-2 small {
		font-size: 13px;
		padding-left: 0
	}

	.story-2 small:before {
		display: none
	}

	.story-3 .story-highlight {
		font-size: 24px;
		line-height: 32px
	}

	.story-3 .left-quote,
	.story-3 .right-quote {
		width: 24px;
	}

	.story-3 .left-quote {
		top: -25px;
		left: 0;
	}

	.story-3 .right-quote {
		bottom: -15px;
		right: 0;
	}

	.story-4 {
		background: transparent
	}

	.story-4 .story-table {
		flex-direction: column;
		gap: 20px;
		margin-bottom: 25px;
	}

	.story-4 .story-table {
		text-align: center
	}

	.story-4 .story-table h2 {
		font-size: 24px
	}

	.story-4 .story-4-box {
		margin-bottom: 15px
	}

	.story-5-text {
		text-align: center;
		padding-top: 25px
	}

	.story-5 small {
		font-size: 13px;
		padding-left: 0
	}

	.story-5 h2 {
		font-size: 24px
	}

	.story-5 small:before {
		display: none
	}

	.join-team-content h1 {
		font-size: 24px
	}

	.join-team-content small {
		font-size: 14px
	}

	.join-team-content p {
		padding-top: 15px
	}

	.join-team-buttons {
		margin-top: 15px
	}

	.story-7-text {
		margin-top: 15px;
		text-align: center
	}

	.story-7 h2 {
		font-size: 24px
	}

	.story-7 .story-7-rated {
		margin: 15px auto
	}

	.meet-header h1 {
		font-size: 28px;
	}

	.meet-header small {
		font-size: 14px
	}

	.story-9 .story-9-content {
		flex-direction: column
	}

	.story-9 .story-9-text {
		text-align: center
	}

	.story-9 .story-9-text h2 {
		font-size: 24px
	}

	.story-9 .story-9-text p {
		font-size: 14px
	}

	.story-9 .story-9-content a {
		margin: 0 0 15px 0
	}

	.story-9 .story-9-text,
	.story-9 .story-9-content a {
		padding: 15px 25px
	}
	.sf-1 .sf-wrapper {
    	 gap: 40px;
    	 margin-top: 30px;
    	 flex-direction: column
	}
  	.sf-1 .sf-form .form {
     	gap: 15px;
      	flex-direction: column;
        padding: 30px 25px
	}
    .sf-1 h1 {
        font-size: 24px
    }
    .sf-1 .sf-bg-effects .sf-bg-1 {
        width: 100px;
      	left: -30px;
        top: -30px
    }
    .sf-1 .sf-bg-effects .sf-bg-2 {
        top: 225px;
        right: 10px;
        width: 100px;
    }
    .sf-1 p {
        font-size: 14px;
    }
    .sf-1 .sf-content {
        margin-top: 30px;
        flex-direction: column;
    }
    .sf-1 .sf-content .text p {
        font-size: 12px;
    }
    .sf-1 .sf-content .image {
        margin-top: 30px
    }
    .sf-1 .sf-content .sf-count {
        gap: 40px;
        margin-top: 25px;
        justify-content: center;
        text-align: center
    }
    .sf-1 .sf-bg-effects .sf-bg-3 {
        bottom: -100px;
        width: 125px
    }
  	.sf-1 .sf-content .sf-count .item p {
  		text-align: center
  	}
    .sf-1 .sf-wrapper .sf-img {
        width: 80px;
        height: 80px
    }
    .sf-1 .sf-wrapper .sf-img img {
        width: 80px;
        height: 80px
    }
    .sf-2 {
        margin: 100px 0 0 0;
    }  
  	.sf-2 .ww-content h2 {
        font-size: 24px;
    }
  	.sf-2 .ww-content p {
        font-size: 14px;
    }
  	.sf-2.ww-content small {
   		 font-size: 16px
	}
    .sf-4 {
        margin: 25px 0 50px 0;
    }
    .sf-4 .services-bg {
        padding: 50px 0;
      	text-align: center
    }
    .sf-4 .services-bg .services-texts {
        padding: 0 10px
    }
    .sf-4 .services-bg .services-texts h2 {
        font-size: 24px
    }
    .sf-4 .services-bg .services-texts p {
        padding-top: 15px
    }
  	.sf-5 .sf-5-header h2, .sf-5 .sf-5-header small {
  		font-size: 24px
  	}
    .sf-5 .gnyFAQs .gnyFtab .gnyFhead h4, .sf-5 .gnyFAQs .gnyFtab .gnyFhead {
        font-size: 14px
    }
    .sf-5 .gnyFAQs .gnyFtab {
        margin-bottom: 10px
    }
    .sf-6 {
        margin: 25px 0 0 0;
    }
	.sf-6 .contact-wrapper .cw-texts {
   		flex-direction: column;
	}
    .avatar-list {
        gap: 10px;
        grid-template-columns: repeat(4, 1fr);
    }
    .avatar-item::before {
        width: 18px;
        height: 18px;
        font-size: 12px;
        right: 2px;
        top: -6px;
    }
}

@media only screen and (min-width: 991.98px) {
	.bottom-navigation {
		display: none !important;
	}
}

.sf-item {
    padding: 15px 10px;
    border-bottom: 1px solid #313131;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sf-price {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.sf-head {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sf-head .modal-icon {
	width: 32px;
    height: 32px;
    border-radius: 100%;
    background-color: var(--color-5);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px
}

.sf-head .sf-title {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 15.545px;
    letter-spacing: -0.054px;
    margin: 0;
}

.sf-checkbox-container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.sf-price .form-control,
.sf-price .form-control:hover,
.sf-price .form-control:focus {
    border: 1px solid #005121;
    background: #222
}

.sf-checkbox {
    border-radius: 50px;
    border: 1px solid #313131;
    background: #222;
    display: flex;
    padding: 10px 25px;
    text-align: center;
    transition: .24s ease all;
    color: #fff;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: -0.28px;
  	cursor: pointer
}

.sf-checkbox:hover {
    background: #00b65c50;
    transition: .24s ease all;
}

.sf-checkbox.active {
    border-radius: 50px;
    border: 1px solid var(#005121, #00b65c);
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.16) 6.48%, rgba(255, 255, 255, 0) 100%), #00b65c;
    box-shadow: 0px 0px 0px 4px #00b65c30;
    color: #fff
}

.sf-buttons {
    display: flex;
    align-items: center;
  	justify-content: center;
  	gap: 15px;
  	margin-top: 25px
}

.sf-buttons button {
    width: 100%;
  	height: 55px
}

.nothing-found {
    background: rgb(21, 35, 27);
    background: linear-gradient(90deg, rgba(21, 35, 27, 1) 0%, rgba(22, 47, 32, 1) 100%);
    border-radius: 15px;
    border: 2px solid #023212;
}

.sf-card {
    background: linear-gradient(90deg, rgba(21, 35, 27, 1) 0%, rgba(22, 47, 32, 1) 100%);
    border-radius: 13px;
	width: 100%;
}

.sf-card .filters-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.sf-card .filter-item {
    display: flex;
    align-items: center;
    gap: 4px;
}

.sf-card .filter-actions {
    margin-left: auto;
    display: flex;
    gap: 10px;
}

.sf-card .title {
    color: #fff;    
  	font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.054px;
    margin: 0;
}

.sf-card .badge.badge-sm {
	background-color: #00ed6f;
    padding: .25em .7em;
    font-size: 14px;
    line-height: 14px;
    border-radius: 35px;
    min-width: 30px;
    color: #15271d;
}

.sf-card .card-body {
    display: flex;
  	align-items: center;
	padding: 8px 8px 8px 12px;
    flex-wrap: wrap;
    gap: 15px;
}

.sf-card .filter-title {
    display: flex;
    align-items: center;
    gap: 14px;
    height: 32px;
}

.sf-card .filter-title .sf-icon {
	width: 28px;
    height: 28px;
    border-radius: 100%;
    background-color: var(--color-5);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.btn-xs {
    font-size: 12px;
    padding: 5px 15px;
    line-height: 15px
}

.s-hide {
  display: none;
}

.dropdown-menu {
    border-radius: 12px;
    padding: 10px 0;
    max-height: 400px;
    overflow-y: scroll;
    margin-top: 5px
}

.btn-filters {
    display: flex;
    align-items: center;
    gap: 7px;
  	padding: 7px 19px 7px 7px;
  	border-radius: 15px
}

.btn-filters .btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #077c42;
    color: #fff
}

.btn-filters.dropdown-toggle::after {
	display: none
}

.btn-filters.dropdown-toggle .fa-chevron-down {
    margin-left: 25px;
    font-size: 13px
}


@media only screen and (max-width: 991.98px) {
  .btn-filters {
      width: 100%;
      margin-bottom: 10px
  }
  .dropdown {
      width: 100%
  }
  .btn-filters.dropdown-toggle .fa-chevron-down {
      margin-left: auto
  }
  .sf-buttons .btn {
      font-weight: 500;
      font-size: 14px;
      line-height: 14px;
      padding: 10px 15px;
  }
  .sf-checkbox {
      border-radius: 35px;
      padding: 10px 15px
  }
  .sf-card .filter-actions, .sf-card .filter-actions .btn {
      width: 100%;
      height: 40px;
      font-size: 14px
  }
}

.error_login {
    display: none;
}
.form-group .g_id_signin {
    position: absolute;
    z-index: 1;
    opacity: 0
}
.login-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    z-index: 1000;
    background-color: transparent;
    overflow: hidden;
}
.login-popup .lp-inner {
    width: 100%;
    overflow: hidden
}
.login-popup .lp-wrapper {
    width: 100%;
    margin: 0 auto;
    border-radius: 0;
    position: relative;
    z-index: 1;
}
.sign-inner {
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
	background: rgb(13,115,58);
	background-image: url('https://storage.perfectcdn.com/dvj0ve/szqa3nnnxi09bzua.png'), linear-gradient(345deg, rgba(13, 115, 58, 1) 0%, rgba(6, 35, 17, 1) 100%);
    border-radius: 0;
    padding: 0px
}
.sign-inner .login-popup-close {
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 15px 6px 6px;
    overflow: hidden;
    background-color: #0bdb51;
    border: 1px solid #179d50;
    color: #fff;
    text-decoration: none;
    transition: 0.14s ease;;
	z-index: 10
}
.sign-inner .login-popup-close:hover,
.sign-inner .login-popup-close:focus {
	background: #179d50!important;
	border: 1px solid #179d50!important
}
.sign-inner .login-popup-close {
	position: absolute;
    right: 25px;
	top: 25px
}
.sign-inner .login-popup-close .text {
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: -.03em;
    position: relative;
    z-index: 1004;
	color: #fff
}
.sign-inner .login-popup-close .icon {
    display: flex;
    width: 28px;
    height: 28px;
    align-items: center;
    justify-content: center;
    position: relative;
	color: #fff
}
.sign-inner .login-popup-close .icon::after {
    content: "";
    z-index: 1002;
    background: rgba(0, 0, 0, .07);
    border-radius: 16px;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    transition: 0.4s ease;
}
.lp-inner .sign-wrapper {
    margin: 0px;
    justify-content: space-between;
    display: flex;
    height: 100dvh;
    width: 100%;
}
.login-popup .sign-left, 
.login-popup .sign-right {
	position: relative;
    margin: 0px;
    padding: 20px;
    width: 50%
}
.login-popup .sign-right {
    display: flex;
	justify-content: center;
	align-items: center
}
.login-popup .sign-left {
    background-image: url(https://storage.perfectcdn.com/dvj0ve/j9tgqbstmqx3tx66.webp);
	background-repeat: no-repeat;
	background-size: cover
}
.login-popup .sign-left .sign-img {
    position: absolute;
	top: 25px;
	left: 25px;
	max-width: 200px
}
.login-popup .sign-left .sign-copyright {
    position: absolute;
	bottom: 25px;
	left: 25px;
	color: #fff;
	font-size: 13px
}

.login-popup .sign-right .signin-top {
    display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 15px
}

.login-popup .sign-right .signin-top .sign-rates {
    display: flex;
	align-items: center;
	gap: 10px;
	color: #fff
}
.login-popup .sign-right .signin-top .sign-rates .hr-stars i {
    font-size: 13px;
	color: #facd4d;
	animation: stars-animation 2.5s ease infinite both
}

.login-popup .sign-right .signin-top .sign-rates .hr-stars:first-child {
    animation-delay: 0s;
}

.login-popup .sign-right .signin-top .sign-rates .hr-stars i:nth-child(2) {
    animation-delay: 0.2s;
}

.login-popup .sign-right .signin-top .sign-rates .hr-stars i:nth-child(3) {
    animation-delay: 0.4s;
}

.login-popup .sign-right .signin-top .sign-rates .hr-stars i:nth-child(4) {
    animation-delay: 0.6s;
}

.login-popup .sign-right .signin-top .sign-rates .hr-stars i:nth-child(5) {
    animation-delay: 0.8s;
}

@keyframes stars-animation {
    0% {
        scale: 0;
    }

    10% {
        scale: 1.1;
    }

    15% {
        scale: 1;
    }
}

.login-popup .sign-right .signin-top .sign-rates img {
    width: 90px
}

.login-popup .sign-right .signin-top h1 {
    font-size: 32px;
	color: #fff
}

.login-popup .sign-right .signin-top h1 span {
    color: #07c879;
    font-weight: 700;
}

.login-popup .sign-right .wrapper-form {
    width: 500px
}

.login-popup .sign-right .wrapper-form .signin-form {
    margin-top: 25px
}
.login-popup .sign-right .wrapper-form .signin-form .form-flex {
    display: flex;
    gap: 15px;
}
.login-popup .sign-right .wrapper-form .signin-form .form-flex .form-group {
    width: 100%;
	margin-bottom: 1rem
}
.login-popup .sign-right .wrapper-form .signin-form .remember-wrap {
    display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 30px 0
} 
.login-popup .sign-right .wrapper-form .signin-form .remember-wrap input[type="checkbox"] {
    display: none;
}
.login-popup .sign-right .wrapper-form .signin-form .remember-wrap input[type="checkbox"]+label {
    display: block;
    position: relative;
    padding-left: 30px;
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}
.login-popup .sign-right .wrapper-form .signin-form .remember-wrap input[type="checkbox"]+label:before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    background: #fff;
    border: 2px solid #f0efee;
    border-radius: 5px;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-transition: all .12s, border-color .08s;
    transition: all .12s, border-color .08s;
}
.login-popup .sign-right .wrapper-form .signin-form .remember-wrap input[type="checkbox"]:checked+label:before {
	width: 10px;
	top: -5px;
	left: 10px;
	border-radius: 0;
	opacity: 1;
	background: transparent;
    border-color: #0bdb51;
	border-top-color: transparent;
	border-left-color: transparent;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.login-popup .sign-right .wrapper-form .signin-form .remember-wrap .forgot_link {
    color: #0bdb51!important;
	font-weight: 600;
    font-size: 14px;
    line-height: 16px;
} 
.login-popup .sign-right .wrapper-form .signin-form .remember-wrap label {
	margin-bottom: 0
}
.login-popup .sign-right .wrapper-form .signin-form .form-group {
	position: relative
}
.login-popup .sign-right .wrapper-form .signin-form .form-group .form-control,
.login-popup .sign-right .wrapper-form .signin-form .form-group .form-control:hover {
	background: #f9f9f9;
	border-radius: 35px;
	border: 1px solid #f0efee;
  	color: #000
}

.login-popup .sign-right .wrapper-form .signin-form .form-group .form-control:focus {
	background: #f9f9f9;
	border: 1px solid #2d9464!important;
	box-shadow: none
}

.login-popup .sign-right .wrapper-form .signin-form .form-group .show-pass {
	position: absolute;
	right: 15px;
	top: 50px;
	color: #c0bdcc;
	cursor: pointer
}
.login-popup .gny-tab {
    display: flex;
    width: 100%; 
	background: rgb(39,104,74);
	background: linear-gradient(163deg, rgba(7, 198, 125, 1) 0%, rgba(11, 219, 81, 1) 100%);
	box-shadow: 0 5px 30px rgba(25, 154, 95, .2);
    border-radius: 35px;
}
.login-popup .tab-item {
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    padding: 15px 70px;
    border-radius: 35px;
    color: #fff;
    width: 50%;
    white-space: nowrap;
}
.login-popup .tab-item.active {
    background: #f9f9f9;
    color: #000
}
.login-popup .tab-content-item {
    display: none
}
.login-popup .tab-content-item.active {
    display: block
}
.login-popup .login-buttons {
    position: relative;
    display: flex;
	align-items: center;
	gap: 10px
}
.login-popup .login-buttons .form-group {
    margin-bottom: 0;
	width: 100%
}
.login-popup .login-buttons .btn-primary,
.login-popup .login-buttons input {
	background: rgb(7, 198, 125);
    background: linear-gradient(163deg, rgba(7, 198, 125, 1) 0%, rgba(11, 219, 81, 1) 100%);
    box-shadow: 0 5px 30px rgba(25, 154, 95, .2);
    width: 100%;
    border-radius: 35px;
	letter-spacing: -.015em;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.6;
	height: 48px;
	border: none;
    color: #fff
}
.login-popup .login-buttons .btn-primary:hover,
.login-popup .login-buttons .btn-primary:focus,
.login-popup .login-buttons input:focus,
.login-popup .login-buttons input:hover {
	background: rgb(7, 198, 125,);
    background: linear-gradient(90deg, rgba(7, 198, 125, 1) 0%, rgba(11, 219, 81, 1) 100%);!important
}
.login-popup .login-w-google {
    width: 100%;
    pointer-events: none;
}
.login-popup .login-w-google .content-google {
    display: flex;
    justify-content: center;
    width: 100%;
    background-color: #f8f9f8;
    background-image: none;
    border: 1px solid #f2f1f0;
    color: #000;
    cursor: pointer;
    font-family: "Google Sans", arial, sans-serif;
    font-size: 14px;
    letter-spacing: 0.25px;
    overflow: hidden;
    padding: 10px 25px;
    position: relative;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
    height: 48px;
    align-items: center;
    border-radius: 35px;
    gap: 20px;
    box-shadow: 0 5px 30px rgba(54, 62, 147, .2);
}
.login-popup .login-w-google .content-google {
    color: #0bdb51
}
.login-popup .login-w-google .content-google .content-text-tn {
    color: #000
}
.login-popup .sign-again {
    display: flex;
    justify-content: center;
    gap: 5px;
    background: #f9f9f940;
    border-radius: 35px;
    padding: 10px 5px;
    margin-top: 15px;
    border: 1px dashed #e7e7e7;
    color: #fff;
}
.login-popup .sign-again a {
    color: #0bdb51!important;
}
@media screen and (max-width: 1440px) {
    .page-head {
        padding-bottom: 0;
    }
	.lp-inner,
	.sign-inner {
		overflow: auto
	}
	.lp-inner .sign-wrapper {
		flex-direction: column;
	}
	.login-popup .sign-left, 
	.login-popup .sign-right {
		width: 100%
	}
	.login-popup .sign-right {
        display: block;
        max-width: 380px;
        margin: auto;
	}
	.login-popup .sign-right .wrapper-form {
		width: auto
	}
	.login-popup .sign-right .signin-top h1 {
		font-size: 28px;
		max-width: 100%;
		text-align: center
	}
	.login-popup .sign-right .signin-top .sign-rates {
		font-size: 12px;
		justify-content: center;
	}
	.login-popup .sign-right .signin-top .sign-rates img {
		width: 70px;
	}
	.login-popup .sign-right .wrapper-form .signin-form {
		margin-top: 15px;
	}
	.login-popup .sign-left {
		padding: 100px 0;
		background-position: center -50px;
		border-radius: 0 0 25px 25px
	}
	.login-popup .sign-left:after {
		content: "";
		width: 100%;
		height: 100%;
		background-color: rgb(53, 197, 129, .5);
		top: 0;
		left: 0;
		position: absolute;
		display: inline-block;
		border-radius: 0 0 25px 25px
	}
	.login-popup .sign-left .sign-copyright {
		display: none
	}	
	.login-popup .login-buttons {
		flex-direction: column;
	}
	.sign-inner .login-popup-close {
		position: absolute;
        right: 15px;
        top: 25px
	}
	.login-popup .sign-right .wrapper-form .signin-form .form-flex {
		flex-direction: column;
		gap: 0
	}	
	.login-popup .sign-left .sign-img {
		top: 15px;
		left: 15px;
		max-width: 150px;
		z-index: 1
	}
}

.swiper-ugc {
	overflow: hidden;
}

.ugc-item {
	position: relative;
	overflow: hidden;
	cursor: pointer
}

.ugc-item .ugc-img,
.ugc-item .ugc-img img {
	border-radius: 25px
}

.ugc-item .ugc-img img {
	width: 100%;
	opacity: .8;
	transition: 250ms all
}

.ugc-item .ugc-img img:hover {
	opacity: 1;
	transition: 250ms all
}

.ugc-item .ri-play-circle-line {
	font-size: 100px;
	position: absolute;
	transition: -50%;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	color: #fff;
	transition: 250ms all
}

.ugc-item:hover .ri-play-circle-line {
	color: var(--color-5);
	transition: 250ms all
}

.ugc-item .ugc-text {
	position: absolute;
	inset-block-end: -2px;
	display: flex;
	flex-direction: column;
	grid-gap: 20px;
	gap: 20px;
	align-items: center;
	inline-size: 100%;
	padding: 15px 30px;
	border-radius: 0 0 14px 14px;
	border-block-start: 1px solid rgba(0, 0, 0, .3);
	-webkit-backdrop-filter: blur(7px);
	backdrop-filter: blur(7px);
	color: #fff;
	font-weight: 600;
	font-size: 24px;
}

.popup {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999
}

.popup.hidden {
	display: none;
}

.popup-content {
	position: relative;
	width: 100%;
	max-width: 400px;
	height: auto;
	text-align: center;
}

.popup .close {
	position: absolute;
	top: 30px;
	right: 10px;
	font-size: 24px;
	cursor: pointer;
	color: #fff;
	z-index: 100;
	background: var(--color-5);
	width: 32px;
	height: 32px;
	line-height: 30px;
	border-radius: 100%;
}

.video-containers {
	position: relative;
	width: 100%;
	padding-top: 177.78%;
}

.video-containers iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
}

.slider__controls {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: auto;
	text-align: center
}

.swiper-ugc .slider__controls {
	position: relative;
	z-index: 12;
}

.swiper-ugc .slider__controls .slider__pagination {
	text-align: center;
	margin-top: 25px;
}

.swiper-ugc .slider__controls .slider__pagination .swiper-pagination-bullet {
	width: 13px;
	height: 10px;
	display: inline-block;
	background: var(--color-6) !important;
	opacity: 0.2;
	margin: 0 5px;
	border-radius: 20px;
	transition: opacity 0.5s, background-color 0.5s, width 0.5s;
	transition-delay: 0.5s, 0.5s, 0s;
}

.swiper-ugc .slider__controls .swiper-pagination-clickable .swiper-pagination-bullet {
	cursor: pointer;
}

.swiper-ugc .slider__controls .slider__pagination .swiper-pagination-bullet-active {
	opacity: 1;
	background: #ffffff;
	width: 100px;
	transition-delay: 0s;
}

.blog-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px
}

.blog-wrapper .blog-item {
    background: #131313;
    border: 1px solid #313131;
  	border-radius: 15px;
  	cursor: pointer
}

.blog-wrapper .blog-title {    
  	min-height: 75px;
	margin-top: 10px
}

.blog-wrapper .blog-title h2 {
  	color: #fff;
	margin-bottom: 0;
	font-weight: 500;
	font-size: 18px;
	line-height: 24px;
	display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  	margin: 5px 15px 15px 15px
}

.blog-wrapper .blog-item:hover h2 {
	color: var(--color-6)
}

.blog-wrapper .blog-title small {
    background: rgb(21, 35, 27);
    background: linear-gradient(90deg, rgba(21, 35, 27, 1) 0%, rgba(22, 47, 32, 1) 100%);
    border-radius: 13px;
    border: 1px solid #476153;
    color: #fff;
  	margin: 15px;
	padding: 3px 10px;
    border-radius: 100px
}

.blog-wrapper .blog-img-wrapper img {
    width: 100%;
    display: block;
    object-fit: cover;
  	border-radius: 15px 15px 0 0 
}

.blog-wrapper .blog-footer {
	display: flex;
  	align-items: center;
  	justify-content: space-between;
  	margin: 25px 15px 10px 15px;
  	border-top: 1px solid #313131;
  	padding-top: 10px
}

.blog-wrapper .blog-footer .blog-author a {
	display: flex;
  	align-items: center;
  	gap: 7px
}

.blog-wrapper .blog-footer .blog-author h4 {
	font-size: 16px;
  	color: #fff;
  	margin-bottom: 0
}

.blog-wrapper .blog-footer .blog-author small {
  	color: #77a08a
}

@media (max-width: 991.98px) {
    .blog-wrapper {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .pagination .page-item .page-link {
        height: 40px;
        min-width: 40px;
        font-weight: 400;
        font-size: 14px;
    }
}

.blog-box .bb-wrapper {
    overflow: visible;
    position: relative
}

.blog-box .bb-img img {
	object-fit: cover;
    border-radius: 15px;
    width: 100%;
}

.blog-box .bb-title {
    text-align: center;
    margin-bottom: 35px
}

.blog-box .bb-title h1 {
    font-size: 36px;
  	font-weight: 600;
  	line-height: 52px;
    color: #fff
}

.blog-box .bb-wrapper {
	display: flex;
  	justify-content: center;
  	gap: 30px;
  	margin-top: 25px
}

.blog-box .bb-wrapper .bb-social {
	max-width: 65px
}

.blog-box .bb-wrapper .bb-social ul {
    background: rgb(21, 35, 27);
    background: linear-gradient(90deg, rgba(21, 35, 27, 1) 0%, rgba(22, 47, 32, 1) 100%);
    border: 1px solid #476153;
    border-radius: 15px;
    padding: 12px 12px 5px;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 21px;
    margin-top: 0;
    list-style: none;
}

.blog-box .bb-wrapper .bb-social ul li {
    font-size: 14px;
    font-weight: 500;
    line-height: 16.03px;
    text-align: center;
}

.blog-box .bb-wrapper .bb-social ul li a {
    max-width: 24px;
    height: 24px;
    display: inline-block;
}

.blog-box .bb-wrapper .bb-social ul li svg {
    width: 24px;
    height: 24px;
}

.blog-box .bb-wrapper .bb-content {
    width: 900px;
    color: #fff;
  	font-size: 18px
}

.blog-box .bb-wrapper .bb-content h2 {
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    margin: 35px 0 35px;
}

.blog-box .bb-wrapper .bb-content h3 {
    font-size: 22px;
    font-weight: 700;
    line-height: 30px;
    margin: 25px 0 12px;
}

.blog-box .bb-wrapper .bb-key {
    background: rgb(21, 35, 27);
    background: linear-gradient(90deg, rgba(21, 35, 27, 1) 0%, rgba(22, 47, 32, 1) 100%);
    border: 1px solid #476153;
    border-radius: 15px;
    position: sticky;
    top: 100px;
    z-index: 100;
    transition: .14s ease all;  
    width: 400px;
  	height: max-content
}

.blog-box .bb-wrapper .bb-key h3 {
  	color: var(--color-5);
	font-size: 20px;
    padding: 15px 15px 0 15px;
}

.blog-box .bb-wrapper .bb-key ul {
    padding: 0;
    margin-top: 10px;
    max-width: 400px;
    list-style: none;
}

.blog-box .bb-wrapper .bb-key ul li {
    padding-left: 15px;
}

.blog-box .bb-wrapper .bb-key>ul>li {
    counter-increment: item;
    position: relative;
}

.blog-box .bb-wrapper .bb-key ul li {
    margin-bottom: 5px
}

.blog-box .bb-wrapper .bb-key ul li a {
    color: #dedede;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    text-decoration: none !important;
    position: relative;
}

.blog-box .bb-wrapper .bb-key ul li.active>a {
    color: var(--color-5)!important
}

.blog-box .bb-wrapper .bb-key ul li.active>a::after {
    display: block;
}

.blog-box .bb-wrapper .bb-key ul li ul a::after {
    left: -20px;
}

.blog-box .bb-wrapper .bb-key ul li a::after {
    content: '';
    position: absolute;
    left: -10px;
    top: 0;
    width: 2px;
    height: 100%;
    display: none;
    background-color: var(--color-5);
}

.bb-author {
	display: flex;
  	align-items: center;
  	justify-content: center;
  	flex-direction: column;
  	gap: 10px;
    background: #131313;
    border: 1px solid #313131;
    border-radius: 15px;
    padding: 10px;
    text-align: center;
  	margin-top: 100px
}

.bb-author img {
	max-width: 125px;
  	margin-top: -50px
}

.bb-author h4 {
  	font-size: 20px;
  	font-weight: 600;
  	margin-bottom: 0
}

.bb-author small {
  	font-size: 14px;
  	font-weight: 400;
  	color: #77a08a
}
.ac-left,
.ac-right {
    display: flex;
    width: 100%;
}

.ac-left .author-img img {
  	border-radius: 15px 0 0 15px;
}

.ac-left .author-img img {
    max-width: 300px;
}

.ac-right {
    display: flex;
  	align-items: flex-start;
    flex-direction: column;
  	background: #131313;
    border: 1px solid #313131;
    height: auto;
    margin-top: 48px;
    padding: 35px 45px;
    width: 100%;
  	border-radius: 0 15px 15px 15px
}

.ac-right p {
    color: #fff;
  	margin-bottom: 0;
  	margin-top: 25px
}

.ac-right a {
  	margin-top: 10px
}

.ac-right small {
    font-size: 24px;
    font-weight: 600;
  	color: #fff
}

.ac-right span {
    font-size: 14px;
    font-weight: 400;
    color: #77a08a
}

#author .blog-buttons {
	display: flex;
  	justify-content: center;
  	align-items: center;
  	margin-top: 35px
}

#author .blog-footer {
	display: none
}

#author .ms-title h2 {
    font-style: normal;
    font-size: 28px;
    font-weight: 700;
    line-height: 128.5%;
    letter-spacing: -1px;
    margin-bottom: 15px;    
    font-weight: 700;
    color: #a7ffcd;
}

#author .ms-title h2 span {
    position: relative;
    display: inline-block;
    color: #fff
}

#author .blog-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 35px;
}

.section-badge .label {
	display: flex;
    justify-content: center;
    flex-direction: row;
    text-align: center;
    gap: 15px;
	background: #ddffee;
    color: #1f583d;
    width: max-content;
    font-size: 16px;
  	font-weight: 600;
    border-radius: 15px;
    padding: 5px 15px;
    margin: auto auto 10px auto;
}


.support-icons {
  	margin-bottom: 10px;
	gap: 7px
}

.support-icons a {
    width: 42px;
    height: 42px;
    background: var(--color-5);
    text-align: center;
    line-height: 42px;
    border-radius: 100%;
  	font-size: 24px;
  	color: #fff!important
}	

.support-icons a:hover {
    opacity: .8
}	

.support-icons a i {
  	color: #fff!important
}

@media (max-width:991.98px) {
  .blog-box .bb-wrapper .bb-social {
        width: 100%;
        max-width: 100%;
  }  
  .blog-box .bb-wrapper .bb-social ul {
        flex-direction: row;
        justify-content: center;
        align-items: center;
    	max-width: max-content;
        margin: 0px auto;
   }
  .blog-box .bb-wrapper {
      flex-direction: column;
  }
  .blog-box .bb-wrapper .bb-content {
      width: auto
  }  
  .blog-box .bb-title {
      margin-bottom: 15px;
  }  
  .blog-box .bb-title h1 {
      font-size: 24px;
      line-height: 32px
  }  
  .blog-box .bb-wrapper .bb-key {
      position: relative;
      width: auto;
      order: 1;
      top: 0;
      z-index: 1;
  }  
  .blog-box .bb-wrapper .bb-content {
  	  order: 2
  }
  .blog-box .bb-wrapper .bb-content h2 {
      font-size: 18px;
      margin: 15px 0 15px;
  }
  .blog-box .bb-wrapper .bb-content h3 {
      font-size: 16px;
      margin: 10px 0 10px;
  }  
  .blog-wrapper {
      grid-template-columns: 1fr;
      gap: 15px
  }  
  .ac-left {
      flex-direction: column;
  }  
  .ac-left .author-img img {
      max-width: 100%;
      border-radius: 0 
  }  
  .ac-right {
      margin-top: 0;
      border-radius: 0 0 15px 15px;
      text-align: center;
      align-items: center;
      padding: 15px;
      height: auto
  }  
}