:root {
	--druk-font: 'Druk Cyr', sans-serif;
	--kumbh-font: 'Kumbh Sans', sans-serif;
	--duru-font: 'Duru Sans', sans-serif;
	--lalezar-font: 'Lalezar', sans-serif;

	--body-color: #181818;
	--pink-color: #ED4797;
	--dark-color: #1F1F1F;
	--grey-color: #8D8D8D;
	--border-color: #A15A7C;

	--btn-radius: 2.4rem;
	--border-radius: 2.4rem;
}

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

html {
	font-size: 1.5625vw;
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
}

@media screen and (min-width: 1100px) {
	html {
		font-size: 0.78125vw
	}
}

body {
	background: var(--body-color);
	font-family: var(--duru-font);
	margin: 0;
	overflow-x: hidden;
	font-size: 1.8rem;
	line-height: 1.5;
	color: #fff;
	scroll-behavior: smooth;
}
@media screen and (max-width: 1100px) {
	body {
		font-size: 1.6rem;
	}
}

a {
	text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--druk-font);
	line-height: 107%;
	margin: 0;
}

@media only screen and (max-width: 991px) {
	h1,
	h2,
	h3,
	h4,
	h5,
	h6 {
		letter-spacing: 1px !important;
		-webkit-text-stroke-width: 0px !important;
	}
}

section {
	overflow: hidden;
}

.section__title {
	font-size: 10rem;
	font-weight: 900;
	text-transform: capitalize;
}
@media screen and (max-width: 1100px) {
	.section__title {
		font-size: 8rem;
	}
	.section__title br {
		display: none;
	}
}

.container {
	max-width: 89.07vw;
	width: 100%;
	margin: 0 auto;
}

@media screen and (max-width: 1100px) {
	.container {
		max-width: 100%;
		padding: 0 10px;
	}
}

.img-wrap {
	display: flex;
}

.img-wrap img {
	width: 100%;
	height: 100%;
}


.btn {
	width: max-content;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1rem;
	background: var(--pink-color);
	color: #fff;
	padding: 2.4rem;
	border-radius: var(--border-radius);
	border: 1px solid transparent;
	transition: background .4s, transform .4s, border-color .4s;
}

.btn .icon {
	width: 4.2rem;
	height: 4.2rem;
	background: #fff;
	border-radius: 1.2rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

.btn:hover {
	background: var(--dark-color);
	transform: scale(.9);
	border-color: var(--pink-color);
}

[hidden], .hidden {
	display: none;
}

.custom-color {
	color: var(--pink-color);
}

.pink-link {
	position: relative;
}
.pink-link::after {
	content: "";
	position: absolute;
	bottom: 0;
	width: 0;
	height: 1px;
	background: var(--pink-color);
	transition: width .4s;
}
.pink-link:hover::after {
	width: 100%;
}

/* Hero Section Start */
.hero {
	position: relative;
	background: var(--dark-color);
	height: 100%;
	min-height: 100vh;
	max-height: 100vh;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
}

@media screen and (min-width: 1280px) {
	.hero {
		height: max-content;
		max-height: 100%;
	}
}
@media screen and (max-width: 1100px) {
	.hero {
		height: max-content;
		max-height: 100%;
	}
}

.hero__wrap {
	position: relative;
	z-index: 1;
}

.hero__top-text {
	padding: 2.6rem 0 0 10.5rem;
	text-align: center;
}

.hero__title {
	position: relative;
	font-family: var(--lalezar-font);
	font-size: 15.4rem;
	font-weight: 900;
	text-transform: uppercase;
	text-align: center;
	line-height: 1;
	margin: 0 0 0 0;
	z-index: 0;
}
@media screen and (max-width: 1100px) {
	.hero__title {
		font-size: 10rem;
		margin: 0 0 0 0;
	}
}

.hero__content {
	position: relative;
	display: flex;
	z-index: 1;
	gap: 12rem;
}
@media screen and (max-width: 1100px) {
	.hero__content {
		align-items: center;
		flex-direction: column;
	}
}

.hero__content .content-left {
	flex-basis: 40%;
}
@media screen and (max-width: 1100px) {
	.hero__content .content-left {
		order: 2;
	}
}

.hero__content .content-left .img-wrap {
	position: relative;
}

.hero__content .content-left .img-wrap img {
	object-fit: contain;
	width: 100%;
	min-width: 100%;
	max-width: 100%;
	height: 100%;
	min-height: 38rem;
	max-height: 38rem;
}

.hero__content .content-right {
	flex-basis: 60%;
	max-width: 53rem;
	display: flex;
	align-items: center;
	flex-direction: row;
	justify-content: space-between;
}
@media screen and (max-width: 1100px) {
	.hero__content .content-right {
		margin: 4rem 0 0 0;
		align-items: center;
		flex-direction: column;
	}
}

.hero__content .content-right .title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 4rem;
}

.hero__content .content-right .title h2 {
	font-family: var(--kumbh-font);
	font-size: 5.4rem;
	font-weight: 900;
	margin: 0 0 3rem 0;
	letter-spacing: 2px;
}

.hero__content .content-right .dsc {
	display: block;
	margin: 0 0 2.2rem 0;
}

.hero__content .content-right .btn {
	font-size: 2.4rem;
	border: 2px solid transparent;
}
.hero__content .content-right .btn:hover {
	border-color: var(--pink-color);
}
/* Hero Section End */


/* Hero Section Start */
.logobanner__banner {
	width: 100%;
	background: var(--pink-color);
	border-top: 2px dashed rgba(255, 255, 255, .2);
	border-bottom: 2px dashed rgba(255, 255, 255, .2);
	padding: 1.1rem;
	overflow: hidden;
	white-space: nowrap;
	list-style: none;
	padding: 0;
	margin: 0;
}
.logobanner__banner .list {
	display: flex;
	align-items: center;
	gap: 6.6rem;
	list-style: none;
	padding: 0 2rem;
}

.logobanner__banner .list .item {
	font-family: var(--druk-font);
	font-size: 3rem;
	font-weight: bold;
	color: rgba(255, 255, 255, .2);
}

.logobanner__banner .list .item:last-child {
	clear: both;
}
/* Hero Section End */


/* whowe Section Start */
.whowe {
	padding: 18.2rem 0;
}
@media screen and (max-width: 1100px) {
	.whowe {
		padding: 6rem 0;
	}
}

.whowe__title {
	max-width: 65rem;
	font-family: var(--druk-font);
	text-align: center;
	margin: 0 auto 2.8rem;
}

.whowe__dsc {
	max-width: 62.5rem;
	margin: 0 auto;
	text-align: center;
	padding: 2.4rem;
	letter-spacing: 2%;
	line-height: 1.5;
}

/* whowe Section End */


/* iamfounder Section Start */
.iamfounder {
	background: var(--body-color) url(../images/bg_pattern.png);
	background-repeat: repeat;
	background-size: contain;
	padding: 11rem 0;
	overflow: hidden;
}
@media screen and (max-width: 1100px) {
	.iamfounder {
		padding: 6rem 0;
	}
}

.iamfounder .iamfounder__wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 7.2rem;
}
@media screen and (max-width: 1100px) {
	.iamfounder .iamfounder__wrap {
		flex-direction: column;
	}
}

.iamfounder .iamfounder__wrap .section__title {
	flex: 100%;
}

.iamfounder__left {
	position: relative;
	flex-basis: auto;
}

.iamfounder__left .name {
	position: absolute;
	top: 2rem;
	left: -3rem;
	background: #fff;
	font-size: 2.4rem;
	letter-spacing: 2px;
	padding: 1.2rem 2.4rem;
	color: var(--dark-color);
	z-index: 1;
}

.iamfounder__left .name::before {
	content: "";
	position: absolute;
	bottom: -3rem;
	left: 0;
	width: 3rem;
	height: 2rem;
	border-top: 3rem solid #d9d9d9;
	border-left: 3rem solid transparent;
	z-index: -1;
}

.iamfounder__left .img-wrap {
	width: 46rem;
	height: 54rem;
	background: linear-gradient(0deg, rgba(237, 71, 151, 1) 0%, rgba(237, 71, 151, 0) 100%);
	border: 1px solid var(--border-color);
	border-radius: var(--border-radius);
}

.iamfounder__right {
	position: relative;
	flex-basis: auto;
	max-width: 48rem;
	text-align: center;
	border: 1px solid rgba(255, 255, 255, .1);
	border-radius: var(--border-radius);
	padding: 2.4rem;
}

.iamfounder__right::after {
	content: '';
	position: absolute;
	right: -80%;
	bottom: -150%;
	width: 70rem;
	height: 64rem;
	background: radial-gradient(circle, rgba(237, 71, 151, 1) 0%, rgba(237, 71, 151, 0) 100%);
	border-radius: 50%;
	opacity: 0.4;
	filter: blur(7rem);
	z-index: 0;
}

.iamfounder__right .title {
	font-family: var(--duru-font);
	font-size: 1.8rem;
	margin: 0 0 2rem 0;
	font-weight: 400;
}

.iamfounder__right .dsc {
	display: flex;
	flex-direction: column;
	margin: 0;
	gap: 2rem;
	text-align: left;
}

.iamfounder__dsc {
	display: flex;
	flex-direction: column;
	gap: 2.8rem;
}
.iamfounder__dsc h3 {
	font-family: var(--duru-font);
	font-size: 3.2rem;
	text-align: center;
}
.iamfounder__dsc .text {
	padding: 2.4rem;
	border: 1px solid rgba(255, 255, 255, .1);
	border-radius: var(--border-radius);
}
.iamfounder__dsc .social {
	display: flex;
	justify-content: center;
	gap: 10rem;
}
.iamfounder__dsc .social a {
	display: flex;
	align-items: center;
	gap: 1rem;
	color: var(--pink-color);
}
.iamfounder__dsc .social a img {}

/* iamfounder Section End */


/* How this work Section Start */
.how-this-work {
	background: url(../images/buyad_bg.jpg);
	background-repeat: no-repeat;
	background-size: 100% 100%;
	padding: 6.5rem 0;
}
.how-this-work .section__title {
	width: max-content;
	display: flex;
	flex-direction: column;
	margin: 0 auto 4rem auto;
	color: var(--body-color);
}
.how-this-work__grid {
	display: flex;
	flex-wrap: wrap;
	gap: 2.9rem;
}
.how-this-work__grid .item {
	background: #fff;
	border-radius: var(--border-radius);
	border: 1px solid var(--pink-color);
	padding: 3.8rem;
	color: var(--body-color);
	display: flex;
	flex-direction: column;
	gap: 1.4rem;
}
.how-this-work__grid .item:nth-child(1) {
	flex-basis: calc(30% - 1.5rem);
}
.how-this-work__grid .item:nth-child(2) {
	flex-basis: calc(70% - 1.5rem);
}
.how-this-work__grid .item:nth-child(3) {
	flex-basis: calc(50% - 1.5rem);
}
.how-this-work__grid .item:nth-child(4) {
	flex-basis: calc(50% - 1.5rem);
}
@media screen and (max-width: 1100px) {
	.how-this-work__grid .item:nth-child(1) {
		flex-basis: 100%;
	}
	.how-this-work__grid .item:nth-child(2) {
		flex-basis: 100%;
	}
	.how-this-work__grid .item:nth-child(3) {
		flex-basis: 100%;
	}
	.how-this-work__grid .item:nth-child(4) {
		flex-basis: 100%;
	}
}
.how-this-work__grid .item:nth-child(5) {
	background: var(--pink-color);
	flex-basis: 100%;
	color: #fff;
	flex-direction: row;
	align-items: center;
	gap: 3.2rem;
}
.how-this-work__grid .item-title {
	font-weight: bold;
	font-size: 3.2rem;
	letter-spacing: 1px;
	-webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--body-color);
}
.how-this-work__grid .item:nth-child(5) .item-title {
	letter-spacing: 2px;
	-webkit-text-stroke-color: #fff;
}

.how-this-work__price {
	margin: 4.2rem 0;
}
.how-this-work__price h3 {
	margin: 0 0 4.2rem 0;
	font-weight: bold;
	font-size: 3.2rem;
	letter-spacing: 1px;
	-webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--body-color);
	text-decoration: line-through;
	text-align: center;
	color: var(--body-color);
}
.how-this-work__price h3 .custom-color {
	-webkit-text-stroke-color: var(--pink-color);
}
.how-this-work__price .price-grid {
	display: flex;
	justify-content: center;
	gap: 4.2rem;
}
.how-this-work__price .price-grid .item {
	border: 1px solid #000;
	border-radius: var(--border-radius);
	padding: 1.4rem;
	display: flex;
	flex-direction: column;
	gap: 1.4rem;
}
.how-this-work__price .price-grid .item-title {
	font-size: 3.2rem;
	letter-spacing: 1px;
	-webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--body-color);
	color: var(--body-color);
}
.how-this-work__price .price-grid .item-title .custom-color {
	-webkit-text-stroke-color: var(--pink-color);
}
.how-this-work__price .price-grid .item-dsc {
	font-size: 2rem;
	color: var(--body-color);
}

.how-this-work__social {
	display: flex;
	justify-content: center;
}
.how-this-work__social a {
	display: flex;
	align-items: center;
	gap: 1rem;
	color: var(--pink-color);
}
/* How this work Section End */


/* About Us Section Start */
.about-us {
	padding: 3rem;
}
.about-us__title {
	position: relative;
	font-family: var(--lalezar-font);
	font-size: 15.4rem;
	font-weight: 900;
	text-transform: uppercase;
	text-align: center;
	line-height: 1;
	margin: 0 0 0 0;
	color: var(--pink-color);
	z-index: 0;
}
@media screen and (max-width: 1100px) {
	.about-us__title {
		font-size: 17rem;
		margin: 0 0 0 0;
	}
}
.about-us__dsc {
	font-family: var(--druk-font);
	font-size: 8.2rem;
	text-align: center;
	line-height: 107%;
}
/* About Us Section End */


/* Seo Section Start */
.seo {
	padding: 4.5rem 0;
}
.seo .section__title {
	text-align: center;
	margin: 0 0 6.4rem 0;
}
.seo-area {
	background: #fff;
	padding: 6.8rem;
	border-radius: var(--border-radius);
	color: var(--body-color);
	display: flex;
	flex-direction: column;
	gap: 2.4rem;
}
.seo-text {
	display: flex;
	flex-direction: column;
	gap: 2.4rem;
}
.seo-text ul {
	list-style: auto;
	padding: 0 0 0 2rem;
}
.seo-area .price {
	display: flex;
	justify-content: center;
	gap: 2.4rem;
}
.seo-area .price-item {
	flex-basis: calc(50% - 2.4rem);
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 1.2rem;
	border-radius: var(--border-radius);
	text-align: center;
}
.seo-area .price-item:nth-child(1) {
	border: 1px solid var(--body-color);
}
.seo-area .price-item:nth-child(2) {
	background: var(--pink-color);
	color: #fff;
}
.seo-area .price-item span {
	font-size: 2rem;
}
.seo-area .price-item h3 {
	font-weight: bold;
	-webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--body-color);
	font-size: 3.2rem;
	letter-spacing: 1px;
}
.seo-area .price-item:nth-child(2) h3 {
	-webkit-text-stroke-color: #fff;
}
.seo-area .social {
	display: flex;
	justify-content: center;
}
.seo-area .social a {
	display: flex;
	align-items: center;
	gap: 1rem;
	color: var(--pink-color);
}
/* Seo Section End */


/* Сounseling Section Start */
.counseling {
	padding: 4.5rem 0;
}
.counseling .container {
	display: flex;
	align-items: center;
	flex-direction: column;
	gap: 2.4rem;
}
.counseling .section__title {
	text-align: center;
}
.counseling-price {
	min-width: 78rem;
	max-width: 78rem;
	background: var(--pink-color);
	border-radius: var(--border-radius);
	padding: 1.4rem;
	display: flex;
	flex-direction: column;
	gap: 1.4rem;
	margin: o auto;
	text-align: center;
}
.counseling-price span {
	font-size: 2rem;
}
.counseling-price h3 {
	font-weight: bold;
	-webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #fff;
	font-size: 3.2rem;
	letter-spacing: 1px;
}
.counseling-text {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem;
}
.counseling-text h3 {
	font-weight: bold;
	-webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #fff;
	font-size: 3.2rem;
	letter-spacing: 1px;
}
.counseling-text p {
	font-size: 2rem;
}
.counseling-text p:last-child {
	flex: 100%;
}
.counseling-item {
	background: #fff;
	padding: 5.6rem;
	border-radius: var(--border-radius);
	text-align: center;
	color: var(--body-color);
	display: flex;
	flex-direction: column;
	gap: 2.2rem;
}
.counseling-item h3 {
	font-weight: bold;
	-webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--body-color);
	font-size: 3.2rem;
	letter-spacing: 1px;
}
.counseling-item ul {
	width: max-content;
	text-align: left;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
.counseling-item ul li {
	font-size: 1.4rem;
}
.item-format {
	border-top: 1px solid #CFCFCF;
	border-bottom: 1px solid #CFCFCF;
	padding: 1.2rem 0;
}
.item-format h3 {
	font-size: 2.4rem;
	margin: 0 0 1rem 0;
}
.item-format p {
	font-size: 1.4rem;
}
.item-price {
	width: 100%;
	background: var(--pink-color);
	color: #fff;
	border-radius: var(--border-radius);
	padding: 1.4rem 0;
	display: flex;
	flex-direction: column;
	gap: 1.4rem;
}
.item-price span {
	font-size: 2rem;
}
.item-price h3 {
	font-weight: bold;
	-webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #fff;
	font-size: 3.2rem;
	letter-spacing: 1px;
}
/* Сounseling Section End */



/* bussines Section Start */
.bussines {
	position: relative;
	height: 60rem;
	border-top: 6px solid var(--pink-color);
	border-bottom: 6px solid var(--pink-color);
}
@media screen and (max-width: 1100px) {
	.bussines {
		height: max-content;
	}
}

.bussines__bg {
	position: absolute;
	inset: 0 0 0 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.bussines__bg img {
	width: 100%;
	height: 100%;
}

.bussines .container {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
}

@media screen and (max-width: 1100px) {
	.bussines .container {
		flex-direction: column;
	}
}

.bussines__wrap {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.bussines__title {
	margin: 0 0 3.4rem 0;
}

.bussines__left {
    display: flex;
}
.bussines__left img {
    width: 31rem;
    height: 25rem;
    object-fit: contain;
}

.bussines__dsc {
	max-width: 60rem;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
}

.bussines__dsc .custom-icon {
	font-size: 10rem;
	transform: rotate(-20deg);
}

/* bussines Section End */


/* Services Section Start */
.services {
	position: relative;
}

.services-item {
	position: relative;
	padding: 4.5rem 0;
}
.services-item .container {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 8rem;
	z-index: 10;
}
.services-item:nth-child(odd) {
	background: #f1f1f1 url(../images/wecanhelp_bg.png);
	background-repeat: no-repeat;
	background-size: 100% 100%;
	color: var(--body-color);
}
.services-item:nth-child(even) {
	background: #212121 url(../images/wecanhelp_bg.png);
	background-repeat: no-repeat;
	background-size: 100% 100%;
}
.services-item::after,
.services-item::before {
	content: "";
	position: absolute;
	background: url(../images/hero_target.png);
	background-repeat: no-repeat;
	background-size: contain;
	width: 70rem;
	height: 64rem;
	filter: blur(120px);
	opacity: 0.4;
	z-index: 0;
}

.services-item::after {
	top: -20%;
	left: -20%;
}

.services-item::before {
	bottom: -20%;
	right: -20%;
}
.services-item .item-title {
	font-size: 7.2rem;
	font-weight: bold;
}
.services-item .item-img {
	display: flex;
}
.services-item .item-img img {
	width: 100%;
	max-height: 48rem;
	object-fit: contain;
}
.services-item .item-option {
	display: flex;
	justify-content: center;
	gap: 4.2rem;
	color: var(--body-color);
}
@media screen and (max-width: 1100px) {
	.services-item .item-option {
		flex-direction: column;
	}
}
.services-item .item-option .item {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	background: #fff;
	width: max-content;
	padding: 2.4rem;
	border-radius: var(--border-radius);
	min-height: 26rem;
	max-height: 26rem;
}
@media screen and (max-width: 1100px) {
	.services-item .item-option .item {
		width: 100%;
		min-height: 100%;
		max-height: 100%;
	}
}
.services-item .item-option h3 {
	font-size: 2.4rem;
	font-weight: bold;
}
.services-item .item-option .dsc {
	font-size: 1.6rem;
}
/* Services Section End */


/* FAQ Section Start */
.faq {
	padding: 4.6rem 0;
}
.faq-title {
	display: flex;
	align-items: center;
	gap: 4rem;
	margin: 0 0 7rem 0;
}
@media screen and (max-width: 1100px) {
	.faq-title {
		flex-direction: column;
	}
}
.faq-title span:nth-child(1) {
	flex-basis: 55%;
	font-family: var(--druk-font);
	font-weight: bold;
	font-size: 8.2rem;
	line-height: 108%;
}
.faq-title span:nth-child(2) {
	font-size: 3.2rem;
}

.faq-grid {
	display: flex;
	flex-direction: column;
	gap: 4.2rem;
}
.faq-grid .item {
	position: relative;
	background: #222222;
	border-radius: var(--border-radius);
	padding: 4.4rem;
	display: flex;
	flex-direction: column;
	gap: 3.4rem;
}
.faq-grid .item::after {
	content: "";
	position: absolute;
	bottom: -1px;
	right: -2px;
	background: linear-gradient(230deg, rgba(135, 40, 86, 0.35) 0%, rgba(237, 71, 151, 1) 100%);
	width: 100%;
	height: 100%;
	z-index: -1;
	border-radius: var(--border-radius);
}
.faq-grid .item-title {
	display: flex;
	align-items: center;
	gap: 2.4rem;
}
.faq-grid .item-number {
	width: 6.2rem;
	background: var(--pink-color);
	border-radius: 1rem;
	color: #fff;
	font-size: 2.2rem;
	aspect-ratio: 1 / 1;
	display: flex;
	justify-content: center;
	align-items: center;
}
.faq-grid .item-content {
	display: flex;
	flex-direction: column;
	gap: 3.4rem;
}
.faq-grid .item-content p {
	font-size: 1.8rem;
}
.faq-grid .item-content ul {
	padding: 0 0 0 2rem;
}
.faq-grid .item-content .group-text {
	display: flex;
	align-items: center;
	gap: 1rem;
}
.faq-grid .item-content .item-link {
	background: var(--pink-color);
	width: 100%;
	border-radius: var(--border-radius);
	padding: 1rem;
	color: #fff;
	text-align: center;
}
/* FAQ Section End */


/* On Top Section start */
.on-top {
	position: relative;
	background: #f1f1f1 url(../images/wecanhelp_bg.png);
	background-repeat: no-repeat;
	background-size: 100% 100%;
	color: var(--body-color);
	padding: 6.4rem;
}
.on-top::after,
.on-top::before {
	content: "";
	position: absolute;
	background: url(../images/hero_target.png);
	background-repeat: no-repeat;
	background-size: contain;
	width: 70rem;
	height: 64rem;
	filter: blur(120px);
	opacity: 0.4;
	z-index: 0;
}

.on-top::after {
	top: -20%;
	left: -20%;
}

.on-top::before {
	bottom: -20%;
	right: -20%;
}

.on-top .container {
	position: relative;
	z-index: 50;
}

.on-top__logo {
	position: relative;
	font-family: var(--lalezar-font);
	font-size: 13.3rem;
	font-weight: 900;
	text-transform: uppercase;
	text-align: center;
	line-height: 1;
	margin: 0 0 0 0;
	color: var(--pink-color);
	z-index: 0;
}
@media screen and (max-width: 1100px) {
	.on-top__logo {
		font-size: 10rem;
		margin: 0 0 0 0;
	}
}

.on-top .section__title {
	text-align: center;
	margin: 0 0 10.1rem 0;
}

.on-top__list {
	background: var(--body-color);
	border-radius: var(--border-radius) var(--border-radius) 0 0;
	display: flex;
	flex-direction: column;
}
.on-top__list > li {
	list-style: none;
	padding: 0;
	border-bottom: 1px solid #1f1f1f;
}
.on-top__list > li:last-child {
	border-bottom: none;
}
.on-top__list .list-title {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
	color: #fff;
	padding: 5.6rem 4.2rem;
	transition: background .4s;
	z-index: 1;
}
.on-top__list .list-title > img {
	transition: rotate .4s;
}
.on-top__list .list-title.accordion--expand {
	background: var(--pink-color);
	border-radius: var(--border-radius) var(--border-radius) 0 0;
}
.on-top__list .list-title.accordion--expand > img {
	transform: rotate(45deg);
}
.on-top__list .list-content {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 2.4rem;
	color: #fff;
	padding: 0;
	height: 0;
	opacity: 0;
	z-index: 0;
}
.on-top__list .list-content .title {
	font-size: 2.6rem;
}
.on-top__list .list-content .list {
	padding: 0 0 0 2rem;
}
.on-top__list .list-content .group-text {
	display: flex;
	align-items: center;
	gap: 1rem;
}
.on-top__list .list-title.accordion--expand + .list-content {
	background: var(--pink-color);
	padding: 3.6rem 4.2rem;
	opacity: 1;
	height: max-content;
}
/* On Top Section End */



/* Useful ion Start */
.useful {
	padding: 5.6rem;
}
.useful .section__title {
	text-align: center;
	margin: 0 0 7.8rem 0;
}

.useful__list {
	background: #fff;
	border-radius: var(--border-radius) var(--border-radius) 0 0;
	display: flex;
	flex-direction: column;
}
.useful__list > li {
	list-style: none;
	padding: 0;
	border-bottom: 1px solid #eeeeee;
}
.useful__list > li:last-child {
	border-bottom: none;
}
.useful__list .list-title {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
	color: #000;
	padding: 5.6rem 4.2rem;
	transition: background .4s;
	z-index: 1;
}
.useful__list .list-title > img {
	transition: rotate .4s;
}
.useful__list .list-title.accordion--expand {
	background: var(--pink-color);
	border-radius: var(--border-radius) var(--border-radius) 0 0;
	color: #fff;
}
.useful__list .list-title.accordion--expand > img {
	transform: rotate(45deg);
}
.useful__list .list-content {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 2.4rem;
	color: #000;
	padding: 0;
	height: 0;
	opacity: 0;
	z-index: 0;
}
.useful__list .list-content .title {
	font-size: 2.6rem;
}
.useful__list .list-content .list {
	padding: 0 0 0 2rem;
}
.useful__list .list-content .group-text {
	display: flex;
	align-items: center;
	gap: 1rem;
}
.useful__list .list-title.accordion--expand + .list-content {
	background: var(--pink-color);
	padding: 3.6rem 4.2rem;
	opacity: 1;
	height: max-content;
	color: #fff;
}
/* Useful Section End */

/* Progress Scroll Bar Start */
.progress-scroll-bar {
    position: fixed;
    bottom: 2.5rem;
    left: 0;
    width: 100%;
    height: max-content;
    transition: opacity .4s;
    opacity: 0;
    z-index: 0;
}
.progress-scroll-bar__logo {
    position: relative;
    top: 4.5rem;
}
.progress-scroll-bar__logo svg,
.progress-scroll-bar__logo svg path {
    fill: #fff;
    object-fit: contain;
}
@media screen and (max-width: 500px) {
	.progress-scroll-bar__logo svg {
        width: max-content;
        height: 15rem;
    }
}
.progress-scroll-bar__logo svg {
    position: relative;
}
.progress-scroll-bar__bar {
    width: 100%;
    display: flex;
    flex-direction: column;
}
.progress-scroll-bar__bar .text {
    font-family: var(--kumbh-font);
    font-size: 1.4rem;
    font-weight: 900;
    color: #fff;
    margin: 0 0 0 1.2rem;
    transition: opacity .4s;
}
.progress-scroll-bar__bar .line {
    position: relative;
    background: #fff;
    width: 0;
    height: 9px;
    border-radius: 999px;
}
/* Progress Scroll Bar End */


/* footer Section Start */
.footer {
	border-top: 1px solid #fff;
	padding: 5.3rem 0 0 0;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.footer__title {
	font-family: var(--duru-font);
	font-size: 2.4rem;
	margin: 0 0 2.3rem 0;
}

.footer__link {
	position: relative;
	color: #fff;
	font-size: 1.6rem;
}

.footer__link::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -5px;
	width: 0;
	height: 1px;
	background: var(--pink-color);
	transition: width .4s;
}

.footer__link:hover::after {
	width: 100%;
}

.footer__email {
	margin: 0 0 1rem 0;
}

.footer__phone {
	margin: 0 0 3.4rem 0;
}

.footer__logo {
	font-family: var(--lalezar-font);
	font-size: 14rem;
	font-weight: 900;
	color: rgba(255, 255, 255, .1);
	transition: text-shadow .4s;
}
@media screen and (max-width: 1100px) {
	.footer__logo {
		font-size: 10rem;
	}
}
@media screen and (max-width: 500px) {
	.footer__logo {
		font-size: 18rem;
	}
}
.footer__logo:hover {
	text-shadow: 0 0 2px var(--pink-color);
}

.footer .btn {
	padding: 1.4rem;
	border-radius: 1rem;
}

/* footer Section End */


.go-to-telegram {
	position: fixed;
	bottom: 5rem;
	right: 3rem;
	display: flex;
	z-index: 99;
}


/* Custom Modal */
#modal-container {
	font-family: var(--duru-font);
	background: var(--dark-color);
	border-radius: var(--border-radius);
	border: none;
	padding: 2rem;
}
#modal-container form label {
	font-size: 1.6rem;
    margin: 0 0 2rem 0;
    display: flex;
    flex-direction: column;
}
#modal-container input,
#modal-container textarea {
	width: 100%;
	padding: 1rem 1.5rem;
	border-radius: calc(var(--border-radius) / 2);
}
#modal-container textarea {
	max-height: 8rem;
}
#modal-container input[type="submit"] {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1rem;
	background: var(--pink-color);
	color: #fff;
	padding: 1.5rem 2.4rem;
	border-radius: var(--border-radius);
	cursor: pointer;
	border: none;
	transition: background .4s, transform .4s, border-color .4s;
}
#modal-container input[type="submit"]:hover {
	transform: scale(0.9);
}
#modal-close {
	background-color: transparent;
    filter: invert(1);
}