/* @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root{
  --border-primary: #633a81;
  --tx-primary-color: #633a81;
}

* {
  /* font-family: 'Roboto', sans-serif; */
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
}


/* Gallery */
.grid-item {
  background-color: #f8f9fa;
  /* border: 1px solid #ddd; */
  border-radius: 5px;
  padding: 20px;
  text-align: center;
  height: auto;
  box-sizing: border-box;
  /* box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px !important; */
}
.item-wrapper {
  display: flex;
  justify-content: space-between;
}
.item-wrapper .col {
  flex: 1;
  max-width: calc(20% - 10px); /* 5 items per row with margins */
  margin: 5px; /* Adjust spacing as needed */
}
.item-wrapper .col:last-child {
  margin-right: 0; /* Remove margin for the last item */
}
.filter-button {
  font-size: 16px;
  letter-spacing: 1px;
}
.filter-button.active {
  color: #220163 !important;
  background-color: white !important;
  font-weight: bold;
}
.gallery-item-label {
  text-shadow: 0px 4px 6px rgba(0,0,0,0.4),
             0px 8px 13px rgba(0,0,0,0.1),
             0px 18px 23px rgba(0,0,0,0.1);
}


/* Navbar */
/* CSS from above */
/* .navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
} */
/* .container-sm {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  padding: 0 15px;
} */
/* .navbar-nav { */
  /* display: flex; */
  /* flex-grow: 1; */
  /* justify-content: center; */
  /* align-items: center; */
/* } */
/* .d-flex {
  display: flex;
  align-items: center;
} */
.icon-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-left: 10px;
}
.icon-container i {
  font-size: 20px;
}
.btn-outline-success {
  margin-left: 10px;
}
@media (max-width: 767.98px) {
  .navbar-nav {
      flex-direction: column;
      text-align: center;
  }
}


/* Icon */
.icon-container {
  margin-right: 4px;
  width: 40px;              /* Set a width for the container */
  height: 40px;             /* Set a height for the container */
  display: flex;            /* Use flexbox for centering */
  align-items: center;      /* Center vertically */
  justify-content: center;  /* Center horizontally */
  border-radius: 50%;
}

.icon-container i {
  font-weight: bold;
  font-size: 18px; /* Set the size of the icon */
}

.nav-link {
  font-size: 16px; /* FontAwesome uses different weights for solid icons */
  margin: 0 10px;
}

.dropdown-toggle::after {
  content: '\f078';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 12px;
  margin-left: 1rem;
  display: contents;
}

/** Typography **/
.tx-primary {
  color: var(--tx-primary-color);
}


/***********
 Audience
 ***********/
#audience .label{
	color:#525252; 
	font-weight:600;
}
.filter-button {
	cursor: pointer;
}
#audience a .grid-item{
	transition: transform 1s, border-radius 1s, font-weight 1s, text-shadow 3s;
}
#audience a:hover .grid-item{
	background-color: #ffa500;
    border-radius: 50%;
    transform: scale(1.2);
    width: max-content;
    text-align: center;
    margin: auto;
}
#audience a:hover .gallery-item-label{
	color: var(--tx-primary-color) !important;
	font-weight: bold;
	text-shadow: none;
}

/***********
 Explore
 ***********/
#explore input {
	width: 100%;
	padding: 10px 15px;
	border-radius: 50px;
	border: 3px solid purple;
	outline: none;
	font-size: 18px;
}
#explore .search-btn {
	position: absolute;
	right: 8px;
	top: 50%;
	transform: translateY(-50%);
	background-color: orange;
	border: none;
	padding: 11px;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
}

/***********
 Counter
 ***********/
.category:nth-child(1),
.category:nth-child(4),
.category:nth-child(5) {
	background-color: #f7f7f7;
}

.category:nth-child(2),
.category:nth-child(3),
.category:nth-child(6) {
	background-color: #ededed;
}

.category:nth-child(1) {
	border-right: 5px dashed black;
	border-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' stroke='black' stroke-width='4' stroke-dasharray='6%2c 18' stroke-linecap='square'/%3e%3c/svg%3e") 5;
}

.category:nth-child(3),
.category:nth-child(4),
.category:nth-child(5),
.category:nth-child(6) {
	border-top: 5px dashed black;
	border-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' stroke='black' stroke-width='4' stroke-dasharray='6%2c 18' stroke-linecap='square'/%3e%3c/svg%3e") 5;
}

.category:nth-child(3),
.category:nth-child(5) {
	border-right: 5px dashed black;
	border-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' stroke='black' stroke-width='4' stroke-dasharray='6%2c 18' stroke-linecap='square'/%3e%3c/svg%3e") 5;
}

.category:nth-child(1) .category-label {
	background-color: #ea69b1;
}

.category:nth-child(2) .category-label {
	background-color: #8fd14f;
}

.category:nth-child(3) .category-label {
	background-color: #40bca8;
}

.category:nth-child(4) .category-label {
	background-color: #4091bc;
}

.category:nth-child(5) .category-label {
	background-color: #9d40bc;
}

.category:nth-child(6) .category-label {
	background-color: #bc7340;
}

.category:nth-child(1) .content span {
	color: #ea69b1;
}

.category:nth-child(2) .content span {
	color: #8fd14f;
}

.category:nth-child(3) .content span {
	color: #40bca8;
}

.category:nth-child(4) .content span {
	color: #4091bc;
}

.category:nth-child(5) .content span {
	color: #9d40bc;
}

.category:nth-child(6) .content span {
	color: #bc7340;
}

.category {
	display: flex;
	flex-direction: column;
	align-items: center;
	/* Center horizontally */
	justify-content: space-between;
	/* Adjust as needed */
	/* padding: 20px; */
	/* margin: 10px; */
	/* border: 1px solid #ccc; */
	padding: 0px 20px 80px 20px;
	/* border-right: 1px solid black; */
	/* background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' stroke='black' stroke-width='4' stroke-dasharray='6%2c 18' stroke-dashoffset='0' stroke-linecap='square'/%3e%3c/svg%3e"); */
}

.category2 {
	padding: 0px 20px 150px 20px;
	/* Add extra top padding for h2 */
	text-align: center;
	border-right: 3px dashed black;
	/* position: relative; */
	justify-content: flex-start;
}

.category .category-label {
	margin: -30px 0 60px;
	/* Negative margin to pull h2 upwards */
	background-color: #8fd14f;
	color: white;
	padding: 10px;
	border-radius: 50px;
	box-shadow: 4px 8px 0px #d4d4d4;
	min-width: 20rem;
}

.category .category-label-bg {
	padding: 5px 3rem;
}

.category2 .category-label {
	background-color: #8fd14f;
	color: white;
	padding: 10px 3rem;
	border-radius: 50px;
	/* max-width: fit-content; */
	box-shadow: 3px 3px 5px rgba(212, 212, 212, 1);
	text-align: center;
	position: absolute;
	top: -30px;
	/* Float above more than 50% of the container */
	/* left: 50%; */
	/* transform: translateX(-50%); */
	font-size: 2.5rem;
	min-width: 20rem;


	/* left: 50%; */
	width: 200px;
	/* Set a width */
	height: 50px;
	/* Set a height */
	margin-left: calc(-200px / 2);
	/* Half of width */
	margin-top: calc(-50px / 2);
	/* Half of height */
}


/* Adjust content styling */
.list-group {
	margin-top: 2rem;
}

span {
	font-size: 24px;
	font-weight: bold;
	color: #4b0082;
}

.category .content span {
	font-size: 2.2rem !important;
}
 
/***********
 Download
 ***********/
#download {
	background-color: rgba(66,28,94,1);
	background-size: cover;
}

.promo-container {
	/* background-color: #4b0082; */
	/* Purple background */
	color: white;
	/* text-align: center; */
	padding: 50px;
	border-radius: 10px;
}

.promo-container h2 {
	font-size: 34px !important;
	text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.6);
}

.qr-code {
	/* background-color: #ff8c00; */
	/* Orange background */
	/* padding: 20px; */
	border-radius: 10px;
}

.qr-code img {
	width: 100%;
}

.download-buttons {
	/* margin-top: auto; */
}

.promo-content {
	display: flex;
	justify-content: space-around;
	align-items: center;
}

.download-buttons img {
	width: 100%;
	margin: 0;
}
		

/***********
 Tag Cloud
 ***********/
 #tag-cloud {
	 background-color: rgba(223,112,1);
 }
 
.tag-cloud {
	display: inline;
	justify-content: center;
	align-content: center;
	align-items: center;
}
 
					
/***********
 Pembekal Data Utama
 ***********/
#links figure {
	padding: 10px;
}
 

/***********
 Footer
 ***********/
#wave {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column-reverse;
  gap: 50px;
  text-align: center;
}


@media (width >= 648px) {
  #wave {
    text-align: left;
    flex-direction: row;
    justify-content: space-between;
  }
}

.waves > use {
	animation: move-forever 2s -2s linear infinite;
}

.waves > use:nth-child(2) {
	animation-delay: -3s;
	animation-duration: 6s;
}
.waves > use:nth-child(3) {
	animation-delay: -4s;
	animation-duration: 3s;
}

@keyframes move-forever {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}

/* svg {

	left: 0;
	bottom: 0;
	width: 100%;
	height: 30vw;
	max-height: 200px;
} */

.footer {
	background-color: #633a81;
	font-size: 13px;
}

.footer .card {
	background-color: transparent;
}

.footer ul li a {
	font-size: 12px;
}

.footer address,
.footer p, .top-footer h6, 
.sub-footer span, .sub-footer a{
	font-size: 14px;
}

.sub-footer{
	background-color: #5e1c44;
}

.sub-footer span, .sub-footer a{
	color: #fff;
}