
.large-text {
	background: linear-gradient(to right, #000000 0%, #1a1a1a 10%, #4d4d4d 30%, #808080 50%, #4d4d4d 70%, #1a1a1a 90%, #000000 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
	color: #000000;

	font-size: clamp(1.05rem, 1.54vw, 1.61rem);
	line-height: calc((0.875rem + 0.63vw) * 1.4);

	font-weight: 700;
}
@media only screen and (max-width: 768px) {
	.large-text {
		font-size: clamp(1rem, 1.47vw, 1.54rem);
	}
}

.bg {
	background: radial-gradient(circle at center, #ffffff 0%, #ffffff 25%, #fdfdfd 65%, #fbfbfb 100%);
	border-radius: 8px;
	padding: 1rem 3rem;
}
@media only screen and (max-width: 768px) {
	.bg {
		padding: 1rem;
	}
}

.shadow {
		box-shadow:
		0px 1px 2px rgba(0, 0, 0, 0.05),
		0px 2px 4px rgba(0, 0, 0, 0.05),
		0px 4px 8px rgba(0, 0, 0, 0.05),
		0px 8px 16px rgba(0, 0, 0, 0.05);

}

.h1 {
	font-size: clamp(2.7rem, 3.75vw, 4.2rem);

	background: linear-gradient(to right, #2c6dfc, #00b0ff, #7c4dff, #a03cff);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
	color: #2c6dfc;

	line-height: 3.25rem;
	font-weight: 500;
}
@media only screen and (max-width: 768px) {
	.h1 {
		font-size: clamp(1.81rem, 2.51vw, 2.81rem);
		font-weight: 700;
	}
}

.icon {
	height: 44px;
	fill: #2c6dfc;
	text-align: center;
}

.icon-container {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100px;
}

.radius {
	border-radius: 16px;
}

#email-link, #tel-link {
	color: #2c6dfc;
}

#email-link:hover, #tel-link:hover {
	text-decoration: none;
}

.text-center {
	text-align: center;
}

footer {
	width: 90%;
	margin: 3% auto;
	padding: 1rem 3rem;
	background-color: #0d1288;
	border-radius: 16px;
	color: #f0f0f0;
}

@media only screen and (max-width: 768px) {
	footer {
		width: 98%;
		margin: 3% auto;
		padding: 1rem;
	}
}

footer a {
	color: #f0f0f0;
}

.footer-img {
	height: 100px;
}
@media only screen and (max-width: 768px) {
	.footer-img {
		height: 65px;
	}
}

.max-height {
	max-height: 450px;
}

.buy-online-button {
	display: inline-block;
	padding: 15px 30px;
	background-color: #4CAF50;
	color: white;
	text-align: center;
	text-decoration: none;
	font-size: 18px;
	font-weight: bold;
	border-radius: 8px;
	border: none;
	cursor: pointer;
	transition: background-color 0.3s ease, transform 0.2s ease;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.buy-online-button:hover {
	background-color: #45a049;
	/* transform: translateY(-2px); */
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.buy-online-button:active {
	background-color: #3e8e41;
	/* transform: translateY(0); */
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

hr {
	border: none;
	height: 2px;
	width: 90%;
	margin: 40px auto;
	background: linear-gradient(to right, rgba(0,0,0,0), rgba(0,0,0,1), rgba(0,0,0,0));
}

.bg2 {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='494.22' height='348.904' class='fg show-for-large'%3E%3Cpath fill='%232BB3BB' d='m464.632 139.786-69.475-69.475H352.73l111.902 111.902zm0 70.71L324.446 70.311h-.946l-20.74 20.74 161.872 161.872v-42.426zm0 70.712L288.618 105.193l-21.213 21.213L463.31 322.311h1.323zm-29.607 41.103L253.262 140.55l-21.213 21.213 160.55 160.55zm-70.71 0L217.907 175.904l-5.275 5.275v31.876l109.256 109.256z' style='fill:%23e7f7ff;fill-opacity:1'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: bottom right;
}