* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Nunito Sans', sans-serif;
}

body {
	background-color: var(--bg_body);
}

.container {
	width: 95%;
	margin: 0 auto;
	padding: 2px 15px;
}

button {
	border: none;
	background-color: transparent;
	cursor: pointer;
}

.text-muted {
	color: #959594;
}

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

.brand-secondary {
	color: var(--brand-secondary);
}

.star {
	color: #e4961f;
}

.stars-container {
	display: flex;
	align-items: center;
	margin-bottom: 10px;
	font-size: 19px;
}

/* Header Section */

header {
	padding: 20px 0;
	background-color: var(--bg_default);
}

header .header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

header .container .logo-text {
	font-size: 18px;
}

header .container .btn-container {
	display: flex;
	gap: 3px;
}

header .container .btn-container button {
	display: flex;
	align-items: center;
	gap: 5px;
	border: 1px solid var(--lines-color);
	padding: 5px 10px;
	border-radius: 5px;
	color: var(--body-text);
}

/* Header Section */
/* Logo Bar Section */

.welcome-sec {
	background-color: var(--bg_default);
}

.logo-bar {
	width: 100%;
	position: relative;
	height: 50px;
}

.logo-bar .left {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 50px;
	background: linear-gradient(
		to right,
		rgba(7, 104, 172, 1) 0%,
		rgba(5, 156, 146, 1) 60%,
		rgba(7, 103, 172, 0.21) 100%
	);
	clip-path: polygon(0% 0%, 100% 0%, 0% 100%);
	z-index: 50;
}

.logo-bar .right {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 50px;
	background: linear-gradient(
		to left,
		rgba(7, 103, 172, 0.341) 0%,
		#03c180 100%
	);
	clip-path: polygon(0% 0%, 0% 100%, 100% 0%);
	transform: scaleX(-1);
}

.hero-section {
	display: flex;
	flex-direction: column;
	padding-bottom: 25px;
	margin: 0 auto;
	width: fit-content;
}

.hero-section h2 {
	text-shadow: 0px 0px 8px rgba(3, 193, 128, 0.3);
	letter-spacing: -1px;
	margin-bottom: -7px;
}

.hero-section p {
	color: var(--body-text);
}
/* Logo Bar Section */
/* Footer Section */

footer {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px 0;
	background-color: var(--bg_body);
	color: var(--body-text);
	text-align: center;
}

.heart {
	color: var(--heart-color);
}

@media (max-width: 565px) {
	.btn-container button > span {
		display: none;
	}
}

/* Footer Section */

/* Favorites Section */
.favorites {
	background-color: var(--bg_default);
	color: var(--body-text);
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 5555;
	padding: 10px 0;
	display: none;
}

.favorites h1 {
	padding-bottom: 10px;
}

.favorites .favorites-topics {
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
	align-items: center;
}

.favorites .favorites-topics .fav-topic {
	width: 150px;
	word-break: break-all;
}

.favorites .favorites-topics .fav-topic img {
	width: 100%;
	height: 45%;
	object-fit: cover;
	text-align: center;
}

.show {
	display: block;
}

/* Favorites Section */
