* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "IBM Plex Sans Devanagari", sans-serif;
}

body {
  background-color: white;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

.sticky-section {
  position: sticky;
  top: 100px;
}

.link-title-box .link-title {
  color: #ff0000;
  font-weight: 500;
  transition: all 0.5s ease-in-out;
}
.link-title-box .link-title:hover {
  color: rgba(60, 60, 60, 0.537254902);
}

@keyframes infinityLoop {
  0% {
    width: 0%;
    left: 50%;
  }
  50% {
    width: 100%;
    left: 0%;
  }
  100% {
    width: 0%;
    left: 50%;
  }
}
.visibility {
  opacity: 1;
  visibility: visible;
}

.cat-title-box {
  margin: 5px 0;
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cat-title-box .cat-title {
  padding: 5px;
  text-align: center;
  color: #ff0000;
  display: inline-flex;
  background-color: #fff;
}
.cat-title-box .cat-title::before {
  position: absolute;
  z-index: -1;
  content: "";
  width: 50%;
  top: 40%;
  left: 25%;
  height: 1px;
  background-color: #ff0000;
  transition: all 0.5s ease-in-out;
}
.cat-title-box .cat-title:hover::before {
  animation: infinityLoop 2s infinite;
}

.image-box {
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
}
.image-box img {
  border-radius: 10px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: all 0.5s ease-in-out;
}
.image-box:hover {
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}
.image-box:hover img {
  scale: 1.1;
}

.navigation-section .navbar {
  background-color: #50077b !important;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
  height: 5rem;
}
.navigation-section .navbar .show {
  background-color: #50077b !important;
}
.navigation-section .navbar .navbar-brand {
  font-size: 1.8rem;
  display: none;
}
.navigation-section .navbar .navbar-brand img {
  width: 130px;
}
.navigation-section .navbar .nav-link,
.navigation-section .navbar .dropdown-item {
  font-size: 1.2rem;
  color: rgb(236, 236, 236);
  font-size: 500;
  transition: all 0.5s ease-in-out;
  border-radius: 0px 20px 0 20px;
  margin: 0 3px;
  text-align: center;
}
.navigation-section .navbar .nav-link:hover,
.navigation-section .navbar .dropdown-item:hover {
  color: #fff;
  background-color: #ff0000;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}
.navigation-section .navbar .dropdown-menu {
  background-color: black !important;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}

.header-section .header {
  padding: 10px 0;
  border-bottom: 4mm ridge #ff0000;
}
.header-section .header .image-box {
  border-radius: 50px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
}
.header-section .header .image-box img {
  width: 23rem;
}
.header-section .header .date-box .date {
  font-size: 1.3rem;
  font-weight: 300;
}
.header-section .header .time-box .time {
  font-size: 1.3rem;
  font-weight: 300;
}

.first-category-section .first-category {
  border-top: thick double rgb(236, 236, 236);
}
.first-category-section .first-category .cat-lists .cat-1 {
  padding-right: 1rem;
  border-right: 1px solid #e9e9e9;
}
.first-category-section .first-category .cat-lists .cat-1 .cat-1-list {
  text-align: justify;
  padding: 5px;
  border-bottom: 1px solid #e9e9e9;
  overflow: hidden;
}
.first-category-section .first-category .cat-lists .cat-1 .cat-1-list .link-title-box .link-title {
  color: #ff0000;
  font-size: 1.4rem;
  font-weight: 500;
  transition: all 0.5s ease-in-out;
}
.first-category-section .first-category .cat-lists .cat-1 .cat-1-list .link-title-box .link-title:hover {
  color: rgba(60, 60, 60, 0.537254902);
}
.first-category-section .first-category .cat-lists .cat-1 .cat-1-list .image-box {
  float: right;
  margin-left: 0.5rem;
  margin-bottom: 1px;
  width: 10rem;
  border-radius: 10px;
  overflow: hidden;
}
.first-category-section .first-category .cat-lists .cat-1 .cat-1-list .image-box a img {
  box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
  border-radius: 10px;
  width: 100%;
  height: 6rem;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: all 0.5s ease-in-out;
}
.first-category-section .first-category .cat-lists .cat-1 .cat-1-list:hover img {
  scale: 1.1;
}
.first-category-section .first-category .cat-lists .cat-1 .cat-1-list .text-content {
  overflow: hidden;
}
.first-category-section .first-category .cat-lists .cat-2 .cat-2-list-1 {
  text-align: justify;
  padding: 5px;
  border-bottom: 1px solid #e9e9e9;
}
.first-category-section .first-category .cat-lists .cat-2 .cat-2-list-1 .link-title-box .link-title {
  color: #ff0000;
  font-size: 1.6rem;
  font-weight: 500;
  transition: all 0.5s ease-in-out;
}
.first-category-section .first-category .cat-lists .cat-2 .cat-2-list-1 .link-title-box .link-title:hover {
  color: rgba(60, 60, 60, 0.537254902);
}
.first-category-section .first-category .cat-lists .cat-2 .cat-2-list-1 .content-box .image-box {
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 1rem;
}
.first-category-section .first-category .cat-lists .cat-2 .cat-2-list-1 .content-box .image-box a {
  display: flex;
  justify-content: center;
  align-items: center;
}
.first-category-section .first-category .cat-lists .cat-2 .cat-2-list-1 .content-box .image-box a img {
  border-radius: 10px;
  height: 20rem;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: all 0.5s ease-in-out;
}
.first-category-section .first-category .cat-lists .cat-2 .cat-2-list-1 .content-box:hover img {
  scale: 1.1;
}
.first-category-section .first-category .cat-lists .cat-2 .cat-2-list-2 {
  border-bottom: 1px solid #e9e9e9;
  padding-bottom: 10px;
}
.first-category-section .first-category .cat-lists .cat-2 .cat-2-list-2 .link-title {
  font-size: 1.6rem;
}
.first-category-section .first-category .cat-lists .cat-2 .cat-2-list-2 .content-box {
  display: grid;
  grid-template-columns: 40% 60%;
  align-items: center;
}
.first-category-section .first-category .cat-lists .cat-2 .cat-2-list-2 .content-box .image-box,
.first-category-section .first-category .cat-lists .cat-2 .cat-2-list-2 .content-box .text-content {
  padding: 5px;
}
.first-category-section .first-category .cat-lists .cat-3 {
  padding-left: 1rem;
  border-left: 1px solid #e9e9e9;
}
.first-category-section .first-category .cat-lists .cat-3 .cat-3-list {
  text-align: justify;
  padding: 5px;
  border-bottom: 1px solid #e9e9e9;
  overflow: hidden;
}
.first-category-section .first-category .cat-lists .cat-3 .cat-3-list .link-title-box .link-title {
  color: #ff0000;
  font-size: 1.4rem;
  font-weight: 500;
  transition: all 0.5s ease-in-out;
}
.first-category-section .first-category .cat-lists .cat-3 .cat-3-list .link-title-box .link-title:hover {
  color: rgba(60, 60, 60, 0.537254902);
}
.first-category-section .first-category .cat-lists .cat-3 .cat-3-list .image-box {
  float: left;
  margin-right: 0.5rem;
  margin-bottom: 1px;
  width: 10rem;
  border-radius: 10px;
  overflow: hidden;
}
.first-category-section .first-category .cat-lists .cat-3 .cat-3-list .image-box a img {
  box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
  border-radius: 10px;
  width: 100%;
  height: 6rem;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: all 0.5s ease-in-out;
}
.first-category-section .first-category .cat-lists .cat-3 .cat-3-list:hover img {
  scale: 1.1;
}
.first-category-section .first-category .cat-lists .cat-3 .cat-3-list .text-content {
  overflow: hidden;
}

.second-category-section .second-category {
  border-top: thick double rgb(236, 236, 236);
}
.second-category-section .second-category .cat-lists .cat-1-list .image-box img {
  height: 12rem;
}

.third-category-section .third-category .cat-lists .cat-1 {
  border-top: thick double rgb(236, 236, 236);
  text-align: justify;
}
.third-category-section .third-category .cat-lists .cat-1 .cat-1-list .image-box img {
  height: 12rem;
}
.third-category-section .third-category .cat-lists .cat-2 {
  border-top: thick double rgb(236, 236, 236);
  padding-right: 1rem;
  border-right: 1px solid #e9e9e9;
}
.third-category-section .third-category .cat-lists .cat-2 .cat-2-list {
  text-align: justify;
  padding: 5px;
  border-bottom: 1px solid #e9e9e9;
  overflow: hidden;
}
.third-category-section .third-category .cat-lists .cat-2 .cat-2-list .link-title-box .link-title {
  color: #ff0000;
  font-size: 1.4rem;
  font-weight: 500;
  transition: all 0.5s ease-in-out;
}
.third-category-section .third-category .cat-lists .cat-2 .cat-2-list .link-title-box .link-title:hover {
  color: rgba(60, 60, 60, 0.537254902);
}
.third-category-section .third-category .cat-lists .cat-2 .cat-2-list .image-box {
  float: right;
  margin-left: 0.5rem;
  margin-bottom: 1px;
  width: 10rem;
  border-radius: 10px;
  overflow: hidden;
}
.third-category-section .third-category .cat-lists .cat-2 .cat-2-list .image-box a img {
  box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
  border-radius: 10px;
  width: 100%;
  height: 6rem;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: all 0.5s ease-in-out;
}
.third-category-section .third-category .cat-lists .cat-2 .cat-2-list:hover img {
  scale: 1.1;
}
.third-category-section .third-category .cat-lists .cat-2 .cat-2-list .text-content {
  overflow: hidden;
}

.fifth-category-section .fifth-category {
  border-top: thick double rgb(236, 236, 236);
}
.fifth-category-section .fifth-category .cat-lists .cat-1-box {
  border-right: 1px solid #e9e9e9;
}
.fifth-category-section .fifth-category .cat-lists .cat-1 {
  text-align: justify;
  padding: 10px;
  border-bottom: 1px solid #e9e9e9;
}
.fifth-category-section .fifth-category .cat-lists .cat-1 .link-title-box .link-title {
  color: #ff0000;
  font-size: 1.6rem;
  font-weight: 500;
  transition: all 0.5s ease-in-out;
}
.fifth-category-section .fifth-category .cat-lists .cat-1 .link-title-box .link-title:hover {
  color: rgba(60, 60, 60, 0.537254902);
}
.fifth-category-section .fifth-category .cat-lists .cat-1 .content-box .image-box {
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 1rem;
}
.fifth-category-section .fifth-category .cat-lists .cat-1 .content-box .image-box a {
  display: flex;
  justify-content: center;
  align-items: center;
}
.fifth-category-section .fifth-category .cat-lists .cat-1 .content-box .image-box a img {
  border-radius: 10px;
  height: 20rem;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: all 0.5s ease-in-out;
}
.fifth-category-section .fifth-category .cat-lists .cat-1 .content-box:hover img {
  scale: 1.1;
}
.fifth-category-section .fifth-category .cat-lists .cat-2 .cat-2-list {
  text-align: justify;
}
.fifth-category-section .fifth-category .cat-lists .cat-2 .cat-2-list .content-box {
  padding: 10px;
  border-right: 1px solid #e9e9e9;
  border-bottom: 1px solid #e9e9e9;
}
.fifth-category-section .fifth-category .cat-lists .cat-2 .cat-2-list .content-box .image-box {
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 1rem;
}
.fifth-category-section .fifth-category .cat-lists .cat-2 .cat-2-list .content-box .image-box a {
  display: flex;
  justify-content: center;
  align-items: center;
}
.fifth-category-section .fifth-category .cat-lists .cat-2 .cat-2-list .content-box .image-box a img {
  border-radius: 10px;
  height: 12rem;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: all 0.5s ease-in-out;
}
.fifth-category-section .fifth-category .cat-lists .cat-2 .cat-2-list .content-box:hover img {
  scale: 1.1;
}

.sixth-category-section .sixth-category .cat-lists .cat-1-box {
  border-top: thick double rgb(236, 236, 236);
}
.sixth-category-section .sixth-category .cat-lists .cat-1 {
  text-align: center;
  border: 1px solid #e9e9e9;
}
.sixth-category-section .sixth-category .cat-lists .cat-1 .cat-1-list1 {
  border-bottom: 1px solid #e9e9e9;
}
.sixth-category-section .sixth-category .cat-lists .cat-1 .cat-1-list1 .image-box {
  border-radius: 0;
}
.sixth-category-section .sixth-category .cat-lists .cat-1 .cat-1-list1 .image-box img {
  border-radius: 0;
  height: 12rem;
}
.sixth-category-section .sixth-category .cat-lists .cat-1 .cat-1-list2 {
  border-bottom: 1px solid #e9e9e9;
}
.sixth-category-section .sixth-category .cat-lists .cat-1 .cat-1-list2 .link-title {
  text-align: justify;
  padding: 0 10px;
  font-size: 1.1rem;
  font-weight: 400;
}

footer {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
  border-radius: 0 50px 0 0;
}
footer .col-12 {
  border-right: 1px solid rgb(236, 236, 236);
}
footer .col-12:nth-child(4) {
  border: none !important;
}
footer .box1 {
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .box1 .info {
  color: rgb(236, 236, 236);
}
footer .box1 .info-lists {
  font-size: 1.1rem;
  color: rgb(236, 236, 236);
  font-weight: 500;
}
footer .box1 .info-lists .info-list {
  margin: 1rem 0;
}
footer .box1 .info-lists .link-box .link-title {
  color: #0063db;
  transition: 0.5s all ease-in-out;
}
footer .box1 .info-lists .link-box .link-title:hover {
  color: #ff0000;
}
footer .box1 .info-lists .link-box .link-title:hover span {
  transition: 0.5s all ease-in-out;
  margin-right: 5px;
  color: #0063db;
  transform: rotateY(45deg) scale(1.1);
  transition: all 0.5s ease-in-out;
}

.copyright-section .copyright-1 {
  background-color: #3c3c3c;
}
.copyright-section .copyright-1 .footer-div1 .image-box {
  display: flex;
  justify-content: center;
  border-right: 1px #fff solid;
  border-radius: 0;
}
.copyright-section .copyright-1 .footer-div1 .image-box img {
  border-radius: 0;
  width: 130px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.copyright-section .copyright-1 .footer-div1 .content .text-content {
  font-size: 1.1rem;
  font-weight: 500;
  color: #fff;
  text-align: center;
}
.copyright-section .copyright-1 .footer-div1 .lists .list {
  width: 2rem;
  height: 2rem;
  border-radius: 50px;
  background-color: rgba(255, 255, 255, 0.224);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: rgba(0, 0, 0, 0.56) 0px 22px 70px 4px;
}
.copyright-section .copyright-1 .footer-div1 .lists .list i {
  font-size: 1.1rem;
  color: #fff;
}
.copyright-section .copyright-2 {
  background-color: #ff0000;
}
.copyright-section .copyright-2 .text {
  color: #fff;
  font-size: 1rem;
  font-weight: 300;
}
.copyright-section .copyright-2 .image-box img {
  background-color: #fff;
  margin-left: 10px;
  padding: 5px;
  border-radius: 3px;
  width: 50px;
  box-shadow: rgb(204, 219, 232) 3px 3px 6px 0px inset, rgba(255, 255, 255, 0.5) -3px -3px 6px 1px inset;
}

.headline-section .headline {
  border: thick double grey;
}
.headline-section .headline .col-12 {
  height: 100%;
  padding: 0;
}
.headline-section .headline .image-box {
  border-radius: 0;
  height: 25rem;
  box-shadow: rgba(136, 165, 191, 0.48) 6px 2px 16px 0px, rgba(255, 255, 255, 0.8) -6px -2px 16px 0px;
}
.headline-section .headline .image-box img {
  border-radius: 0;
  height: 25rem;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: all 0.5s ease-in-out;
}
.headline-section .headline .text-box {
  height: auto;
  padding: 1rem;
}
.headline-section .headline .text-box .link-title {
  color: #3c3c3c;
  transition: all 0.5s ease-in-out;
  font-size: 2rem;
}
.headline-section .headline .text-box .link-title:hover {
  color: #ff0000;
}
.headline-section .headline:hover img {
  scale: 1.1;
}

.category-section .category .secondary-square-box {
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 12px 28px 0px, rgba(0, 0, 0, 0.1) 0px 2px 4px 0px, rgba(255, 255, 255, 0.05) 0px 0px 0px 1px inset;
  border-radius: 10px;
}
.category-section .category .secondary-square-box .image-box {
  height: 14rem;
  border-radius: 10px;
}
.category-section .category .secondary-square-box .image-box img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  height: 14rem;
  border-radius: 10px;
  transition: all 0.5s ease-in-out;
  box-shadow: rgba(0, 0, 0, 0.09) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;
}
.category-section .category .secondary-square-box .link-title-box .link-title {
  margin-top: 10px;
  color: #3c3c3c;
  transition: all 0.5s ease-in-out;
  font-size: 1.2rem;
  text-align: justify;
  padding: 5px;
}
.category-section .category .secondary-square-box .link-title-box .link-title:hover {
  color: #ff0000;
}
.category-section .category .secondary-square-box:hover img {
  scale: 1.1;
}

.pagination-section {
  padding: 20px;
  background-color: #f8f9fa;
}

.pagination {
  margin: 0;
  padding: 0;
}

.pagination .page-item {
  display: inline-block;
  margin-right: 5px;
}

.pagination .page-link {
  color: #fff;
  font-size: 1.4rem;
  background-color: #ff0000;
  border: 1px solid #dee2e6;
  border-radius: 0;
  font-weight: 300;
  box-shadow: rgba(136, 165, 191, 0.48) 6px 2px 16px 0px, rgba(255, 255, 255, 0.8) -6px -2px 16px 0px;
}

.pagination .page-link:hover {
  background-color: #fff;
  color: #ff0000;
}

.pagination .page-item.active .page-link {
  background-color: #3c3c3c;
  color: #fff;
  border: 1px solid #3c3c3c;
}

.pagination .page-item.disabled .page-link {
  background-color: #fff;
  color: #6c757d;
  border: 1px solid #dee2e6;
}

.pagination .page-item.disabled .page-link:hover {
  cursor: not-allowed;
  background-color: #fff;
}

.post-content-section .post-content .link-title {
  text-align: center;
  color: #ff0000;
  font-size: 2.5rem;
}
.post-content-section .post-content .time-box .time {
  color: #ff0000;
}
.post-content-section .post-content .time-box .time strong {
  color: #3c3c3c;
}
.post-content-section .post-content .social-links .lists {
  display: flex;
  justify-content: space-evenly;
}
.post-content-section .post-content .social-links .lists .list {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: #ff0000;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  color: #fff;
  transition: all 0.5s ease-in-out;
}
.post-content-section .post-content .social-links .lists .list:hover {
  background: rgba(255, 0, 0, 0.5803921569);
}
.post-content-section .post-content .image-box {
  display: flex;
  justify-content: center;
  align-items: center;
}
.post-content-section .post-content .image-box img {
  border-radius: 20px;
  width: 90% !important;
}
@media (max-width: 556px) {
  .post-content-section .post-content .image-box img {
    width: 100%;
  }
}
.post-content-section .post-content .content .text {
  margin-top: 1rem;
  font-size: 1rem;
  text-align: justify;
  font-weight: 500;
}
.post-content-section .post-content .content .cat-3 {
  padding-left: 1rem;
  border-left: 1px solid #e9e9e9;
}
.post-content-section .post-content .content .cat-3 .cat-3-list {
  text-align: justify;
  padding: 5px;
  border-bottom: 1px solid #e9e9e9;
  overflow: hidden;
}
.post-content-section .post-content .content .cat-3 .cat-3-list .link-title-box .link-title {
  color: #ff0000;
  font-size: 1.4rem;
  font-weight: 500;
  transition: all 0.5s ease-in-out;
}
.post-content-section .post-content .content .cat-3 .cat-3-list .link-title-box .link-title:hover {
  color: rgba(60, 60, 60, 0.537254902);
}
.post-content-section .post-content .content .cat-3 .cat-3-list .image-box {
  margin-right: 0.5rem;
  margin-bottom: 1px;
  width: 100%;
  height: 10rem;
  border-radius: 10px;
  overflow: hidden;
}
.post-content-section .post-content .content .cat-3 .cat-3-list .image-box a img {
  box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
  border-radius: 10px;
  width: 100%;
  height: 10rem;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: all 0.5s ease-in-out;
}
.post-content-section .post-content .content .cat-3 .cat-3-list:hover img {
  scale: 1.1;
}
.post-content-section .post-content .content .cat-3 .cat-3-list .text-content {
  overflow: hidden;
}/*# sourceMappingURL=aashish.css.map */