/* BASE */
.title {
	font-weight: 500;
	margin: 0;
}

.title_type_first {
	font-size: 40px;
	line-height: 1.2;
}

.title_type_second {
	font-size: 32px;
	line-height: 1.25
}

.section_type_qr .title_type_second {
	text-align: center;
}

.title_type_third {
	font-size: 20px;
	line-height: 1.3;
}

.title_mb_20 {
	margin-bottom: 20px;
}

.paragraph {
	font-size: 18px;
	font-weight: 400;
	line-height: 1.33;
	margin: 0;
}

.section {
	padding: 64px 0;
}

.image {
	display: block;
	width: 100%;
	height: auto;
	max-width: 100%;
	max-height: 100%;
}

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

.list_type_number {
	counter-reset: item;
}

.list_type_number li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 16px;
}

.list_type_number li::before {
	content: counter(item);
	counter-increment: item;
	font-size: 18px;
	line-height: 1.2;
	font-weight: 500;
	background: #4D35AF;
	min-width: 32px;
	min-height: 32px;
	max-width: 32px;
	max-height: 32px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #fff;
}

.bold {
	font-weight: 500;
}

@media screen and (max-width: 1023px) and (min-width: 768px) {
	.static-container {
		max-width: 768px;
		margin: 0 auto;
	}
}

@media screen and (max-width: 767px) {
	.title_type_first {
		font-size: 28px;
	}

	.title_type_second {
		font-size: 24px;
	}

	.section_type_qr .title_type_second {
		text-align: left;
	}

	.paragraph {
		font-size: 16px;
		line-height: 1.37;
	}

	.section {
		padding: 48px 0;
	}

	.link {
		font-size: inherit;
	}

	.banks .title_type_second {
		margin-bottom: 24px;
	}
}

/* BANNER */
.section_type_main-banner {
	background: radial-gradient(92.5% 92.5% at 50% 0%, rgba(213, 255, 199, 0.6) 0%, rgba(255, 255, 255, 0.6) 91.52%);
}

.main-banner {
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(2, 1fr);
	align-items: center;
	margin-bottom: 64px;
}

.main-banner__title {
	margin-bottom: 20px;
}

.main-banner__text {
	font-size: 24px;
	margin-bottom: 32px;
	font-weight: 500;
}

@media screen and (max-width: 1023px) {
	.main-banner {
		display: grid;
		gap: 20px;
		grid-template-columns: 1fr;
		grid-template-rows: repeat(2, auto);
	}

	.main-banner__image-wrapper {
		max-width: 550px;
		margin: 0 auto;
	}
}

@media screen and (max-width: 767px) {
	.main-banner {
		margin-bottom: 48px;
	}

	.main-banner__text {
		font-size: 18px;
	}
}

.button_type_tasks {
	margin: 0 auto;
	display: block;
	max-width: max-content;
}

/* STEPS */
.steps {
	margin: 0;
	max-width: none;
}

.steps__title {
	margin-bottom: 40px;
}

.steps__list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.steps__item {
	display: flex;
	flex-direction: column;
	gap: 16px;
	position: relative;
	background: #F3F3F3;
	padding: 24px 20px;
	border-radius: 20px;
}

.steps__image-wrapper {
	width: 48px;
	height: 48px;
	min-width: 48px;
	min-height: 48px;
}

.steps__text {
	font-size: 16px;
}

@media screen and (max-width: 1023px) {
	.steps__list {
		grid-template-columns: 1fr;
		gap: 20px;
		grid-template-rows: repeat(3, auto);
	}
}

@media screen and (max-width: 767px) {
	.steps__title {
		margin-bottom: 24px;
	}

	.steps__item {
		gap: 8px;
	}
}

@media screen and (min-width: 768px) {
	.button_type_steps {
		margin: 0 auto;
		display: block;
		width: max-content;
	}
}

.title_type_install {
	text-align: center;
	margin-bottom: 32px;
}

@media screen and (max-width: 767px) {
	.title_type_install {
		text-align: left;
	}

	.title_type_install {
		margin-bottom: 24px;
	}
}

.install {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	align-items: center;
}

@media screen and (max-width: 1023px) {
	.install {
		grid-template-columns: 1fr;
	}

	.install_image-wrapper {
		max-width: 550px;
		margin: 0 auto;
	}
}

.list_type_number {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.section_type_qr {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.section_type_qr .paragraph {
	margin-bottom: 16px;
}

.qr {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.qr__item {
	border-radius: 20px;
	background: #F3F3F3;
	padding: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 20px;
}

.qr__image-wrapper {
	display: block;
	max-width: 140px;
}

.qr__link-image-wrapper {
	display: block;
	max-width: 180px;
}

@media screen and (max-width: 1024px) {
	.qr {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (max-width: 767px) {
	.qr__image-wrapper {
		display: none;
	}

	.qr {
		grid-template-columns: 1fr;
		text-align: center;
		justify-content: center;
		align-items: center;
		background: #F3F3F3;
		padding: 32px;
		border-radius: 20px;
	}

	.qr__item {
		padding: 0;
	}	

	.section_type_qr {
		gap: 24px;
	}
}

.how {
	display: grid;
	grid-template-columns: auto 455px;
	gap: 20px;
	align-items: center;
}

.how h2 {
	margin-bottom: 32px;
}

@media screen and (max-width: 1023px) {
	.how {
		grid-template-columns: 1fr;
	}

	.how__image-wrapper {
		max-width: 455px;
		margin: 0 auto;
	}
}

/* FAQ */
.faq {
	padding-bottom: 20px;
	margin-bottom: 20px;
}

.faq__tabs {
	list-style: none;
	display: flex;
	justify-content: flex-start;
	gap: 8px;
	flex-wrap: nowrap;
	overflow-x: scroll;
	scrollbar-width: none;
	margin: 12px 0 20px;
	padding: 0;
}

.faq__tabs::-webkit-scrollbar {
	display: none;
}

.faq__tabs-link {
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: 1.4;
	text-decoration: none;
	color: #0D0D0D;
	background-color: #F1F1F1;
	border-radius: 20px;
	padding: 4px 16px;
	white-space: nowrap;
	display: block;
}

.faq__tabs-link:hover {
	color: #6A50D2;
	background-color: #EFECFB;
}

.faq__tabs-link:active,
.faq__tabs-item_active a,
.faq__tabs-item_active a:hover {
	color: #FFFFFF;
	background-color: #6A50D2;
}

.faq__question {
	cursor: pointer;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.1;
	padding: 20px 20px 20px 0;
	position: relative;
}

.faq__question:after {
	background: url("data:image/svg+xml,%3Csvg width='12' height='7' viewBox='0 0 12 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0.219168 0.875342C0.564178 0.44408 1.19347 0.374158 1.62473 0.719168L6.00004 4.21941L10.3753 0.719168C10.8066 0.374158 11.4359 0.44408 11.7809 0.875342C12.1259 1.3066 12.056 1.9359 11.6247 2.28091L6.62473 6.28091C6.25951 6.57308 5.74056 6.57308 5.37534 6.28091L0.375342 2.28091C-0.0559202 1.9359 -0.125842 1.3066 0.219168 0.875342Z' fill='black'/%3E%3C/svg%3E") 50% 50% no-repeat;
	content: '';
	height: 20px;
	position: absolute;
	top: 20px;
	right: 0;
	width: 20px;
	transform: rotate(360deg);
	transition: transform 150ms ease
}

.faq__question:hover:after,
.faq__question_show:after {
	filter: invert(17%) sepia(97%) saturate(7273%) hue-rotate(252deg) brightness(85%) contrast(101%)
}

.faq__question_show,
.faq__question:hover {
	color: #6A50D2
}

.faq__question_show:after {
	transform: rotate(180deg)
}

.faq__answer,
.faq__answer * {
	font-size: 14px;
	line-height: 1.4;
	list-style-position: inside;
	margin: 0;
	padding: 0
}

.faq__answer {
	display: none;
	margin-bottom: 20px
}

.faq__question_show+.faq__answer {
	display: block;
}

.faq__description-list {
	display: none;
	margin: 0;
}

.faq__description-list_active {
	display: block;
}
/* BANKS */
.button__text_hidden {
	display: none
}

.banks {
	background: #fff;
	display: flex;
	flex-direction: column;
	justify-content: center;
	place-items: center;
}

.banks h2 {
	margin-bottom: 32px;
}

.badge-pay {
	grid-gap: 57px;
	display: block;
	margin-bottom: 110px;
	margin-top: 20px;
	padding: 0px;
	position: relative;
}

.tweak__item__badge-pay {
	grid-gap: 57px;
	display: block;
	margin-bottom: 110px;
	margin-top: 20px;
	padding: 0px;
	position: relative;
}

.banks__title {
	font: 500 32px/48px Gotham, Arial, Helvetica, sans-serif;
	text-align: center;
	margin-bottom: 8px;
	margin-top: 55px;
	color: #0D0D0D;
}

.google-pay__title {
	font: 500 32px/48px Gotham, Arial, Helvetica, sans-serif;
	text-align: center;
	margin-bottom: 45px;
	color: #0D0D0D;
}


.banks__text {
	text-align: center;
	font: 350 18px/28px Gotham, Arial, Helvetica, sans-serif;
	color: #0D0D0D;
}

.banks__search {
	outline: none;
	border: none;
	border-bottom: 1px solid #E7E7E7;
	width: 560px;
	margin: 0 auto 32px;
	display: flex;
	align-items: center;
	gap: 18px;
	height: 44px;
	color: #7E7E7E;
	font: 325 14px/22px Gotham, Arial, Helvetica, sans-serif;
}

.banks__search::placeholder {
	color: #7E7E7E;
}

.banks__icon-close {
	background: url("../images/icon-close.png") transparent no-repeat;
	background-size: 100%;
	border: none;
	outline: none;
	width: 18px;
	height: 18px;
	transition: all .15s ease-out;
}

.banks__icon-close:hover {
	animation: rounded linear .15s;
}

.banks__icon-search {
	background: url("../images/icon-search.png") transparent no-repeat;
	background-size: 100%;
	border: none;
	outline: none;
	width: 18px;
	height: 18px;
	transition: all .15s ease-out;
}

.banks__icon-search:hover {
	transform: scale(1.1);
}

.banks__list {
	display: grid;
	padding: 0;
	margin: 0;
	list-style: none;
	grid-template-columns: repeat(6, 1fr);
	gap: 20px;
}

.banks__list-item {
	overflow: hidden;
	height: 80px;
}

.banks__list-item-link {
	object-fit: cover;
	pointer-events: none;
}

.banks__list-item-link-logo {
	transition: transform .15s linear;
	height: 100%;
	width: 100%;
}

.banks__list-item-link-logo:hover {
	transform: scale(1.07);
}

.banks .button-wrapper {
	padding: 30px;
}

@media all and (max-width: 1279px) {
	.banks__list {
		grid-template-columns: repeat(5, 1fr);
	}

	.banks__text {
		margin-bottom: 16px;
	}
}

@media all and (max-width: 1023px) {
	.banks__title {
		font: 500 26px/40px Gotham, Arial, Helvetica, sans-serif;
		margin-bottom: 16px;
	}

	.banks__text {
		margin: 0 0 32px;
		font: 350 16px/24px Gotham, Arial, Helvetica, sans-serif;
	}

	.banks__search {
		border-bottom: 1px solid #E7E7E7;
		max-width: 60%;
		margin: 0 auto 24px;
		gap: 12px;
		height: 32px;
		font: 325 14px/20px Gotham, Arial, Helvetica, sans-serif;
	}

	.banks__icon-close {
		width: 14px;
		height: 14px;
	}

	.banks__icon-search {
		width: 14px;
		height: 14px;
	}

	.banks__list {
		grid-template-columns: repeat(4, 1fr);
		gap: 16px;
	}

	.banks .button-wrapper {
		padding: 30px;
	}
}

@media screen and (max-width: 767px) {
	.banks__title {
		font: 500 20px/26px Gotham, Arial, Helvetica, sans-serif;
	}

	.banks__text {
		margin: 0 0 24px;
		font: 350 16px/24px Gotham, Arial, Helvetica, sans-serif;
	}

	.banks__search {
		max-width: 90%;
		gap: 12px;
		height: 28px;
		font: 325 14px/20px Gotham, Arial, Helvetica, sans-serif;
		color: #1d1d1d
	}

	.banks__list {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
		margin-bottom: 32px;
	}

	.banks__list-item {
		height: auto;
	}

	.banks .button-wrapper {
		padding: 0 0 30px;
		width: 100%;
	}
}

.doc {
	background: #EFEFEF;
}

.doc h2 {
	margin-bottom: 32px;
}

.doc__list {
	display: flex;
	list-style: none;
	justify-content: space-between;
	padding: 0;
	gap: 48px;
	margin: 0px;
	flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
	.doc__list {
		flex-direction: column;
	}

	.button {
		width: 100%;
		max-width: 100%;
	}

	.doc__list .link, .doc__list p {
		font-size: 18px;
	}
}