/* #region BANNER */
.banner {
	background-color: #322318;
	padding: 80px 0px 94px;
	background-image: url(/img/terms-banner.png);
	background-repeat: no-repeat;
	background-size: auto;
	background-position: left bottom 0px;
}
.banner__wrapper {
	display: flex;
	flex-direction: column;
	width: 100%;
}

.banner__title {
	color: #fff;
	font-size: 43px;
	font-weight: 700;
	line-height: 1.3;
	margin-bottom: 4px;
}
.banner__breadcrumb {
	display: flex;
	align-items: center;
	align-content: center;
	flex-wrap: wrap;
	color: #fff;
	line-height: 1.37;
	gap: 12px;
}

.banner__breadcrumb-item {
	display: flex;
	align-items: center;
	gap: 12px;

	a {
		transition: color 0.3s;

		&:hover {
			color: #f1c069;
		}
	}
}

@media screen and (min-width: 744px) {
	.banner {
		padding: 220px 0px 100px;
	}
}

@media screen and (min-width: 1440px) {
	.banner {
		padding: 310px 0px 180px;
		background-attachment: fixed;
		background-position: left center;
	}
	.banner__title {
		font-size: 76px;
		margin-bottom: 5px;
	}
	.banner__breadcrumb {
		font-size: 18px;
		gap: 20px;
	}
	.banner__breadcrumb-item {
		gap: 20px;

		svg {
			width: 24px;
		}
	}
}

/* #endregion BANNER */

/* #region TERMS */
.terms {
	background-color: #543f30;
	padding-block: 60px;
}

.terms__tabs {
	display: flex;
	padding: 30px 20px;
	flex-direction: column;
	gap: 20px;
	border-radius: 20px;
	background: #5e472f;
	box-shadow: 0 0 92px 0 rgba(35, 25, 17, 0.71);
}
.terms__tab-btn {
	display: flex;
	padding: 10px 20px;
	flex-direction: column;
	align-items: center;
	border-radius: 10px;
	background: #4f3928;
	width: 100%;
	color: #fff;
	text-align: center;
	font-weight: 700;
	line-height: 1.35;
	cursor: pointer;
	transition: background-color 0.3s, color 0.3s;

	&:hover,
	&.active {
		background-color: #f1c069;
		color: #09040c;
	}
}

.terms__wrapper {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.terms__content {
	color: #fff;

	h3 {
		font-size: 24px;
		font-weight: 700;
		line-height: 1.33;
		margin-bottom: 12px;
	}

	p {
		line-height: 1.75;
		margin-bottom: 24px;
	}

	ul {
		counter-reset: item;
		margin-bottom: 24px;

		li {
			line-height: 1.75;
			counter-increment: item;
			margin-bottom: 10px;
			display: flex;
			gap: 8px;
			align-items: flex-start;

			&::before {
				content: counter(item) ".";
				flex-shrink: 0;
			}

			&:last-child {
				margin-bottom: 0;
			}
		}
	}

	.terms__content-policy {
		padding-block: 60px;
		border-block: 1px solid rgba(255, 255, 255, 0.1);
		margin-block: 60px;
	}
}

@media screen and (min-width: 744px) {
}

@media screen and (min-width: 1440px) {
	.terms {
		padding-block: 110px;
	}
	.terms__wrapper {
		flex-direction: row;
		align-items: flex-start;
		gap: 32px;
	}
	.terms__tabs {
		flex-basis: 400px;
		flex-shrink: 0;
		padding: 60px;
	}
	.terms__tab-btn {
		font-size: 18px;
	}

	.terms__content {
		font-size: 18px;

		h3 {
			font-size: 43px;
			line-height: 1.3;
		}

		p {
			line-height: 1.66;
			margin-bottom: 24px;
		}

		.terms__content-policy {
			padding-block: 110px;
			margin-block: 110px;
		}
	}
}
/* #endregion TERMS */
