/* #region HERO */
.hero {
	background-image: url("/img/bg-mob.jpg");
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	padding-bottom: 141px;
	padding-top: 54px;
}
.hero__text {
	color: #ffd78f;
	font-family: "DM Sans";
	font-size: 20px;
	font-weight: 700;
	line-height: 27px;
	margin-bottom: 10px;
}
.hero__title {
	color: #fff;
	font-family: "DM Sans";
	font-size: 43px;
	font-weight: 700;
	line-height: 56px;
	margin-bottom: 13px;
	text-align: center;
}

.hero__text-comment {
	color: #fff;
	font-family: "DM Sans";
	font-size: 18px;
	font-weight: 400;
	line-height: 28px;
	margin-bottom: 31px;
}

.hero__button {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: transparent;
	position: relative;
	margin-left: 20px;
	cursor: pointer;
	overflow: visible;

	.hero__button-icon {
		position: absolute;
		width: 100%;
		height: 100%;
		background: url("/img/button-svg.svg") center/contain no-repeat;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		pointer-events: none;
	}

	&::before {
		content: "";
		position: absolute;
		display: block;
		width: 40px;
		height: 40px;
		border-radius: 25px;
		border: 1px solid rgba(255, 255, 255, 0.4);
		background: transparent;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		animation: pulse 2s infinite;
	}

	&::after {
		content: "";
		position: absolute;
		width: 100%;
		height: 100%;
		border-radius: 50%;
		border: 1px solid rgba(255, 255, 255, 0.4);
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		animation: pulse 2s infinite 1s;
	}
}

@keyframes pulse {
	0% {
		transform: translate(-50%, -50%) scale(1);
		opacity: 0.6;
	}
	100% {
		transform: translate(-50%, -50%) scale(2.5);
		opacity: 0;
	}
}
/* #endregion HERO */

/* #region STATISTICS */
.statistics__list-item {
	border-radius: 20px;
	border: 1px solid rgba(255, 255, 255, 0.4);
	background: #322318;
	padding-top: 30px;
	padding-bottom: 30px;
	width: 288px;
	display: flex;
	flex-direction: column;
	align-items: center;
	transition: background-color 0.3s;

	&:hover {
		background-color: #f1c069;

		.statistics__list-item-title {
			color: #09040c;
		}

		.statistics__list-item-text {
			color: #09040c;
		}
	}
}
.statistics__list {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	padding-top: 90px;
	gap: 25px;
}
.statistics__list-item:first-child {
	position: absolute;
	top: -180px;
}

.statistics__list-item-title {
	color: #fff;
	text-align: center;
	font-family: "DM Sans";
	font-size: 24px;
	font-style: normal;
	font-weight: 700;
	line-height: 32px;
	margin-top: 18px;
	margin-bottom: 7px;
	transition: color 0.3s;
}
.statistics__list-item-text {
	color: #f1c069;
	text-align: center;
	font-family: "DM Sans";
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
	transition: color 0.3s;
}
.statistics {
	background: #543f30;
	padding-top: 90px;
}
.hero__wrapper-buttons {
	display: flex;
}
.section__wrapper {
	position: relative;
}
.section__wrapper-main {
	width: 100%;
}
/* #endregion STATISTICS */

/* #region EARNINGS */
.earnings {
	background: #543f30;
	padding-block: 120px;
}
.earnings .container {
	z-index: 3;
}
.earnings {
	position: relative;
	overflow: hidden;
}
.earnings__stitle {
	color: #ffd78f;
	font-family: "DM Sans";
	font-size: 20px;
	font-weight: 700;
	line-height: 27px;
}
.earnings__title {
	color: white;
	font-family: "DM Sans";
	font-size: 32px;
	font-weight: 700;
	line-height: 42px;
	margin-bottom: 15px;
}
.earnings__text {
	color: #fff;
	font-family: "DM Sans";
	font-size: 16px;
	font-weight: 400;
	line-height: 28px;
}
.earnings__text:not(:first-child) {
	margin-bottom: 20px;
}
.earnings__circle {
	position: absolute;
	width: 188px;
	bottom: 0;
	right: 0;
}
.about__img {
	width: 230px;
	top: 0;
}
.earnings__wrapper {
	z-index: 4;
}
/* #endregion EARNINGS */

/* #region WORK */
.works {
	background: #543f30;
	padding-top: 54px;
	padding-bottom: 35px;
}
.works__list {
	gap: 28px;
}
.works__list-item-img {
	margin-bottom: 24px;
}
.works__list-item-subtitle {
	color: #fff;
	text-align: center;
	font-family: "DM Sans";
	font-size: 20px;
	font-weight: 700;
	line-height: 27px;
	margin-bottom: 11px;
}
.works__list-item-text {
	color: #fff4e1;
	text-align: center;
	font-family: "DM Sans";
	font-size: 16px;
	font-weight: 400;
	line-height: 28px;
}
.works__subtitle {
	color: #f1c069;
	text-align: center;
	font-family: "DM Sans";
	font-size: 20px;
	font-weight: 700;
	line-height: 27px;
	margin-bottom: 9px;
}
.works__title {
	color: #fff;
	text-align: center;
	margin-bottom: 5px;
	font-family: "DM Sans";
	font-size: 32px;
	font-weight: 700;
	line-height: 42px;
	margin-bottom: 35px;
}
.works__text {
	color: #fff4e1;
	text-align: center;
	font-family: "DM Sans";
	font-size: 16px;
	font-weight: 400;
	line-height: 28px;
	margin-bottom: 35px;
}
.works__list {
	display: flex;
	flex-direction: column;
}
.works__list-item {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.accent {
	color: #fbd38d;
}
/* #endregion WORK */

/* #region PAYMENT METHOD */
.paymentMethod {
	background-image: url("/img/paymentTablet.jpg");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: bottom;
	padding-top: 21px;
	padding-bottom: 44px;
}
.paymentMethod__title {
	color: #fff;
	text-align: center;
	font-family: "DM Sans";
	font-size: 32px;
	font-weight: 700;
	line-height: 42px;
	margin-bottom: 25px;
}
.paymentMethod__list-item-wrapper {
	border-radius: 20px;
	background: #322318;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 10px;
}
.paymentMethod__list-item {
	color: #ffe8be;
	text-align: center;
	font-family: "DM Sans";
	font-size: 16px;
	font-weight: 700;
	line-height: 20px;
	min-width: 55px;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.paymentMethod__list {
	display: flex;
	align-items: center;
	gap: 32px;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: 44px;
}
.paymentMethod__support-wrapper-button {
	width: 65px;
	height: 65px;
	border-radius: 32.5px;
	border: 1px solid #be865e;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background-color: transparent;
	position: relative;
}
.paymentMethod__support-wrapper-button::before {
	content: "";
	position: absolute;
	display: block;
	border-radius: 22.5px;
	background: #543f30;
	box-shadow: 0 0 10px 0 rgba(240, 130, 16, 0.68);
	width: 45px;
	height: 45px;
}
.paymentMethod__support-wrapper-button-img {
	position: relative;
	z-index: 3;
}
.paymentMethod__support {
	border-radius: 10px;
	background: #5e472f;
	box-shadow: 0 0 174px 0 rgba(35, 25, 17, 0.5);
	width: 100%;
	padding: 34.01px 20px 39.99px 20px;
}
.paymentMethod__support-wrapper {
	display: flex;
	margin-top: 25px;
	gap: 15px;
}
.paymentMethod__support-title {
	color: #fff;
	font-family: "DM Sans";
	font-size: 24px;
	font-weight: 700;
	line-height: 32px;
}
.paymentMethod__support-subtitle {
	color: #f1c069;
	font-family: "DM Sans";
	font-size: 20px;
	font-weight: 700;
	line-height: 27px;
	margin-bottom: 13px;
}
.paymentMethod__support-img {
	display: none;
}
/* #endregion PAYMENTMETHOD */

/* #region TABLE */
.table {
	width: 100%;
	display: block;
	overflow-x: scroll;
	margin: 0 auto;

	scrollbar-color: #f1c069 transparent;
	scrollbar-width: thin;

	&::-webkit-scrollbar {
		height: 3px;
	}
	&::-webkit-scrollbar-track {
		background: transparent;
	}
	&::-webkit-scrollbar-thumb {
		background: #f1c069;
		border-radius: 5px;
		width: 68px;
	}
}

@media screen and (min-width: 1293px) {
	.table {
		overflow-x: hidden;
	}
}

.table__col {
	padding: 12px 15px;
	vertical-align: middle;
	font-size: 16px;
	text-align: center;
}
.table__user {
	padding: 0 70px;
	text-align: start;
}
.table__row:nth-child(odd) {
	background: #453320;
}
.table__row:nth-child(even) {
	background: #4f3928;
}
.table__payment {
	padding: 0 60px;
}
.table__user-name {
	display: flex;
	align-items: center;
}
.table__image {
	margin-right: 20px;
}
.table__asset {
	padding: 0 15px;
	min-width: 277px;
	text-align: center;
}
.table__direction,
.table__amount,
.table__expiry-time,
.table__open-time {
	padding: 0 40px;
}
.table__direction {
	padding: 0 40px;
	min-width: 362px;
}
.table__amount {
	min-width: 207px;
}
.table__user {
	min-width: 362px;
	padding: 16px;
}
.table__row {
	color: #fff;
	font-family: "DM Sans";
	font-size: 18px;
	font-weight: 400;
	line-height: 30px;
}
.table__section {
	background-image: url("/img/table-section.jpg");
	background-size: cover;
}
.table__section {
	padding-top: 54px;
	padding-bottom: 60px;
}
.table__section-title {
	color: #fff;
	text-align: center;
	margin-bottom: 6px;
	font-family: "DM Sans";
	font-size: 32px;
	font-weight: 700;
	line-height: 42px;
}
.table__section-subtitle {
	color: #f1c069;
	text-align: center;
	font-family: "DM Sans";
	font-size: 20px;
	font-weight: 700;
	line-height: 27px;
	margin-bottom: 9px;
}
.table__section-text {
	color: #fff4e1;
	text-align: center;
	font-family: "DM Sans";
	font-size: 16px;
	font-weight: 400;
	line-height: 28px;
	margin-bottom: 25px;
}

.results__header {
	background: #684c37;
	height: 64px;
	color: #fff4e1;
	font-family: "DM Sans";
	font-size: 16px;
	font-weight: 400;
	line-height: 30px;
}

.table__section-wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: 25px;
	gap: 20px;
	width: 100%;
}
.table__section-wrapper-links {
	border-radius: 10px;
	background: #f1c069;
	color: #09040c;
	font-family: "DM Sans";
	padding: 9px 20px;
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: 24px;
	transition: background-color 0.3s, color 0.3s;

	&:hover {
		background-color: #4f3928;
		color: #fff;
	}
}
.table__col .paymentMethod__list-item-wrapper {
	margin-bottom: 0;
	margin-left: auto;
	margin-right: auto;
}
/* #endregion TABLE */

/* #region PROGRAM */
.program {
	padding-block: 60px 35px;
	background-color: #543f30;
}
.program__image {
	margin-bottom: 18px;
	max-width: 200px;
}
.program-subtitle {
	color: #f1c069;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.35;
	margin-bottom: 10px;
}
.program-title {
	color: #fff;
	font-size: 32px;
	font-weight: 700;
	line-height: 1.3;
	margin-bottom: 10px;
}
.program-text-wrapper {
	display: flex;
	flex-direction: column;
	gap: 10px;
	color: #fff4e1;
	line-height: 1.75;
	margin-bottom: 20px;
}
.program__list {
	display: flex;
	gap: 20px;
	margin-bottom: 30px;
}
.program__list-item {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.program__list-item-image {
	display: flex;
	width: 60px;
	height: 60px;
	justify-content: center;
	align-items: center;
	flex-shrink: 0;
	border-radius: 30px;
	background: #d69f80;
	margin-bottom: 11px;

	img {
		width: 30px;
	}
}

.program__list-item-percent {
	color: #fff;
	text-align: center;
	font-size: 32px;
	font-weight: 700;
	line-height: 1.3;
}

.program__list-item-level {
	color: #f1c069;
	text-align: center;
	line-height: 1.75;
}

/* #endregion PROGRAM */

/* #region RESPONSIVE 744*/
@media screen and (min-width: 744px) {
	.hero {
		background-image: url("/img/bg-tablet.jpg");
		background-position: 50% 30%;
		padding-top: 60px;
	}
	.hero__title {
		margin-bottom: 6px;
	}
	.statistics__list-item {
		width: 246px;
	}
	.statistics__list {
		flex-wrap: wrap;
		flex-direction: row;
		width: 540px;
		justify-content: center;
	}
	.statistics__list-item:nth-child(1) {
		left: 0;
	}
	.statistics__list-item:nth-child(2) {
		position: absolute;
		top: -180px;
		right: 0;
	}
	.hero {
		padding-bottom: 266px;
	}
	.earnings .container {
		align-items: start;
	}
	.earnings__circle {
		width: 230px;
	}
	.works__list {
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: center;
	}
	.works__list-item {
		width: 222px;
	}

	.paymentMethod {
		padding-top: 275px;
	}
	.paymentMethod__list {
		width: 524px;
	}

	.paymentMethod__support {
		width: 545px;
	}
	.table__section-wrapper {
		justify-content: flex-start;
	}
}
/* #endregion RESPONSIVE 744*/

/* #region RESPONSIVE 1440 */
@media screen and (min-width: 1440px) {
	.hero {
		background-image: url("/img/bg-desktop.jpg");
	}
	.hero {
		padding-bottom: 316px;
	}
	.statistics {
		padding-top: 240px;
	}
	.statistics__list-item {
		width: 416px;
	}
	.statistics__list {
		width: 100%;
		padding-top: 0;
		bottom: 90px;
		position: absolute;
	}
	.statistics__list-item:nth-child(1) {
		position: static;
	}
	.statistics__list-item:nth-child(2) {
		position: static;
	}
	.section__wrapper-main {
		width: 983px;
	}
	.hero .container {
		align-items: start;
	}
	.hero__title {
		text-align: start;
	}
	.hero__text {
		font-size: 32px;
		line-height: 34px;
	}
	.hero__title {
		font-size: 76px;
		line-height: 99px;
	}
	.hero__text-comment {
		font-size: 24px;
		margin-bottom: 47px;
	}
	.about__img {
		min-width: 799px;
		min-height: 768px;
		position: absolute;
		left: -399px;
		z-index: 1;
	}

	.earnings__wrapper {
		width: 624px;
	}
	.earnings .container {
		align-items: center;
	}
	.earnings__stitle {
		font-size: 32px;
		line-height: 42px;
	}
	.earnings__title {
		font-size: 57px;
		line-height: 74px;
		margin-bottom: 7px;
	}
	.earnings__text {
		font-size: 18px;
		line-height: 30px;
	}
	.earnings__text:not(:first-child) {
		margin-bottom: 30px;
	}

	.earnings__circle {
		display: none;
	}
	.earnings__circle-desktop {
		display: block;
		position: absolute;
		top: 0;
		right: 25%;
		height: auto;
	}
	.earnings__wrapper {
		position: relative;
	}

	.works {
		background-image: url("/img/works-bg.jpg");
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
		padding-top: 111px;
		padding-bottom: 90px;
	}
	.works__list {
		width: 100%;
		justify-content: space-between;
	}
	.works__list-item {
		width: 323px;
		position: relative;
	}
	.works__list-item:not(:last-child)::before {
		content: "";
		position: absolute;
		width: 100px;
		height: 34px;
		background-image: url("/img/work-arrow.svg");
		right: -120px;
		top: 30%;
		transform: translateY(-30%);
	}
	.works__title {
		font-size: 57px;
		margin-bottom: 9px;
	}
	.works__text {
		font-size: 18px;
		margin-bottom: 55px;
	}

	.paymentMethod {
		background-image: url("/img/paymentDesktop.jpg");
	}

	.paymentMethod {
		padding-top: 230px;
	}
	.paymentMethod__list {
		width: 100%;
		gap: 59px;
		margin-bottom: 200px;
	}
	.paymentMethod {
		padding-bottom: 120px;
	}
	.paymentMethod__support {
		padding: 50.37px 40px 60px 40px;
	}
	.paymentMethod__support-title {
		font-size: 43px;
	}
	.paymentMethod__support-subtitle {
		font-size: 32px;
		margin-bottom: 17px;
	}
	.paymentMethod__support {
		position: relative;
	}
	.paymentMethod__support-img {
		display: block;
		position: absolute;
		width: 673px;
		height: 409px;
		top: -150px;
		right: 0;
	}
	.paymentMethod__support-wrapper {
		margin-top: 40px;
	}
	.table {
		width: 1304px;
		overflow-x: hidden;
		max-width: 1304px;
	}
	.paymentMethod__support {
		width: 100%;
	}
	.table__section {
		padding-block: 110px 120px;
	}

	.table__section-subtitle {
		font-size: 32px;
		line-height: 1.3;
	}
	.table__section-title {
		font-size: 57px;
		line-height: 1.3;
	}
	.table__section-text {
		margin-bottom: 55px;
		font-size: 18px;
		max-width: 750px;
	}
	.table__section-wrapper {
		margin-bottom: 55px;
		justify-content: center;
	}
	.table__section-wrapper-links {
		padding: 13px 32px;
		font-size: 18px;
	}

	/* PROGRAM */
	.program {
		padding-block: 120px 90px;
		background-image: url(/img/affiliate-illustration-bg.png);
		background-repeat: no-repeat;
		background-size: auto;
		background-position: center right;
	}
	.program__wrapper {
		display: flex;
		align-items: center;
		gap: 24px;
	}
	.program__image {
		margin-bottom: 0;
		max-width: 640px;
		width: 100%;
	}

	.program-subtitle {
		font-size: 32px;
		line-height: 1.3;
	}
	.program-title {
		font-size: 57px;
		margin-bottom: 20px;
	}
	.program-text-wrapper {
		gap: 18px;
		font-size: 1.125rem;
		line-height: 1.65;
		margin-bottom: 35px;
	}
	.program__list {
		gap: 80px;
		margin-bottom: 60px;
	}

	.program__list-item-image {
		width: 80px;
		height: 80px;
		border-radius: 40px;
		margin-bottom: 14px;

		img {
			width: 40px;
		}
	}

	.program__list-item-percent {
		font-size: 57px;
	}
	.program__list-item-level {
		font-size: 18px;
	}
}
/* #endregion RESPONSIVE 1440 */
