@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");
* {
	box-sizing: border-box;
	font-family: "Inter", sans-serif;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}
html {
	scroll-behavior: smooth;
}
body {
	line-height: 1;
}

ol,
ul {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
	content: none;
}

.swiper-pagination {
	display: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

a {
	text-decoration: none;
	/* Remove underline */
	color: inherit;
	/* Inherit the color from the parent */
	cursor: pointer;
	/* Set a pointer cursor for links */
}

button {
	padding: 0;
	border: none;
	font: inherit;
	color: inherit;
	background-color: transparent;
	cursor: pointer;
}

.btn {
	margin: 0 auto;
	width: 100%;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background-color: #000;
	color: #fff;
	font-family: Inter;
	font-size: 24px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	border-radius: 50px;
}

img {
	width: 100%;
}

.app {
	overflow: hidden;
}

.container {
	padding: 0 20px;
}

.header {
	padding: 20px 0;
}

.header .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.header__logo {
	max-width: 175px;
}

.header__menu,
.header__btn {
	display: none;
}

.header__menu {
	color: #000;
	text-align: center;
	font-family: Inter;
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}

.burger__menu {
	position: absolute;
	top: 75px;
	left: 0;
	right: 0;
	display: flex;
	flex-direction: column;
	gap: 30px;
	padding: 20px 10px;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: all ease-in-out 0.3s;
	background-color: #fff;
}

.burger__menu.open {
	opacity: 1;
	visibility: visible;
	pointer-events: all;
}

.burger__link {
	color: #000;
	text-align: center;
	font-family: Inter;
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}

.burger {
	position: relative;
	width: 35px;
	height: 15px;
	cursor: pointer;
}

.burger span {
	display: block;
	width: 100%;
	height: 100%;
}

.burger span::before,
.burger span::after {
	content: "";
	position: absolute;
	display: block;
	width: 100%;
	height: 3px;
	background-color: #000;
	border-radius: 5px;
	transition: all ease-in-out 0.3s;
}

.burger span::before {
	bottom: 0;
}

.burger span::after {
	top: 0;
}

.burger.open span::after {
	transform: rotate(45deg) translateY(-50%);
	top: 50%;
}

.burger.open span::before {
	transform: rotate(-45deg) translateY(50%);
	bottom: 50%;
}

.promo {
	margin-top: 20px;
	padding: 60px 0 0 0;
	background: url(../index/promo-bg.webp) center / cover no-repeat;
}

.promo__logo {
	max-width: 350px;
}

.promo__heading {
	margin-top: 30px;
	color: #fff;
	font-family: Inter;
	font-size: 24px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
}

.promo__subheading {
	margin-top: 30px;
	display: flex;
	gap: 30px;
}

.promo__people {
	max-width: 100px;
	min-width: 100px;
}

.promo__text {
	color: #fff;
	font-family: Inter;
	font-size: 24px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
}

.promo__arrow {
	position: relative;
	width: 70px;
	height: 75px;
	margin: 80px auto 0;
}

.promo__woman {
	margin-top: 100px;
}

.promo__woman img {
	display: block;
}

.arrow {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	cursor: pointer;
	width: 100%;
	height: 100%;
}

.arrow span {
	display: block;
	width: 100%;
	height: 100%;
	margin-top: -50px;
	border-bottom: 7px solid white;
	border-right: 7px solid white;
	border-radius: 5px;
	transform: rotate(45deg);
	animation: animate 2s infinite;
}

.arrow span:nth-child(2) {
	animation-delay: -0.2s;
}

.arrow span:nth-child(3) {
	animation-delay: -0.4s;
}

@keyframes animate {
	0% {
		opacity: 0;
		transform: rotate(45deg) translate(-10px, -10px) scale(0.7);
	}
	50% {
		opacity: 1;
	}
	100% {
		opacity: 0;
		transform: rotate(45deg) translate(10px, 10px);
	}
}

.about {
	padding: 20px 0;
}

.about__heading {
	color: #000;
	font-family: Inter;
	font-size: 40px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	text-transform: uppercase;
}

.about__text {
	margin-top: 40px;
	display: flex;
	flex-direction: column;
	gap: 30px;
	color: #000;
	font-family: Inter;
	font-size: 24px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}

.about__btn {
	margin-top: 20px;
}

.about__image {
	margin-top: 40px;
}

.steps {
	padding: 100px 0;
	background: url(/img/steps-bg.webp) center / cover no-repeat;
}

.steps__heading {
	color: #fff;
	font-family: Inter;
	font-size: 40px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	text-transform: uppercase;
}

.steps__wrapper {
	margin-top: 50px;
}

.swiper-slide {
	height: auto !important;
	transform: scale(0.8) !important;
}

.slide__wrapper {
	display: flex;
	flex-direction: column;
	gap: 50px;
	height: 100%;
	padding: 30px;
	border-radius: 30px;
	background: rgba(255, 255, 255, 0.4);
	backdrop-filter: blur(20px);
}

.slide__heading {
	color: #fff;
	font-family: Inter;
	font-size: 28px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	text-transform: uppercase;
}

.slide__text {
	color: #fff;
	font-family: Inter;
	font-size: 24px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}

.swiper-slide-active {
	transform: scale(1) !important;
	opacity: 1;
}

.slide__icon {
	max-width: 80px;
	align-self: center;
}

.steps__form {
	margin-top: 50px;
	max-width: 420px;
	width: 100%;
	margin-inline: auto;
	z-index: 1;
}


.remote__slider {
	margin-top: 50px;
}

.remote__content {
	margin-top: 50px;
}

.remote__heading {
	color: #000;
	font-family: Inter;
	font-size: 32px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
}

.remote__slide {
	border: 3px solid #000;
	border-radius: 20px;
	overflow: hidden;
}

.remote__slide img {
	display: block;
}

.remote__subheading {
	color: #000;
	font-family: Inter;
	font-size: 32px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
}

.remote__text {
	margin-top: 40px;
	display: flex;
	flex-direction: column;
	gap: 40px;
	color: #000;
	font-family: Inter;
	font-size: 24px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}

.goods {
	position: relative;
	padding: 70px 0;
	background: url("/img/goods-bg-desk.webp") center / cover no-repeat;
}

.goods-bg-coin {
	position: absolute;
	top: -50px;
	left: 0;
	z-index: -1;
}

.goods__heading {
	color: #000;
	text-align: center;
	font-family: Inter;
	font-size: 40px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	text-transform: uppercase;
}

.goods__item {
	margin-top: 100px;
}

.good__title {
	color: #000;
	font-family: Inter;
	font-size: 32px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	margin-top: 50px;
}

.good__text {
	margin-top: 40px;
	display: flex;
	flex-direction: column;
	gap: 40px;
	color: #000;
	font-family: Inter;
	font-size: 24px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}

.good__btn {
	position: relative;
	z-index: 2;
	margin-top: 40px;
}

.good__video {
	position: relative;
	z-index: -2;
	max-width: 100%;
}

.good__video video {
	width: 100%;
}

video::-webkit-media-controls-panel {
	display: none !important;
	opacity: 1 !important;
}

.reviews {
	position: relative;
	z-index: 1;
	padding: 100px 0 0 0;
	background: url(../index/reviews-bg.webp) top / cover no-repeat;
}

.reviews > .container {
	position: relative;
	z-index: 1;
}

.reviews::before {
	content: "";
	position: absolute;
	top: 0%;
	left: 0%;
	width: 100%;
	height: 100%;
}

.reviews__coin {
	position: absolute;
	top: -200px;
	left: 0;
}

.reviews__heading {
	position: relative;
	z-index: 1;
	color: #fff;
	font-family: Inter;
	text-wrap: balance;
	text-align: center;
	font-size: 40px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	text-transform: uppercase;
}

.reviews__subheading {
	margin-top: 20px;
	color: #fff;
	font-family: Inter;
	font-size: 24px;
	text-align: center;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}

.review__slide {
	/* height: 100%; */
	border-radius: 30px;
	border: 3px solid #fff;
	background: rgba(255, 255, 255, 0.4);
	backdrop-filter: blur(20px);
}

.review__name {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	padding: 15px 12px;
	border-radius: 30px;
	background: #fff;
	max-width: 200px;
	width: 100%;
	color: #000;
	text-align: center;
	font-family: Inter;
	font-size: 18px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}

.review__photo {
	height: 200px;
}

.review__photo img {
	height: 100%;
	object-fit: cover;
	border-top-left-radius: 30px;
	border-top-right-radius: 30px;
}

.review__text {
	padding: 24px 12px;
	color: #fff;
	font-family: Inter;
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}

.review__footer {
	position: relative;
	padding: 20px;
}

.review__border {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(
		90deg,
		rgba(255, 255, 255, 0.15172006302521013) 0%,
		rgba(255, 255, 255, 1) 45%,
		rgba(255, 255, 255, 1) 55%,
		rgba(255, 255, 255, 0.1545211834733894) 100%,
		rgba(255, 255, 255, 1) 100%
	);
}

.review__stars img {
	max-width: 25px;
}

.review__income {
	color: #fff;
	font-family: Inter;
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	margin-top: 0.25rem;
}

.review__income span {
	font-weight: 700;
}

.reviews__slider {
	padding-bottom: 102px;
	margin-top: 50px;
}

.reviews__slider .swiper-slide {
	position: relative;
	padding-bottom: 110px;
}

.swiper-pagination {
	margin-top: 20px;
	white-space: nowrap;
	overflow: hidden;
}

.swiper-pagination .swiper-pagination-bullet {
	display: inline-block;
	width: auto;
	font-size: 20px;
	text-align: center;
	height: 100%;
	margin: 0px 15px !important;
	padding: 10px 30px;
	background-color: rgba(255, 255, 255, 0.3);
	color: #fff;
	border-radius: 30px;
	border: 3px solid #fff;
	cursor: pointer;
	opacity: 1;
	transition: opacity 0.3s;
}

.swiper-pagination .swiper-pagination-bullet-active {
	opacity: 1;
	background-color: rgba(255, 255, 255, 1);
	color: #000;
}

.swiper-button-prev::after,
.swiper-button-next::after {
	content: "" !important;
}

.swiper-button-prev,
.swiper-button-next {
	bottom: 30px !important;
	top: auto !important;
	width: 40px;
	height: 70px;
	background: url(../index/slider-arrow.svg) center / cover no-repeat;
}

.swiper-button-prev {
	transform: rotate(180deg);
}

.faq {
	padding-block: 100px 20px;
	background-color: #000;
}

.faq__heading {
	color: #fff;
	font-family: Inter;
	font-size: 40px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	text-transform: uppercase;
}

.faq__subheading {
	margin-top: 20px;
	color: #fff;
	font-family: Inter;
	font-size: 24px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}

.faq__tabs {
	margin-top: 50px;
	display: flex;
	flex-direction: column;
	gap: 10px;

	@media screen and (min-width: 1200px) {
		min-height: 712px;
	}
}

.tab {
	position: relative;
	background-color: #fff;
	border-radius: 20px;
	transition: all 1s ease;
}

.tab-icon {
	font-size: 40px;
	font-weight: 700;
}

.tab__content {
	overflow: hidden;
	max-height: 0;
	opacity: 0;
	transition: max-height 0.5s ease, opacity 0.5s ease;
	font-family: Inter;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	padding-inline: 30px;
}
.tab__content.open {
	max-height: 1000px;
	opacity: 1;
	padding-bottom: 20px;
}
.tab-handle {
	position: relative;
	z-index: 1;
	padding: 20px 34px;
	width: 100%;
	text-align: start;
	transition: all 1s ease;

	&::after {
		content: "";
		position: absolute;
		top: 24px;
		right: 20px;
		width: 25px;
		height: 25px;
		background: url(/img/plus.svg) center / cover no-repeat;
	}
}

.tab-handle[aria-expanded="true"]::after {
	width: 25px;
	height: 4px;
	top: 35px;
	background: url(/img/minus.svg) center / cover no-repeat;
}

.tab__title {
	color: #000;
	font-family: Inter;
	font-size: 24px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	margin-right: 12px;
}

.tab__list {
	list-style: decimal;
	padding-left: 30px;
}

.faq__form {
	display: flex;
	align-items: center;
	margin-top: 50px;
}

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

.footer__logo {
	max-width: 170px;
	margin: 0 auto;
}

.footer__text {
	margin-top: 10px;
	color: #000;
	text-align: center;
	font-family: Inter;
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}

@media (min-width: 768px) {
	.container {
		max-width: 600px;
		margin: 0 auto;
	}
	.btn {
		max-width: 300px;
		height: 50px;
	}
	.goods {
		background: url(../index/goods-bg-desk.webp) center / contain no-repeat;
	}
}

@media (min-width: 1240px) {
	.container {
		max-width: 1200px;
		padding: 0;
	}
	.swiper-pagination {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		row-gap: 0.5rem;
	}
	.burger {
		display: none;
	}
	.header__menu {
		display: flex;
		gap: 45px;
		margin-left: 45px;
	}
	.header__btn {
		display: flex;
		margin: 0 0 0 auto;
	}
	.promo {
		padding: 0;
	}
	.promo .container {
		display: grid;
		grid-template-columns: 1fr 1fr;
	}
	.promo__content {
		padding-top: 70px;
	}
	.promo__woman {
		grid-row: 1;
	}
	.about {
		padding: 100px 0;
	}
	.about .container {
		display: grid;
		grid-template-columns: repeat(5, 1fr);
		gap: 60px;
	}
	.about__heading {
		text-align: center;
		grid-column: 1 / 6;
	}
	.about__text {
		grid-column: 1 / 4;
	}
	.about__btn {
		grid-column: 1 / 4;
	}
	.about__image {
		grid-row: 2;
		grid-column: 4 / 6;
	}
	.steps__wrapper {
		display: grid;
		grid-template-columns: 1fr 1fr;
	}
	.steps__slider,
	.remote__slider {
		min-width: 0;
	}
	.steps__form {
		margin-top: 0;
		justify-self: flex-end;
		margin-inline: 0;
	}
	.remote__wrapper {
		display: grid;
		align-items: center;
		grid-template-columns: 1fr 1fr;
	}
	.remote__content {
		padding: 0 50px;
	}
	.remote__heading {
		font-size: 48px;
		text-transform: uppercase;
		text-align: center;
	}
	.goods__heading {
		font-size: 48px;
	}
	.goods__item {
		display: grid;
		align-items: center;
		grid-template-columns: 1fr 1fr;
	}
	.goods__item:nth-child(2) .good__video {
		grid-column: 2;
		grid-row: 1;
	}
	.faq__wrapper {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 50px;
	}
	.faq__form {
		margin: 0 40px 0;
	}
	.reviews__coin {
		display: none;
	}
	.review__name {
		display: none;
	}
	.swiper-button-prev,
	.swiper-button-next {
		display: none !important;
	}
	.reviews .container {
		max-width: 100%;
	}
	.swiper1 .swiper-slide {
		transform: scale(0.8) !important;
		transition: all 0.3s ease-in;
	}
	.swiper1 .swiper-slide-active {
		transform: scale(1) !important;
	}
	.swiper1 {
		width: 800px;
	}

	.review__text {
		padding: 0 20px;
		margin: 24px 0;
		color: #fff;
		font-family: Inter;
		font-size: 24px;
		font-style: normal;
		font-weight: 500;
		line-height: normal;
	}
	.review__income {
		color: #fff;
		font-family: Inter;
		font-size: 24px;
		font-style: normal;
		font-weight: 500;
		line-height: normal;
	}
}
