@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:opsz@6..12&display=swap');

* {
	font-family: 'Nunito Sans', sans-serif;
}

.loader {
	top: 40%;
	left: 50%;
	transform: translateY(-50%);
	transform: translateX(-50%);
	z-index: 99999;
	position: absolute;
	background-color: transparent;
}

.filter-brightness {
	filter: brightness(20%);
}

.loading-wave {
	width: 300px;
	height: 100px;
	display: flex;
	justify-content: center;
	align-items: flex-end;
}

.loading-bar {
	width: 20px;
	height: 10px;
	margin: 0 5px;
	background-color: #3498db;
	border-radius: 5px;
	animation: loading-wave-animation 1s ease-in-out infinite;
}

.loading-bar:nth-child(2) {
	animation-delay: 0.1s;
}

.loading-bar:nth-child(3) {
	animation-delay: 0.2s;
}

.loading-bar:nth-child(4) {
	animation-delay: 0.3s;
}

@keyframes loading-wave-animation {
	0% {
		height: 10px;
	}

	50% {
		height: 50px;
	}

	100% {
		height: 10px;
	}
}


.modal-header,
.modal-body {
	background-color: #eaeef6;
}

.cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	grid-auto-rows: 200px;
}

.cards section.card {
	align-items: center;
	text-align: center;
	background: white;
	padding: 1rem 1.5rem;
	border-radius: 8px;
	margin: 5px;
}

.cards section.card .icon {
	width: 64px;
	height: 64px;
	margin-bottom: 1em;
}

.cards section.card img {
	width: 100%;
}

.cards section.card h3 {
	font-size: 100%;
}

.cards section.card button {
	padding: 0.5rem 1rem;
	text-transform: uppercase;
	border-radius: 12px;
	border: 0;
	cursor: pointer;
	font-size: 80%;
	font-weight: 500;
	color: #fff;
	margin-bottom: 16px 0;
	transition: ease-out 0.5s;
}

.cards section.card.site button {
	background: linear-gradient(to right, #2F2460, #AA4547);
}

.cards section.card.site button:hover {
	transform: scale(0.9);
}

@media screen and (max-width: 720px) {
	.cards section.card button {
		font-size: 70%;
	}
}
