@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Krona+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Krona+One&display=swap');

html {
	--main-bg: #fff;
	--second-bg: #f7f8f9;
	--main-border: #e5e7eb;
	--text-white: #FFFFFF;
	--text-color: #3E4954;
	--main-color: #335cff;
	--main-color-hover: #204bf7;
	--main-color-trans: rgb(51, 92, 255, .15);
	--border-radius: 15px
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
	letter-spacing: -.015em;
	font-weight: 500;
	font-size: 14px;
	line-height: 1.6;
	min-width: 375px;
	color: var(--text-color);
	background-color: var(--main-bg);
	overflow-x: hidden
}

a {
	text-decoration: none !important;
	color: var(--main-color)
}

a,
[type="checkbox"] {
	cursor: pointer;
}

a:hover {
	color: var(--main-color-hover)
}

li {
	list-style-type: none
}

button,
input {
	background-color: transparent;
	line-height: 0;
	border: 0;
	padding: 0;
}

button:focus,
input:focus,
select:focus {
	outline: 0 !important;
	border: none !important
}

input:focus,
select:focus,
input.form-control:focus,
select.form-control:focus {
	outline: none !important;
	outline-width: 0 !important;
	box-shadow: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
}

b,
strong {
	letter-spacing: -.01em;
	font-weight: 600;
	line-height: 1.6;
	transition: all 0.15s ease;
}

.hidden {
	display: none !important
}

.alert {
	border-radius: 10px;
}

::-webkit-scrollbar {
	width: 7px;
	height: 7px;
}

::-webkit-scrollbar-thumb {
	background: #7d52f4;
	border-radius: 5px
}

::-webkit-scrollbar-review-img {
	background: var(--main-border);
	border-radius: 5px;
}

::-webkit-scrollbar-track {
	background: var(--second-bg);
}

.primary-color {
	color: var(--main-color) !important;
	font-weight: 600
}

body.stop-body {
	overflow: hidden;
}

#header {
	background: #f5f7fa;
	border-bottom: 1px solid #e1e4ea;
	box-shadow: 1px 1px 22px 10px rgb(238 232 255);
	position: relative;
	z-index: 999;
}

.auth #header {
	box-shadow: none
}

#header-top {
	background: #e1e4ea;
	padding: 7px 0;
	position: relative;
	z-index: 1000;
}

#header-top .ht-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px
}

#header-top .ht-wrapper span {
	display: flex;
	align-items: center;
	gap: 13px
}

#header-top .head-search .icon {
	background: rgb(233, 14, 234);
	background: linear-gradient(270deg, rgba(233, 14, 234, 1) 0%, rgba(133, 10, 254, 1) 50%, rgba(86, 171, 250, 1) 100%);
	width: 28px;
	height: 28px;
	border-radius: 7px;
	text-align: center;
	color: #fff;
	line-height: 28px;
}

#header-top .head-search,
#header-top .head-fav {
	display: flex;
	align-items: center;
	gap: 5px
}

#header-top .head-search {
	background: #ffffff75;
	padding: 3px 7px 3px 3px;
	border-radius: 8px
}

#header-top .head-fav {
	background: #ffffff75;
	width: 32px;
	height: 32px;
	border-radius: 8px;
	text-align: center;
	justify-content: center;
}

#header-top .bask-head {
	background: #ffffff75;
	width: 32px;
	height: 32px;
	min-width: auto;
	border-radius: 8px;
	text-align: center;
	justify-content: center;
}

#header-top .head-profile {
	background: #7d52f4;
	width: 32px;
	height: 32px;
	min-width: auto;
	line-height: 32px;
	border-radius: 8px;
	text-align: center;
	justify-content: center;
}

#header-top .head-profile i {
	font-size: 18px;
	color: #fff;
}

#header-top .balances {
	color: #fff;
	background: #2acf9b;
	width: auto;
	height: 32px;
	line-height: 32px;
	padding: 0 10px;
	min-width: auto;
	border-radius: 8px;
	text-align: center;
	justify-content: center;
}

#header-top .head-search i {
	font-size: 16px;
}

#header-top .head-fav i {
	font-size: 20px;
}

#header-top .head-fav .icon {
	color: #e92070;
}

.head-out.fixed {
	position: fixed !important;
	top: 0px;
	background-color: transparent;
	width: 100%;
	z-index: 1030;
	border-bottom: 1px solid #e5e8ec;
	background: rgb(242 242 242 / 80%);
}

.hm-wrapper {
	display: block;
	position: fixed;
	top: -1px;
	left: -1px;
	width: calc(100% + 2px);
	border-radius: 0;
	padding: 77px 0 10px 0;
	height: auto;
	transition: 0.14s ease;
	transform: translateY(-101%);
	opacity: 0.4;
	background: var(--second-bg);
	z-index: 0;
	border-radius: 0 0 15px 15px;
}

.hm-wrapper.active {
	transform: translateY(0);
	opacity: 1;
	border-bottom: 1px solid #b0b0b0;
}

.sm-header {
	display: block;
	padding: 14px 0;
	transition: 0.14s ease;
}

.menu-btn {
	color: var(--main-color);
	outline: none;
	border: none;
	font-size: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.b-menu-close {
	height: 48px;
	width: 48px;
	border-radius: var(--border-radius);
	background-color: var(--main-bg);
	color: var(--text-color);
	outline: none;
	border: none;
	font-size: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	right: 20px;
	top: 20px;
	z-index: 2000;
}

.header-menu {
	display: flex;
	flex-direction: column;
	list-style: none;
	margin: 0;
	gap: 10px;
	padding: 10px 0 20px 0;
}

.header-menu .hm-item {
	position: relative;
	display: flex;
	justify-content: flex-start;
}

.header-menu .hm-item .hm-link {
	font-weight: 400;
	font-size: 16px;
	line-height: 125%;
	color: var(--text-color) !important;
	padding: 7px 0;
	transition: 0.14s ease;
	text-decoration: none;
	display: inline-block;
	text-align: left;
	text-transform: uppercase
}

.header-menu .hm-item .hm-link:hover {
	opacity: 0.7;
}

.header-menu .hm-item .hm-link.active {
	opacity: 1;
}

.header-menu .hm-item .hm-link.active::before {
	opacity: 1;
}

.header-menu .hm-item .hm-link i {
	color: #7d52f4;
}

@media (max-width: 991.98px) {
	.header-menu {
		gap: 5px
	}

	.header-menu .hm-item {
		background: var(--main-bg);
		border-radius: 10px;
		padding: 5px 25px;
		border: 1px solid #e5e8ec
	}

	.header-menu .hm-item .hm-link {
		font-size: 16px
	}

	.hm-wrapper {
		z-index: 100
	}

	.sm-header.active {
		position: fixed;
		top: 0;
		z-index: 9999;
		width: 100%;
	}

	.sm-header.active .menu-btn .ri-close-line {
		display: block !important
	}

	.sm-header.active .menu-btn .ri-menu-line,
	.sm-header .menu-btn .ri-close-line {
		display: none !important
	}

	.menuBtn {
		margin-top: -10px
	}

	.hm-wrapper .row.row-btn {
		display: unset !important
	}

	.m-buttons {
		display: flex;
		gap: 15px
	}

	.m-buttons .btn {
		width: 100%
	}
}

@media only screen and (min-width: 992px) {
	.head-out.fixed {
		border: 1px solid #e5e8ec;
		border-top: none;
		border-left: none;
		border-right: none;
		background: rgb(242 242 242 / 80%);
		-webkit-backdrop-filter: blur(15px);
		backdrop-filter: blur(15px)
	}

	.head-out.fixed .header-menu .hm-item .hm-link {
		padding: 20px 10px;
	}

	.hm-wrapper {
		display: block;
		bottom: inherit;
		background-color: transparent;
		position: relative;
		border-radius: 0;
		padding: 0;
		width: 100%;
		transform: none;
		overflow: inherit;
		opacity: 1 !important;
	}

	.sm-header {
		display: none;
	}

	.b-menu-close {
		display: none;
	}

	.header-menu {
		display: inline-flex;
		align-items: center;
		flex-direction: row;
		padding: 10px 0 10px 0;
	}

	.header-menu .hm-item .hm-link {
		padding: 34px 10px;
		display: block;
		font-size: 16px;
		font-weight: 600;
	}
}

.btn {
	position: relative;
	padding: 11px 25px;
	align-items: center;
	gap: 10px;
	border-radius: 12px;
	font-size: 14px;
	font-weight: 500;
	line-height: 24px;
	letter-spacing: -0.14px;
	white-space: nowrap;
	box-shadow: none !important;
	outline: 0 !important;
}

.btn:hover,
btn:focus {
	color: var(--text-color) !important;
	box-shadow: none !important;
	outline: 0 !important
}

.btn-primary {
	background: #335CFF;
	border: 1px solid #335CFF
}

.btn-primary:hover,
.btn-primary:focus {
	background: #204bf7;
	border: 1px solid #204bf7
}

.btn-secondary {
	background: rgb(233, 14, 234);
	background: linear-gradient(270deg, rgba(233, 14, 234, 1) 0%, rgba(133, 10, 254, 1) 50%, rgba(86, 171, 250, 1) 100%);
	color: #fff !important;
	border: none
}

.btn-secondary:hover,
.btn-secondary:focus {
	background: rgb(233, 14, 234);
	background: linear-gradient(270deg, rgba(233, 14, 234, 1) 0%, rgba(133, 10, 254, 1) 50%, rgba(86, 171, 250, 1) 100%);
	color: #fff !important;
	border: none !important;
	opacity: .8
}

a.btn-primary:hover,
a.btn-primary:focus,
a.btn-secondary:hover,
a.btn-secondary:focus {
	color: #fff !important
}

.btn-border {
	background: #fff;
	border: 1px solid #e1e4ea
}

.btn-border:hover,
.btn-border:focus {
	background: #e1e4ea;
	border-color: #212529
}

.phone-arrow {
	display: flex;
	align-items: center;
	gap: 20px;
	position: absolute;
	right: 220px;
	top: 50px
}

.phone-arrow .arrow {
	color: transparent;
	position: relative;
	left: 0;
	opacity: 1;
	z-index: 1;
	filter: hue-rotate(50deg) saturate(50) contrast(0.5) brightness(1);
	transform: rotate(44deg);
}

.footer-warning {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background: #08051e;
	padding: 10px 0;
	color: #9084e6
}

.footer-warning p {
	margin: 0
}

.phone-arrow span {
	font-size: 18px;
	font-style: oblique;
	color: #7d52f4
}

.duyuru-bg {
	opacity: 0;
	visibility: hidden;
	transition: .3s;
	position: fixed;
	padding: 20px;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: 100000;
	background: #0000008a;
}

.duyuru-bg.show {
	opacity: 1;
	visibility: visible;
	overflow-y: auto;
}

.duyuru-box {
	overflow: hidden;
	color: #7d52f4;
	max-width: 600px;
	padding: 30px 40px;
	box-shadow: 0px 10px 30px #0000007a;
	transition: .3s;
	margin: 0 auto;
	top: 30px;
	z-index: 100002;
	margin-bottom: 40px;
	position: relative;
	border-radius: 1em;
	background: #f4f4f4;
}

.duyuru-kapat {
	cursor: pointer;
	text-align: right;
	font-size: 20px;
	position: absolute;
	right: 20px;
	top: 12px;
}

.duyuru-right {
	padding-left: 25px;
	padding-right: 10px;
	width: auto;
	display: block;
}

.duyuru-right img {
	max-width: 300px;
}

.kampanya-sure {
	display: none;
	text-transform: uppercase;
	letter-spacing: 4px;
	font-size: 14px;
	padding-left: 20px;
	padding-top: 10px;
	background: linear-gradient(to right, #7d52f410 0%, transparent 80%);
	border-radius: 1em;
	font-weight: 300;
	text-align: left;
	margin-bottom: 25px;
	width: fit-content;
}

.kampanya-sure span {
	font-size: 32px;
	letter-spacing: 0;
	display: block;
	margin-top: -7px;
	font-weight: bold;
}

.duy-content p {
	margin-bottom: 30px;
	font-size: 20px;
}

.duyuru-alan {
	display: table-cell;
	vertical-align: middle;
}

.duyuru-bg.show .duyuru-time {
	width: 100%;
}

.duyuru-box.model-paket {
	max-width: 900px;
	width: fit-content;
	min-width: 40%;
}

.duyuru-right {
	display: none;
}

.duyuru-right .packz {
	background: #7d52f4 !important;
	color: #f4f4f4 !important;
	border-radius: 1em !important;
	padding: 15px 20px;
	text-align: center;
	transition: .2s;
	overflow: hidden;
	position: relative;
}

.duyuru-right .packz-icon {
	font-size: 65px;
	position: absolute;
	right: -5px;
	top: -5px;
	transition: .4s;
	transform: rotate(-25deg);
	opacity: .2;
}

.duyuru-right .packz-baslik {
	font-size: 22px;
	margin-top: 3px;
}

.duyuru-right .packz-baslik span {
	font-size: 19px;
	top: -5px;
	position: relative;
}

.duyuru-right .packzozellik {
	cursor: help;
	margin: 0 auto;
	width: calc(100% - 25px);
	margin-top: 20px;
	margin-bottom: 25px;
}

.duyuru-right .packzozellik ul {
	margin: 0;
	padding-left: 0;
}

.duyuru-right .packzozellik ul li {
	list-style: none;
	text-align: center;
	font-size: 15px;
	padding: 0;
	margin: 0;
}

.duyuru-right .paket .xrc {
	background: #7d52f4 !important;
	color: #f4f4f4 !important;
}

.duyuru-right .packz .packzsatinal {
	background: #f4f4f4 !important;
	color: #7d52f4 !important;
	border-radius: 1em !important;
	transition: .4s;
	overflow: visible;
	font-weight: bold;
	padding: 12px;
	width: calc(100% - 24px);
	margin-bottom: 15px;
	box-shadow: 0px 0px 14px #00000061;
}

.duyuru-right .packz .packzfiyat {
	color: #f4f4f4 !important;
	overflow: visible;
	font-weight: bold;
	margin: 0 auto;
	font-size: 18px;
	padding: 4px;
	width: calc(100% - 54px);
}

.packzfiyat .eski-fiyat {
	display: block;
	opacity: .7;
	text-decoration: line-through;
	font-weight: 500;
}

.duyuru-box.model-paket .duyuru-right {
	display: block;
}

.duyuru-box.kampanya .kampanya-sure {
	display: inline-block;
}

.duyuru-box.duyuru-buton .duy-footer {
	display: block;
}

.duyuru-time {
	position: absolute;
	bottom: 0px;
	left: 0%;
	margin-top: 10px;
	animation: 25s linear timez;
	animation-delay: 1s;
	height: 3px;
	background: #7d52f4;
}

@keyframes timez {
	from {
		width: 0;
	}

	to {
		width: 100%;
		left: 0;
	}
}

.duyuruclose {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 100001;
}

.duy-header {
	position: relative;
	padding-bottom: 15px;
	margin-bottom: 20px;
	border-bottom: 1px solid #7d52f420;
	font-weight: bold;
	font-size: 23px;
	max-width: 95%;
	font-family: sans-serif;
}

.duy-header span {
	cursor: pointer;
	font-size: 20px;
	position: absolute;
	transition: .3s;
	right: 0;
	top: -2px;
}

.duy-btn {
	background: #7d52f4;
	border: none;
	font-weight: bold;
	color: #f4f4f4 !important;
	border-radius: 1em;
	padding: 7px 25px;
	transition: .4s;
	box-shadow: 0px 2px 15px #00000036;
}

.duy-btn:hover {
	transform: scale(1.10);
}

.duy-footer {
	margin-bottom: 25px;
	display: none;
}

@media (min-width: 800px) {
	.duyuru-box {
		top: 100px;
	}

	.popup-grid {
		display: grid;
		grid-template-columns: 440px auto;
		gap: 20px;
	}

	.duyuru-alan {
		max-width: 440px;
	}
}

@media (min-width: 1000px) {
	.duyuru-box {
		top: 100px;
	}

	.popup-grid {
		display: grid;
		grid-template-columns: 500px auto;
		gap: 20px;
	}

	.duyuru-alan {
		max-width: 500px;
	}
}

@media (max-width: 768px) {
	.duyuru-alan {
		display: block;
	}

	.duyuru-box.model-paket .duyuru-right .paket {
		margin: 0 !important;
	}

	.kampanya-sure {
		letter-spacing: 1px;
		font-size: 13px;
		padding: 10px 12px;
		text-align: center;
		background: #ffffff1f;
	}

	.kampanya-sure span {
		font-size: 17px;
		margin-top: 0px;
	}
}

.duyuru-img {
	width: 100%;
	border-radius: 1em;
	text-align: center;
}

.duy-header i {
	position: absolute;
	left: -33px;
	font-size: 37px;
	transform: rotate(-24deg);
	top: -15px;
	opacity: .5;
}

.notification--header {
	padding: 10px 20px;
	background: url(https://storage.perfectcdn.com/2eeaa6/563fhpbhfk2zwjns.webp);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	color: #fff;
	font-size: 18px;
	border-radius: 0;
	position: relative;
	z-index: 1000;
}

.noti-gap-flex {
	display: flex;
	align-items: center;
	gap: 7px;
	height: 40px;
	text-align: center;
}

.notification--header .text {
	flex: 2;
	font-size: 18px;
}

.notification--header .text .code {
	background-color: rgba(255, 255, 255, 0.2);
	padding: 5px 10px;
	border-radius: 5px;
	font-weight: bold;
	margin-left: 20px;
	display: inline-block;
}

.notification--header .text .code i {
	margin-left: 4px;
	transform: rotateZ(14deg);
	display: inline-table;
	color: #b398ff;
	font-weight: 800;
	position: relative;
	top: 2px;
	cursor: pointer;
}

.notification--header .close-head {
	cursor: pointer;
	padding: 5px;
	width: 32px;
	height: 32px;
	line-height: 32px;
	background-color: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.notification--header .close-head i {
	font-size: 16px;
	color: #fff;
}

#home-header {
	position: relative;
	padding-top: 65px
}

#home-header:after {
    content: '';
    background: url(https://storage.perfectcdn.com/2eeaa6/wf08zm1io12asush.png);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    height: 259px;
    width: 100%;
    position: absolute;
    z-index: -1;
    bottom: 0
}

#home-header .home-shapes .shape-1 {
    position: absolute;
    left: -10px;
    bottom: -75px;
}

#home-header .home-shapes .shape-2 {
    position: absolute;
    right: 0;
    bottom: 0;
}

@media (max-width: 991.98px) {
	#header-top {
		z-index: 99
	}

	#home-header .home-shapes .shape-1,
	#home-header .home-shapes .shape-2 {
		display: none
	}
}

#home-header .home-left {
	display: flex;
	flex-direction: column;
	gap: 15px
}

#home-header .home-left .spotlight {
	background: linear-gradient(#fff 0 0) padding-box, linear-gradient(to left, #E90EEA, #850AFE, #56ABFA) border-box;
	color: #313149;
	padding: 10px;
	border: 1px solid transparent;
	border-radius: 12px;
	padding: 10px 15px;
	width: max-content
}

#home-header .home-left .spotlight span {
	background: linear-gradient(to left, #E90EEA, #850AFE, #56ABFA);
	background: -webkit-linear-gradient(to left, #E90EEA, #850AFE, #56ABFA);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

#home-header .home-left .spotlight-2 {
    background: rgb(51,24,165);
    background: linear-gradient(180deg, rgba(51,24,165,1) 0%, rgba(146,94,212,1) 100%);
	color: #fff;
	padding: 10px;
	border-radius: 35px;
	padding: 5px 15px;
	width: max-content
}

#home-header .home-left .title {
	font-size: 52px;
	line-height: 62px;
	font-weight: 400;
	color: #000;
	max-width: 500px
}

#home-header .home-left .title span {
    background: linear-gradient(to left, #3318a5, #925ed4);
    background: -webkit-linear-gradient(to left, #3318a5, #925ed4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

#home-header .home-left .title img {
	margin-top: -15px;
	animation: tada 3s infinite ease-in-out;
}

#home-header .home-left .text {
	font-size: 15px;
	color: #525866;
	max-width: 650px
}

#home-header .home-right {
	position: relative;
}

#home-header .home-right .openPopupB {
	position: absolute;
	top: 120px;
	left: 160px;
	width: 260px;
	height: 180px;
	cursor:pointer
}


#home-header .home-left .alt-text p {
	font-size: 15px;
	font-weight: 600;
	color: #000;
	margin-bottom: 0;
}

#home-header .home-left .alt-text p i {
	font-size: 15px;
	color: #91d37f;
	padding-right: 5px;
}

.head-images {
	display: flex;
	justify-content: center;
	gap: 0;
	margin: auto;
}

#home-header .home-right .head-images .himg-1,
#home-header .home-right .head-images .himg-2 {
	position: relative;
	overflow: hidden;
}

#home-header .home-right .head-images .himg-1-text {
	display: flex;
	flex-direction: column;
	position: absolute;
	bottom: 25px;
	left: 17px;
	text-align: center
}

#home-header .home-right .head-images .himg-1-text span {
	font-size: 56px;
	line-height: 72px;
	color: #000
}

#home-header .home-right .head-images .himg-1-text small {
	font-size: 18px;
	line-height: 24px;
	color: #000
}

#home-header .home-right .head-images .himg-2-text {
	display: flex;
	flex-direction: column;
	position: absolute;
	top: 25px;
	left: 7px;
	text-align: center
}

#home-header .home-right .head-images .himg-2-text span {
	font-size: 56px;
	line-height: 72px;
	color: #000
}

#home-header .home-right .head-images .himg-2-text small {
	font-size: 18px;
	line-height: 24px;
	color: #000
}

#home-header .home-right img {
    margin-top: -160px;
	margin-left: 125px
}
#home-header .fastOrder {
	width: fit-content;
	background: #fff;
	padding: 25px 15px;
	display: flex;
	align-items: center;
	position: relative;
	z-index: 1;
	border-radius: 15px;
	border: 1px solid #e5e8ec;
	box-shadow: 0 5px 30px rgba(85, 85, 85, 0.1);
	margin-top: 50px;
}

#home-header .fastOrder .choose-your {
    position: absolute;
    right: -150px;
    bottom: -50px;
}

#home-header .fastOrder .btn-secondary,
#home-header .fastOrder .btn-secondary:hover,
#home-header .fastOrder .btn-secondary:focus {
	background: #00a7af
}

#home-header .fastOrder .fastitems {
	display: flex;
	align-items: center;
	padding-left: 7px;
}

#home-header .fastOrder .fastDrop {
	visibility: hidden;
	opacity: 0;
	transition: 0.2s;
	position: absolute;
	top: 60px;
	background: #fff;
	width: 250px;
	padding: 15px;
	padding-right: 10px;
	border-radius: 15px;
	box-shadow: 0 5px 30px rgba(85, 85, 85, 0.1);
	left: 0;
}

#home-header .fastOrder .fastselect:first-child .fastDrop {
	left: -25px;
}

#home-header .fastOrder .fastDrop.show {
	visibility: visible;
	opacity: 1;
	top: 80px;
}

#home-header .fastDrop::before {
	content: "";
	position: absolute;
	top: -7px;
	left: 55px;
	margin-left: -5px;
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	border-bottom: 8px solid #fff;
}

#home-header .fastOrder .fastDrop ul {
	padding: 0;
	padding-right: 5px;
	margin: 0;
	overflow: auto;
	max-height: 205px;
}

#home-header .fastOrder .fastDrop ul::-webkit-scrollbar-track {
	border-radius: 20px;
	background-color: #f5f5f5;
}

#home-header .fastOrder .fastDrop ul::-webkit-scrollbar {
	width: 5px;
	background-color: #f5f5f5;
}

#home-header .fastOrder .fastDrop ul::-webkit-scrollbar-thumb {
	border-radius: 20px;
	background-color: #c5c5c5;
}

#home-header .fastOrder .fastDrop ul li {
	list-style: none;
	font-weight: 500;
	font-size: 16px;
	background: #00000005;
	margin-bottom: 3px;
	border-radius: 6px;
	padding: 7px 12px;
	transition: 0.2s;
}

#home-header .fastOrder .fastDrop ul li:hover {
	background: #00000010;
}

#home-header .fastOrder .fastselect {
	color: #525866;
	padding: 0 25px;
	font-weight: 700;
	font-size: 18px;
	cursor: pointer;
	position: relative;
	user-select: none;
	text-align: left;
	min-width: 175px;
}

#home-header .fastselect .cont .item .fastHead {
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}

#home-header .fastOrder .fastselect:first-child {
	padding-left: 0;
	min-width: 125px;
}

#home-header .fastOrder .fastselect::after {
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	width: 1px;
	height: 100%;
	background: #00000010;
	cursor: context-menu;
}

#home-header .fastOrder .fastselect:nth-last-child(1) {
	margin-right: 0;
}

#home-header .fastOrder .fastselect:last-child::after {
	display: none
}

#home-header .fastOrder .fastselect .cont i {
	display: none;
}

#home-header .fastOrder .fastselect span {
	font-size: 15px;
	font-weight: 400;
	display: block;
	opacity: 0.6;
}

#home-header .head-users {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 15px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
}

#home-header .head-features {
	display: flex;
	align-items: center;
	gap: 15px;
	font-size: 15px;
	font-weight: 500;
	color: #fff;    
	white-space: nowrap;
	text-transform: uppercase;
	letter-spacing: -1px
}

#home-header .head-features i {
	font-weight: 600;
	color: #fff;
}

#marks .mark-sliders {
	position: relative;
	padding-top: 100px;
}

#marks .mark-sliders .swiper-wrapper {
	-webkit-transition-timing-function: linear !important;
	transition-timing-function: linear !important;
	position: relative;
	pointer-events: none;
}

#marks .mark-sliders .swiper-wrapper .swiper-slide {
	width: -webkit-max-content !important;
	width: -moz-max-content !important;
	width: max-content !important;
}

#marks .mark-sliders .slider {
	position: relative;
	background-color: #f5f7fa;
	padding: 15px 0;
	color: #000;
	width: 140%;
	left: -30%;
}

#marks .mark-sliders .slider:first-of-type {
	-webkit-transform: rotate(-11deg);
	transform: rotate(-11deg);
	z-index: -1;
}

#marks .mark-sliders .slider:last-of-type {
	-webkit-transform: rotate(-2deg);
	transform: rotate(-2deg);
}

#marks .mark-sliders .slider .swiper-slide span {
	position: relative
}

#marks .mark-sliders .slider .swiper-slide span::after {
	position: absolute;
	font-family: "remixicon";
	font-style: normal;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: "\f186";
	left: -100px;
	color: #e1e4ea
}

#marks .mark-sliders .slider .swiper-slide span {
	font-size: 52px;
	font-weight: 800;
	color: #000;
}

#phone-section {
	margin-top: 75px
}

#phone-section .phone-area {
	position: relative;
	margin: auto
}

#phone-section .phone-area .ph-img {
	display: flex;
	justify-content: center;
	margin: auto
}

#phone-section .phone-area .p-widget {
	position: absolute;
	left: 200px;
	bottom: 40px
}

#phone-section .phone-area .p-widget-1 {
	position: absolute;
	left: 315px;
	top: 40px
}

#phone-section .phone-area .p-widget-2 {
	position: absolute;
	right: 250px;
	bottom: 175px
}

#phone-section .ps-shapes .ps-shape-1 {
	position: absolute;
	top: 100px;
	left: 50px
}

#phone-section .ps-shapes .ps-shape-2 {
	position: absolute;
	bottom: 75px;
	right: 25px
}

.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
}

.floating-1 {
	-webkit-animation-name: floating-1;
	animation-name: floating-1;
	-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
}

.section-header h1 {
	font-size: 38px;
	font-weight: 700;
	text-align: center;
    background: linear-gradient(to left, #3318a5, #925ed4);
    background: -webkit-linear-gradient(to left, #3318a5, #925ed4);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -0.50px;
    color: #171717;
    margin-bottom: 0;	
	text-align: center
}

.section-header h2 span {
    background: linear-gradient(to left, #E90EEA, #850AFE, #56ABFA);
    background: -webkit-linear-gradient(to left, #E90EEA, #850AFE, #56ABFA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    position: relative;
}

.section-highlight {
	background: linear-gradient(#fbf3fe 0 0) padding-box, linear-gradient(to left, #E90EEA, #850AFE, #56ABFA) border-box;
	color: #313149;
	padding: 10px;
	border: 1px solid transparent;
	border-radius: 12px;
	padding: 10px 15px;
	width: max-content;
	margin: auto
}

.section-highlight span {
	background: linear-gradient(to left, #E90EEA, #850AFE, #56ABFA);
	background: -webkit-linear-gradient(to left, #E90EEA, #850AFE, #56ABFA);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

#trusted {
	margin-top: 100px
}

#trusted .trust-wrapper {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 25px;
	margin-top: 50px
}

#trusted .trust-wrapper .trust-item {
	text-align: center
}

#trusted .trust-wrapper .trust-item .trust-logo {
	background: linear-gradient(#fff 0 0) padding-box, linear-gradient(to bottom, #e4e7ed, #fff) border-box;
	padding: 10px;
	border: 1px solid transparent;
	text-align: center;
	border-radius: 15px
}

#trusted .trust-wrapper .trust-item span {
	font-size: 16px;
	color: #525866
}

#main-banner {
	margin: 50px 0 75px 0
}

#main-banner .banner-wrapper {
	background: url(https://storage.perfectcdn.com/2eeaa6/pizqnl27wwu59esl.webp);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	border-radius: 30px;
	padding: 70px;
	position: relative;
}

#main-banner .banner-wrapper .bw-logo {
	position: absolute;
	right: 200px;
	top: 75px;
	height: 380px;
}

#main-banner .banner-spotlight {
	background: linear-gradient(#15062d 0 0) padding-box, linear-gradient(to left, #E90EEA, #850AFE, #56ABFA) border-box;
	color: #313149;
	padding: 10px;
	border: 1px solid transparent;
	border-radius: 12px;
	padding: 10px 15px;
	width: max-content;
	margin-top: 15px
}

#main-banner .banner-spotlight span {
	background: linear-gradient(to left, #E90EEA, #850AFE, #56ABFA);
	background: -webkit-linear-gradient(to left, #E90EEA, #850AFE, #56ABFA);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

#main-banner .banner-title {
	font-size: 36px;
	line-height: 46px;
	color: #fff;
	max-width: 350px;
	letter-spacing: 1px;
	border-bottom: 1px solid #413a61;
	padding-bottom: 15px;
	margin-top: 15px
}

#main-banner .banner-count .bc-wrapper {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	margin-top: 25px;
	max-width: 400px;
	gap: 30px
}

#main-banner .banner-count .bc-wrapper .bc-item h4 {
	font-size: 36px;
	line-height: 24px;
	font-weight: 600;
	color: #fff
}

#main-banner .banner-count .bc-wrapper .bc-item span {
	font-size: 14px;
	color: #EFEBFF
}

#main-banner .banner-wrapper .btn-banner {
	background: rgb(33, 39, 86);
	background: linear-gradient(to right, rgba(33, 39, 86, 1) 0%, rgba(62, 7, 82, 1) 100%);
	width: 350px;
	color: #fff;
	margin-top: 25px
}

#main-banner .banner-wrapper .btn-banner:hover,
#main-banner .banner-wrapper .btn-banner:hover {
	opacity: .8;
	color: #fff !important
}

#what-we-do {
	position: relative;
	margin-top: 100px;
	text-align: center
}

#what-we-do .wwd-bg {
	position: absolute;
	bottom: -150px;
	right: 0
}

#what-we-do .wwd-title {
	font-size: 42px;
	line-height: 56px;
	color: #000;
	max-width: 925px;
	margin: 25px auto
}

#what-we-do .wwd-title .purple {
	background: #7d52f4;
	color: #fff;
	border-radius: 0 0 0 15px;
	padding: 0 30px 0 10px
}

#what-we-do .wwd-title .pink {
	background: #fb4ba3;
	color: #fff;
	border-radius: 0 15px 15px 0;
	padding: 0 15px 0 25px;
	z-index: -1
}

#what-we-do .wwd-title .wwd-star {
	margin: -10px -20px 0 0;
	position: relative;
	z-index: 1
}

#what-we-do .wwd-title .wwd-smile {
	margin: -10px 0 0 -20px
}

#what-we-do .tiktok-phone {
	position: relative;
	margin-top: 50px
}

#what-we-do .tiktok-phone .heart,
.tiktok-phone .hand {
	position: absolute
}

#what-we-do .tiktok-phone .heart {
	right: 250px;
	animation: heartBeat 1.5s infinite ease-in-out;
}

#what-we-do .tiktok-phone .hand {
	left: 250px;
	bottom: 100px
}

#what-we-do .tiktok-phone .btn-secondary {
	position: absolute;
	top: 115px;
	left: 185px
}

#what-we-do .tiktok-phone .btn-border {
	position: absolute;
	top: 315px;
	right: 185px
}

#prices {
	margin-top: 100px;
}

#prices .container {
	overflow: hidden
}

#prices .section-header {
	margin-top: 25px
}

#prices .swiper-products {
	width: 100%;
	margin: 40px 0
}

#prices .swiper-products .swiper-slide {
	background: transparent;
	padding: 20px;
	display: flex;
	flex-direction: column;
	position: relative;
	z-index: 1;
	border-radius: 15px;
	border: 1px solid #e5e8ec;
	box-shadow: 0 5px 15px rgba(85, 85, 85, 0.1);
}

#prices .swiper-products .product-top {
	display: flex;
	flex-direction: column;
	border-bottom: 1px solid #e5e8ec;
	gap: 5px;
	padding-bottom: 10px;
	text-align: center;
}

#prices .swiper-products .product-top .product-title {
	font-size: 18px;
	font-weight: 400
}

#prices .swiper-products .product-top .product-price {
	font-size: 24px;
	font-weight: 600;
	color: #000
}

#prices .swiper-products .product-bottom {
	min-height: 175px;
	padding-top: 10px
}

#prices .swiper-products .product-bottom .pb-title {
	font-size: 16px;
	font-weight: 600;
	color: #000
}

#prices .swiper-products .product-bottom .pb-item {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 16px;
	margin-top: 7px
}

#prices .swiper-products .product-bottom .pb-item i {
	width: 24px;
	height: 24px;
	border-radius: 100%;
	font-size: 18px;
	background: #f5f7fa;
	text-align: center;
	line-height: 24px
}

#prices .swiper-products .swiper-slide,
.swiper-products .swiper-slide:hover {
	transition: 250ms all;
	cursor: pointer
}

#prices .swiper-products .btn-buy {
	background: #0e121b;
	color: #fff !important;
	margin-top: 15px;
	border: none;
	transition: 250ms all
}

#prices .swiper-products .swiper-slide:hover .btn-buy {
	background: rgb(233, 14, 234);
	background: linear-gradient(270deg, rgba(233, 14, 234, 1) 0%, rgba(133, 10, 254, 1) 50%, rgba(86, 171, 250, 1));
	transition: 250ms all
}

#prices .swiper-products .swiper-slide:hover .product-bottom .pb-item i {
	background: #0e121b;
	color: #fff
}

#prices .swiper-products .swiper-slide:hover {
	background: linear-gradient(#fbf3fe 0 0) padding-box, linear-gradient(to left, #E90EEA, #850AFE, #56ABFA) border-box;
	border: 1px solid transparent
}

#review {
	margin-top: 50px;
}

#review .section-header {
	margin-top: 25px;
}

#review .tabs {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	text-align: center;
	margin: 75px 0 50px 0;
	gap: 50px
}

#review .tabs .item {
	padding-bottom: 10px;
	border-bottom: 2px solid #e5e8ec;
	color: #99A0AE;
	transition: 250ms all;
	cursor: pointer
}

#review .tabs .item:hover {
	border-bottom: 2px solid transparent;
	border-image: linear-gradient(to left, #E90EEA, #850AFE, #56ABFA);
	border-image-slice: 1;
	transition: 250ms all;
	color: #000
}

#review .tabs .item.active {
	border-bottom: 2px solid transparent;
	border-image: linear-gradient(to left, #E90EEA, #850AFE, #56ABFA);
	border-image-slice: 1;
	color: #000
}

#review .tabs-wrapper .tabs-content {
	background: #0E121B;
	padding: 25px;
	border-radius: 25px;
	position: relative;
	overflow: hidden;
}

#review .tabs-wrapper .tabs-content::before {
	content: "";
	position: absolute;
	top: 50%;
	right: 110%;
	width: 60%;
	height: 50%;
	transform: translate(100%, 60%) scale(1);
	transition: .14s ease;
	background: rgb(40, 203, 105);
	background: linear-gradient(120deg, #7D52F4 0%, #7D52F420 100%);
	border-radius: 100px;
	filter: blur(60px);
	z-index: 0
}

#review .comments-wrapper {
	display: flex;
	align-items: center;
	gap: 35px
}

#review .comments-wrapper .comments-area {
	display: flex;
	flex-direction: column;
	gap: 20px
}

#review .comments-wrapper .comments-area h3 {
	font-size: 36px;
	font-weight: 500;
	color: #fff
}

#review .comments-wrapper .comments-area p {
	font-size: 16px;
	font-weight: 400;
	color: #717784
}

#review .comments-wrapper .comments-area small {
	font-size: 16px;
	font-weight: 400;
	color: #717784
}

#review .comments-wrapper .comments-area small span {
	font-size: 16px;
	font-weight: 500;
	color: #fff
}

#team {
	position: relative;
	margin-top: 100px;
}

#team .team-bg {
	position: absolute
}

#team .section-header {
	margin-top: 25px;
}

#team .team-wrapper {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	margin-top: 25px
}

#team .team-wrapper .team-item {
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center
}

#team .team-wrapper .team-item span {
	font-size: 18px;
	font-weight: 500;
	color: #07090D;
	margin-top: -25px
}

#team .team-wrapper .team-item small {
	font-size: 14px;
	font-weight: 400;
	color: #07090D
}

#signature {
	margin-top: 100px
}

#signature .signature-wrapper {
	padding: 50px 125px;
	border-radius: 25px;
	border: 1px solid #E1E4EA;
	position: relative;
	overflow: hidden;
	color: #000;
	font-size: 16px;
	overflow: hidden
}

#signature .signature-wrapper .sign-bg {
	position: absolute;
	top: 0;
	right: 0;
	z-index: -1
}

#signature .signature-wrapper .signature-title {
	font-size: 36px;
	font-weight: 600;
	text-align: center;
	position: relative;
	margin-bottom: 60px
}

#signature .signature-wrapper .signature-title::before {
	content: '';
	position: absolute;
	right: 0;
	background-image: url(https://storage.perfectcdn.com/2eeaa6/z99g2tb1nuq2s59l.png);
	background-repeat: no-repeat;
	background-position: center top;
	top: 100%;
	height: 25px;
	width: 100%;
}

#signature .signature-wrapper::before {
	content: "";
	position: absolute;
	top: 50%;
	right: 80%;
	width: 60%;
	height: 50%;
	transform: translate(100%, 60%) scale(1);
	transition: .14s ease;
	background: rgb(40, 203, 105);
	background: linear-gradient(120deg, #ee9eef70 0%, #ee9eef70 100%);
	border-radius: 100px;
	filter: blur(200px);
	z-index: -1
}

#signature .sign-regards {
	padding-top: 25px
}

#signature .sign-profile {
	margin: 35px auto 0 auto;
	text-align: center
}

#banner-bottom {
	margin-top: 150px
}

#banner-bottom .banner-wrapper {
	background: rgb(20, 6, 45);
	background: linear-gradient(250deg, rgba(20, 6, 45, 1) 70%, rgba(125, 82, 244, 1) 125%);
	border-radius: 30px;
	position: relative;
	padding: 50px
}

#banner-bottom .banner-shapes .bs-world {
	position: absolute;
	left: -50px;
	top: -70px
}

#banner-bottom .banner-shapes .bs-star {
	position: absolute;
	right: 130px;
	top: 50px
}

#banner-bottom .banner-shapes .bs-badge {
	position: absolute;
	left: 60px;
	bottom: 10px
}

#banner-bottom .banner-content {
	padding-left: 250px
}

#banner-bottom .banner-content small {
	font-size: 16px;
	color: #fff
}

#banner-bottom .banner-content .title {
	font-size: 46px;
	font-weight: 500;
	color: #fff;
	margin: 25px 0
}

#banner-bottom .banner-content p {
	font-size: 16px;
	font-weight: 400;
	color: #fff;
	margin-bottom: 0;
	max-width: 800px
}

#faq {
	background: #f5f7fa;
	margin-top: 100px;
	padding: 50px 0
}

#faq .section-header {
	margin-top: 25px;
}

#faq .faq-ss-tabs {
	margin-top: 35px
}

#faq .faq-ss-tabs .home-ss-tab {
	position: relative;
	cursor: pointer;
	background: transparent;
	padding: 13px 20px;
	-webkit-transition: .2s ease;
	transition: .2s ease;
	margin-bottom: 14px;
	background: #fff;
	border: 1px solid #E1E4EA;
	border-radius: 15px;
}

#faq .faq-ss-tabs .home-ss-tab:hover {
	background: linear-gradient(#fbf3fe 0 0) padding-box, linear-gradient(to left, #E90EEA, #850AFE, #56ABFA) border-box;
	border: 1px solid transparent;
}

#faq .faq-ss-tabs .home-ss-tab h3 {
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 0
}

#faq .faq-ss-tabs .home-ss-tab .ri-subtract-line {
	display: none;
}

#faq .faq-ss-tabs .home-ss-tab .ss-tab-head {
	font-size: 14px;
	font-weight: 400;
	color: #0E121B;
	display: flex;
	align-items: center;
	justify-content: space-between
}

#faq .faq-ss-tabs .home-ss-tab.active {
	border-radius: 15px
}

#faq .faq-ss-tabs .home-ss-tab.active .ri-subtract-line {
	display: block;
}

#faq .faq-ss-tabs .home-ss-tab.active .ri-add-line {
	display: none;
}

#faq .faq-ss-tabs .home-ss-tab .ss-tab-head .right-p {
	color: #99A0AE;
	font-size: 16px;
	height: 30px;
	line-height: 30px;
}

#faq .faq-ss-tabs .home-ss-tab .ss-tab-content {
	display: none;
	padding-top: 12px;
	color: #525866;
	font-size: 14px;
	line-height: 170%;
	padding-bottom: 8px;
}

#home-blog {
	position: relative;
	margin-top: 50px
}

#home-blog .hb-bg {
	position: absolute;
	right: -25px;
	top: 125px
}

#home-blog .hb-wrapper {
	display: flex;
	align-items: center;
	gap: 50px;
	margin-top: 75px
}

#home-blog .hb-wrapper .hb-content {
	display: flex;
	flex-direction: column;
	gap: 15px
}

#home-blog .hb-wrapper .hb-content h2 {
	font-size: 36px;
    font-weight: 700;
    letter-spacing: -0.50px;
    color: #171717;
    margin-bottom: 0;
}

#home-blog .hb-wrapper .hb-content h2 span {
    background: linear-gradient(to left, #E90EEA, #850AFE, #56ABFA);
    background: -webkit-linear-gradient(to left, #E90EEA, #850AFE, #56ABFA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    position: relative;
}

#home-blog .hb-wrapper .hb-content h3 {
	font-size: 20px;
	font-weight: 500;
	margin-bottom: 0
}

#home-blog .hb-wrapper .hb-content p {
	font-size: 14px;
	font-weight: 400;
	color: #525866;
	margin-bottom: 0
}

footer {
	background: url(https://storage.perfectcdn.com/2eeaa6/n1sjis82mnw6gfi8.webp), #030014;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center right;
	margin-top: 125px
}

#footer .footer-wrapper {
	display: flex;
	gap: 150px;
	padding: 50px 0
}

#footer .footer-social {
	display: flex;
	align-items: center;
	gap: 10px
}

#footer .footer-social a {
	width: 38px;
	height: 38px;
	border-radius: 10px;
	font-size: 18px;
	line-height: 34px;
	color: #fff;
	border: 2px solid #fff;
	text-align: center;
	transition: 250ms all
}

#footer .footer-social a:hover {
	color: #7d52f4;
	border-color: #7d52f4;
	transition: 250ms all
}

#footer .footer-left {
	display: flex;
	flex-direction: column;
	gap: 25px
}

#footer .footer-right {
	display: flex;
	gap: 100px
}

#footer .footer-right .footer-links {
	display: flex;
	flex-direction: column;
	gap: 12px
}

#footer .footer-right .footer-links span {
	font-size: 20px;
	font-weight: 600;
	color: #fff;
	margin-bottom: 25px
}

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

#footer .footer-left p {
	color: #fff;
	margin: 25px 0 0 0;
	max-width: 400px;
}

.searchInput {
	position: relative;
	width: 100%;
	transition: 0.2s;
	transition-delay: 0.3s;
}

.searchInput .form-search {
	color: #202020;
	background: #242736;
	height: 80px;
	border: none;
	border-radius: 12px;
	padding: 20px;
	width: 100%;
	font-size: 18px;
}

.searchInput .btn-search {
	position: absolute;
	right: 12px;
	top: 64%;
	transform: translateY(-50%);
	height: 50px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	font-size: 16px;
	gap: 10px;
	font-weight: 500;
	color: #fff !important;
	background: #7d52f4
}

.singlePostArea {
	padding: 75px 0 25px 0;
}

.contact-left h1 {
	font-size: 46px;
	font-weight: 600;
	color: #0E121B;
}

.contact-left p {
	font-size: 15px;
	color: #525866;
	max-width: 550px;
	margin-top: 15px;
}

.contact-info {
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	gap: 15px;
	margin-top: 15px;
}

.contact-info .ci-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border: 1px solid #E1E4EA;
	width: 400px;
	border-radius: 10px;
	padding: 10px;
	font-weight: 600;
}

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

.contact-social a {
	width: 38px;
	height: 38px;
	border-radius: 10px;
	font-size: 18px;
	line-height: 34px;
	color: #000;
	border: 1px solid #E1E4EA;
	text-align: center;
	transition: 250ms all
}

.contact-social a:hover {
	color: #7d52f4;
	border-color: #7d52f4;
	transition: 250ms all
}

.page-title {
	font-size: 46px;
	font-weight: 600;
	color: #0E121B;
	padding-bottom: 25px;
}

.form-group {
	margin-bottom: 15px;
	position: relative;
}

.form-group.form-icon {
	position: relative;
}

.form-group.form-icon i {
	position: absolute;
	left: 15px;
	top: 38px;
	font-size: 22px;
	color: #99A0AE;
}

.form-group.form-icon .form-control {
	padding-left: 50px;
}

.form-group label {
	font-size: 15px;
	font-weight: 600;
	color: #000;
	margin-bottom: 7px;
}

.form-group label span {
	color: #335CFF;
}

.form-control {
	border: 1px solid #E1E4EA;
	height: 50px;
	border-radius: 10px;
	-webkit-appearance: auto;
	-moz-appearance: auto;
	appearance: auto;
}

.form-control:focus {
	border: 1px solid #7d52f4 !important
}

.iti__country-list {
	background: #fff !important
}

.contact-map {
	margin-top: 100px;
}

.post-content .post-body .alert p {
	margin-bottom: 0;
}

.ticket-content .message.root {
	align-self: flex-start;
	text-align: right;
	background: #fff
}

.post-content {
	background: #f1f1f3;
	border-radius: 10px;
	overflow: hidden;
}

.post-content .post-header {
	display: flex;
	align-items: center;
	width: 100%;
	height: 52px;
	justify-content: left;
	padding: 25px;
	color: #fff;
	font-weight: 600;
	font-size: 18px;
	background: #335cff;
	text-align: center;
	justify-content: center;
}

.blog-list {
	display: flex;
	flex-direction: column;
	gap: 15px;
	width: 100%;
}

.blog-list .blog-item {
	display: flex;
	align-items: center;
	gap: 25px;
	border-radius: 15px;
	border: 1px solid #E1E4EA;
	padding: 15px;
}

.blog-list .blog-item:hover {
	border-color: #7d52f4;
}

.blog-list .blog-item .blog-left img {
	width: 675px;
	height: 250px;
	border-radius: 15px;
}

.blog-list .blog-right {
	display: flex;
	flex-direction: column;
	width: 100%;
	gap: 30px
}

.blog-list .blog-right .blog-date {
	background: #5715D110;
	color: #2563FF;
	border-radius: 35px;
	padding: 10px 25px;
	width: max-content;
	text-align: center;
}

.blog-list .blog-right .blog-title {
	font-size: 24px;
	font-weight: 600;
	color: #0E121B;
}

.blog-list .blog-right .blog-more {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 15px;
	color: #99A0AE;
}

.blog-wrapper {
	display: flex;
	flex-direction: column;
	gap: 25px
}

.blog-wrapper .blog-date {
	background: #5715D110;
	color: #2563FF;
	border-radius: 35px;
	padding: 10px 25px;
	width: max-content;
	text-align: center;
	margin: auto;
}

.blog-wrapper h1 {
	font-size: 32px;
	font-weight: 600;
	color: #0E121B;
	text-align: center;
}

.blog-wrapper .blog-img img {
	border-radius: 15px;
	max-height: 500px;
	width: 100%;
}

.blog-wrapper .blog-text ul li {
	list-style-type: auto;
}

.blog-wrapper .blog-text ul li::marker {
    color: var(--main-color);
	font-weight: 700;
}

.free-tool-content {
	max-width: 100%;
	margin-top: auto;
	background: #fff;
	padding: 25px;
	border-radius: 20px;
	box-shadow: 1px 1px 22px 10px rgb(238 232 255)
}

.free-tool-content .free-wait .progress-bar {
	background: #E1E4EA;
	height: 15px
}

.free-tool-content .free-wait .progress-bar .bar {
	background: #7d52f4
}

.free-tool-content .free-start-btn {
	margin-top: 32px;
}

.free-tool-header {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 15px;
	margin-bottom: 50px;
	position: relative;
}

.singlePostArea .ft-bg {
	position: absolute;
	right: 0;
	top: 125px;
}

.singlePostArea #home-blog {
	margin-top: 100px;
}

.singlePostArea #home-blog .hb-bg {
	left: -50px;
	right: auto;
	top: 175px;
	z-index: -1;
}

.free-tool-header .ft-icon {
	position: relative;
}

.free-tool-header .ft-icon i {
	position: absolute;
	left: 52px;
	top: 42px;
	font-size: 32px;
	background: linear-gradient(to bottom, #E90EEA, #850AFE, #56ABFA);
	background: -webkit-linear-gradient(to bottom, #E90EEA, #850AFE, #56ABFA);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.free-tool-header .ft-title h1 {
	font-size: 42px;
	font-weight: 600;
	color: #0E121B;
}

.free-tool-header .ft-text p {
	font-size: 16px;
	font-weight: 400;
	color: #525866;
	max-width: 600px;
	text-align: center;
}

.free-tool-header .ft-rating {
	display: flex;
	align-items: center;
	flex-direction: column;
	gap: 10px;
	color: #99A0AE;
}

#tiktok-result {
	margin-top: 50px;
}

.os-left {
	position: relative;
}

.os-left h2 {
	font-size: 42px;
	font-weight: 600;
	color: #000;
	margin-bottom: 20px;
}

.os-left p {
	font-size: 14px;
	color: #525866;
	max-width: 500px;
}

.os-left .smile-1 {
	height: 45px;
	margin-top: -10px;
}

.os-left .irish {
	position: absolute;
	right: 0;
	top: -100px;
}

.os-left .our-arrow {
	position: absolute;
	bottom: -275px;
	right: 75px;
}

.os-right,
.os2-right {
	padding-left: 75px;
}

.os2-right h2 {
	font-size: 42px;
	font-weight: 600;
	color: #000;
	margin-bottom: 20px;
	position: relative;
}

.os2-right h2 .our-tick {
	position: absolute;
	top: -15px;
	left: 170px;
	height: 40px;
}

.os2-right p {
	font-size: 14px;
	color: #525866;
}

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

.content-box {
	border-left: 1px solid #e4e7ed;
	padding-left: 25px;
	margin-top: 50px;
}

.content-box h2 {
	font-size: 20px;
	font-weight: 600;
	color: #000;
	margin-bottom: 7px;
}

.content-box p {
	color: #525866
}

.product-details {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.product-details h1 {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -0.50px;
    color: #171717;
    margin-bottom: 0;
}

.product-details h1 span {
    background: linear-gradient(to left, #E90EEA, #850AFE, #56ABFA);
    background: -webkit-linear-gradient(to left, #E90EEA, #850AFE, #56ABFA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    position: relative;
}

.product-rates {
	display: flex;
	align-items: center;
	gap: 7px;
	font-size: 17px;
}

.product-rates .rates {
	color: #99A0AE;
}

.product-rates .stars i {
	color: #FF8447;
}

.product-rates .count {
	color: #335CFF;
}

.product-details .product-text {
	font-size: 16px;
	color: #525866;
}

.product-image {
	margin: auto;
	text-align: center;
}

.product-details .product-btns {
	display: flex;
	align-items: center;
	gap: 15px
}

.product-details .product-badge {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 25px;
}

.rating-list {
	display: flex;
	align-items: center;
	flex-direction: column;
	gap: 10px;
}

.rating-item {
	display: flex;
	align-items: center;
	gap: 10px;
	color: #525866;
	width: 100%;
}

.rating-item .progress-bar {
	height: 5px;
	width: 100%;
	max-width: 300px;
	border-radius: 30px;
	position: relative;
	overflow: hidden;
	background: var(--bg);
}

.rating-item .progress-bar {
	background: #E1E4EA;
	height: 5px;
}

.rating-item .progress-bar .bar {
	background: rgba(var(--cl1));
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	border-radius: 30px;
}

.rating-item .progress-bar .bar {
	background: #FF8447
}

.rating-item .rl-stars {
	width: 50px;
}

.product-cleft {
	border-right: 1px solid #E1E4EA
}

.product-cleft h2 {
	font-size: 32px;
	font-weight: 600;
	color: #000;
	margin: 15px 0;
}

.product-cleft .count {
	color: #525866;
}

.product-cleft h3 {
	font-size: 20px;
	font-weight: 600;
	color: #000;
	margin: 35px 0 15px 0;
}

.product-cleft p {
	font-size: 15px;
	color: #525866;
	margin-top: 15px
}

.review-filters {
	display: flex;
	align-items: center;
	gap: 20px
}

.review-wrapper {
	display: flex;
	align-items: center;
	flex-direction: column;
	gap: 20px
}

.review-wrapper .review-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
	border: 1px solid #E1E4EA;
	border-radius: 15px;
	padding: 15px;
	width: 100%;
}

.review-wrapper .review-list p {
	margin-bottom: 15px;
}

.review-wrapper .review-list h4 {
	font-size: 20px;
	font-weight: 600;
	color: #0E121B;
}

.review-wrapper .review-list .rl-info {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.review-wrapper .review-list .rl-user {
	background: #7d52f420;
	color: #7d52f4;
	border-radius: 30px;
	padding: 5px 10px;
}

.review-wrapper .review-list .time {
	color: #99A0AE
}

.review-wrapper .review-list .review-score {
	display: flex;
	align-items: center;
	gap: 5px;
	font-size: 14px;
	color: #FF8447;
	background: #FF844730;
	padding: 2px 10px;
	border-radius: 30px;
	width: max-content;
}

.review-wrapper .review-list .rs-wrapper {
	display: flex;
	align-items: center;
	gap: 10px;
}

#rateModal textarea {
	height: 125px;
	resize: none;
}

#rateModal .stars-box .star.hover,
#rateModal .stars-box .star.selected {
	color: #FF8447
}

#rateModal .stars-box {
	margin-bottom: 7px;
	-ms-flex-pack-item-align: center;
	align-self: center;
	text-align: center
}

#rateModal .stars-box .star {
	font-size: 24px;
	color: #d2d2d2;
	cursor: pointer
}

.pagins {
	margin-top: 25px;
}

.pagins ul li a.page-link {
	color: #000 !important;
	background: #f2f4f7 !important;
}

.pagins ul li a.page-link:hover {
	background: #dce5f3 !important;
}

.pagins ul li.active a.page-link {
	color: #fff !important;
	background: #7d52f4 !important;
}

.intall.account {
	background: #7d52f4;
	height: auto;
}

.user-account-menu {
	background: #f1f1f3;
}

@media screen and (min-width: 768px) {
	.user-account-menu ul li.mobile-logout {
		background: #ff0000;
	}
}

.user-account-menu {
	transform: translateY(10px);
}

.intall.account .conts {
	padding: 10px 0;
}

.intall.account .conts .icobox {
	min-width: 36px;
	height: 36px;
	width: 36px;
}

.intall.account .conts .icobox i {
	font-size: 20px;
	color: #7d52f4;
}

.intall.account .conts .detabox {
	margin-left: 20px;
}

.intall .icobox::before {
	left: -5px;
	top: -5px;
	right: -5px;
	bottom: -5px;
	background: #fff;
}

.intall .icobox::after {
	left: -5px;
	top: -5px;
	right: -5px;
	bottom: -5px;
	background: #ffffff;
}

.intall.account .conts .detabox h1 {
	font-size: 26px;
	margin-bottom: auto;
	font-weight: normal;
}

.intall .conts .detabox p {
	margin-bottom: 0;
}

.dashboard-item-list {
	gap: 10px
}

.dashboard-item-list .grid-item {
	border-radius: 15px;
	border: 1px solid #E1E4EA;
	gap: 7px;
	transition: 150ms all;
}

.dashboard-item-list .grid-item:hover {
	border-color: #7d52f4;
	transition: 150ms all;
}

.ns-badge {
	font-size: 13px;
	font-weight: 500;
	border-radius: 10px;
	padding: 5px 10px;
}

.dashboard-item-list .grid-item .icon {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #7d52f430;
	color: #7d52f4;
	border-radius: 10px;
}

.dashboard-item-list .grid-item .icon {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #7d52f430;
	color: #7d52f4;
	border-radius: 10px;
	width: 40px;
	height: 40px
}

.icon-st-primary {
	color: #007bff !important;
	background: #007bff30 !important;
}

.icon-st-secondary {
	color: #6c757d !important;
	background: #6c757d30 !important;
}

.icon-st-success {
	color: #28a745 !important;
	background: #28a74530 !important;
}

.icon-st-warning {
	color: #ffc107 !important;
	background: #ffc10730 !important;
}

.icon-st-danger {
	color: #dc3545 !important;
	background: #dc354530 !important;
}

.icon-st-info {
	color: #17a2b8 !important;
	background: #17a2b830 !important;
}

.icon-st-light {
	color: #000102 !important;
	background: #f8f9fa30 !important;
}

.icon-st-dark {
	color: #343a40 !important;
	background: #343a4030 !important;
}

.dashboard-item-list .grid-item .icon i {
	font-size: 20px;
}

.dashboard-item-list .grid-item .method .date {
	font-size: 12px;
}

.dashboard-head {
	background: #f8f8ff;
	color: #000;
	border-radius: 15px;
	padding: 0 20px;
	border: 1px solid #E1E4EA;
}

.dashboard-head .dh-custom {
	padding: 0;
	position: relative;
	display: inline-block;
}

.dashboard-head .dh-custom::after {
	content: "";
	position: absolute;
	background-color: #fff;
	bottom: -1px;
	left: 0;
	width: 250px;
	height: 2px;
	background-color: #7d52f4;
}

.dashboard-head .dh-custom .dh-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	border-radius: 10px;
	width: 40px;
	height: 40px;
	background: rgb(233, 14, 234);
	background: linear-gradient(180deg, rgba(233, 14, 234, 1) 0%, rgba(133, 10, 254, 1) 50%, rgba(86, 171, 250, 1) 100%);
}

.dashboard-head .dh-custom .dh-icon i {
	font-size: 20px;
}

.singlePostArea.dash {
	padding: 35px 0;
}

.pay-grid,
.main-grid {
	padding: 0;
}

.dashboard-head p {
	color: #00000060;
}

.user-account-menu ul li.active {
	background: #7d52f4;
	color: #fff;
}

.profile-order-list .list.support .el {
	color: #000;
	background: #fff;
	border: 1px solid #E1E4EA;
}

.profile-order-list .list.support .el .top {
	border-bottom: 1px solid #E1E4EA;
	width: 100%;
}

.profile-order-list .list.support .el .middle {
	width: 100%;
	border-bottom: 1px solid #E1E4EA;
}

.profile-order-list .item .list .el .icon {
	width: 32px;
	min-width: 32px;
	height: 32px;
	color: #fff;
	background: var(--cart-color);
	border-radius: 100%;
	font-size: 18px;
}

.selected-amount-list .grid-item.selected {
	border: 1px solid #7d52f4 !important;
}

.selected-amount-list .grid-item {
	border: 1px solid #E1E4EA;
	border-radius: 15px;
}

.grid-item input {
	border-radius: 15px !important;
	border-color: #E1E4EA !important;
}

.grid-item-selected input {
	border-radius: 15px !important;
	border-color: #7d52f4 !important;
}

.bonus-amount {
	border-radius: 0 15px 15px 0;
	margin: 0;
	right: 0;
}

.select-payment-method .item {
	border-radius: 15px;
}

.login-form .tabHead {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f8f8ff;
	border: 1px solid #E1E4EA;
	max-width: 100%;
	margin: 0 auto;
	padding: 5px;
	border-radius: 15px;
	position: relative;
	width: 100%;
}

.login-form .tabHead .item {
	padding: 0 25px;
	color: #828bad;
	cursor: pointer;
	border-radius: 12px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: transparent;
	transition: 0.2s;
	gap: 5px;
	user-select: none;
	font-size: 15px;
	width: 100%;
}

.login-form .tabHead .item.active {
	color: #fff;
	background: #7d52f4;
}

.login-form .tabHead .item .text {
	min-width: max-content;
}

.login-head h1 {
	font-size: 42px;
	font-weight: 600;
	background: linear-gradient(to left, #E90EEA, #850AFE, #56ABFA);
	background: -webkit-linear-gradient(to left, #E90EEA, #850AFE, #56ABFA);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	text-align: center;
}

.login-head p {
	font-size: 15px;
	font-weight: 400;
	text-align: center;
	padding-top: 10px;
}

#login-wrapper {
	padding: 50px 0
}

.login-head {
	margin-bottom: 45px;
}

.form-floating.fc-icon .form-control {
	font-size: 14px;
	color: #979eb5;
}

.orPayDetail .amount {
	background: #f8f8ff;
	border-radius: 15px;
	border: 1px solid #E1E4EA;
}

.orPayDetail .amount ul li {
	border-bottom: 1px solid #E1E4EA;
}

.baskList .item {
	border: 1px solid #E1E4EA;
}

.coupon {
	margin: 15px 0 0 0;
}

.coupon .btn-secondary {
	position: absolute;
	right: 2px;
	top: 2px;
	border-radius: 10px
}

.profile-content-title {
	position: relative;
	margin-bottom: 20px;
	background: #335cff;
	color: #fff;
	border-radius: 15px;
	padding: 10px 15px;
}

.profile-content-title p {
	color: #ffffff80
}

.profile-content-title h2 {
	font-size: 20px;
	color: #fff;
	font-weight: 400 !important;
}

.profile-content-title h2 span {
	font-weight: 600;
}

.orPayments {
	border: 1px solid #E1E4EA;
	border-radius: 15px;
	margin-top: 15px;
	padding: 10px 15px;
}

.orPayments img {
	margin-top: 10px;
}

.free-tool-wrapper {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 15px;
}

.free-tool-wrapper .ft-item {
	background: transparent;
	padding: 25px 10px;
	display: flex;
	align-items: center;
	position: relative;
	gap: 30px;
	z-index: 1;
	border-radius: 15px;
	font-size: 18px;
	font-weight: 600;
	border: 1px solid #e5e8ec;
	box-shadow: 0 5px 15px rgba(85, 85, 85, 0.1);
	overflow: hidden;
}

.free-tool-wrapper .ft-item:hover {
	background: linear-gradient(#fbf3fe 0 0) padding-box, linear-gradient(to left, #E90EEA, #850AFE, #56ABFA) border-box;
	border: 1px solid transparent;
	color: #fff;
}

.free-tool-wrapper .ft-item::after {
	content: "";
	background: rgb(233, 14, 234);
	background: linear-gradient(270deg, rgba(233, 14, 234, 1) 0%, rgba(133, 10, 254, 1) 50%, rgba(86, 171, 250, 1) 100%);
	border-radius: 0;
	height: 100%;
	width: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
	clip-path: circle(20% at 0% 0%);
	transition: 0.3s ease-in;
}

.free-tool-wrapper .ft-item:hover::after {
	clip-path: circle(100%);
}

.free-tool-wrapper .ft-item img {
	width: 50px;
}

.free-tool-wrapper .ft-item i {
	font-size: 24px;
	color: #7d52f4;
}

.free-tool-wrapper .ft-item .ft-text {
	display: flex;
	align-items: center;
	gap: 10px
}

.platform-wrapper {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 35px;
}

.platform-item {
	background: transparent;
	padding: 25px 10px;
	display: flex;
	align-items: center;
	position: relative;
	gap: 30px;
	z-index: 1;
	border-radius: 15px;
	font-size: 18px;
	font-weight: 600;
	border: 1px solid #e5e8ec;
	box-shadow: 0 5px 15px rgba(85, 85, 85, 0.1);
	overflow: hidden;
}

.platform-item:hover {
	background: linear-gradient(#fbf3fe 0 0) padding-box, linear-gradient(to left, #E90EEA, #850AFE, #56ABFA) border-box;
	border: 1px solid transparent;
	color: #fff;
}

.platform-item::after {
	content: "";
	background: rgb(233, 14, 234);
	background: linear-gradient(270deg, rgba(233, 14, 234, 1) 0%, rgba(133, 10, 254, 1) 50%, rgba(86, 171, 250, 1) 100%);
	border-radius: 0;
	height: 100%;
	width: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
	clip-path: circle(20% at 0% 0%);
	transition: 0.3s ease-in;
}

.platform-item:hover::after {
	clip-path: circle(100%);
}

.platform-item h2 {
	font-size: 20px;
	font-weight: 500;
	color: #15072E;
}

.platform-item p {
	color: #a4a6ad;
	padding: 15px 0 0 0;
	margin-bottom: 0;
	font-size: 13px;
	font-weight: 300;
}

.platform-item:hover h2,
.platform-item:hover p {
	color: #fff;
}

.platform-filter {
	display: grid;
	grid-template-columns: repeat(8, 1fr);
	gap: 10px;
	margin-bottom: 45px;
}

.platform-filter .filter-btn {
	background: transparent;
	padding: 10px 15px;
	display: flex;
	align-items: center;
	flex-direction: column;
	position: relative;
	gap: 10px;
	z-index: 1;
	border-radius: 15px;
	border: 1px solid #e5e8ec;
	overflow: hidden;
	cursor: pointer;
}

.platform-filter .filter-btn i {
	font-size: 24px;
	background: linear-gradient(to left, #E90EEA, #850AFE, #56ABFA);
	background: -webkit-linear-gradient(to left, #E90EEA, #850AFE, #56ABFA);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.platform-filter .filter-btn span {
	font-size: 16px;
}

.platform-filter .filter-btn.active {
	background: linear-gradient(#fbf3fe 0 0) padding-box, linear-gradient(to left, #E90EEA, #850AFE, #56ABFA) border-box;
	border: 1px solid transparent
}

.product-badge {
	text-align: center;
}

#service-work {
	margin: 100px 0;
}

#service-work .sw-item {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 35px;
}

#service-work .sw-item .sw-num {
	background: #7d52f420;
	color: #7d52f4;
	border-radius: 10px;
	width: 50px;
	height: 50px;
	text-align: center;
	line-height: 50px;
	font-size: 24px;
	flex-shrink: 0;
}

#service-work .sw-item .sw-wrap h3 {
	font-size: 20px;
	font-weight: 500;
	color: #0E121B;
}

#brands {
	position: relative;
	overflow: hidden;
	margin: 150px 0 50px 0;
}

#brands .brands-first,
#brands .brands-second,
#brands .brands-third {
	display: flex;
	align-items: center;
	gap: 50px;
	margin-bottom: 25px;
	overflow: hidden;
}

#brands .brands-first div {
	-webkit-animation: translateinfinite 20s linear infinite;
	animation: translateinfinite 20s linear infinite;
}

#brands .brands-second div {
	-webkit-animation: translateinfinitex 20s linear infinite;
	animation: translateinfinitex 20s linear infinite;
}

#brands .brands-third div {
	-webkit-animation: translateinfinite 20s linear infinite;
	animation: translateinfinite 20s linear infinite;
}

@keyframes translateinfinite {
	100% {
		transform: translateX(calc(-180px * 4));
	}
}

@keyframes translateinfinitex {
	0% {
		transform: translateX(calc(-180px * 4));
	}

	100% {
		transform: translateX(0);
	}
}

.nav-drop .drop-menu {
	visibility: hidden;
	opacity: 0;
	position: absolute;
	margin-top: 0px;
	padding: 5px 0;
	background: #fff;
	border-radius: 5px;
	transition: 0.2s;
	box-shadow: 0 5px 30px rgba(85, 85, 85, 0.1);
	z-index: 9999;
	min-width: 200px;
}

.nav-drop .drop-menu .item-menu {
	padding-left: 0
}

.NavList li a {
	display: flex;
	align-items: center;
	gap: 5px
}

li.navitem .navlink {
	font-size: 15px;
}

li.navitem .navlink i {
	font-size: 15px;
	color: #7d52f4;
	top: auto;
}

.nav-drop .drop-menu {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 5px;
	z-index: 9999;
}

.nav-drop .drop-menu li {
	border-radius: 8px !important;
}

.nav-drop .drop-menu li .text {
	font-size: 14px !important;
}

.nav-drop .drop-menu li .icon {
	border-radius: 8px !important;
}

.phone-scrape {
	position: relative;
}

.phone-scrape {
	position: relative;
	max-width: 424px;
	margin: auto;
}

.phone-scrape .ps-area {
	position: absolute;
	top: 75px;
	left: 0;
	right: 0;
	margin-left: auto;
	margin-right: auto;
	width: 80%;
}

.phone-scrape .profilecheck .procheckBTN {
	background: rgb(233, 14, 234);
	background: linear-gradient(270deg, rgba(233, 14, 234, 1) 0%, rgba(133, 10, 254, 1) 50%, rgba(86, 171, 250, 1) 100%);
	color: #fff !important;
}

.phone-scrape .scraper-product {
	background: #f5f7fa;
	margin-top: 25px;
}

.phone-scrape .scraper-product .area {
	display: flex;
	align-items: center;
	flex-direction: column;
	gap: 25px
}

.phone-scrape .ps-area input {
	background: #f5f7fa
}

.phone-scrape .scraper-product .detail .item {
	text-align: center;
}

.phone-scrape .scraper-product .detail .item>span {
	justify-content: center;
}

.phone-scrape .scraper-product .avatar {
	max-width: 100px;
	width: 100px;
	height: 100px;
}

.phone-scrape .ps-buttons {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	position: absolute;
	bottom: 25px;
	left: 0;
	right: 0;
	margin-left: auto;
	margin-right: auto;
}

.phone-scrape .ps-buttons .btn-scrape {
	background: #f5f7fa
}

.phone-scrape .ps-buttons .btn-scrape:hover {
	background: #E1E4EA
}

.scraper-demo {
	display: flex;
	min-height: 85px;
	align-items: center;
	justify-content: center;
	gap: 12px;
	background: #f5f7fa;
	margin-top: 25px;
	padding: 10px 12px;
	border-radius: 15px;
	border: 1px solid #00000008;
	overflow: hidden;
	position: relative;
}

.scraper-demo .area {
	display: flex;
	align-items: center;
	flex-direction: column;
	gap: 15px;
}

.scraper-demo .avatar {
	max-width: 100px;
	width: 100px;
	height: 100px;
}

.scraper-demo .avatar img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 100px;
}

.scraper-demo .detail {
	display: flex;
	align-items: center;
}

.scraper-demo .detail .item {
	color: #5f728a;
	padding-right: 15px;
	margin-right: 15px;
	border-right: 1px solid #00000010;
	line-height: 20px;
	text-align: center;
}

.scraper-demo .detail .item>span {
	font-weight: bold;
	display: flex;
	align-items: center;
	gap: 3px;
	justify-content: center;
}

.scraper-demo .detail .item:last-child {
	margin: 0;
	border: 0;
	border: none;
	padding: 0;
}

.scraper-demo .name {
	display: flex;
	align-items: center;
	gap: 7px;
	font-size: 15px;
	font-weight: 600;
	color: #000;
}

.brand_tag {
	background-image: linear-gradient(to left, #E90EEA, #850AFE, #56ABFA);
	border-radius: 1.5rem;
	justify-content: center;
	align-items: center;
	min-width: 7rem;
	padding: 10px 15px;
	font-weight: 500;
	display: flex;
	position: relative;
	color: #fff;
	white-space: nowrap
}

.brand_tag.is-2 {
	min-width: 10.1875rem
}

.brand_tag.is-3 {
	min-width: 7.3125rem
}

.icon_star-brand {
	justify-content: center;
	align-items: center;
	width: 1.75rem;
	height: 1.75rem;
	display: flex;
	position: absolute;
	inset: -10% auto auto -1.5%
}

.icon_star-brand.is-v2 {
	width: 1.875rem;
	height: 1.875rem;
	inset: auto -1% -15% auto
}

.brand_tag-border {
	background-image: linear-gradient(to left, #E90EEA, #850AFE, #56ABFA);
	border-radius: 1.5rem;
	justify-content: center;
	align-items: center;
	padding: 1px;
	font-weight: 500;
	display: flex;
	position: relative;
}

.home-badges {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	position: absolute;
	bottom: -130px;
	left: 0;
	right: 0;
	margin-left: 0;
	margin-right: 0;
}

.home-badges img {
	width: 75px;
}

.home-badges .home-badges-bcorp {
	width: 50px;
}

.lazyload,
.lazyloading {
	opacity: 0;
}

.loading,
.lazyload,
.lazyloaded,
.image {
	opacity: 1;
	transition: all 700ms;
}

#what-we-do .container {
	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 {
    background: linear-gradient(to left, #E90EEA, #850AFE, #56ABFA);
    background: -webkit-linear-gradient(to left, #E90EEA, #850AFE, #56ABFA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
	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: 1000;
}

.popup.hidden {
    display: none;
}

.popup-content {
    position: relative;
    width: 100%;
    max-width: 400px; 
    height: auto;
    text-align: center;
}

.close {
    position: absolute;
    top: 30px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
    color: #fff;
    z-index: 100;
    background: #e90eea;
    width: 32px;
    height: 32px;
    line-height: 30px;
    border-radius: 100%;
}

.video-container {
    position: relative;
    width: 100%;
    padding-top: 177.78%; 
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.suggest-title {
    font-family: 'Krona One';
    font-size: 28px;
    background: linear-gradient(to right, #850AFE, #fd4ba4, #fd4ba4);
    background: -webkit-linear-gradient(to right, #850AFE, #fd4ba4, #fd4ba4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 15px auto;
    text-align: center
}

.suggest-title span {
    -webkit-text-fill-color: white;
    -webkit-background-clip: unset;
    color: #fff;
    background: #fd4ba4;
    padding: 0 15px 0 5px;
    border-radius: 5px;
}

.suggest-title .suggest-star {
    position: relative;
    margin: -4px -21px auto -21px;
    width: 45px;
}

.suggest-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 50px;
}

.suggest-box .suggest-item {
    display: flex;
    align-items: center;
    flex-direction: column;
    background: #e3e3e3;
    padding: 20px;
    border-radius: 10px;
    cursor: pointer;
}

.suggest-box .suggest-item img {
    max-width: 75px;
}

.suggest-box .suggest-plus img {
    width: 65px;
}

.suggest-box .suggest-item span {
    font-family: 'Krona One';
    font-size: 24px;
    text-align: center; 
    color: #030303;
    background: #fff;
    border-radius: 10px;
    padding: 10px;
    margin-top: 15px;
    max-width: 200px;
}

#main-boxes {
    margin-top: 50px;
}

#main-boxes .boxes-wrapper {
    padding: 15px;
    border-radius: 25px;
    border: 1px solid #E1E4EA;
    position: relative;
    overflow: hidden;
    color: #000;
    font-size: 16px;
    overflow: hidden;
}

#main-boxes .boxes-wrapper::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 80%;
    width: 60%;
    height: 50%;
    transform: translate(100%, 60%) scale(1);
    transition: .14s ease;
    background: rgb(40, 203, 105);
    background: linear-gradient(120deg, #ee9eef70 0%, #ee9eef70 100%);
    border-radius: 100px;
    filter: blur(200px);
    z-index: -1;
}

.features-box {
    display: grid;
    gap: 15px;
}

@media (min-width: 992px) {
    .features-box {
        grid-template-columns: repeat(3, 1fr);
    }
}

.features-box--item {
    display: flex;
    flex-direction: column;
    position: relative;
    cursor: pointer;
    border-radius: 25px;
    background: #fff;
    gap: 10px;
    padding: 20px 30px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 5px 15px rgba(85, 85, 85, 0.07);
}

.features-box--item .fbi-bg i {
    position: absolute;
    top: -60px;
    right: -40px;
    font-size: 175px;
    opacity: 0.5;
    transform: rotate(-15deg);
    z-index: 1;
    color: rgb(252 235 252);
    background-clip: text;
}

.features-box--title {
    position: relative;
    color: #7d52f4;
    font-size: 19px;
    font-style: normal;
    font-weight: 500;
    line-height: 25px;
    letter-spacing: 0px;
    margin: 0px;
    z-index: 2;
}

.features-box--text {
    position: relative;
    color: #000;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
    margin: 0px;
    z-index: 2;
}

.hr-video {
    position: relative;
    opacity: .6;
    cursor: pointer;
}

.hr-video:hover {
    opacity: 1
}

.hr-video .hr-thumb {
    border-radius: 10px;
    transition: 250ms all;
}

.hr-video .hr-play {
    position: absolute;
    left: 38px;
    top: 14px;
    width: 32px;
    height: 32px;
    line-height: 32px;
    background: #fff;
    color: #7d52f4;
    text-align: center;
    border-radius: 100%
}

#popupBig .popup-content {
    position: relative;
    width: 560px;
    max-width: 100%;
    height: 315px;
    text-align: center;
}

#popupBig .video-container {
    position: relative;
    width: 100%;
    padding-top: 5px;
    height: 315px;
}

#popupBig .close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
    color: #fff;
    z-index: 100;
    background: #e90eea;
    width: 32px;
    height: 32px;
    line-height: 30px;
    border-radius: 100%;
}

#videos {
    margin: 75px 0;
}

#videos .video-header h2 {    
    font-size: 36px;
    line-height: 56px;
    font-weight: 700;
    color: #000;
    text-align: center;
    position: relative;
    z-index: 5;
    
}

#videos .video-header h2 span {    
    background: linear-gradient(to left, #3318a5, #925ed4);
    background: -webkit-linear-gradient(to left, #3318a5, #925ed4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    
}

#videos .video-item {
    margin-top: 75px;
}    

#videos .video-content {
    position: relative;
    z-index: 3;
}   

#videos .video-content::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 120%;
    transform: translate(-50%, -50%) scale(1);
    transition: .14sease;
    background-color: #fecbff;
    border-radius: 100px;
    filter: blur(100px);
    z-index: -1;
}

#videos .video-item .play-btn {
    background: rgb(255, 255, 255, 1);
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    width: 60px;
    height: 60px;
    border-radius: 100%;
    font-size: 28px;
    line-height: 60px;
    color: #6642cc;
    cursor: pointer;
}

#videos .video-item .play-btn::before,
#videos .video-item .play-btn::after {
    content: "";
    position: absolute;
    left: -15px;
    top: -15px;
    right: -15px;
    bottom: -15px;
    border-radius: 100%;
    background: rgb(255, 255, 255, 1);
    opacity: 0.2;
    animation: ripple 1.75s infinite ease-out;
}

#videos .video-item .play-btn::after {
    left: -30px;
    top: -30px;
    right: -30px;
    bottom: -30px;
    opacity: 0.1;
    animation-delay: 2s;
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0.2;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}


input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
}

.nav-head {
	height: 100px;
}

.nav-head.back {
	background: #fff;
}


.nav-content {
	display: flex;
	align-items: center;
	width: 100%;
}

.NavList {
	display: flex;
	align-items: center;
	margin: 0;
	padding: 0;
}

.NavListArea {
	margin-left: auto;
	display: flex;
	align-items: center;
}

.logo img {
	height: 45px;
	width: auto;
}

.logo img.dark {
	display: none;
}

ul.NavList li {
	list-style: none;
	padding: 0 5px;
}

.NavList li a {
	color: rgba(var(--menutxtcl));
	font-weight: var(--menutxtweight);
	padding: 12px 8px;
	font-size: 17px;
}

li.navitem.nav-drop>a {
	position: relative;
	padding-right: 20px;
}

li.navitem.nav-drop>a::after {
	font-family: "Font Awesome 5 Pro";
	content: "\f107";
	position: absolute;
	font-size: 13px;
	right: 3px;
	top: 50%;
	transform: translateY(-50%);
	transition: 0.2s;
}

li.navitem.nav-drop>a.show::after {
	transform: translateY(-50%) rotate(0deg);
}

.nav-drop:hover .navlink {
	color: #68718c;	
	cursor: pointer;
}

.nav-drop .drop-menu {
	visibility: hidden;
	opacity: 0;
	position: absolute;
	margin-top: 0px;
	padding: 5px 0;
	background: #fff;
	border-radius: 5px;
	transition: 0.2s;
	box-shadow: 0 5px 30px rgba(85, 85, 85, 0.1);
	z-index: 99;
	min-width: 200px;
}

.nav-drop .drop-menu::before {
	content: "";
	position: absolute;
	top: -30px;
	width: 100%;
	height: 31px;
}

.nav-drop:hover .drop-menu {
	visibility: visible;
	opacity: 1;
	margin-top: 10px;
}

.nav-drop .drop-menu li a {
	padding: 8px 10px;
	font-size: 15px;
	color: rgba(var(--menutxtcl));
	width: 100%;
	display: block;
	font-weight: 500;
}

.nav-drop .drop-menu li {
	transition: 0.2s;
	border-bottom: 1px solid var(--bg);
}

.nav-drop .drop-menu li:last-child {
	border: none;
}

.nav-drop .drop-menu li:hover {
	background: rgb(255, 255, 255, 0.03);
}

.grid-container {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
	align-items: start;
}

.drop-menu {
	position: absolute;
	left: 0;
	top: calc(100% - 20px);
	right: 0;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	background: var(--white);
	transition: 0.2s ease all;
	border-radius: 10px
}

.navitem:hover .drop-menu,
.showdrop .drop-menu {
	top: calc(100% + -12px);
	opacity: 1;
	visibility: visible;
	pointer-events: all;
	padding: 10px;
}

.showmenu .showdrop .drop-menu {
	top: -4px !important;
	padding: 7px !important;
	display: block !important;
	background: none;
}

.showmenu .showdrop .drop-menu::before {
	display: none !important;
}

.navitem:hover .drop-menu .item-menu,
.showdrop .drop-menu .item-menu {
	display: inline;
}

.showdrop .drop-menu .item-menu {
	padding: 0 !important;
	margin: 0 !important;
	display: block;
}

.navitem:hover .drop-menu .item-menu .nav-sub-heading,
.showdrop .drop-menu .item-menu .nav-sub-heading {
	position: relative;
	display: flex;
	align-items: center;
	gap: 7px;
	padding-bottom: 12px;
	margin-bottom: 15px;
	max-width: 217px;
	color: var(--c);
	font-weight: 600;
}

.showdrop .drop-menu .item-menu .nav-sub-heading {
	font-size: 18px !important;
	max-width: 100% !important;
	padding-bottom: 7px !important;
	margin-bottom: 1px !important;
}

.navitem:hover .drop-menu .item-menu .nav-sub-heading::after,
.showdrop .drop-menu .item-menu .nav-sub-heading::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	height: 1px;
	width: 200px;
	background: linear-gradient(to right, #a0a8c1, #a0a8c100);
}

.showmenu .fixed-bottom-menu {
	display: none !important;
}

.navitem:hover .drop-menu .item-menu ul.item-menu-sub,
.showdrop .drop-menu .item-menu ul.item-menu-sub {
	padding: 1px;
}

.navitem .drop-menu .item-menu { 
	padding-left: 0;
}

.navitem:hover .drop-menu .item-menu li.item-menu-sub,
.showdrop .drop-menu .item-menu li.item-menu-sub {
	margin-bottom: 5px;
	background: #eaecf1;
	border-radius: 5px;
}

.navitem:hover .drop-menu .item-menu li.item-menu-sub:hover,
.showdrop .drop-menu .item-menu li.item-menu-sub:hover {
	background: #e1e4ea;
}

.navitem:hover .drop-menu .item-menu li.item-menu-sub a.item-menu-sub-link,
.showdrop .drop-menu .item-menu li.item-menu-sub a.item-menu-sub-link {
	display: flex;
	align-items: center;
	padding: 5px;
	gap: 8px;
}

.navitem:hover .drop-menu .item-menu li.item-menu-sub a.item-menu-sub-link .icon,
.showdrop .drop-menu .item-menu li.item-menu-sub a.item-menu-sub-link .icon {
	width: 34px;
	height: 34px;
	min-width: 34px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--c, var(--main-color));
	border-radius: 2px;
	color: #fff;
}

.navitem:hover .drop-menu .item-menu li.item-menu-sub:hover .icon,
.showdrop .drop-menu .item-menu li.item-menu-sub:hover .icon {
	background: #fff !important;
	color: var(--c) !important;
}

.navitem:hover .drop-menu .item-menu li.item-menu-sub a.item-menu-sub-link .text,
.showdrop .drop-menu .item-menu li.item-menu-sub a.item-menu-sub-link .text {
	line-height: normal;
	color: var(--soft-text);
	font-size: 14px;
	text-align: left;
}

.contact-info-list {
	display: grid;
	gap: 12px;
	align-items: center;
	padding: 10px 26px;
}

@media screen and (min-width: 1100px) {
	.contact-info-list {
		padding: 10px 0;
	}
}

.footer-menu .contact-info-list {
	padding: 10px 0;
}

.contact-info-item {
	display: grid;
	grid-template-columns: auto 9fr;
	gap: 7px;
	align-items: center;
	padding: 3px 0;
	color: #fff
}

.contact-info-item .icon {
	width: 38px;
	height: 38px;
	font-size: 23px;
	background: #fff;
	border-radius: 8px;
	color: #7d52f4;
	padding: 8px;
	display: flex;
	text-align: center;
	justify-content: center;
}

.contact-info-item .content .title {
	font-weight: 600;
	padding: 5px 0;
	line-height: 11px;
	font-size: 16px;
}

.contact-info-item .content .text {
	font-size: 14px;
}

.container.footer-contact-grid {
	display: flow;
}

.singlePostArea #trusted {
    margin: 50px 0;
}

.dropList {
	position: relative;
}

.dropListTable {
	display: none;
	border-top: 0;
	background: #fbfbfb;
	position: absolute;
	width: 100%;
	z-index: 11;
	border-radius: 0 0 5px 5px;
	border-top: 0;
	overflow: hidden;
	box-shadow: 0 10px 15px #5656752e;
	max-height: 320px;
	overflow: auto;
}

.dropListTable::-webkit-scrollbar-track {
	background-color: #f5f5f5;
}

.dropListTable::-webkit-scrollbar {
	width: 5px;
	background-color: #f5f5f5;
}

.dropListTable::-webkit-scrollbar-thumb {
	background-color: #c5c5c5;
}

.dropListTable .item {
	position: relative;
	padding: 10px 15px;
	border-bottom: 1px solid #dfe0e1;
	font-size: 16px;
	color: #9699ad;
	cursor: pointer;
	transition: 0.3s;
	user-select: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.dropListTable .item.active {
	background: #dfe0e1;
}

.dropListTable .item .text {
	color: #9699ad;
}

.dropListTable .item .text span {
	color: #9699ad;
	display: block;
	margin-bottom: 2px;
}

.dropListTable .item.active .icon {
	opacity: 1;
}

.dropListTable .item:last-child {
	border: none;
}

.dropListTable .item span {
	display: block;
	font-size: 16px;
	font-weight: 500;
}

.dropListTable .item span span {
	font-weight: 400;
}

.dropListTable .item:hover {
	background: #dfe0e1;
}

.dropListTitle {
	position: relative;
	padding: 15px;
	border: 1px solid #dfe0e1;
	background-color: #ffffff;
	border-radius: 8px;
	font-size: 17px;
	font-weight: 500;
	color: #9699ad;
	cursor: pointer;
	user-select: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	transition: 0.2s;
	transition-delay: 0.2s;
	height: 58px;
}

.dropListTitle.border-0 {
	border: 0 !important;
}

.dropListTitle .icon {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	font-size: 29px;
	color: #9699ad;
}

.dropList .dropListTitle .icon i::before {
	content: "\e93c";
	font-family: "ns";
}

.dropList.show .dropListTitle {
	background: #fff;
	transition: 0s;
	border-radius: 8px 8px 0 0;
}

.dropListTable .item .icon {
	display: flex;
	font-size: 22px;
	opacity: 0.2;
}

.myLicencesArea {
	position: relative;
}

.dropListTitle::after {
    font-family: "Font Awesome 5 Pro";
    content: "\f107";
	position: absolute;
	right: 15px;
	font-size: 16px;
	display: flex;
	transform: translateY(1px);
	transition: 0.2s;
}

.dropListTitle.nodrop::after {
	content: "";
}

.dropList.show .dropListTitle::after {
	transform: rotateX(180deg);
}

.dropListTitle label.title {
	position: absolute;
	top: 0px;
	left: 0;
	height: 100%;
	padding: 1rem 0.9rem;
	font-weight: 500;
	pointer-events: none;
	border: 1px solid transparent;
	-webkit-transform-origin: 0 0;
	transform-origin: 0 0;
	-webkit-transition: opacity 0.1s ease-in-out, -webkit-transform 0.1s ease-in-out;
	transition: opacity 0.1s ease-in-out, -webkit-transform 0.1s ease-in-out;
	transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
	transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out, -webkit-transform 0.1s ease-in-out;
}

.dropList .dropListTitle label.title {
	opacity: 0.6;
	-webkit-transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
	transform: scale(0.8) translateY(-0.3rem) translateX(0.2rem);
}

.dropList .dropListTitle .dlabName {
	padding-top: 1.625rem;
	padding-bottom: 0.625rem;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	height: 70px;
	line-height: 34px;
	max-width: 90%;
}

.anibut {
	position: relative;
	overflow: hidden;
}

.anibut::after {
	content: "";
	position: absolute;
	width: 100px;
	height: 100px;
	border-radius: 100%;
	left: calc(100% - 35px);
	top: -5px;
	transition: 0.4s cubic-bezier(0, 0, 0.34, 0.81);
	background: #ffffff10;
}

.anibut:hover:after {
	left: calc(100% - 75px);
}

@media screen and (min-width: 1401px) {
	.contact-info-list.contact-footer {
		background: #f1f1f8;
		position: relative;
		height: 243px;
		border-bottom: 2px solid #979ab0;
	}
}

@media screen and (max-width: 1400px) and (min-width: 768px) {
	.contact-info-list.contact-footer {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (max-width: 768px) {
	.container.footer-contact-grid {
		text-align: left;
	}
}

.contact-info-list.contact-footer {
	min-width: 320px;
}


@media (max-width: 991.98px) {
    header .navbar {
        position: inherit;
        height: auto;
        padding: 0;
    }
    #home-header .home-right .openPopupB {
        top: 140px;
        left: 30px;
        width: 140px;
        height: 90px;
    }
    #videos {
        margin: 0;
    }
    #videos .video-item {
        margin-top: 25px;
    }
    #videos .video-header h2 {
        font-size: 24px;
        line-height: 36px;
    }
    .suggest-box {
        flex-direction: column;
    }
    .swiper-ugc {
    	overflow: hidden;
    }
	.notification--header .text {
		font-size: 14px;
	}

	.notification--header .text .code {
		padding: 2px 5px;
		font-size: 14px;
		top: 0;
	}

	.home-badges {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 25px;
		position: relative;
		bottom: 0;
		left: 0;
		right: 0;
		margin-left: 0;
		margin-right: 0;
	}

	.home-badges img {
		width: 55px !important;
		margin-left: unset !important;
	}

	.home-badges .home-badges-bcorp {
		width: 40px !important
	}

	.phone-scrape .scraper-product .avatar {
		max-width: 75px;
		width: 75px;
		height: 75px;
	}

	.scraper-demo .avatar {
		max-width: 75px;
		width: 75px;
		height: 75px;
	}

	.phone-scrape .ps-buttons {
		bottom: -15px;
	}

	.navitem:hover .drop-menu,
	.showdrop .drop-menu {
		top: calc(100% + -130px);
	}

	.NavList {
		flex-direction: column;
		align-items: flex-start;        
		width: 100%;
	}
	
    ul.NavList li {
        width: 100%;
        padding: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
	
    ul.NavList li:last-child {
        border: none
    }

	.nav-drop .drop-menu {
		grid-template-columns: repeat(1, 1fr);
		gap: 5px;
	}

	.nav-head {
		height: auto;
	}
	
	#what-we-do .wwd-title .wwd-star {
		margin: -5px -20px 0 0;
		width: 32px;
	}

	#what-we-do .wwd-title .wwd-smile {
		margin: -5px 0 0 -25px;
		width: 32px;
	}

	.platform-filter {
		grid-template-columns: repeat(4, 1fr);
		gap: 5px;
		margin-bottom: 25px;
	}

	.platform-filter .filter-btn span {
		font-size: 13px;
		white-space: nowrap;
	}

	.platform-filter .filter-btn i {
		font-size: 18px;
	}

	.platform-filter .filter-btn {
		padding: 5px;
		gap: 0
	}

	.platform-wrapper {
		grid-template-columns: repeat(1, 1fr);
		gap: 15px;
	}

	.free-tool-header .ft-icon img {
		width: 100px
	}

	.free-tool-header .ft-icon i {
		left: 36px;
		top: 36px;
		font-size: 28px;
	}

	.free-tool-wrapper {
		grid-template-columns: repeat(1, 1fr);
	}

	.free-tool-wrapper .ft-item {
		font-size: 15px;
		padding: 15px 10px;
	}

	.free-tool-wrapper .ft-item img {
		width: 35px;
	}

	#login-wrapper {
		padding: 25px 0 125px 0
	}

	.login-head {
		margin-bottom: 25px;
	}

	.login-head h1 {
		font-size: 24px;
	}

	.intall.account .conts .detabox {
		margin-left: 0;
		margin-top: 0;
	}

	.intall.account .conts .icobox {
		display: none;
	}

	.intall.account .conts .detabox h1 {
		font-size: 18px;
		margin-bottom: 10px;
	}

	.dashboard-head {
		padding: 10px 20px;
	}

	.dashboard-head .dh-custom::after {
		bottom: -10px;
		width: 150px;
	}

	.dashboard-head h1 {
		font-size: 16px;
		margin-top: 0;
	}

	.dashboard-head p {
		display: none;
	}

	.dashboard-item-list .grid-item .text .amount {
		margin: auto;
	}

	.dashboard-item-list .grid-item {
		display: flex;
		flex-direction: column;
		position: relative;
		overflow: hidden;
	}

	.dashboard-item-list .grid-item .text .detail {
		margin: auto;
	}

	.dashboard-item-list .grid-item .icon {
		position: absolute;
		left: 0;
		top: 0;
		border-radius: 0 0 10px 0;
	}

	.product-image img {
		max-width: 175px;
	}

	.product-details h1 {
		font-size: 18px;
		margin-top: 15px;
	}

	.product-rates,
	.product-details .product-text {
		font-size: 14px;
	}

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

	.singlePostArea #trusted {
		margin: 0 0 50px 0 !important
	}

	.product-cleft {
		text-align: center;
		border: none;
	}

	.product-cleft h2 {
		font-size: 24px;
		text-align: center;
	}

	.product-cleft .count {
		display: flex;
		justify-content: center;
	}

	.rating-item .progress-bar {
		max-width: 200px;
	}

	.product-cleft h3 {
		text-align: center;
	}

	.review-wrapper .review-list h4 {
		font-size: 16px;
	}

	.review-wrapper .review-list p {
		font-size: 13px;
	}

	.content-box {
		border-left: none;
		padding-left: 0;
		margin-top: 25px;
		text-align: center;
	}

	.singlePostArea #trusted {
		margin-top: 25px;
	}

	.singlePostArea #signature {
		margin-top: 75px;
	}

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

	.os-left .our-arrow,
	.os-left .irish {
		display: none;
	}

	.os-left,
	.os2-right {
		text-align: center;
		margin-top: 20px;
	}

	.os-left h2 {
		font-size: 24px;
		margin-bottom: 20px;
	}

	.os-left .smile-1 {
		height: 30px;
	}

	.os-right {
		padding-left: 0;
	}

	.os2-right {
		padding-left: 0;
	}

	.os2-right h2 {
		font-size: 24px;
		margin-bottom: 20px;
	}

	.os2-right h2 .our-tick {
		top: -15px;
		left: 225px;
		height: 30px;
	}

	.singlePostArea .ft-bg {
		display: none;
	}

	.singlePostArea #home-blog {
		margin-top: 50px;
	}

	.free-tool-content .free-start-btn {
		margin-top: 0;
		margin-bottom: 15px;
	}

	.free-tool-header .ft-title h1 {
		font-size: 24px;
	}

	.free-tool-header .ft-text p {
		margin-bottom: 15px;
		font-size: 14px;
	}

	.blog-wrapper {
		margin-top: 15px;
		gap: 15px
	}

	.blog-wrapper h1 {
		font-size: 16px;
	}

	.blog-wrapper .blog-date {
		padding: 5px 10px;
		font-size: 12px;
	}

	.page-title {
		font-size: 32px;
	}

	.blog-list .blog-item {
		flex-direction: column;
	}

	.blog-list .blog-item .blog-left img {
		width: 100%;
	}

	.blog-list .blog-right {
		gap: 10px;
	}

	.blog-list .blog-right .blog-date {
		padding: 5px 10px;
		font-size: 12px;
	}

	.blog-list .blog-right .blog-title {
		font-size: 16px
	}

	.blog-list .blog-right .blog-more {
		font-size: 13px
	}

	.singlePostArea {
		padding: 25px 0;
	}

	.contact-left h1 {
		font-size: 32px;
	}

	.contact-info .ci-item {
		width: 100%;
	}

	.contact-left {
		text-align: center;
	}

	.contact-map {
		margin-top: 25px;
	}

	#home-header {
		padding: 25px 0;
		overflow: hidden;
	}

	#home-header .home-left {
		justify-content: center;
		text-align: center;
		margin: auto;
		gap: 15px;
	}

	#home-header .home-left .spotlight {
		margin: auto
	}

	#home-header .home-left .title {
		font-size: 32px;
		line-height: 42px
	}

	#home-header .home-left .title img {
		height: 42px;
		width: 42px;
	}

	#home-header .fastOrder {
		flex-direction: column;
		width: 100%;
		margin-top: 0;
	}
	
	#home-header .home-left .spotlight-2 {
	    margin: auto;
	}
	
    #home-header .home-left .text,
    #home-header .home-left .alt-text p {
        font-size: 13px;
    }

	#home-header .fastOrder .fastitems {
		flex-direction: column;
		width: 100%;
		padding-left: 0
	}

	#home-header .fastOrder .fastselect:first-child {
		min-width: auto;
		padding-left: 25px
	}

	#home-header .fastOrder .fastselect {
		border-bottom: 1px solid #e5e8ec;
		width: 100%;
		text-align: center;
		padding-bottom: 5px;
		margin-bottom: 5px
	}

	#home-header .fastOrder .fastselect:last-child {
		border-bottom: none
	}

	#home-header .fastOrder .fastselect::after {
		display: none;
	}

	#home-header .fastOrder .fastAction {
		width: 100%
	}

	#home-header .fastOrder .fastAction .btn {
		margin-top: 10px;
		width: 100%
	}

	#home-header .fastOrder .fastDrop {
		width: 100%;
		z-index: 1
	}

	#home-header .fastOrder .fastselect:first-child .fastDrop {
		left: 0;
		right: 0;
		border: 1px solid #e5e8ec;
		top: 50px;
		width: 100%
	}

	#home-header .fastDrop::before {
		display: none
	}

	#home-header .head-users,
	#home-header .head-features {
		flex-direction: column;
		gap: 5px
	}

	#home-header .home-right {
		text-align: center
	}

	#home-header .home-right img {
		margin-left: auto;
		margin-top: 15px;
		width: 250px
	}

	#home-header .home-right .certified {
		width: 35px;
		bottom: -25px;
		right: 5px
	}

	#marks {
		overflow: hidden
	}

	.section-header h1,
	.section-header h2 {
		font-size: 24px
	}

	#trusted .trust-wrapper {
		grid-template-columns: repeat(2, 1fr);
	}

	#trusted .trust-wrapper .trust-item .trust-logo img {
		max-width: 125px
	}

	#trusted .trust-wrapper .trust-item span {
		font-size: 12px
	}

	#main-banner {
		margin-top: 50px
	}

	#main-banner .banner-wrapper {
		padding: 15px
	}

	#main-banner .banner-title {
		font-size: 28px;
		line-height: 36px;
		text-align: center
	}

	#main-banner .banner-spotlight {
		margin: 15px auto 0 auto
	}

	#main-banner .banner-count .bc-wrapper .bc-item h4 {
		font-size: 24px
	}

	#main-banner .banner-wrapper .btn-banner {
		width: 100%
	}

	#phone-section .phone-area .p-widget,
	#phone-section .phone-area .p-widget-1,
	#phone-section .phone-area .p-widget-2 {
		display: none;
	}

	#phone-section .ps-shapes .ps-shape-1,
	#phone-section .ps-shapes .ps-shape-2 {
		display: none
	}

	#marks .mark-sliders {
		padding-top: 50px;
	}

	#marks .mark-sliders .slider .swiper-slide span {
		font-size: 24px
	}

	#what-we-do {
		margin-top: 50px
	}

	#what-we-do .wwd-title {
		font-size: 20px;
		line-height: 36px
	}

	#what-we-do .tiktok-phone .tk-phone {
		max-width: 100%
	}

	#what-we-do .tiktok-phone .btn-secondary,
	#what-we-do .tiktok-phone .btn-border {
		position: relative;
		top: 50px;
		left: auto;
		right: auto
	}

	#what-we-do .tiktok-phone .hand {
		left: -10px;
		bottom: 200px;
	}

	#what-we-do .tiktok-phone .heart {
		right: -10px;
		top: 160px;
		width: 50px
	}

	#what-we-do .wwd-bg {
		display: none
	}

	#review .tabs {
		grid-template-columns: repeat(2, 1fr);
		margin: 25px 0;
		gap: 10px;
	}

	#review .comments-wrapper {
		flex-direction: column;
		gap: 15px
	}

	#review .comments-wrapper .comments-area {
		gap: 10px
	}

	#review .comments-wrapper .comments-img img {
		max-width: 100%
	}

	#review .comments-wrapper .comments-area h3 {
		font-size: 24px;
		text-align: center
	}

	#review .comments-wrapper .comments-area p,
	#review .comments-wrapper .comments-area small {
		text-align: center;
		margin-bottom: 0
	}

	#team {
		margin-top: 50px
	}

	#team .team-bg {
		display: none
	}

	#team .team-wrapper {
		grid-template-columns: repeat(1, 1fr);
		margin-top: 25px;
	}

	#signature .signature-wrapper {
		padding: 15px
	}

	#signature .signature-wrapper p {
		font-size: 14px;
		text-align: center
	}

	#signature .signature-wrapper .signature-title {
		font-size: 32px
	}

	#signature .sign-regards {
		display: flex;
		justify-content: center;
		margin: auto;
		max-width: 200px;
	}

	#banner-bottom {
		margin-top: 50px
	}

	#banner-bottom .banner-wrapper {
		padding: 60px 15px 15px 15px
	}

	#banner-bottom .banner-content {
		padding-left: 0
	}

	#banner-bottom .banner-shapes .bs-badge,
	#banner-bottom .banner-shapes .bs-star {
		display: none
	}

	#banner-bottom .banner-content p {
		font-size: 14px;
		text-align: center
	}

	#banner-bottom .banner-content .title {
		font-size: 28px;
		text-align: center;
		margin: 15px 0
	}

	#banner-bottom .banner-content small {
		display: flex;
		justify-content: center;
		font-size: 14px
	}

	#banner-bottom .banner-shapes .bs-world {
		max-width: 100px;
		left: -5px;
		top: -50px
	}

	#home-blog .hb-wrapper {
		flex-direction: column;
		gap: 25px
	}

	#home-blog .hb-wrapper .hb-image img {
		max-width: 100%
	}

	#home-blog .hb-wrapper .hb-content h2 {
		font-size: 24px;
		text-align: center
	}

	#home-blog .hb-wrapper .hb-content p {
		font-size: 14px;
		text-align: center
	}

	#home-blog .hb-wrapper .hb-buttons {
		display: flex;
		align-items: center;
		gap: 15px
	}

	#home-blog .hb-wrapper .hb-buttons .btn {
		width: 100%
	}

	#home-blog .hb-bg {
		display: none
	}

	footer {
		margin-top: 75px
	}

	#footer .footer-wrapper {
		flex-direction: column;
		gap: 0;
		padding: 25px 0
	}

	#footer .footer-left {
		justify-content: center;
		margin: auto;
		gap: 25px;
		text-align: center;
	}

	#footer .footer-left .footer-logo {
		margin: auto;
	}

	#footer .footer-social {
		margin: 0 auto 30px auto
	}

	#footer .footer-right {
		flex-direction: column;
		margin-top: 25px;
		gap: 25px
	}

	#footer .footer-right .footer-links {
		text-align: center
	}

	#footer .footer-right .footer-links span {
		margin-bottom: 15px
	}

	.btn-search span {
		display: none;
	}

	.ns-modal-content {
		padding: 15px;
		min-height: 280px;
		width: 100%;
		max-width: 650px;
	}

	#header-top .head-search span {
		display: none;
	}

	.phone-arrow {
		gap: 10px;
		right: 10px;
		top: -50px;
	}

	.phone-arrow .arrow {
		transform: rotate(24deg);
	}

	.phone-arrow span {
		font-size: 14px;
	}

	#header-top .head-search {
		background: transparent;
		padding: 0;
		border-radius: unset
	}

	.head-images {
		margin: 15px auto;
		justify-content: center
	}

	#home-header .home-right img {
		width: 300px;
		height: auto;
	}

	#home-header .home-right .head-images .himg-2-text {
		top: 35px;
		left: 7px
	}

	#home-header .home-right .head-images .himg-1-text span,
	#home-header .home-right .head-images .himg-2-text span {
		font-size: 32px;
		line-height: 42px
	}

	#home-header .home-right .head-images .himg-1-text small,
	#home-header .home-right .head-images .himg-2-text small {
		font-size: 14px
	}

	#home-header .home-right .head-images .himg-1-text {
		left: 15px;
	}

	#main-banner .banner-wrapper .bw-logo {
		display: none;
	}
    #home-header:after {
        height: 600px;
    }	
}

@-webkit-keyframes tada {
	0% {
		-webkit-transform: rotate(0deg) scaleX(1) scaleY(1)
	}

	10% {
		-webkit-transform: rotate(-3deg) scaleX(.8) scaleY(.8)
	}

	20% {
		-webkit-transform: rotate(-3deg) scaleX(.8) scaleY(.8)
	}

	30% {
		-webkit-transform: rotate(3deg) scaleX(1.2) scaleY(1.2)
	}

	40% {
		-webkit-transform: rotate(-3deg) scaleX(1.2) scaleY(1.2)
	}

	50% {
		-webkit-transform: rotate(3deg) scaleX(1.2) scaleY(1.2)
	}

	60% {
		-webkit-transform: rotate(-3deg) scaleX(1.2) scaleY(1.2)
	}

	70% {
		-webkit-transform: rotate(3deg) scaleX(1.2) scaleY(1.2)
	}

	80% {
		-webkit-transform: rotate(-3deg) scaleX(1.2) scaleY(1.2)
	}

	90% {
		-webkit-transform: rotate(3deg) scaleX(1.2) scaleY(1.2)
	}

	100% {
		-webkit-transform: rotate(0deg) scaleX(1.2) scaleY(1.2)
	}
}

@-moz-keyframes tada {
	0% {
		-moz-transform: rotate(0deg) scaleX(1) scaleY(1)
	}

	10% {
		-moz-transform: rotate(-3deg) scaleX(.8) scaleY(.8)
	}

	20% {
		-moz-transform: rotate(-3deg) scaleX(.8) scaleY(.8)
	}

	30% {
		-moz-transform: rotate(3deg) scaleX(1.2) scaleY(1.2)
	}

	40% {
		-moz-transform: rotate(-3deg) scaleX(1.2) scaleY(1.2)
	}

	50% {
		-moz-transform: rotate(3deg) scaleX(1.2) scaleY(1.2)
	}

	60% {
		-moz-transform: rotate(-3deg) scaleX(1.2) scaleY(1.2)
	}

	70% {
		-moz-transform: rotate(3deg) scaleX(1.2) scaleY(1.2)
	}

	80% {
		-moz-transform: rotate(-3deg) scaleX(1.2) scaleY(1.2)
	}

	90% {
		-moz-transform: rotate(3deg) scaleX(1.2) scaleY(1.2)
	}

	100% {
		-moz-transform: rotate(0deg) scaleX(1.2) scaleY(1.2)
	}
}

@-o-keyframes tada {
	0% {
		-o-transform: rotate(0deg) scaleX(1) scaleY(1)
	}

	10% {
		-o-transform: rotate(-3deg) scaleX(.8) scaleY(.8)
	}

	20% {
		-o-transform: rotate(-3deg) scaleX(.8) scaleY(.8)
	}

	30% {
		-o-transform: rotate(3deg) scaleX(1.2) scaleY(1.2)
	}

	40% {
		-o-transform: rotate(-3deg) scaleX(1.2) scaleY(1.2)
	}

	50% {
		-o-transform: rotate(3deg) scaleX(1.2) scaleY(1.2)
	}

	60% {
		-o-transform: rotate(-3deg) scaleX(1.2) scaleY(1.2)
	}

	70% {
		-o-transform: rotate(3deg) scaleX(1.2) scaleY(1.2)
	}

	80% {
		-o-transform: rotate(-3deg) scaleX(1.2) scaleY(1.2)
	}

	90% {
		-o-transform: rotate(3deg) scaleX(1.2) scaleY(1.2)
	}

	100% {
		-o-transform: rotate(0deg) scaleX(1.2) scaleY(1.2)
	}
}

@keyframes tada {
	0% {
		transform: rotate(0deg) scaleX(1) scaleY(1)
	}

	10% {
		transform: rotate(-3deg) scaleX(.8) scaleY(.8)
	}

	20% {
		transform: rotate(-3deg) scaleX(.8) scaleY(.8)
	}

	30% {
		transform: rotate(3deg) scaleX(1.2) scaleY(1.2)
	}

	40% {
		transform: rotate(-3deg) scaleX(1.2) scaleY(1.2)
	}

	50% {
		transform: rotate(3deg) scaleX(1.2) scaleY(1.2)
	}

	60% {
		transform: rotate(-3deg) scaleX(1.2) scaleY(1.2)
	}

	70% {
		transform: rotate(3deg) scaleX(1.2) scaleY(1.2)
	}

	80% {
		transform: rotate(-3deg) scaleX(1.2) scaleY(1.2)
	}

	90% {
		transform: rotate(3deg) scaleX(1.2) scaleY(1.2)
	}

	100% {
		transform: rotate(0deg) scaleX(1.2) scaleY(1.2)
	}
}

@-webkit-keyframes heartBeat {
	0% {
		-webkit-transform: scale(1)
	}

	25% {
		-webkit-transform: scale(1.1)
	}

	40% {
		-webkit-transform: scale(1)
	}

	60% {
		-webkit-transform: scale(1.1)
	}

	100% {
		-webkit-transform: scale(1)
	}
}

@-moz-keyframes heartBeat {
	0% {
		-moz-transform: scale(1)
	}

	25% {
		-moz-transform: scale(1.1)
	}

	40% {
		-moz-transform: scale(1)
	}

	60% {
		-moz-transform: scale(1.1)
	}

	100% {
		-moz-transform: scale(1)
	}
}

@-o-keyframes heartBeat {
	0% {
		-o-transform: scale(1)
	}

	25% {
		-o-transform: scale(1.1)
	}

	40% {
		-o-transform: scale(1)
	}

	60% {
		-o-transform: scale(1.1)
	}

	100% {
		-o-transform: scale(1)
	}
}

@keyframes heartBeat {
	0% {
		transform: scale(1)
	}

	25% {
		transform: scale(1.1)
	}

	40% {
		transform: scale(1)
	}

	60% {
		transform: scale(1.1)
	}

	100% {
		transform: scale(1)
	}
}

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

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

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

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

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

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

.hb-content li {
    list-style-type: unset;
}

[data-modal=member] {
	display: none;
	position: fixed;
	z-index: 5999;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	background-color: #f5f7fa;
	overflow-y: auto;
}

[data-modal=member].active {
	display: block;
}

[data-modal=member] .member-container {
	min-height: 100dvh;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	align-items: center
}

[data-modal=member] .member-content .container {
	max-width: 600px;
}


[data-modal=member] .member-goback {
	position: absolute;
	top: 20px;
	left: 30px;
	z-index: 15;
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--sp-text);
	font-size: 14px;
	font-weight: 700;
	line-height: 24px;
	letter-spacing: -0.28px;
	text-decoration: none;
	cursor: pointer;
	transition: .14s ease all;
}

[data-modal=member] .member-content {
	padding: 80px 0 40px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

[data-modal=member] .member-logo {
	margin-bottom: 15px;
}
 
[data-modal=member] .member-title {
	color: var(--text-color);
	font-size: 16px;
	font-weight: 500;
	line-height: 32px;
	margin-bottom: 15px;
}
 
[data-modal=member] .member-text {
	color: #c6c6c6;
	font-size: 15px;
	font-weight: 400;
	line-height: 24px;
	letter-spacing: -0.32px;
	margin-bottom: 0;
}

[data-modal=member] .member-form {
	padding-top: 40px;
}

[data-modal=member] .form-control-input {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border: 1px solid #E1E4EA;
	background: var(--sp-second-bg);
	color: var(--text-color);
	border-radius: 10px
}

[data-modal=member] .form-control-input input {
	border-radius: 10px 0 0 10px;
  	border: none
}

[data-modal=member] .form-control-switch {
	height: 53px;
	flex: 0 0 53px;
	border-radius: 0 10px 10px 0;
	padding-right: 8px;
	border: none;
	border-left: 1px solid rgba(255, 255, 255, .05);
	background: rgba(0, 0, 0, 0);
	color: var(--text-color);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: .2s ease;
}

[data-modal=member] .form-control-switch:hover {
	background: rgb(63, 63, 63, 1)
}

[data-modal=member] .forgot-password {
	font-size: 14px
}

[data-modal=member] .form-control-remember {
	display: flex;
	align-items: center;
	justify-content: space-between
}

[data-modal=member] .checkbox {
	display: flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
}

[data-modal=member] .checkbox label {
	margin-bottom: 0;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
}

[data-modal=member] .checkbox input {
	display: none;
}

[data-modal=member] .checkbox-icon {
	content: "";
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	border-radius: 5px;
	border: 2px solid #E1E4EA;
	background-color: #E1E4EA;
	box-shadow: none;
	vertical-align: middle;
	cursor: pointer;
	position: relative;
	overflow: hidden;
}

[data-modal=member] .checkbox-icon::before {
	content: "";
	position: absolute;
	width: 200%;
	height: 200%;
	border-radius: 50%;
	bottom: 50%;
	left: 50%;
	transform: translate(-50%, 140%);
	background-color: #d1d5dd;
  	border-color: #d1d5dd;
	transition: all .2s ease-in-out;
}

[data-modal=member] .checkbox-icon::after {
	content: "";
	background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 24 24%27%3E%3Cpath d=%27M10.0007 15.1709L19.1931 5.97852L20.6073 7.39273L10.0007 17.9993L3.63672 11.6354L5.05093 10.2212L10.0007 15.1709Z%27 fill=%27rgba%280,0,0,1%29%27%3E%3C/path%3E%3C/svg%3E");
	transform: scale(0);
	width: 15px;
	height: 15px;
	background-size: 100% 100%;
	background-repeat: no-repeat;
	background-position: center;
	transition: .3s ease;
	transition-delay: .1s;
}

[data-modal=member] .checkbox-text {
	color: var(--text-color);
	font-size: 14px
}

[data-modal=member] .checkbox-icon~.checkbox-text  {
	margin-left: 5px;
}

[data-modal=member] .checkbox input:checked~.checkbox-icon {
	border-color: #E1E4EA
}

[data-modal=member] .checkbox input:checked~.checkbox-icon::before {
	transform: translate(-50%, 50%)
}

[data-modal=member] .checkbox input:checked~.checkbox-icon::after {
	transform: scale(1)
}

[data-modal=member] .member-visual {
	position: relative;
	border-left: 1px solid #E1E4EA;
	padding: 50px;
	overflow: hidden;
}
 

[data-modal=member] .member-visual .who-alt-text {
	max-width: 600px;
	margin-top: 0
}

@media (max-width: 991.98px) {
	[data-modal=member] .member-container {
		grid-template-columns: repeat(1, 1fr);
	}

	[data-modal=member] .member-visual {
		display: none;
	}

	[data-modal=member] .member-content {
		padding: 0 0 40px;
	}

	[data-modal=member] .member-form {
		padding-top: 25px;
	}

	[data-modal=member] .member-goback {
		left: 15px;
	}  
  
    [data-modal=member] .member-title {
        font-size: 14px;
        font-weight: 500; 
        text-align: center;
    }
  
    [data-modal=member] .member-logo {
  		text-align: center
    }
}