@import url("https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&display=swap");

:root {
	--error-color: #dc3545;
	--success-collor: #3e57d6;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: "Lato";
	line-height: 1.8;
}

.main-content {
	padding-top: 80px;
}

.hero-text {
	font-size: 2.25rem;
}

.navbar-bg {
	background: rgba(255, 255, 255, 0.2);
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(9px);
	-webkit-backdrop-filter: blur(9px);
	border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-bg {
	background-color: rgba(208, 209, 255, 0.25);
}

.smaller-icon {
	font-size: 0.8rem;
}

.card-icon {
	font-size: 2.5rem;
	padding-bottom: 1.5rem;
	color: #3e57d6;
}

.whyus .card:hover {
	transform: scale(1.05);
}

/* CHANGING BOOTSTRAP STUFF */
.btn-primary {
	background-color: #3e57d6;
}

.whyus .card {
	transition: 0.3s all ease;
	cursor: pointer;
}

.card-link {
	text-decoration: none;
	color: black;
}

.card-link:hover {
	color: #3e57d6;
}

.about p,
.portfolio p {
	margin: 0;
	text-indent: 2rem;
	text-align: justify;
}

.portfolio-desc p{
	text-align: justify;
}

.col.error input {
	border-color: var(--error-color);
}

.col small {
	border-color: var(--error-color);
	color:#dc3545;
}

.col.success input {
	background-color: var(--success-color);
}
