.container {
	max-width: var(--max-width);
	margin: 0 auto;
	overflow: hidden;
	padding: 0 3rem;
}

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

.grid-container {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
	width: 100%;
	height: 100%;
	justify-content: center;
	align-items: center;
}

.grid-3 {
	grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
	grid-template-columns: repeat(4, 1fr);
}

.grid-5 {
	grid-template-columns: repeat(5, 1fr);
}

/* PADDING */
.py-2 {
	padding: 2rem 0;
}
.py-3 {
	padding: 3rem 0;
}
.py-4 {
	padding: 4rem 0;
}
.py-5 {
	padding: 5rem 0;
}

/* CARDS */
.flex-card {
	display: flex;
	padding: 1rem 0;
	align-items: flex-start;
	background-color: var(--primary-color);
	height: 100%;
	padding: 1rem;
	border-radius: 2rem;
}

.flex-card i {
	padding: 1rem;
	min-width: 6rem;
	text-align: center;
}

.flex-card h3 {
	text-transform: uppercase;
}

/* CARD */
.card {
	background: #fff;
	padding: 1rem;
}

/* BACKGROUNDS */
.light-bg {
	background-image: url('../images/backgrounds/white_bg.jpg');
	background-size: cover;
	background-attachment: fixed;
}

.primary-bg {
	background-color: var(--primary-color);
	/* background-color: var(--secondary-color); */
	color: var(--light-color);
}

.secondary-bg {
	background-color: var(--secondary-color);
}

.dark-bg {
	background-color: var(--dark-color);
	color: var(--light-color);
}

/* LOGOS */
.app-icons {
	display: flex;
	width: 100%;
}

.app-icons a {
	width: 12rem;
	margin-left: 0.4rem;
	display: flex;
}

.app-icons a img {
	border-radius: 1rem;
	height: 100%;
	object-fit: cover;
	width: 100%;
	transition-timing-function: cubic-bezier(0.55, 1.6, 0.475, 0.7);
}

.app-icons a img:hover {
	transform: scale(0.97);
}

/* BUTTONS */
.btn {
	display: flex;
	justify-content: center;
	padding: 1.2rem 2rem;
	min-width: 20rem;
	cursor: pointer;
	border: none;
	transition-timing-function: cubic-bezier(0.5, 1.6, 0.4, 0.7);
	border-radius: 1rem;
	color: var(--light-color);
}

.btn-primary {
	background-color: var(--primary-color);
}

.btn-secondary {
	background-color: var(--secondary-color);
}

.btn-light {
	background-color: var(--light-gray-color);
	color: var(--secondary-color);
}
.btn:hover {
	transform: scale(0.98);
}

.text-primary {
	color: var(--primary-color);
}

.text-secondary {
	color: var(--secondary-color) !important;
}
.text-dark {
	color: var(--dark-color) !important;
}
.text-large {
	text-transform: lowercase;
	font-size: 10rem !important;
	font-weight: 700;
	opacity: 1;
}
.text-bold {
	text-transform: lowercase;
	font-size: 8rem;
	color: var(--primary-color);
	font-weight: 700;
}

.l-heading {
	font-size: 3rem;
}
