:root {
	--primary-purple: #81297e;
	--dark-purple: #3e1a42;
	--light-purple: #d9a0d7;
	--light-gray: #f5f5f7;
	--medium-gray: #8e8e93;
	--dark-gray: #3a3a3a;
	--accent-gold: #d4af37;
}

body {
	font-family: Kanit, Helvetica, sans-serif;
	font-weight: 300;
	font-size: 18px;
	line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: Kanit, Helvetica, sans-serif;
	font-weight: 400;
	margin-top: 0.5rem;
}

blockquote {
	background: url(../images/quote.png) no-repeat;
	background-position-y: 10px;
	background-size: 32px 32px;
	padding-left: 36px;
	font-size: 1.1em;
	line-height: 2.2em;
	border: none;
}

section {
	padding: 2rem 0;
	position: relative;
}

section .title {
	font-size: clamp(1.4rem, 2.2vw, 3rem);
	font-weight: 4 00;
	margin-bottom: 1rem;
	text-align: center;
}

section .subtitle {
	font-size: clamp(1.2rem, 1.4vw, 2rem);
	color: var(--dark-gray);
	text-align: center;
}

select {
	background: linear-gradient(#fff, #eee);
}

ol > li::marker {
	font-size: 1.1rem;
	font-weight: 600;
}

.nopad {
	padding: 0;
}

.paragraph {
	padding: 5px 0 5px 10px;
	margin-bottom: 10px;
	border-left: 4px solid var(--medium-gray);
}

.button.hollow.white {
	border: 1px solid #fff;
	color: #fff;
}

.callout {
	padding: 1.5rem;
	border-radius: 15px;
	box-shadow:
		0 4px 6px rgba(0, 0, 0, 0.1),
		0 1px 3px rgba(0, 0, 0, 0.06);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	overflow: hidden;
}

.callout.callout-bar::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 5px;
	background: linear-gradient(90deg, var(--primary-purple), var(--accent-gold));
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.4s ease;
}

.callout.callout-bar:hover {
	transform: translateY(-10px);
}

.callout.callout-bar:hover::before {
	transform: scaleX(1);
}

.pagination li {
	font-size: 16px;
}

.pagination-previous.disabled::before,
.pagination-previous a::before,
.pagination-next.disabled::after,
.pagination-next a::after {
	content: "";
	margin: 0;
}

.text-mute {
	color: #888;
}

.lead {
	font-size: 1.12em;
	font-weight: 600;
}

.highlight {
	padding: 0.2rem 0.5rem;
	border-radius: 4px;
	background: linear-gradient(
		120deg,
		rgba(129, 41, 126, 0.1) 0%,
		rgba(212, 175, 55, 0.1) 100%
	);
	color: var(--primary-purple);
}

.styled-list-item {
	background: linear-gradient(
		90deg,
		var(--dark-purple) 0%,
		var(--primary-purple) 90%
	);
	padding: 1.4rem;
	margin-bottom: 1rem;
	border-radius: 15px;
	border-left: 5px solid var(--accent-gold);
}

.styled-list-item .number {
	display: inline-block;
	width: 40px;
	height: 40px;
	background: var(--accent-gold);
	color: var(--dark-purple);
	border-radius: 50%;
	text-align: center;
	line-height: 40px;
	font-weight: 700;
	margin-right: 1rem;
	font-size: 1.2rem;
}

.styled-list-item p {
	display: inline;
	color: white;
	font-size: 1.1rem;
	line-height: 1.6;
}

.img-responsive {
	width: 100%;
}

.header-main {
	position: relative;
	font-weight: 400;
	width: 100%;
	min-width: 100%;
	background-color: #3e1a42;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	z-index: 4;
	transition: all ease-in-out 150ms;
}

.header-main.fixed {
	position: fixed;
	top: 0;
	left: 0;
	animation: navAnim 0.3s ease-in-out;
}

@keyframes navAnim {
	0% {
		top: -100px;
	}
	100% {
		top: 0;
	}
}

.header-main nav {
	display: flex;
	padding: 0 50px;
}

.header-main .logo {
	height: 65px;
	min-width: 90px;
	align-self: start;
	outline: none;
}

.header-main .logo img {
	height: 100%;
	object-fit: contain;
}

.header-main nav > ul {
	height: 100%;
	margin: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	align-self: center;
}

.header-main ul li {
	display: flex;
	position: relative;
}

.header-main ul li a {
	display: block;
	align-self: center;
	padding: 0 15px;
	line-height: 80px;
	font-size: 1rem;
	white-space: nowrap;
	color: #e7d2fb;
	cursor: pointer;
	z-index: 100;
	transition: all ease-in-out 150ms;
}

.header-main ul li ul {
	visibility: hidden;
	opacity: 0;
	display: none;
	height: auto;
	position: absolute;
	left: -10px;
	top: 70px;
	padding: 0;
	transition: all ease-in-out 150ms;
	z-index: 1000;
	background-color: #fff;
	box-shadow: 2px 1px 5px rgba(0, 0, 0, 0.2);
	border-radius: 5px;
	overflow: hidden;
}

.header-main ul li ul li:hover {
	background-color: #da97e1;
}

.header-main ul li ul li a {
	padding: 0 20px;
	line-height: 2.8rem;
	color: #331947;
}

.header-main ul li ul li a {
	white-space: nowrap;
	width: 100%;
}

.header-main .social-bar {
	color: #fff;
	display: flex;
	justify-content: end;
	align-items: center;
	height: 30px;
	background-color: #2f1432;
	z-index: 100;
}

.social-bar .social-icon {
	display: block;
	width: 25px;
	height: 25px;
	margin-right: 10px;
}

nav > ul li:hover > ul {
	visibility: visible;
	opacity: 1;
	display: block;
}

.title-bar {
	background: #d0d0d0;
	width: 100%;
	z-index: 5;
}

.link-group > a {
	display: inline-block;
	padding: 2px 20px;
	font-weight: bold;
}

.link-group > a.active {
	color: #fff;
	background: #3e1a42;
}

.link-group > a:not(:last-child) {
	border-right: 1px solid #aaa;
}

.to-top {
	position: fixed;
	width: 50px;
	height: 50px;
	padding: 8px;
	background: rgba(0, 0, 0, 0.5);
	color: #fff;
	border-radius: 50%;
	bottom: 40px;
	right: 40px;
	text-align: center;
	display: none;
}

.to-top:hover {
	color: #fff;
	background: rgba(0, 0, 0, 0.8);
}

.footer {
	text-align: right;
	padding: 10px;
	margin-top: 20px;
	color: #3d2858;
	font-size: 0.8em;
	border-top: 2px solid var(--medium-gray);
}

.search-wrapper {
	display: flex;
	width: 100%;
	max-width: 400px; /* ปรับความกว้างตามต้องการ */
	border: 2px solid #ddd;
	border-radius: 50px; /* ทำให้ขอบมนแบบสมบูรณ์ */
	overflow: hidden; /* เพื่อให้เนื้อหาข้างในไม่ล้นขอบที่มน */
	transition: border-color 0.3s;
}

.search-wrapper:focus-within {
	border-color: var(--dark-purple);
}

.search-wrapper > input {
	flex-grow: 1; /* ให้ input ขยายเต็มพื้นที่ที่เหลือ */
	border: none !important;
	outline: none;
	box-shadow: none !important;
	padding: 5px 20px;
	font-size: 0.9rem;
	height: auto;
	margin: 0;
}

.search-wrapper > button {
	background-color: var(--dark-purple);
	color: white;
	border: none;
	padding: 0 25px;
	cursor: pointer;
	font-size: 16px;
	transition: background-color 0.3s;
}

.search-wrapper > button:hover {
	background-color: var(--primary-purple);
}

.feature-block {
	padding: 1em 0;
	cursor: pointer;
}

.feature-block:hover {
	background: #f0f0f0;
}

.page-title {
	background-color: #a82fa4;
	opacity: 0.8;
	background-image: linear-gradient(0deg, #a82fa4 50%, #b958b6 50%);
	background-size: 4px 4px;
	color: #fff;
	padding: 5px 20px;
	margin-bottom: 20px;
}

.page-title h3 {
	font-size: clamp(2rem, 2.2vw, 3rem);
}

.styled-border {
	border: 5px solid transparent;
	border-radius: 20px;
	background:
		linear-gradient(white, white) padding-box,
		linear-gradient(120deg, var(--dark-purple), var(--primary-purple))
			border-box;
	background-clip: padding-box, border-box;
	box-shadow:
		0 4px 6px rgba(0, 0, 0, 0.1),
		0 1px 3px rgba(0, 0, 0, 0.06);
}

.styled-border img {
	border-radius: 15px;
}

/* Banner */
.seq {
	width: 100%;
	height: 400px;
	max-width: 100%;
	margin: 0 auto;
	padding: 0;
	position: relative;
	overflow: hidden;
}

.seq-canvas,
.seq-canvas > * {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	list-style: none;
	white-space: nowrap;
	position: absolute;
}

.seq-canvas .caption {
	font-size: 0.9rem;
	position: absolute;
	top: 1.5rem;
	opacity: 0;
	-webkit-transition-duration: 1.5s;
	transition-duration: 1.5s;
	-webkit-transition-delay: 1s;
	transition-delay: 1s;
	transform: translate(0, 50px);
	color: #333;
	text-shadow: 1px 1px 2px #fff;
	padding: 10px 20px;
	background: rgba(255, 255, 255, 0.6);
	border-radius: 10px;
}

.seq-canvas img {
	opacity: 0;
	-webkit-transition:
		opacity 2s,
		transform 10s;
	transition:
		opacity 2s,
		transform 10s;
	transform: scale(1.2);
}

.seq-canvas .seq-in .caption {
	opacity: 1;
	transform: translate(0, 0);
}

.seq-canvas .seq-out .caption {
	opacity: 0;
	-webkit-transition-duration: 0s;
	transition-duration: 0s;
}

.seq-canvas .seq-in img {
	opacity: 1;
	transform: scale(1);
}

/* Image hover */
.image-hover {
	position: relative;
	overflow: hidden;
	border: 1px solid #e0e0e0;
}

.image-hover img {
	width: 100%;
	top: 0;
	left: 0;
	transition-duration: 0.4s;
}

.image-hover-text {
	position: absolute;
	font-size: 0.9em;
	height: 4.6em;
	left: 0;
	bottom: -2.7em;
	width: 100%;
	padding: 5px;
	background-color: #fff;
	transition-duration: 0.4s;
}

.image-hover:hover img {
	margin-top: -1.5em;
	padding-bottom: 1.5em;
}

.image-hover:hover .image-hover-text {
	bottom: 0;
}

/* Section */
.section-head {
	padding-bottom: 20px;
	line-height: 1em;
}

.section-head a {
	color: #555;
}

.section-head a:hover {
	color: #c0c0c0;
}

#about,
#what,
#map {
	padding: 20px 0;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

#partner {
	padding: 40px 0 0 0;
}

#news {
	padding: 40px 60px 80px;
}

#about {
	color: #fff;
	background: url(../images/about-bg.jpg) no-repeat;
	background-position-x: center;
	background-attachment: fixed;
}

#about blockquote {
	color: #fff;
	margin: 50px 0;
}

#what {
	background: #d1bcdf;
}

#what h3.section-head {
	color: #3d2858;
}

#data {
	color: #3d2858;
	position: relative;
	padding: 0 !important;
	background: url(../images/data-bg.jpg) no-repeat;
	background-size: cover;
	background-attachment: fixed;
	background-position: center center;
	background-repeat: no-repeat;
}

#data > .container {
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	color: #fff;
	background: linear-gradient(
		to bottom,
		rgb(93, 39, 99) 0%,
		rgba(93, 39, 99, 0) 80%
	);
}

.data-block {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: relative;
	color: #fff;
	max-width: 150px;
	aspect-ratio: 1/1;
	margin: 10px auto;
	border-radius: 50%;
	transition: 0.4s !important;
}

.data-block::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background: rgba(106, 41, 129, 0.85);
	box-shadow: 1px 0 15px rgba(0, 0, 0, 0.2);
	color: #fff;
	z-index: -1;
	transition: 0.8s;
}

.data-block img {
	width: 50%;
	padding: 5px;
	transition: 0.8s;
}

.data-block:hover {
	color: #fff;
	transform: translateY(-10px) !important;
	animation: neon 0.8s ease-in-out infinite alternate;
}

.data-block:hover img {
	transform: scale(1.1);
}

.data-block:hover::before {
	background: linear-gradient(
		45deg,
		rgb(106, 41, 129) 0%,
		rgb(106, 41, 129) 10%,
		rgb(185, 123, 207) 100%
	);
}

@keyframes neon {
	from {
		box-shadow: 0 0 20px 2px #fff;
	}
	to {
		box-shadow: 0 0 25px 5px #fff;
	}
}

.data-block h4 {
	width: 100%;
	font-size: 1.2rem;
}

.news-block {
	box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.4);
	border: 1px solid #ddd;
	border-radius: 5px;
	margin-top: 20px;
	overflow: hidden;
	font-size: 1rem;
}

.news-block img {
	border-bottom: 1px solid #eee;
}

.news-block .news-text {
	padding: 10px 20px;
}

.news-block .news-title {
	font-weight: 600;
}

.news-block .news-date {
	font-size: smaller;
	color: var(--medium-gray);
	display: inline-block;
	padding: 2px 0;
}

.news-block .news-desc {
	margin: 10px 0;
}

#contact {
	display: flex;
	justify-content: center;
	align-items: center;
	background-image: url(../images/donate-bg.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: bottom center;
	position: relative;
}

#contact > .container {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	font-size: 1rem;
	font-weight: 400;
	text-align: center;
	background: linear-gradient(
		to bottom,
		rgba(255, 255, 255, 0.8) 0%,
		rgba(255, 255, 255, 0.4) 80%
	);
}

#contact .container > div {
	max-width: 800px;
	margin: 0 auto;
	padding: 20px;
}

#contact .container p {
	background-color: rgba(255, 255, 255, 0.8);
	border-radius: 10px;
	padding: 10px;
}

.donate-button {
	margin: 20px auto;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
	border-radius: 5px;
	width: 150px;
}

#map {
	background: #49234e;
	color: #e0e0e0;
}

/* About page */
.page-about #vision {
	width: 100%;
	font-size: 20px;
	margin-bottom: 20px;
	background-color: #81297e;
	color: #fff;
}

.page-about #vision h3 {
	font-weight: 300;
	font-size: clamp(2rem, 4vw, 3rem);
}

.page-about #vision h4 {
	font-weight: 200;
	font-size: clamp(1.2rem, 2.2vw, 1.8rem);
}

.team .item {
	margin: 30px 15px;
}

.team .item > .photo {
	position: relative;
	overflow: hidden;
	border-radius: 50%;
}

.team .item > .photo > .link {
	position: absolute;
	width: 100%;
	line-height: 45px;
	bottom: -45px;
	text-align: center;
	color: #fff;
	background: rgba(0, 0, 0, 0.5);
	transition: 0.4s;
}

.team .item > .photo:hover > .link a {
	color: #fff;
}

.team .item > .photo:hover > .link {
	bottom: 0;
}

.team .item > .photo > img {
	border-radius: 50%;
	border: 5px solid #ddd;
	opacity: 0.75;
	transition: 0.4s;
}

.team .item.slick-current img {
	opacity: 1;
	transform: scale(1);
}

.team .item .desc {
	text-align: center;
}

/* Partner page */
.partner-result {
	border-left: 2px solid #eee;
}

.partner-item {
	padding: 15px;
	margin: 10px 0;
	border-bottom: 1px solid #ccc;
	background-color: rgba(255, 255, 255, 0.9);
}

.callout.areamap {
	display: none;
}

/* News page */
.news-content .news-head {
	margin-bottom: 30px;
}

.news-content .news-head .news-thumbnail {
	margin-right: 10px;
	width: 70px;
	border: 2px solid #ddd;
	border-radius: 5px;
	float: left;
}

.news-content .news-head .news-title {
	font-size: 1.2em;
	font-weight: bold;
}

.news-content .news-head .news-date {
	color: #888;
	font-size: 0.8em;
}

/* Media page */
.page-media .item > a {
	color: #333;
}

.page-media .item > a:hover {
	color: #b4009b;
}

.page-media .more-link {
	line-height: 4rem;
	padding: 5px 10px;
	background: #bd7399;
	color: #fff;
}

.page-media .more-link:hover {
	background: #b4009b;
}

.page-media .media-type > span {
	font-size: 0.9rem;
	color: var(--dark-gray);
}

.page-media > .brochure,
.page-media > .book,
.page-media > .poster,
.page-media > .video,
.page-media > .radio,
.page-media > .newsletter {
	padding-top: 10px;
	padding-bottom: 10px;
	margin-bottom: 10px;
}

.page-media .media-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	gap: 1.5rem;
}

.page-media .item {
	padding-bottom: 5px;
}

.page-media .cover-thumbnail {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border: 1px solid #888;
	border-radius: 5px;
	box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.4);
	transition: 0.4s;
}

.page-media .item:hover .cover-thumbnail {
	transform: translateY(-10px);
}

#media-detail {
	box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.6);
}

/* WhatWeDo page */
.page-whatwedo #vision {
	width: 100%;
	color: #fff;
	font-size: 20px;
	text-shadow: -1px 0px 2px rgba(0, 0, 0, 0.4);
	padding: 100px 10px;
	background: url(../images/about-head-bg.jpg) no-repeat;
	background-size: cover;
}

.page-whatwedo .what-slide .item {
	margin: 10px;
	border: 2px solid #ccc;
	border-radius: 10px;
}

.page-whatwedo .what-slide .item img {
	border-radius: 10px 10px 0 0;
}

.page-whatwedo .what-slide .item .desc {
	font-size: 1rem;
	padding: 10px;
	height: 16rem;
	overflow: hidden;
	color: #555;
}

.page-whatwedo .what-slide .item h5 {
	font-size: 1.1rem;
	color: #333;
}

.what-block {
	width: 100%;
	margin-bottom: 5px;
	position: relative;
	overflow: hidden;
	cursor: pointer;
	transition: 0.4s;
}

.what-block > h3 {
	position: absolute;
	font-size: 1.4rem;
	bottom: 0;
	left: 0.8rem;
	color: #fff;
	text-shadow: 1px 1px 2px #000;
	opacity: 1;
	transition: 0.4s;
}

.what-block:hover > h3 {
	opacity: 0;
}

.what-block > .what-desc {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	font-size: 1rem;
	background: rgba(110, 20, 75, 0.8);
	opacity: 0;
	transition: 0.4s;
	padding: 8px;
}

.what-block:hover {
	box-shadow:
		0 4px 6px rgba(0, 0, 0, 0.1),
		0 1px 3px rgba(0, 0, 0, 0.06);
	transform: translateY(-10px) !important;
	transition: 0.4s !important;
}

.what-block:hover > .what-desc {
	opacity: 1;
}

.what-block > .what-desc > .inner {
	width: 100%;
	height: 100%;
	border: 1px solid #ddd;
	color: #fff;
	opacity: 0;
	padding: 40px;
	transition: 1s;
	border-radius: 10px;
}

.what-block:hover > .what-desc > .inner {
	opacity: 1;
}

.what-block > .what-desc .lead {
	display: inline-block;
	font-size: 120%;
	font-weight: bold;
	border-bottom: 2px solid #f2d871;
	margin-bottom: 0.8rem;
}

strong {
	font-weight: bold;
	color: var(--primary-purple);
}

.row-space {
	margin-bottom: 10px;
}

.mobile-menu-bar {
	display: none;
}

.mobile-menu-bar .social-bar {
	display: flex;
	justify-content: center;
}

@media only screen and (max-width: 640px) {
	.header-main {
		opacity: 0;
		position: fixed;
		height: 0;
		flex-wrap: wrap;
		flex-direction: column;
		padding: 50px 0 0 0;
		justify-content: flex-start;
	}

	.header-main.fixed {
		animation: none;
	}

	.header-main .social-bar {
		display: none;
	}

	.mobile-menu-bar {
		position: fixed;
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: 100%;
		height: 50px;
		top: 0;
		right: 0;
		z-index: 200;
		background-color: #3e1a42;
	}

	.menu-btn {
		padding: 5px;
	}

	.menu-btn .icon-menu {
		font-size: 1.4rem;
		align-self: center;
		color: #fff;
		cursor: pointer;
	}

	.header-main.opened {
		display: flex;
		opacity: 1;
		height: 100vh;
	}

	.header-main nav {
		width: 100%;
		height: 82vh;
		flex-wrap: wrap;
		flex-direction: row;
		justify-content: center;
		align-content: stretch;
	}

	.header-main .logo {
		height: 20%;
		padding: 0;
		margin: 0;
		display: flex;
		align-items: center;
	}

	.header-main .logo img {
		height: 70%;
		align-self: center;
	}

	.header-main ul {
		width: 100%;
		padding: 0;
		margin: 0;
		flex-wrap: wrap;
		flex-direction: column;
		align-content: space-between;
	}

	.header-main ul li {
		width: 100%;
		border-top: 1px solid #562b56;
		display: flex;
		flex-wrap: nowrap;
		flex-direction: column;
		justify-content: center;
		transition: all ease-in-out 150ms;
	}

	.header-main ul li:nth-last-child(1) {
		border-bottom: 1px solid #562b56;
	}

	.header-main ul li a {
		line-height: 50px;
		padding: 0;
		margin: 0;
		text-align: center;
	}

	.header-main nav {
		overflow-y: auto;
		overflow-x: hidden;
	}

	.header-main ul li ul {
		display: none;
		flex-wrap: nowrap;
		flex-direction: column;
		position: relative;
		top: 0;
		left: 0;
		z-index: 1000;
	}

	.header-main ul li ul li {
		display: block;
		background-color: #fff;
	}

	.header-main ul li:focus-within {
		background-color: #913d9b;
	}

	.header-main ul li:focus-within > ul {
		display: flex;
		visibility: visible;
		opacity: 1;
	}

	.content {
		padding-top: 50px;
	}

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

	.reveal-overlay {
		padding-top: 60px;
		padding-bottom: 20px;
	}

	#news {
		padding: 40px 20px 80px;
	}
}

@media only screen and (min-width: 640px) {
	.header-main > nav > ul > li::before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 0;
		background-color: #913d9b;
		transition: 0.3s cubic-bezier(0.7, 0, 0.2, 1);
	}

	.header-main > nav > ul > li:hover::before {
		height: 100%;
	}

	.header-main ul li ul {
		min-width: 200px;
	}

	.row-space {
		margin-bottom: 20px;
	}

	.seq-canvas .caption {
		font-size: 1.1rem;
		right: 3rem;
	}

	#about,
	#what,
	#map {
		padding: 40px 60px 80px;
	}

	#data > .container {
		padding: 40px 60px 80px;
	}

	#partner .icon {
		width: 52px;
		margin: 5px;
	}

	.what-block {
		margin: 0;
	}

	.partner-result {
		background-repeat: no-repeat;
		background-size: contain;
		background-position: center;
		background-image: url(../images/partner-search-bg.jpg);
		overflow-y: scroll;
	}

	.callout.areamap {
		display: block;
		margin: 0;
	}

	svg {
		width: 84.5%;
	}

	svg path {
		fill: #ddd;
		transition: 0.4s fill;
		cursor: pointer;
	}
}
