.hero-sec {
	padding:80px 20px 48px;
	text-align: center;
	background-color:var(--purple);
}
.search-wrp input {
    width: 100%;
    padding: 12px 20px 12px 45px !important;
    border-radius: 70px !important;
    font-weight: 500;
    color: #81819a !important;
}
.search-wrp {
    width: min(100%, 600px);
    margin: 0 auto 48px;
    position: relative;
}
.search-wrp p {
    margin: 0;
}
.search-wrp span {
    position: absolute;
    color: #81819a;
    left: 18px;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 100%;
    display: flex;
    align-items: center;
}
.alphabet-content-inner-wrp:hover {
    border-color: var(--purple);
}
.clear-search-btn:hover {
    color: var(--purple);
}
.search-wrp input::placeholder {
    font-weight: 500;
    color: #81819a;
}
.glossary-hero-cont-wrp h1 {
	font-size: 60px;
	color: #fff;
	font-family: var(--secondary-font);
	margin: 0 auto 0px;
	font-weight: 700;
}
.glossary-hero-cont-wrp {
	text-align: center;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 24px;
}
.glossary-description {
	font-size: 18px;
	width: 100%;
	max-width: 640px;
	margin: auto;
	padding-bottom: 32px;
	color: #fff;
	max-width: 600px;
}
.category-tags ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex !important;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
} 
.category-tags {
    padding: 0 3em;
}
.category-tags ul li a {
    text-decoration: none;
    color: #fff;
    padding: 8px 16px;
    border: 1px solid #b190f2;
    border-radius: 50px;
    display: block;
    font-size: 14px;
    font-weight: 500;
}
.category-tags ul li a:hover {
    background: #fff;
    color: #000;
}
.search-icon i {
	font-size: 16px;
} 
.category-filter {
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); 
  gap: 10px; 
  max-height: calc(2 * 44px);  
  overflow: hidden;
}

/*Alphabets*/
.active-category {
    background: #fff;
    color: #000 !important;
}
.npf-txt {
    padding: 2em 0;
    text-align: center;
    margin: 0;
    font-size: 30px;
    font-weight: 600;
    color: #000;
}
.alphabet-wrp ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    gap: 5px;
    justify-content: center;
        flex-wrap: wrap;
}
.alphabet-group {
    padding: 80px 0;
}
.letter-sec-wrp .alphabet-group:last-child {
    padding-bottom: 88px;
}
.letter-sec-wrp .alphabet-group + .alphabet-group {
    border-top: 1.6px solid #d1d1db;
}
.alphabet-wrp ul li a {
    text-decoration: none;
    font-size: 14px;
    padding: 8px 15px;
    color: #3F3F50;
    border: 1px solid #EBEBEF;
    border-radius: 8px;
    font-weight: 500;
    width: 38px;
        height: 38px;
        display: flex;
        align-items: center;
        justify-content: center;
    box-shadow: 0px 1px 2px 0px rgba(18, 18, 23, 0.05);
}
.letter-sec-wrp .alphabet-group:first-child {
    padding-top: 80px;
}
.letter-sec-wrp {
    margin: 20px 0 0;
}
.alpha-active {
    border-color: var(--purple) !important;
    background: #F7F7F8 !important;
    
}
.alphabet-sec {
    padding: 24px 0;
    border-bottom: 1px solid #d1d1db;
    background: #fff;
}
.alphabet-sec-wrp{
    background: #f7f7f8;
}
.letter-sec-wrp h2 {
  font-size: 48px;
  font-weight: 700;
  color: var(--black-color);
  margin-bottom: 48px;
}
.alphabet-wrp ul li a:hover {
    text-decoration: underline;
    border-color:#D1D1DB !important;
    color:#000;
}
.alphabet-content-inner-wrp {
    background: var(--white-color);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.04);
    height: 100%;
    border: 1px solid #d1d1db;
}
.alphabet-group .col-md-12 {
    margin-bottom: 24px;
}
.alphabet-content-inner-wrp h5 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #884af7;
}

.alphabet-content-inner-wrp p {
  color: #3F3F50;
  font-size:18px;
    margin: 0;
}
.sticy-search-wrp {
  position: fixed;
  top: 70px;
  z-index: 9;
  background: var(--purple);
  width: 100%;
  transform: translateY(-100%);
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}

.sticy-search-wrp.is-sticky {
  transform: translateY(0);
  opacity: 1;
}
 
@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
 

.sticy-search-wrp .search-wrp {
    margin: 1em auto 1em;
}
.scroll-to-top-wrp {
    position: fixed;
    right: 1em;
     border-radius: 50%;
    bottom: 6em;
    background: #fff;;
    display:none;
}
.scroll-to-top-wrp a {
    color: #a7a7ba;
    transition: 0.3s;
    border: 1.6px solid #a7a7ba;
     box-shadow: 2px 3px 8px #d1d1db;
     border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}
.scroll-to-top-wrp a:hover {
    background: var(--purple);
    color:#fff;
}
.clear-search-btn {
    position: absolute;
    right: 16px;
    top: 0;
    bottom: 0;
    margin: auto;
    background: transparent;
    border: none;
    font-size: 15px;
    color: #000;
    padding: 0;
    font-weight: 500;
    height: 100%;
}
@media only screen and (max-width:1400px){
.alphabet-wrp ul li a {
    padding: 8px 13px;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
}
}
@media only screen and (max-width:1024px){
.alphabet-content-inner-wrp {
    height: auto;
}
.alphabet-sec .col-md-12,  .category-sec-1 .col-md-12  {
    padding-right: 0 !important;
}
.category-sec-1 {
padding-top:20px;
} 
.alphabet-group .row {
    flex-direction: column;
}
.alphabet-group .row .col-sm-12 {
    width: 100%;
}
.glossary-hero-cont-wrp h1 {
    font-size: 48px;
}
.alphabet-group {
    padding: 64px 0 50px;
}
.letter-sec-wrp .alphabet-group:last-child {
    padding-bottom: 40px;
}
.letter-sec-wrp {
    width: 72%;
    margin: auto;
}
.swipe-gesture img {
    width: 98px;
    top: 0;
}
.swipe-gesture {
    position: absolute;
    top: 22px;
    left: 0;
            z-index: 9;
    right: 0;
}
.category-tags, .alphabet-sec {
    position: relative;
}
.alphabet-sec .swipe-gesture {
    top: 37px;
    text-align: center;
}
}
@media (max-width: 767px) {
.glossary-hero-cont-wrp h1 {
	font-size: 36px;
}
.sticy-search-wrp {
    position: fixed;
    width: 100%;
}
.glossary-hero-cont-wrp
 {
    gap: 16px;
}
.search-wrp {
    margin: 48px auto 24px;
}
.letter-sec-wrp {
    width: 100%;
    margin: auto;
}
.glossary-description {
	font-size: 16px;
	padding: 0;
}
.search-box input {
	padding: 16px 20px 16px 45px;
}
.npf-txt {
    font-size: 25px;
}
.category-tags {
    padding: 0;
}
}