* {
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
}

body {
	scroll-behavior: smooth;
	position: unset !important;
}

body a {
	text-decoration: none;
	cursor: pointer;
	color: #000;
	font-size: 14px;
}

body a:hover {
	text-decoration: none !important;
	color: #000 !important;
}

body ul,
body li {
	list-style-type: none;
	padding: 0px !important;
	margin: 0px !important;
}

body h1,
h2,
h3,
h4,
h5,
h6 {
	padding: 0px;
	margin: 0px;
}

body p {
	padding: 0px;
	margin: 0px;
}

:root {
	--heading_color: #1462b5;
	--heading-text_color: #010101;
	--primary_color: #ffffff;
	--text-color: #686868;
	--but_gradient: linear-gradient(45deg, #01ce67, #1ea15f);
	--inter_font: "Inter", sans-serif;
	--secontary_font: "Archivo", sans-serif;
	--text_font: "IBM Plex Sans", sans-serif;
}

/*---------------webkit-scrollbar PART START---------*/
::-webkit-scrollbar {
	width: 11px;
	height: 5px;
}

::-webkit-scrollbar-track {
	border-radius: 0;
	background: #222222;
}

::-webkit-scrollbar-thumb {
    background: #1462b5 !important;;
	border-radius: 3px;
	border: 3px solid #1462b5;
}

/*****=======TRANSATOR PART START=======******/
.skiptranslate{
    display:none;
}
.skiptranslate .VIpgJd-ZVi9od-ORHb-OEVmcd{
	 display:none !important;
}
.custom-lang-dropdown {
    position: relative;
    width: 80px;
    user-select: none;
    cursor: pointer;
    right: 4px;
}

.custom-lang-dropdown .selected {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #ffffff;
    padding: 5px 10px;
    border-radius: 6px;
    background: #c6e4ec;
	
}

.custom-lang-dropdown .selected img {
    width: 24px;
    height: 18px;
    margin-right: 5px;
}

.custom-lang-dropdown .arrow {
    margin-left: auto;
    font-size: 12px;
}
.custom-lang-dropdown .options::-webkit-scrollbar {
	display: none; 
}
.custom-lang-dropdown .options {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 165px;
    max-height: 250px;
    overflow-y: auto;
    border: 1px solid #ccc;
    border-radius: 6px;
    background: #fff;
    z-index: 100;
    box-shadow: 0px 2px 5px rgba(0,0,0,0.2);
}

.custom-lang-dropdown .option {
    display: flex;
    align-items: center;
    padding: 5px 10px;
    transition: background 0.2s;
}

.custom-lang-dropdown .option img {
    width: 24px;
    height: 18px;
    margin-right: 8px;
}

.custom-lang-dropdown .option:hover {
    background: #e0f7fa;
}



/******=======  TRANSATOR PART END  =======******/

/******=======  TOP PART SATRT  =======******/
.progress-wrap {
    background: linear-gradient(45deg, #1c80ef, #0a407e) !important;
	position: fixed;
	right: 30px;
	bottom: 30px;
	height: 46px;
	width: 46px;
	cursor: pointer;
	display: block;
	border-radius: 50px;
	box-shadow: inset 0 0 0 2px rgb(143 143 143 / 30%);
	z-index: 10000;
	opacity: 0;
	visibility: hidden;
	transform: translateY(15px);
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}

.progress-wrap.active-progress {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.progress-wrap::after {
	position: absolute;
	content: '\2191';
	text-align: center;
	line-height: 46px;
	font-size: 24px;
	color: #fff;
	left: 0;
	top: 0;
	height: 46px;
	width: 46px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}

.progress-wrap:hover::after {
	opacity: 0;
}

.progress-wrap::before {
	position: absolute;
	content: '\2191';
	text-align: center;
	line-height: 46px;
	font-size: 24px;
	opacity: 0;
	background: #fff;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	left: 0;
	top: 0;
	height: 46px;
	width: 46px;
	cursor: pointer;
	display: block;
	z-index: 2;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}

.progress-wrap:hover::before {
	opacity: 1;
}

.progress-wrap svg path {
	fill: none;
}

.progress-wrap svg.progress-circle path {
	stroke: #e8e8e8;
	stroke-width: 4px;
	box-sizing: border-box;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}

/******=======  TOP PART END  =======******/
/****butttob style ***/
.but {
	padding: 11px 28px !important;
	background: var(--but_gradient);
	color: #ffffff !important;
	font-size: 13px !important;
	font-weight: 300 !important;
	text-transform: uppercase;
	border-radius: 2px;
	text-align: center;
	overflow: hidden;
	max-width: 207px;
	width: 100%;
	position: relative;
	cursor: pointer;
}

.but:after {
	content: " ";
	width: 0%;
	height: 100%;
	background: #131f1f;
	position: absolute;
	transition: all 0.4s ease-in-out;
	right: 0;
	top: 0px;
	border-radius: 2px;
}

.but span {
	position: relative;
	z-index: 1;
}

.but:hover span {
	color: #fff !important;
	position: relative;
}

.but:hover::after {
	right: auto;
	left: 0;
	width: 100%;
}

.main_div {
	padding: 50px 0px;
}
/******=======  BANNER PART START  =======******/
.banner_section {
	background: url(../images/banner_bg.jpg);
	background-size: 100% 100%;
	position: relative;
}

.banner_side_img {
    position: absolute;
    top: -136px;
    left: -221px;
    height: 542px;
    width: 249px;
    filter: invert(1) hue-rotate(615deg);
}
.navbar{
    z-index: 111;
}

.nav-link {
	font-size: 16px;
	font-weight: 500;
	font-family: var(--inter_font);
	color: var(--heading-text_color);
}

.hero_section {
	padding: 70px 0px 120px;
}

.banner_head .small-txt {
	font-size: 15px;
	font-weight: 500;
	font-family: var(--inter_font);
	color: var(--heading-text_color);
	position: relative;
	padding-left: 37px;
}

.banner_head .small-txt::before {
	content: '';
	position: absolute;
	height: 2px;
	width: 21px;
	background: var(--heading-text_color);
	top: 12px;
	left: 16px;
}

.banner_head h1 {
    font-size: 57px;
	font-weight: 700;
	font-family: var(--inter_font);
	color: var(--heading_color);
	margin: 6px 0px 13px;
}
.banner_head p {
	font-size: 15px;
	font-weight: 400;
	font-family: var(--inter_font);
}

.hero_img_section {
	position: relative;
	z-index: 11;
}

.hero_img_section::before {
	content: "";
	position: absolute;
	inset: 0px 0px -19px 0px;
	background: url(../images/banner_hero_back.png);
	background-size: 100% 100%;
	background-position: center;
	background-repeat: no-repeat;
	z-index: -1;
	height: 484px;
	width: 531px;
	margin: auto;
	animation: floatStrong 4s ease-in-out infinite;
}

@keyframes floatStrong {
	0% {
		transform: translateY(0);
	}

	25% {
		transform: translateY(-15px);
	}

	50% {
		transform: translateY(0);
	}

	75% {
		transform: translateY(15px);
	}

	100% {
		transform: translateY(0);
	}
}
/******=======  BANNER PART END  =======******/

/******=======  STAT PART START  =======******/
.stat_section {
	background: url(../images/about_bg.jpg);
	background-size: 1005 100%;
}

.stat_item {
	max-width: 200px;
	width: 100%;
}

.stat_item .but {
	background: linear-gradient(45deg, #1c80ef, #0a407e) !important;
}

.stat_item .h4 {
	font-size: 25px;
	font-weight: 600;
	font-family: var(--inter_font);
	padding-bottom: 10px;
}

.stat_item .small {
	font-size: 14px;
	font-weight: 400;
	font-family: var(--secontary_font);
	color: var(--text-color);
}

.head h2 {
	font-size: 45px;
	font-weight: 600;
	font-family: var(--secontary_font);
	color: var(--heading-text_color);
}

.head h2 span {
	color: var(--heading_color);
}

.head h3 {
	font-size: 30px;
	font-weight: 500;
	font-family: var(--secontary_font);
	color: var(--heading-text_color);
	padding-bottom: 15px;
}

.head p {
	font-size: 14px;
	font-weight: 400;
	font-family: var(--text_font);
	color: var(--text-color);
	text-align: justify;
}
/******=======  STAT PART END  =======******/

/******=======  ABOUTS PART START  =======******/
.about-chart {
	max-width: 600px !important;
}
.about_section {
	overflow: hidden;
}

/******=======  ABOUTS PART End  =======******/

/******=======  PLAN PART START  =======******/
.plan_section {
	padding: 50px 0px;
	background: url(../images/plan_bg.jpg);
	background-size: 100% 100%;
	padding: 50px 0px;
	z-index: 1;
}

.plan_img {
	max-width: 495px;
	height: 733px;
}

.side_img {
	position: absolute;
	top: 10px;
	left: 0;
	z-index: -1;
	height: 100%;
	width: fit-content;
}

.circle_img {
	width: fit-content;
	position: absolute;
	right: 191px;
	top: 34px;
	max-width: 526px;
	z-index: -1;
	animation: rotate 60s linear infinite;
}

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

	to {
		transform: rotate(360deg);
	}
}
.plan_section  .head p{
	color: #fff !important;
}
.plan_section  .head h2 span{
	color: #01ce67;
}
.premium_plan_group {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 40px 20px;
}


.premium_plan_item {
    width: 300px;
    padding: 30px;
    border-radius: 20px;
    position: relative;
    background-size: cover;
    background-position: center;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
	margin: auto;
}

.premium_plan_item::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: rgba(0,0,0,0.45);   
    backdrop-filter: blur(3px);
    z-index: 0;
}
.premium_plan_item > * {
    z-index: 1;
    position: relative;
	margin: 14px 0px 0px;
}


.plan1 {
    background-image: url(../images/plan_bg1.jpg);
	background-size: 100% 100%;
	background-position: center;
	background-repeat: no-repeat;

}

.plan2 {
    background-image: url(../images/plan_bg2.jpg);
	background-size: 100% 100%;
	background-position: center;
	background-repeat: no-repeat;
}

.plan3 {
    background-image: url(../images/plan_bg3.jpg);
}

.premium_badge {
    background: linear-gradient(135deg, #00c9ff, #00ff9d);
    padding: 8px 18px;
    border-radius: 30px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}


.premium_rate {
    font-size: 40px;
    font-weight: 800;
    color: white;
    margin-top: 15px;
}

.premium_desc {
    color: #ececec;
    margin-bottom: 15px;
}


.premium_info p {
    color: #e5e5e5;
    margin: 5px 0;
}
.premium_info span {
    color: white;
    font-weight: 600;
}


.premium_number {
    position: absolute;
    bottom: 20px;
    right: 25px;
    font-size: 32px;
    font-weight: 800;
    opacity: 0.2;
    color: #fff;
}

.plan-card {
	background: #fff;
	border-radius: 10px;
	position: relative;
	width: 280px;
	margin: auto;
    margin-bottom: 10px;
	z-index: 1;
}
.plan-header {
	padding: 20px;
	color: #fff;
	position: relative;
	text-align: center;
	border-radius: 10px 10px 0px 0px;
}

.bg-blue {
	background: linear-gradient(45deg, #1c80ef, #0a407e) !important;
}

.bg-gold {
	background: linear-gradient(90deg, #b38a01, #e6c441);
}

.bg-gray {
	background: linear-gradient(90deg, #4a4a4a, #9d9d9d);
}


.plan-num {
	position: absolute;
	left: -20px;
	top: 20px;
	background: #e6e6e6;
	width: 56px;
	height: 56px;
	font-weight: 700;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #000;
	font-size: 20px;
}


.plan-content {
	padding: 20px;
	position: relative;
}

.plan-content p {
	margin-bottom: 15px;
	font-size: 14px;
	font-weight: 400;
	font-family: var(--text_font);
}


.btn-invest {
	border: 2px solid var(--heading_color);
	color: var(--heading_color);
	padding: 7px 25px;
	border-radius: 20px;
	background: transparent;
	transition: .3s;
	font-weight: 600;
}

.btn-invest:hover {
	background: var(--heading_color);
	color: #fff;
}


.plan-img {
	width: 100%;
	border-radius: 6px;
	position: absolute;
	inset: 0;
	max-width: 173px;
	margin: auto;
	z-index: -1;
	opacity: 0.4;
}

.plan-img2 {
	width: 100%;
	border-radius: 6px;
	position: absolute;
	inset: 0px;
	max-width: 350px;
	margin: auto;
	z-index: -1;
}

.plan-img3 {
	width: 100%;
	border-radius: 6px;
	position: absolute;
	inset: 0;
	max-width: 250px;
	margin: auto;
	z-index: -1;
}
/******=======  PLAN PART END  =======******/

/******=======  ADVANTAGE PART START  =======******/
.advantages-section {
	background: #faf9f7;
	overflow: hidden;
	position: relative;
	z-index: 1;
}

.advan_img {
	max-width: 979px;
	height: 500px;
	position: relative;
	left: -299px;
	z-index: -1;
}

.adv-title {
	font-size: 42px;
	font-weight: 700;
	color: #000;
	margin-bottom: 30px;
	line-height: 1.2;
}

.adv-title span {
	color: var(--heading_color);
}

.adv-item {
	margin-bottom: 25px;
	align-items: flex-start;
}

.adv-num {
	width: 40px;
	height: 40px;
	background: var(--heading_color);
	color: #fff;
	border-radius: 50%;
	font-weight: 700;
	font-size: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 15px;
	padding: 10px 20px;
}

.adv-text h5 {
	font-weight: 600;
	margin-bottom: 3px;
	font-size: 18px;
	font-family: var(--text_font);
	color: var(--heading-text_color);
}

.adv-text p {
	margin: 0;
	color: var(--text-color);
	font-size: 14px;
	font-weight: 400;
	font-family: var(--text_font);
	width: 80%;
}

.bull-img {
	max-width: 100%;
	height: auto;
}
/******=======  ADVANTAGE PART END  =======******/

/******=======  REFERAL PART START  =======******/
.referal_section {
	background: url(../images/background_img.jpg);
	background-size: 100% 100%;
	background-position: center;
	background-repeat: no-repeat;
}

.ref_img {
	max-width: 420px;
	margin-left: -109px;
	margin-top: -60px;
}

.percentage_group li {
	position: absolute;
}

.percentage_group li:nth-child(1) {
	position: absolute;
	top: -74px;
	right: 134px;

}

.percentage_group li:nth-child(2) {
	position: absolute;
	top: 0px;
	right: 134px;

}

.percentage_group li:nth-child(3) {
	position: absolute;
	top: 77px;
	right: 134px;

}

.percentage_group li:nth-child(4) {
	position: absolute;
	bottom: 58px;
	right: 134px;
}

.percentage_group li:nth-child(5) {
	position: absolute;
	bottom: -24px;
	right: 134px;
}

.percent-line {
	padding-right: 10px !important;
	border-right: 5px solid #0057ff;
}

.percent {
	font-size: 25px;
	font-weight: 700;
	font-family: var(--text_font);
	color: var(--heading-text_color);
}

.level {
	font-size: 12px;
	font-weight: 400;
	font-family: var(--text_font);
	color: var(--text-color);
	display: block;
}
/******=======  REFERAL PART END  =======******/

/******=======  PAYMENT PART START  =======******/
.coin {
	position: absolute;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	box-shadow:
		0 8px 32px rgba(0, 0, 0, 0.15),
		0 0 0 1px rgba(255, 255, 255, 0.3);
	cursor: pointer;
	transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
	animation: fadeInScaleSmooth 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
	opacity: 0;
	z-index: 2;
}

.coin::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	animation: continuousRipple1 2s ease-out infinite;
}

.coin::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	animation: continuousRipple2 2s ease-out infinite;
	animation-delay: 1s;
}

.coin svg {
	width: 55px;
	height: 55px;
	filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.coin:hover {
	transform: scale(1.2) rotate(5deg) !important;
	box-shadow:
		0 15px 50px rgba(255, 255, 255, 0.3),
		0 0 30px rgba(255, 255, 255, 0.2);
	z-index: 100;
}

.coin:hover svg {
	filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
	animation: iconPulse 0.6s ease-in-out;
}

.bitcoin {
	top: -338px;
	left: 50%;
	transform: translateX(-50%);
	width: 70px;
	height: 70px;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 243, 224, 0.98) 100%);
	animation: fadeInScaleSmooth 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
	z-index: 10;
}

.bitcoin::before {
	animation: continuousRipple1 1.8s ease-out infinite;
}

.bitcoin::after {
	animation: continuousRipple2 1.8s ease-out infinite;
	animation-delay: 0.9s;
}

.bitcoin svg {
	width: 75px;
	height: 75px;
}

.ethereum {
	top: -15px;
	left: 403px;
	animation-delay: 0.1s, 1.1s;
}

.bitcoin-cash {
    top: -226px;
    left: 279px;
	animation-delay: 0.15s, 1.15s;
}

.dogecoin {
	bottom: 115px;
	left: 322px;
	animation-delay: 0.2s, 1.2s;
}

.dash {
	bottom: 10px;
	left: 20%;
	animation-delay: 0.25s, 1.25s;
}

.monero {
	bottom: -20px;
	left: 50%;
	transform: translateX(-50%);
}

.perfect-money {
    bottom: 62px;
    right: 228px;
	animation-delay: 0.35s, 1.35s;
}

.ripple {
	top: -302px;
	right: 79px;
	animation-delay: 0.4s, 1.4s;
}

.zcash {
	top: -127px;
	right: 271px;
	animation-delay: 0.45s, 1.45s;
}

.tether {
	top: -243px;
	right: 358px;
	animation-delay: 0.5s, 1.5s;
}

.litecoin {
	top: 25%;
	right: -140px;
	animation-delay: 0.55s, 1.55s;
}

.binance {
	top: 9px;
	right: 303px;
	animation-delay: 0.6s, 1.6s;
}


@keyframes rotate3DSmooth {

	0%,
	100% {
		transform: rotateX(10deg) rotateY(0deg) rotateZ(0deg);
	}

	25% {
		transform: rotateX(15deg) rotateY(8deg) rotateZ(2deg);
	}

	50% {
		transform: rotateX(10deg) rotateY(0deg) rotateZ(-2deg);
	}

	75% {
		transform: rotateX(5deg) rotateY(-8deg) rotateZ(2deg);
	}
}

@keyframes slowSpin {
	from {
		transform: rotateY(0deg);
	}

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

@keyframes fadeInScaleSmooth {
	0% {
		opacity: 0;
		transform: scale(0) rotate(-180deg);
	}

	50% {
		opacity: 0.5;
		transform: scale(1.15) rotate(20deg);
	}

	100% {
		opacity: 1;
		transform: scale(1) rotate(0deg);
	}
}

@keyframes continuousRipple1 {
	0% {
		box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
		opacity: 1;
	}

	50% {
		box-shadow: 0 0 0 15px rgba(255, 255, 255, 0.3);
		opacity: 0.5;
	}

	100% {
		box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
		opacity: 0;
	}
}

@keyframes continuousRipple2 {
	0% {
		box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
		opacity: 1;
	}

	50% {
		box-shadow: 0 0 0 15px rgba(255, 255, 255, 0.3);
		opacity: 0.5;
	}

	100% {
		box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
		opacity: 0;
	}
}

@keyframes iconPulse {

	0%,
	100% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.1);
	}
}


.coin:nth-child(odd)::before {
	animation-delay: 0s;
}

.coin:nth-child(odd)::after {
	animation-delay: 1s;
}

.coin:nth-child(even)::before {
	animation-delay: 0.5s;
}

.coin:nth-child(even)::after {
	animation-delay: 1.5s;
}


.ethereum:hover {
	box-shadow: 0 15px 50px rgba(98, 126, 234, 0.4);
}

.litecoin:hover {
	box-shadow: 0 15px 50px rgba(52, 93, 157, 0.4);
}

.ripple:hover {
	box-shadow: 0 15px 50px rgba(0, 170, 228, 0.4);
}

.center_globe {
	max-width: 300px;
	width: 100%;
	margin: 20px auto;
	animation: rotate3DSmooth 10s ease-in-out infinite;
}


@media (max-width: 1024px) {
	.globe-container {
		width: 350px;
		height: 350px;
	}

	.globe-wrapper {
		width: 300px;
		height: 300px;
	}

	.coin {
		width: 65px;
		height: 65px;
	}

	.coin svg {
		width: 45px;
		height: 45px;
	}

	.bitcoin {
		width: 90px;
		height: 90px;
	}

	.bitcoin svg {
		width: 60px;
		height: 60px;
	}
}


.payment_section .mb-4 {
	margin-bottom: 3.5rem !important;
}

.pay_text {
	font-size: 14px;
	font-weight: 400;
	text-align: center;
	font-family: var(--text_font);
	color: var(--text-color);
	margin-top: 125px;
}

/* next payment part */

.next_pay_section {
	position: relative;
}

.img_group img {
	max-width: 550px;
	width: 100%;
	margin: auto;
}

.icons_group .pay_icon {
	max-width: 200px;
	width: 100%;
}

.icons_group ul li:nth-child(1) {
	position: absolute;
	top: 56px;
	left: 404px;
}

.icons_group ul li:nth-child(2) {
	position: absolute;
	top: 65px;
	right: 381px;
}

.icons_group ul li:nth-child(3) {
	position: absolute;
	top: 232px;
	right: 229px;
}

.icons_group ul li:nth-child(4) {
	position: absolute;
	right: 278px;
	top: 373px;
}

.icons_group ul li:nth-child(5) {
	position: absolute;
	bottom: 56px;
	right: 572px;

}

.icons_group ul li:nth-child(6) {
	position: absolute;
	left: 293px;
	bottom: 172px;
}

.icons_group ul li:nth-child(7) {
	position: absolute;
	top: 193px;
	left: 264px;
}

.icons_group ul li:nth-child(8) {
	position: absolute;
	top: 146px;
	left: 539px;
}

@keyframes rotateWiggle {

	0%,
	100% {
		transform: rotate(0deg);
	}

	25% {
		transform: rotate(5deg);
	}

	75% {
		transform: rotate(-5deg);
	}
}

@keyframes zoomIn {

	0%,
	100% {
		transform: scale(1);
		filter: blur(0px);
	}

	50% {
		transform: scale(1.15);
		filter: blur(0px);
	}
}

@keyframes zoomOut {

	0%,
	100% {
		transform: scale(1.15);
		filter: blur(0px);
	}

	50% {
		transform: scale(1);
		filter: blur(3px);
	}
}

/* .img_group img{
        animation: rotateWiggle 10s ease-in-out infinite;
} */
.icons_group ul li:nth-child(odd) {
	animation: zoomIn 2s ease-in-out infinite;
}

.icons_group ul li:nth-child(even) {
	animation: zoomOut 2s ease-in-out infinite;
}


.icons_group ul li:nth-child(1) {
	animation-delay: 0s;
}

.icons_group ul li:nth-child(2) {
	animation-delay: 0.2s;
}

.icons_group ul li:nth-child(3) {
	animation-delay: 0.4s;
}

.icons_group ul li:nth-child(4) {
	animation-delay: 0.6s;
}

.icons_group ul li:nth-child(5) {
	animation-delay: 0.8s;
}

.icons_group ul li:nth-child(6) {
	animation-delay: 1s;
}

.icons_group ul li:nth-child(7) {
	animation-delay: 1.2s;
}

.icons_group ul li:nth-child(8) {
	animation-delay: 1.4s;
}
/* next payment part */

/******=======  PAYMENT PART END  =======******/

/******=======  FOOTER PART START  =======******/

.footer-section {
	background: url(../images/footer_bg.jpg);
	background-size: 100% 100%;
	position: relative;
	overflow: hidden;
	padding: 50px 0px 20px !important;
}

/*     
        .footer-section::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            background-image: 
                url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 400"><defs><style>.wire{fill:none;stroke:%23ffffff;stroke-width:0.5;opacity:0.15;}</style></defs><g class="bull"><path class="wire" d="M150,200 Q180,180 200,200 L220,180 Q240,200 260,190 L280,210 Q300,220 310,200 L320,210 Q340,230 360,220"/><path class="wire" d="M140,210 L160,230 Q180,240 200,230 L220,240 Q240,250 260,240"/><circle class="wire" cx="200" cy="200" r="80"/><circle class="wire" cx="200" cy="200" r="60"/><circle class="wire" cx="200" cy="200" r="40"/></g><g class="bear"><path class="wire" d="M600,250 Q620,230 640,250 L660,230 Q680,250 700,240 L720,260 Q740,270 750,250"/><path class="wire" d="M590,260 L610,280 Q630,290 650,280 L670,290 Q690,300 710,290"/><circle class="wire" cx="650" cy="250" r="70"/><circle class="wire" cx="650" cy="250" r="50"/><circle class="wire" cx="650" cy="250" r="30"/></g></svg>'),
                url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 400"><defs><style>.wire{fill:none;stroke:%23ffffff;stroke-width:0.5;opacity:0.12;}</style></defs><g class="bull"><path class="wire" d="M100,300 Q130,280 150,300 L170,280 Q190,300 210,290 L230,310 Q250,320 260,300"/><circle class="wire" cx="150" cy="300" r="60"/><circle class="wire" cx="150" cy="300" r="40"/></g></svg>');
            background-position: -200px center, right -150px center;
            background-repeat: no-repeat;
            background-size: 700px auto, 600px auto;
            animation: floatAnimals 20s ease-in-out infinite;
            pointer-events: none;
            z-index: 0;
        }

        @keyframes floatAnimals {
            0%, 100% {
                background-position: -200px center, right -150px center;
                opacity: 1;
            }
            50% {
                background-position: -180px 20px, right -130px 20px;
                opacity: 0.8;
            }
        } */

.footer-section .container {
	position: relative;
	z-index: 1;
}

.footer-heading {
	font-size: 18px;
	font-weight: 600;
	font-family: var(--text_font);
	margin-bottom: 25px;
	letter-spacing: 0.5px;
}

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

.footer-links li {
	margin-bottom: 12px;
}

.footer-links a {
	color: rgba(255, 255, 255, 0.85);
	text-decoration: none;
	font-size: 14px;
	font-family: var(--text_font);
	font-weight: 300;
	transition: all 0.3s ease;
	display: inline-block;
}

.footer-links a:hover {
	color: white;
	transform: translateX(5px);
}

.social-icons {
	display: flex;
	gap: 15px;
	margin-top: 20px;
}

.social-icons a {
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.15);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	text-decoration: none;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
}

.social-icons a:hover {
	background: rgba(255, 255, 255, 0.3);
	transform: translateY(-3px);
}

.support-box {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border-radius: 10px;
	padding: 25px;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.support-box h5 {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 15px;
}

.support-box p {
	font-size: 14px;
	margin-bottom: 8px;
	opacity: 0.9;
}

.footer-bottom {
	margin-top: 50px;
	padding-top: 25px;
	border-top: 1px solid rgba(255, 255, 255, 0.15);
	text-align: center;

}

.footer-bottom p {
	margin: 0;
	font-size: 14px;
	font-family: var(--secontary_font);
	color: #fff;
	opacity: 0.85;
}


@media (max-width: 768px) {
	.footer-section {
		padding: 50px 0 30px;
	}

	.footer-heading {
		margin-top: 30px;
	}

	.support-box {
		margin-top: 30px;
	}
}
/******=======  FOOTER PART END  =======******/

/******=======  RESPONSIVE PART START  =======******/

@media (max-width:1199px) {
	.navbar-expand-lg .navbar-nav .nav-link {
		padding: 0px 5px !important;
	}

	.nav-link {
		font-size: 13px;
		padding: 0;
	}

	.banner_head h1 {
		font-size: 60px;
	}
	.premium_plan_item {
    	width: 289px;
	}
	.about-chart {
    	max-width: 511px !important;
	}

	.circle_img {
		right: 155px;
		top: 129px;
		max-width: 364px;
	}

	.advan_img {
		max-width: 766px;
	}

	.referal_group {
		max-width: 450px;
		width: 100%;
	}

	.ref_img {
		max-width: 380px;
		margin-left: -109px;
		margin-top: -141px;
	}

	.percentage_group li:nth-child(1) {
		position: absolute;
		top: -155px;
		right: 98px;
	}

	.percentage_group li:nth-child(2) {
		position: absolute;
		top: -88px;
		right: 98px;
	}

	.percentage_group li:nth-child(4) {
		position: absolute;
		bottom: 141px;
		right: 98px;
	}

	.percentage_group li:nth-child(3) {
		position: absolute;
		top: 74px;
		right: 98px;
	}

	.percentage_group li:nth-child(5) {
		position: absolute;
		bottom: -26px;
		right: 98px;
	}

	.ethereum {
		top: -16px;
		left: 340px;
		animation-delay: 0.1s, 1.1s;
	}

	.tether {
		top: -243px;
		right: 256px;
	}

	.payment_section {
		max-width: 935px;
		width: 100%;
		margin: auto;
	}

	.pay_next_grp {
		max-width: 553px;
		width: 100%;
		margin: auto;
	}

	.icons_group ul li:nth-child(1) {
		position: absolute;
		top: 20px;
		left: 185px;
	}

	.icons_group ul li:nth-child(2) {
		position: absolute;
		top: 65px;
		right: 168px;
	}

	.icons_group ul li:nth-child(3) {
		position: absolute;
		top: 232px;
		right: 35px;
	}

	.icons_group ul li:nth-child(4) {
		position: absolute;
		right: 83px;
		top: 377px;
	}

	.icons_group ul li:nth-child(5) {
		position: absolute;
		bottom: 56px;
		right: 377px;
	}

	.icons_group ul li:nth-child(6) {
		position: absolute;
		left: 95px;
		bottom: 172px;
	}

	.icons_group ul li:nth-child(7) {
		position: absolute;
		top: 193px;
		left: 44px;
	}

	.icons_group ul li:nth-child(8) {
		position: absolute;
		top: 113px;
		left: 340px;
	}

	.next_pay_section {
		position: relative;
		max-width: 965px;
		margin: auto;
		width: 100%;
	}

	.hero_img_section::before {
		width: 445px;
	}
}

@media (max-width:991px) {
	.container {
		max-width: 98% !important;
	}

	.navbar-collapse {
		text-align: center;
	}
	.navbar-toggler {
			padding: 0px;
			font-size: 0px;
			line-height: 1;
			background: #1462b5 !important;
			border-radius: 0px;
			width: 40px;
			height: 26px;
			border: 1px solid #000;
			outline: 2px solid #fff;
			backdrop-filter: blur(4px);
			box-shadow: unset !important;
			transition:0.5s;
		}
		.navbar-toggler:hover{
			transition:0.5s;
			background: var(--but_gradient);
		}
		.navbar-toggler i {
			font-size: 16px;
			color: #fff;
		}
	.navbar-expand-lg .navbar-nav .nav-link {
		padding: 9px 5px !important;
	}

	.top_but {
		justify-content: center;
	}
	.head p{
		text-align: center;
	}
	.why_img{
		display: none;
	}

	.banner_head .small-txt{
		max-width: 200px;
		width: 100%;
		margin: auto;
	}

	.hero_section {
		text-align: center;
	}

	.banner_side_img {
		width: fit-content;
	}

	.hero_img_section {
		display: none;
	}

	.but {
		top: 19px !important;
		text-align: center;
		margin: auto;
	}

	.hero_section {
		padding: 70px 0px 85px;
	}

	.banner_head p {
		width: 80%;
		margin: auto;
	}

	.stat_group {
		flex-wrap: wrap;
		gap: 25px;
	}

	.head {
		text-align: center;
	}

	.about_section .head p {
		width: 80%;
		margin: auto;
	}

	.about-chart {
		display: none;
	}

	.side_img {
		display: none;
	}

	.plan_group {
		flex-wrap: wrap;
		gap: 24px;
	}

	.adv-title {
		text-align: center;
	}

	.adv-item {
		width: 77%;
		margin: 0px auto 10px;
	}

	.adv-text p {
		width: 100%;
	}

	.advan_img {
		display: none;
	}

	.ref_img {
		max-width: 380px;
		margin-left: 0px;
		margin-top: 0px;
	}

	.referal_group {
		margin: auto;
	}

	.percentage_group li:nth-child(1) {
		position: absolute;
		top: -12px;
		right: -16px;
	}

	.percentage_group li:nth-child(2) {
		position: absolute;
		top: 51px;
		right: -16px;
	}

	.percentage_group li:nth-child(3) {
		position: absolute;
		top: 120px;
		right: -16px;
	}

	.percentage_group li:nth-child(4) {
		position: absolute;
		bottom: 45px;
		right: -16px;
	}

	.percentage_group li:nth-child(5) {
		position: absolute;
		bottom: -28px;
		right: -16px;
	}

	.payment_section {
		max-width: 750px;
	}

	.tether {
		top: -231px;
		right: 163px;
	}

	.zcash {
		top: -152px;
		right: 28px;
		animation-delay: 0.45s, 1.45s;
	}
    .perfect-money{
        bottom: 1px;
        right: 457px;
    }
    	.monero {
		bottom: -20px;
		left: 62%;
		transform: translateX(-50%);
	}

	.binance {
        top: -187px;
        right: 443px;
		animation-delay: 0.6s, 1.6s;
	}

	.ethereum {
		top: -16px;
		left: 318px;
		animation-delay: 0.1s, 1.1s;
	}

	.dogecoin {
        bottom: 237px;
        left: 178px;
		animation-delay: 0.2s, 1.2s;
	}

	.bitcoin-cash {
		top: -293px;
		left: 111px;
		animation-delay: 0.15s, 1.15s;
	}

	.next_pay_section {
		max-width: 726px;
	}

	.icons_group ul li:nth-child(2) {
		position: absolute;
		top: 42px;
		right: 28px;
	}

	.Support_Info {
		text-align: center;
	}

	.social-icons {
		justify-content: center;
	}

	.plan_section {
		background-size: cover;
	}

	.circle_img {
		right: 152px;
		top: 475px;
		max-width: 433px;
	}
}

@media (max-width:767px) {

	.payment_section {
		max-width: 555px;
	}
	.perfect-money {
		right: 105px;
	}
	.tether{
        top: -195px;
	}

    .ethereum {
        top: -111px;
		left: 75px;
	}

	.ripple {
		right: 37px !important;
	}

	.globe-container {
		width: 280px;
		height: 280px;
	}

	.globe-wrapper {
		width: 240px;
		height: 240px;
	}

	.coin {
		width: 50px;
		height: 50px;
	}

	.coin svg {
		width: 35px;
		height: 35px;
	}

	.bitcoin {
		width: 70px;
		height: 70px;
	}

	.monero {
		bottom: -25px;
		left: 46%;
		transform: translateX(-50%);
	}

	.bitcoin svg {
		width: 50px;
		height: 50px;
	}

	.bitcoin-cash {
		left: 133px;
		top: -207px;
	}

	.litecoin {
		right: -100px;
	}

	.binance {
		right: 390px;
        top: -205px;
	}

	.next_pay_section {
		max-width: 542px;
	}

	.icons_group .pay_icon {
		max-width: 170px;
	}

	.icons_group ul li:nth-child(1) {
		position: absolute;
		top: 20px;
		left: 0px;
	}

	.icons_group ul li:nth-child(5) {
		right: 251px;
	}

	.icons_group ul li:nth-child(6) {
		left: 0px;
		bottom: 172px;
	}

	.icons_group ul li:nth-child(7) {
		position: absolute;
		top: 193px;
		left: -7px;
	}

	.icons_group ul li:nth-child(8) {
		top: 111px;
		left: 178px;
	}

	.footer-links,
	.footer-heading {
		text-align: center;
	}

	.circle_img {
        right: 64px;
        top: 129px;
        max-width: 433px;
	}
	.plan-card{
        width: 256px;
	}
	.banner_section,.plan_section {
	    overflow: hidden;
	}
}

@media (max-width:576px) {
	.container {
		max-width: 100% !important;
	}

	.banner_side_img {
		display: none;
	}

	.navbar-brand {
		max-width: 160px;
	}

	.banner_head h1 {
		font-size: 45px;
	}

	.banner_head p {
		width: 100%;
	}

	.but {
		top: 0px !important;
	}

	.hero_section {
		padding: 55px 0px 55px;
	}

	.banner_section {
		position: relative;
	}

	.stat_item {
		max-width: 167px;
	}

	.stat_group {
		gap: 0px;
	}

	.head h3 {
		font-size: 25px;
	}

	.about_section .head p {
		width: 100%;
	}

	.circle-badge {
		right: -192px;
	}

	.circle_img {
		right: 12px;
		top: 490px;
	}

	.adv-title {
		font-size: 35px;
	}

	.adv-item {
		width: 100%;
	}

	.main_div {
		padding: 35px 0px;
	}

	.head h2 {
		font-size: 35px;
	}

	.ref_img {
		max-width: 270px;
	}

	.referal_group {
		max-width: 301px;
		margin: unset;
	}

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

	.percent {
		font-size: 23px;
	}

	.percentage_group li:nth-child(1) {
		position: absolute;
		top: -28px;
		right: -42px;
	}

	.percentage_group li:nth-child(2) {
		position: absolute;
		top: 30px;
		right: -42px;
	}

	.percentage_group li:nth-child(3) {
		position: absolute;
		top: 86px;
		right: -42px;
	}

	.percentage_group li:nth-child(4) {
		position: absolute;
		bottom: 24px;
		right: -42px;
	}

	.percentage_group li:nth-child(5) {
		position: absolute;
		bottom: -34px;
		right: -42px;
	}

	.ripple {
		right: 7px !important;
		top: -290px;
	}

	.dogecoin {
		bottom: 115px;
		left: -5px;
		animation-delay: 0.2s, 1.2s;
	}

	.dash {
		bottom: 10px;
		left: 20%;
		animation-delay: 0.25s, 1.25s;
	}

	.monero {
		bottom: -25px;
		left: 39%;
		transform: translateX(-50%);
	}

	.zcash {
		top: -212px;
		right: 8px;
		animation-delay: 0.45s, 1.45s;
	}

	.tether {
		top: -231px;
		right: 163px;
	}

	.binance {
        right: 280px;
        top: -289px;
	}

	.perfect-money {
        bottom: 154px;
        right: -3px;
		animation-delay: 0.35s, 1.35s;
	}

	.ethereum {
		left: 241px;
		top: -83px;
	}

	.bitcoin-cash {
		left: 0px;
        top: -110px;
	}

	.payment_section {
		max-width: 357px;
	}

	.icons_group .pay_icon {
		max-width: 100px;
	}

	.next_pay_section {
		max-width: 330px;
		width: 100%;
		margin: auto;
	}

	.icons_group ul li:nth-child(8) {
		top: 89px;
		left: 109px;
	}

	.icons_group ul li:nth-child(3) {
		position: absolute;
		top: 153px;
		right: -2px;
	}

	.icons_group ul li:nth-child(5) {
		right: 129px;
	}

	.footer-section {
		background-size: cover;
		padding: 35px 0px 10px !important;
	}

	.footer-bottom p {
		font-size: 11px;
	}

	.main_div {
		overflow: hidden;
	}

	.support-box h5 {
		font-size: 15px;
	}


}