header {
	position: relative;
}
main {
	position: relative;
	flex-grow: 1;
}
.v-hero {
	position: relative;
	overflow: hidden;
	background-color: var(--primary-clr);
	height: 40vh;
	@media screen and (min-width: 768px) {
		& {
			height: 60vh;
		}
	}
	.v-main-content {
		position: relative;
		isolation: isolate;
		height: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
		color: var(--white);

		.container {
			margin-top: -3rem;
			@media all and (min-width: 768px) {
				& {
					padding-block: 7rem;
				}
			}
			.v-title-container {
				display: flex;
				flex-direction: column;
				align-items: center;
				row-gap: 1rem;

				.v-text-content {
					font-size: 1rem;
				}
				.v-title {
					font-weight: 600;
					font-size: 2rem;

					@media all and (min-width: 768px) {
						& {
							font-size: 2.5rem;
						}
					}
				}
			}
		}
		.v-layer-image {
			position: relative;
			width: calc(400% + 1.3px);
		}
		& svg {
			position: absolute;
			height: 450px;
			transform: rotateY(180deg);
			color: var(--primary-clr);
			fill: var(--primary-clr);

			@media all and (min-width: 768px) {
				& {
					height: 500px;
				}
			}
		}
	}
}
.v-services {
	margin-block: 0rem 10rem;
	padding-block: 4rem 0;

	@media all and (min-width: 640px) {
		& {
			padding-block: 7rem 0;
		}
	}
}
.v-services .v-title-container {
	display: flex;
	flex-direction: column;
	row-gap: 1rem;
}
.v-services .v-title-container .v-title {
	font-weight: 600;
}

.v-services .v-title-container .v-subcontent {
	font-size: 0.9rem;
}
.v-services .v-grid-cards-container {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	margin-top: 2rem;
	padding: 1rem;
	gap: 2rem;

	@media all and (min-width: 700px) {
		& {
			grid-template-columns: repeat(2, 1fr);
		}
	}
	@media all and (min-width: 1024px) {
		& {
			grid-template-columns: repeat(3, 1fr);

			& .v-each-card-item {
				aspect-ratio: 1/1;
			}
		}
	}

	& .v-each-card-item {
		border: 1px solid var(--primary-clr);
		padding: 2rem 1.5rem 2.5rem;
		display: flex;
		border-radius: 0.3rem;
		flex-direction: column;
		justify-content: space-between;
		row-gap: 1.2rem;
		align-items: start;
		height: 100%;
		overflow: hidden;
		color: var(--text-dark);

		@media all and (hover: hover) {
			&:hover {
				background-color: var(--primary-clr-variant-1);
				border-color: var(--primary-clr-variant-1);

				& .v-card-title {
					color: var(--primary-clr);
				}
			}
		}
		& .v-top {
			display: flex;
			flex-direction: column;
			align-items: flex-start;
			row-gap: 1.2rem;
		}

		& .v-card-content {
			font-size: 0.92rem;
			text-align: start;
		}
	}
}
.v-hero-content {
	z-index: 1;
}
