.policies-page {
	.banner {
		height: 300px;
		position: relative;
		display: flex;
		align-items: center;
		justify-content: center;
		padding-inline: 0;

		img {
			position: absolute;
			height: 100%;
			width: 100%;
			object-fit: cover;
		}

		.banner-text {
			position: absolute;
			height: 100%;
			width: 100%;
			background-color: rgba(0, 0, 0, 0.5);
			display: flex;
			align-items: center;
			justify-content: center;
			color: white;
			font-size: 35px;
			text-align: center;
		}
	}

	.nav-menu {
		display: flex;
		flex-direction: column;
		gap: 10px;

		ul {
			padding: 0;
			margin: 0;

			li {
				margin-bottom: 10px;
				border-left: 5px solid transparent;
				padding-left: 5px;

				&.current {
					border-left-color: var(--mainColor);
				}

				&:hover {
					border-left-color: var(--mainColor);
				}

				a {
					color: #000;
					font-size: 18px;
					font-weight: 600;
					transition: all 0.2s ease-in-out;

					&.current {
						font-weight: bold;
					}
				}
			}
		}
	}

	h1 {
		font-size: 45px;
		font-weight: medium;
		font-stretch: normal;
		font-style: normal;
		line-height: 1.33;
		letter-spacing: normal;
		text-align: left;
		color: var(--secTextColor);
	}

	h2 {
		font-size: 35px;
		font-weight: normal;
		font-stretch: normal;
		font-style: normal;
		line-height: 1;
		letter-spacing: normal;
		text-align: left;
		color: var(--secTextColor);
		margin-bottom: 1rem;
		margin-top: 1.5rem;

		&:first-of-type {
			margin-top: 0;
		}

		&:last-of-type {
			margin-bottom: 0;
		}
	}

	.page__content {
		ul {
			list-style: disc;
		}

		a {
			font-size: 16px;
			font-weight: normal;
			font-stretch: normal;
			font-style: normal;
			line-height: normal;
			letter-spacing: normal;
			text-align: left;
			color: #757575;
			text-decoration: underline;
			transition: all 0.3s ease-in-out;

			&:hover {
				color: var(--mainColor);
			}
		}
	}
}

.page__sidebar {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-right: 50px;
	width: 270px;
	background-color: transparent !important;

	li {
		transition: all 0.2s ease-in-out;
		border-left: 5px solid transparent;
		padding-left: 5px;

		&.current {
			border-left-color: var(--mainColor);

			a {
				color: #000 !important;
				font-weight: bold;
				border-left-color: var(--mainColor);
			}
		}

		&:not(.current):hover a {
			color: #000 !important;
			font-size: 19px;
		}
	}

	a {
		color: var(--secTextColor) !important;
		transition: all 0.2s ease-in-out;
		font-size: 18px;
		font-weight: 600;
		line-height: 30px;
	}
}

.principal {
	overflow: unset !important;
}
