/* -----------------------------Heading----------------------------- */
h3.callforhelp {
	margin-bottom: 5em;
	text-transform: capitalize;
	margin-top: -15px;
	background-color: var(--color-secondary);
	padding: 0.8rem;
	border-radius: 7px;
	font-weight: bold;
	color: var(--color-primary);
	word-spacing: 0.08rem;
	letter-spacing: 0.005rem;
	font-family: var(--font-poppins);
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
}
/* -----------------------------Card----------------------------- */
.card {
	width: 50%;
	background-color: rgb(197, 54, 54);
	border-radius: 10px;
	margin-top: -60px;
	position: relative;
	margin-bottom: 5rem;
}
textarea {
	resize: none;
}
/* -----------------------------Form----------------------------- */
#exampleFormControlTextarea1 {
	font-size: 1rem;
	width: 100%;
	outline: none;
	background-color: var(--color-primary);
	font-weight: 500;
	border: 1px solid black;
	color: var(--color-quaternary); /* quaternary */
	border-radius: 10px;
}
#exampleFormControlTextarea1:focus {
	outline: none;
	border: 1px solid black;
	box-shadow: none;
}
/* -----------------------------Title----------------------------- */
.card-title {
	font-size: 2em;
	font-family: var(--font-sansita);
	color: var(--color-primary); /* primary */
	font-weight: 600;
}
.form-label {
	font-size: 1.2em;
	font-family: var(--font-poppins);
	color: var(--color-primary); /* primary */
	font-weight: 600;
}
/* -----------------------------Button----------------------------- */
.btn,
.btn:hover,
.btn:focus {
	outline: none;
	color: var(--color-quaternary);
	background-color: var(--color-primary);
	font-weight: 600;
	letter-spacing: 0.15rem;
	word-spacing: 0.2rem;
	padding: 10px 20px;
}

.btn:focus {
	outline: none;
	box-shadow: none;
}
.card .wrapper {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
/* -----------------------------Loading Animation----------------------------- */
.loading-superhero {
	width: 200px;
	height: 200px;
	background-color: var(--color-secondary);
	border-radius: 50%;
	line-height: 200px;
	text-align: center;
	font-weight: bold;
	font-family: var(--font-poppins);
	font-size: 0.8rem;
	word-break: break-all;
	position: relative;
}
.loading-superhero::before {
	position: absolute;
	content: "";
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	border: 5px solid var(--color-secondary);
	border-radius: 50%;
	animation: ripple 2s linear infinite;
}
.loading-superhero::after {
	position: absolute;
	content: "";
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	border: 5px solid var(--color-secondary);
	border-radius: 50%;
	animation: ripple 2s 1s linear infinite;
}
/* -----------------------------Ripple Animation----------------------------- */
@keyframes ripple {
	100% {
		transform: scale(2);
		opacity: 0;
	}
}
/* -----------------------------Success Box Animation----------------------------- */
.success {
	animation: opacity 1s ease-in;
}
@keyframes opacity {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
