* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
		Ubuntu, Cantarell, sans-serif;
	line-height: 1.6;
	color: #333;
}

/* Header */
.header {
	background: rgba(255, 255, 255, 0.95);
	padding: 1rem 0;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	border-radius: 20px 20px 0 0;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header-content {
	margin: 0 auto;
	padding: 10px 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo img {
	width: 120px;
}

.nav {
	display: flex;
	gap: 2rem;
}

.nav a {
	text-decoration: none;
	color: #666;
	font-weight: 500;
	transition: color 0.3s ease;
}

.nav a:hover {
	color: #333;
}

.close,
.menu {
	display: none;
}

/* Hero Section */
.hero {
	background-image: url("static/hero-image.webp");
	background-size: cover;
	background-position: center right;
	background-attachment: fixed;
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
	padding: 3rem;
}

.hero::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.3);
}

.hero-logo {
	width: 2ex;
	display: inline-block;
	vertical-align: middle;
	margin: -8px 2px 0 0;
}

.hero-content {
	margin: 0 auto;
	padding: 140px 4rem 4rem 4rem;
	display: grid;
	grid-template-columns: 1fr 280px;
	gap: 2rem;
	align-items: center;
	position: relative;
	z-index: 2;
}

.hero-text .tagline {
	font-size: 1.2rem;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 2rem;
}

.weather-categories {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.category-item {
	opacity: 0;
	transform: translateX(-20px);
	animation: slideIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.category-item:nth-child(1) { animation-delay: 3.2s; }
.category-item:nth-child(2) { animation-delay: 3.4s; }
.category-item:nth-child(3) { animation-delay: 3.6s; }
.category-item:nth-child(4) { animation-delay: 3.8s; }
.category-item:nth-child(5) { animation-delay: 4.0s; }

@keyframes slideIn {
	0% {
		opacity: 0;
		transform: translateX(-20px);
	}
	100% {
		opacity: 1;
		transform: translateX(0);
	}
}

.category-item:hover {
	background: rgba(255, 255, 255, 0.2);
	transform: translateX(10px);
}

.category-item {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 0.75rem;
	border-radius: 16px;
	color: white;
	text-decoration: none;
	transition: transform 0.3s ease, background 0.3s ease;
	opacity: 0;
	transform: translateX(-20px);
	animation: slideIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
	animation-fill-mode: both;
	will-change: transform, opacity;
}

.category-item:nth-child(1) { animation-delay: 3.2s; }
.category-item:nth-child(2) { animation-delay: 3.4s; }
.category-item:nth-child(3) { animation-delay: 3.6s; }
.category-item:nth-child(4) { animation-delay: 3.8s; }
.category-item:nth-child(5) { animation-delay: 4.0s; }

.category-item:hover {
	background: rgba(255, 255, 255, 0.2);
	transform: translateX(10px);
}

@keyframes slideIn {
	from {
		opacity: 0;
		transform: translateX(-20px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.category-item {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 0.75rem;
	border-radius: 16px;
	color: white;
	text-decoration: none;
	transition: background 0.3s ease;
	opacity: 0;
	transform: translateX(-20px);
	animation: slideIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.category-item:nth-child(1) { animation-delay: 3.2s; }
.category-item:nth-child(2) { animation-delay: 3.4s; }
.category-item:nth-child(3) { animation-delay: 3.6s; }
.category-item:nth-child(4) { animation-delay: 3.8s; }
.category-item:nth-child(5) { animation-delay: 4.0s; }

@keyframes slideIn {
	from {
		opacity: 0;
		transform: translateX(-20px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.category-item:hover {
	background: rgba(255, 255, 255, 0.2);
}

.category-item.animated:hover {
	transform: translateX(10px);
}

.category-icon {
	width: 60px;
	height: 60px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
}

.category-icon img {
	width: 100%;
	height: auto;
}

/* Intro Animation */
.intro-animation {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10;
	animation: hideIntro 0.5s ease forwards;
	animation-delay: 3s;
}

.intro-svg {
	width: 100%;
	height: 100%;
}

.main-content {
	opacity: 0;
	transform: translateY(20px);
	animation: fadeInUp 0.8s ease forwards;
	animation-delay: 3s; /* Start after intro animation finishes */
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes hideIntro {
	from {
		opacity: 1;
		visibility: visible;
	}
	to {
		opacity: 0;
		visibility: hidden;
	}
}

/* glass */

.glass-card {
	position: relative;
	width: 100%;
	border-radius: 34px;
	overflow: hidden;
	max-width: 1200px;
	margin: 0 auto;
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25), 0 0 40px rgba(255, 255, 255, 0.05);
	background: transparent;
	transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.glass-filter {
	position: absolute;
	inset: 0;
	z-index: 0;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.glass-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: rgba(255, 255, 255, 0.15);
}

.glass-specular {
	position: absolute;
	inset: 0;
	z-index: 2;
	border-radius: inherit;
	box-shadow: inset 1px 1px 0 rgba(255, 255, 255, 0.2),
		inset 0 0 1px rgba(255, 255, 255, 0.3);
}

.glass-content {
	position: relative;
	z-index: 3;
	padding: 0;
	text-align: left;
	color: white;
}

.glass-content h1 {
	font-size: clamp(2rem, 5vw, 5rem);
	font-weight: 600;
	margin-bottom: 2rem;
	line-height: 1.1;
	letter-spacing: -0.0125em;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

.glass-content p {
	color: rgba(255, 255, 255, 0.9);
	font-size: 1.1rem;
	font-weight: 400;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

/* About */

.about {
	background: black;
	padding: 3rem;
}

.about-content {
	border: 1px solid rgba(238, 238, 238, 0.2);
	border-radius: 10px;
	padding: 40px;
	color: white;
	position: relative;
	max-width: 1200px;
	margin: 0 auto;
	opacity: 0;
	transform: translateY(20px);
	animation: fadeInUp 0.8s ease forwards;
	animation-delay: 4.2s;
}

.about-content h2 {
	margin: 0 0 1rem 0;
	opacity: 0;
	transform: translateY(20px);
	animation: fadeInUp 0.6s ease forwards;
	animation-delay: 4.3s;
}

.about-content:before {
	content: "";
	position: absolute;
	top: -20px;
	right: 0;
	width: 40px;
	height: 40px;
	display: block;
	filter: invert(100);
	background-image: url(static/logo.svg);
	background-repeat: no-repeat;
	background-size: 100% auto;
	opacity: 0.6;
}

.about-content p {
	max-width: 70ch;
	margin: 0 0 1rem 0;
	opacity: 0;
	transform: translateY(20px);
	animation: fadeInUp 0.6s ease forwards;
}

.about-content p:nth-child(2) { animation-delay: 4.3s; }
.about-content p:nth-child(3) { animation-delay: 4.4s; }
.about-content p:nth-child(4) { animation-delay: 4.5s; }
.about-content p:nth-child(5) { animation-delay: 4.6s; }

/* apps */

.apps {
	background: #222;
	padding: 3rem;
}

.app-content {
	border: 1px solid rgba(238, 238, 238, 0.2);
	border-radius: 10px;
	padding: 40px;
	color: white;
	position: relative;
	max-width: 1200px;
	margin: 0 auto!important; /* needed to override slider css */
}

.app-icon {
	display: block;
	width: 60px;
	height: auto;
}

.app {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
	padding:30px;
}

.app-meta {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.app-image img {
	width: 100%;
	height: auto;
}

.app-stores {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
}

.app-stores img {
	width: 100%;
	height: auto
}

/* Footer */
.footer {
	background: #1a1a1a;
}

.footer-icons {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(5, 40px);
	gap: 10px;
}

.footer-icons img {
	width: 100%;
	height: auto;
}

.footer-content {
	padding: 3rem;
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: white;
	border-top-left-radius: 12px;
	border-top-right-radius: 12px;
}

.footer-logo img {
	max-width: 100px;
	display: block;
}

.footer-nav {
	display: flex;
	gap: 2rem;
}

.footer-nav a {
	color: #666;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-nav a:hover {
	color: #333;
}


/* Features Section */
.features {
	background: #f5f5f5;
	padding: 5rem 3rem;
}

.features-content {
	max-width: 1200px;
	margin: 0 auto;
}

.features-content h2 {
	text-align: center;
	margin-bottom: 3rem;
	font-size: 2.5rem;
	color: #333;
}

.feature-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.feature-item {
	background: white;
	padding: 2rem;
	border-radius: 16px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
	opacity: 0;
	transform: translateY(20px);
	animation: fadeInUp 0.6s ease forwards;
}

.feature-item:hover {
	transform: translateY(-5px);
}

.feature-item:nth-child(1) { animation-delay: 0.2s; }
.feature-item:nth-child(2) { animation-delay: 0.4s; }
.feature-item:nth-child(3) { animation-delay: 0.6s; }

.feature-icon {
	width: 80px;
	height: 80px;
	margin-bottom: 1.5rem;
}

.feature-icon img {
	width: 100%;
	height: auto;
}

.feature-item h3 {
	margin-bottom: 1rem;
	color: #333;
}

.feature-item p {
	color: #666;
	line-height: 1.6;
}

/* Alternating Sections */
.alt-section-wrapper {
	width: 100%;
	padding: 6rem 0;
}

.alt-section-wrapper.light {
	background: white;
}

.alt-section-wrapper.dark {
	background: #1a1a1a;
	color: white;
}

.alt-section {
	width: 100%;
}

.alt-section-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 3rem;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.alt-section-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.alt-section-inner.image-right {
	grid-template-areas: 'content image';
}

.alt-section-inner.image-right .alt-content {
	grid-area: content;
}

.alt-section-inner.image-right .alt-image {
	grid-area: image;
}

/* Blockquote Section */
.blockquote-section {
	grid-template-columns: 1fr;
	text-align: center;
	padding: 4rem 0;
}

.blockquote-content {
	max-width: 800px;
	margin: 0 auto;
}

blockquote {
	font-size: 2.5rem;
	line-height: 1.4;
	margin: 0;
	padding: 0;
}

blockquote p {
	margin: 0 0 1rem 0;
}

blockquote cite {
	font-size: 1.25rem;
	font-style: normal;
	color: #666;
	display: block;
}

/* Typewriter Effect */
.typewriter p {
	overflow: hidden;
	border-right: .15em solid #666;
	white-space: nowrap;
	margin: 0 auto;
	letter-spacing: .05em;
	animation: 
		typing 3.5s steps(40, end),
		blink-caret .75s step-end infinite;
}

@keyframes typing {
	from { width: 0 }
	to { width: 100% }
}

@keyframes blink-caret {
	from, to { border-color: transparent }
	50% { border-color: #666; }
}


.alt-section-wrapper.dark .cta-button {
	background: white;
	color: #1a1a1a;
}

.alt-section-wrapper.dark .cta-button:hover {
	background: #f5f5f5;
}

.alt-section-wrapper.dark h2 {
	color: white;
}

.alt-section-wrapper.dark p {
	color: rgba(255, 255, 255, 0.8);
}

.alt-section:last-child {
	margin-bottom: 0;
}

.alt-image img {
	width: 100%;
	height: auto;
	border-radius: 16px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.alt-content h2 {
	font-size: 2.5rem;
	margin-bottom: 1.5rem;
	color: #333;
}

.alt-content p {
	color: #666;
	margin-bottom: 2rem;
	line-height: 1.6;
}

.cta-button {
	display: inline-block;
	padding: 1rem 2rem;
	background: #333;
	color: white;
	text-decoration: none;
	border-radius: 8px;
	transition: background 0.3s ease;
}

.cta-button:hover {
	background: #555;
}

/* Full Bleed Panel */
.full-bleed-panel {
	position: relative;
	width: 100%;
	min-height: 80vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: white;
	background-image: url("static/hero-image.webp");
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
}

.full-bleed-panel::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.4);
}

.full-bleed-content {
	position: relative;
	z-index: 1;
	max-width: 800px;
	padding: 2rem;
}

.full-bleed-content h2 {
	font-size: clamp(2.5rem, 5vw, 4rem);
	margin-bottom: 1rem;
	line-height: 1.1;
	font-weight: 600;
}

.full-bleed-content .subhead {
	font-size: clamp(1.2rem, 2vw, 1.5rem);
	margin-bottom: 2rem;
	opacity: 0.9;
}

.full-bleed-cta {
	display: inline-block;
	padding: 1rem 2.5rem;
	background: white;
	color: #333;
	text-decoration: none;
	border-radius: 8px;
	font-weight: 500;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.full-bleed-cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* Feature List Section */
.feature-list-section {
	padding: 6rem 0;
	background: #f5f5f5;
}

.feature-list-content {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 3rem;
}

.feature-list-header {
	text-align: center;
	margin-bottom: 4rem;
}

.feature-list-header h2 {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	color: #333;
}

.feature-list-header p {
	font-size: 1.25rem;
	color: #666;
	max-width: 600px;
	margin: 0 auto;
}

.feature-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
	list-style: none;
	padding: 0;
}

.feature-list li {
	display: flex;
	align-items: flex-start;
	gap: 1.5rem;
	padding: 1.25rem;
	font-size: 1.1rem;
}

.feature-list li::before {
	content: '';
	display: block;
	width: 48px;
	height: 48px;
	background-image: url('static/logo.svg');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	flex-shrink: 0;
	margin-top: -0.5rem;
}

/* Feature Cards Section */
.feature-cards-section {
	padding: 6rem 0;
	background: #666;
	color: white;
}

.feature-cards-content {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 3rem;
}

.feature-cards-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
}

.feature-card {
	background: white;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.feature-card-image {
	width: 100%;
	aspect-ratio: 16/9;
	overflow: hidden;
}

.feature-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.feature-card:hover .feature-card-image img {
	transform: scale(1.05);
}

.feature-card-content {
	padding: 1.5rem;
}

.feature-card-content h3 {
	font-size: 1.25rem;
	margin-bottom: 0.75rem;
	color: #222;
}

.feature-card-content p {
	font-size: 1rem;
	color: #666;
	line-height: 1.5;
	margin: 0;
}

/* Text and Image Panel */
.text-image-panel {
	padding: 6rem 0;
	background: white;
}

.text-image-content {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 3rem;
	display: grid;
	grid-template-columns: 1.5fr 1fr;
	gap: 4rem;
	align-items: start;
}

.text-content h2 {
	font-size: 2.5rem;
	margin-bottom: 2rem;
	color: #333;
	line-height: 1.2;
}

.text-content p {
	font-size: 1.1rem;
	color: #666;
	line-height: 1.6;
	margin-bottom: 1.5rem;
}

.text-content p:last-child {
	margin-bottom: 0;
}

.side-image {
	position: sticky;
	top: 2rem;
}

.side-image img {
	width: 100%;
	height: auto;
	border-radius: 16px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 800px) {
	.text-image-content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.text-content h2 {
		font-size: 2rem;
		margin-bottom: 1.5rem;
	}

	.side-image {
		position: static;
	}

	.text-image-panel {
		padding: 4rem 0;
	}


	.feature-cards-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.5rem;
	}

	.feature-cards-content {
		padding: 0 2rem;
	}

	.feature-cards-section {
		padding: 4rem 0;
	}


	.feature-list {
		grid-template-columns: 1fr;
	}

	.feature-list-content {
		padding: 0 2rem;
	}

	.feature-list-header h2 {
		font-size: 2rem;
	}


	.alt-section-inner,
	.alt-section-inner.image-right {
		grid-template-columns: 1fr;
		grid-template-areas: 
			'image'
			'content';
	}

	blockquote {
		font-size: 2rem;
	}


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

	.alt-section-inner {
		grid-template-columns: 1fr;
		gap: 3rem;
		padding: 0 2rem;
	}

	.alt-section-wrapper {
		padding: 4rem 0;
	}

	.alt-section-inner.right-image {
		direction: ltr;
	}

	.alt-image {
		order: -1;
	}

	.alt-section.right-image {
		display: flex;
		flex-direction: column-reverse;
	}

	.features {
		padding: 3rem 1.5rem;
	}

	.alternating-sections {
		padding: 3rem 1.5rem;
	}

	.hero-content {
		padding: 140px 2rem 2rem 2rem;
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.weather-categories {
		display: grid;
		gap: 10px;
		grid-template-columns: repeat(2, 1fr);
	}

	.footer-content {
		flex-direction: column;
		gap: 2rem;
		text-align: center;
	}
	
	.about, .apps {
		padding: 1.75rem;
	}

	.app {
		display: grid;
		grid-template-columns: 1fr;
		gap: 30px;
	}

}

@media (max-width: 600px) {
	.text-image-content {
		padding: 0 1.5rem;
	}

	.text-content h2 {
		font-size: 1.75rem;
	}

	.text-content p {
		font-size: 1rem;
	}

	.text-image-panel {
		padding: 3rem 0;
	}


	.feature-cards-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.feature-cards-content {
		padding: 0 1.5rem;
	}

	.feature-cards-section {
		padding: 3rem 0;
	}

	.feature-card-content {
		padding: 1.25rem;
	}


	.feature-list li {
		gap: 1rem;
		padding: 1rem;
		font-size: 1rem;
	}

	.feature-list li::before {
		width: 36px;
		height: 36px;
		margin-top: -0.25rem;
	}

	.feature-list-section {
		padding: 4rem 0;
	}

	.feature-list-content {
		padding: 0 1.5rem;
	}

	.feature-list-header {
		margin-bottom: 3rem;
	}

	.feature-list-header h2 {
		font-size: 1.75rem;
	}

	.feature-list-header p {
		font-size: 1.1rem;
	}


	blockquote {
		font-size: 1.5rem;
	}

	.blockquote-section {
		padding: 2rem 0;
	}


	.full-bleed-panel {
		min-height: 60vh;
		padding: 4rem 1rem;
	}

	.full-bleed-content {
		padding: 1rem;
	}

	.full-bleed-cta {
		padding: 0.875rem 2rem;
		width: 100%;
	}

	.feature-grid {
		grid-template-columns: 1fr;
	}

	.features-content h2,
	.alt-content h2 {
		font-size: 2rem;
	}

	.alt-section-wrapper {
		padding: 3rem 0;
	}

	.alt-section-inner {
		padding: 0 1.5rem;
		gap: 2rem;
	}

	.alt-image {
		margin: 0 -1.5rem;
	}

	.alt-image img {
		border-radius: 0;
		width: 100%;
	}

	.features, .alternating-sections {
		padding: 2rem 1rem;
	}


	.nav {
		position: fixed;
		top: 0;
		right: -70vw;
		padding: 20px;
		width: 70vw;
		height: 100vh;
		background: white;
		display: flex;
		flex-direction: column;
		gap: 20px;
		z-index: 1000;
		transition: all .3s;
	}

	.nav.open {
		right: 0;
	}

	.menu,
	.close {
		display: block;
		cursor: pointer;
		width: 20px;
		height: auto;
	}

	.close {
		position: absolute;
		top: 20px;
		right: 20px;
	}

	.logo img {
		width: 80px;
	}

	.header {
		padding: 0;
	}

	.header-content {
		padding: 10px;
	}

	.hero {
		padding: 0;
	}

	.hero-content {
		padding: 140px 1rem 1rem 1rem;
	}

	.hero-text .tagline {
		font-size: 1rem;
	}

	.header {
		border-radius: 0;
	}

	.glass-card {
		border-radius: 0;
	}

	.weather-categories {
		display: grid;
		grid-template-columns: repeat(5, 1fr);
		gap: 0;
	}

	.category-item {
		flex-direction: column;
		gap: 0.5rem;
		padding: 0.5rem;
		border-radius: 12px;
	}

	.category-item span {
		display: none;
	}

	.category-icon {
		width: 40px;
		height: 40px;
	}

}