/* CSS Document */
#price-sheet {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
	margin-bottom: 3rem;
	padding: 2rem;
    background: var(--col4);
}
.price-card {
    width: 300px;
    border: 3px solid var(--col1);
    border-radius: .5rem;
    box-shadow: 0 1rem 1rem -1rem var(--col1);
	background:white;
	outline: 1px solid white;
	justify-content: stretch;
	height: auto;
	color: black;
}
.price-card div{
	padding: 1rem;
	justify-content: left;
}
.price-card h2 {
	font-size: 1rem;
	background: var(--col3);
	color: white;
	padding: 1rem;
	border-radius: 0;
	margin: 0;
	font-weight: 900;
}

.duration
{	font-size:.75rem;
} 

.price
{	color: var(--col3);
	font-weight: bold;
}

.price-card p, .price-card p strong
{	line-height: 1.5rem
}

.product_icon
{	height:100px;
	padding: 2rem;
	margin: auto;
	box-sizing: content-box;
}

html
{	scroll-behavior: smooth;
}