/*
*
* Resume X kit style for section
*
*/
.no-img {
  min-height: 250px;
  background: #373737;
  position: relative;
  overflow: hidden;
}

.no-img:before {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  content: "";
  background: #7e7747;
  left: -22px;
  top: 7%;
  position: absolute;
  right: 0;
}
.no-img:after {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  content: "";
  background: #0382a1;
  right: -22px;
  top: 5%;
  position: absolute;
}
/*
*
*Hover image effects
*
*
*/
/* Hover Circle Image Effect*/
.mgpr-hvr-circle figure {
  position: relative;
}
.mgpr-hvr-circle figure:before {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: block;
  content: "";
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 100%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
}
.mgpr-hvr-circle figure:hover:before {
  -webkit-animation: circle 0.75s;
  animation: circle 0.75s;
}
@-webkit-keyframes circle {
  0% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  100% {
    width: 200%;
    height: 200%;
    opacity: 0;
  }
}
@keyframes circle {
  0% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  100% {
    width: 200%;
    height: 200%;
    opacity: 0;
  }
}
/*Image sine effect*/
.mgpr-hvr-shine figure {
  position: relative;
}
.mgpr-hvr-shine figure:before {
  position: absolute;
  top: 0;
  left: -95%;
  z-index: 2;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: -webkit-linear-gradient(
    left,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 100%
  );
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 100%
  );
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg);
}
.mgpr-hvr-shine figure:hover:before {
  -webkit-animation: shine 0.75s;
  animation: shine 0.75s;
}
@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}
@keyframes shine {
  100% {
    left: 125%;
  }
}
/* Flashing hover effect*/
.mgpr-hvr-flashing figure:hover img {
  opacity: 1;
  -webkit-animation: flash 1.5s;
  animation: flash 1.5s;
}
@-webkit-keyframes flash {
  0% {
    opacity: 0.4;
  }
  100% {
    opacity: 1;
  }
}
@keyframes flash {
  0% {
    opacity: 0.4;
  }
  100% {
    opacity: 1;
  }
}
/* Opacity hover effects */
.mgpm-img {
  overflow: hidden;
}
.mgpr-hvr-hover figure img {
  opacity: 1;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.mgpr-hvr-hover figure:hover img {
  opacity: 0.5;
}
/*  Blur hover effects */
.mgpr-hvr-blur figure img {
  -webkit-filter: grayscale(0) blur(0);
  filter: grayscale(0) blur(0);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.mgpr-hvr-blur figure:hover img {
  -webkit-filter: grayscale(100%) blur(3px);
  filter: grayscale(100%) blur(3px);
}
/* Rotate hover effect*/
.mgpr-hvr-rotate figure img {
  -webkit-transform: rotate(0) scale(1);
  transform: rotate(0) scale(1);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.mgpr-hvr-rotate figure:hover img {
  -webkit-transform: rotate(15deg) scale(1.4);
  transform: rotate(15deg) scale(1.4);
}

/* Slide hover effect */
.mgpr-hvr-slide figure img {
  margin-left: 30px;
  -webkit-transform: scale(1.5);
  transform: scale(1.5);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.mgpr-hvr-slide figure:hover img {
  margin-left: 0;
}
/* Zoom Out #2 */
.mgpr-hvr-zoom-out figure img {
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
  height: auto;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.mgpr-hvr-zoom-out figure:hover img {
  -webkit-transform: scale(1);
  transform: scale(1);
}
/* Zoom In effect */
.mgpr-hvr-zoom-in figure img {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.mgpr-hvr-zoom-in figure:hover img {
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
}

/*------  
  Section Title And Section Subtitle 
  ---------*/

/* Section Title Style one */
.d-flex {
  display: flex;
  align-items: center;
}
.sectitle-wrap {
  overflow: hidden;
}
.section-title-one {
  position: relative;
  margin-bottom: 2rem;
  letter-spacing: 6px;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px var(--black);
  display: inline-block;
  z-index: 9999;
  padding: 5px 10px;
}

.section-title-one:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  content: "";
  background: var(--color-primary);
  z-index: -1;
}

/* Section Title Style Two */

.section-title-two {
  font-weight: 600;
  color: var(--black);
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
}

.section-title-two:before {
  position: absolute;
  bottom: 10%;
  width: 100%;
  height: 10px;
  content: "";
  background-color: var(--color-primary);
  z-index: -1;
}
/* Section Title Style Five */

.section-title-three {
  margin-bottom: 2rem;
  position: relative;
  font-weight: 600;
  color: var(--black);
}

.section-title-three:after {
  position: absolute;
  top: 50%;
  width: 25%;
  height: 5px;
  background: var(--color-primary);
  content: "";
  overflow: hidden;
  margin-left: 20px;
}
/* Section Title Style Four */

.section-title-four {
  position: relative;
  margin-bottom: 2rem;
  font-weight: 600;
  color: var(--black);
}

.section-title-four:before {
  position: absolute;
  bottom: -10%;
  width: 100%;
  height: 2px;
  content: "";
  background: var(--color-primary);
  z-index: -1;
  flex: 1 1 auto;
}

.section-title-four:after {
  position: absolute;
  bottom: -13%;
  left: 0;
  width: 20%;
  height: 5px;
  background: var(--black);
  content: "";
}
span.title-highlight {
  color: var(--color-primary);
}

/*
----- Grid Style one ----
*/

.npkit-grid1 .col-lg-6,
.npkit-grid1 .col-lg-4 {
  padding: 4px;
}
.npkit-grid1 .post-singlecat a {
  text-decoration: none;
  color: var(--white);
  background-color: var(--color-primary);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 4px 8px;
  text-align: center;
}

.npkit-grid1 .single-home-post-details {
  width: 100%;
  padding: 20px;
  background: #ffffffc4;
  position: absolute;
  bottom: -12%;
  transition: 0.3s;
  backdrop-filter: blur(5px);
}

.npkit-grid1 .single-post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}

.npkit-grid1 h3.home-post-title {
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 35px;
  padding: 15px 0;
  color: #000;
}
.single-home-post-meta.npgmeta {
  flex-flow: wrap;
  font-size: 13px;
  color: #000;
  display: flex;
}

.npkit-grid1 .npgmeta > div {
  margin-bottom: 0;
}
.npkit-grid1 .single-home-post {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.npkit-grid1 .single-home-post:hover .single-home-post-details {
  bottom: 0;
  background: #ffffff96;
}

.npkit-grid1 .single-home-post:hover .single-post-img img {
  transform: scale(1.2);
  filter: brightness(1.2);
}

.npkit-grid1 .single-home-post-details {
  bottom: -40px;
}
.npkit-grid1 h3.home-post-title {
  line-height: 25px;
  padding: 10px 0;
  font-size: 20px;
}
.single-home-post-meta.npgmeta p {
  margin: 0;
}
.single-home-post-details {
  display: flex;
  flex-direction: column;
}

/********************** Grid2 *********************************/

.npgrid2 .npgrid2-top-section {
  padding-bottom: 70px;
}

.npgrid2 .single-left-npgrid2-post-img {
  overflow: hidden;
  width: 100%;
  max-height: 500px;
  position: relative;
}

.npgrid2 .single-right-npgrid2-post-img {
  width: 100%;
  height: 500px;
  position: relative;
}
.npgrid2-bottom-post .no-img {
  margin-bottom: 1rem;
}
.npgrid2 .single-right-npgrid2-post-img img {
  width: 100%;
  height: 100%;
  border-radius: 40% 40% 0 0;
  position: relative;
}

.npgrid2 .single-right-npgrid2-post-details {
  position: absolute;
  top: -15%;
  width: 100%;
  height: 100%;
  align-items: center;
  display: flex;
  justify-content: center;
  text-align: center;
  padding: 0 30px 0 20px;
}

.npgrid2 .single-right-npgrid2-post {
  padding-left: 20px;
  position: relative;
}

.npgrid2 .single-right-npgrid2-post:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: -1;
  border-radius: 40% 40% 0 0;
  border: 2px solid var(--color-primary);
}

.npgrid2 .single-left-npgrid2-post-img:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: #00000042;
}

.npgrid2 .single-left-npgrid2-post-details {
  position: absolute;
  bottom: 11%;
  width: 100%;
  color: #fff;
  padding: 0 70px;
  font-size: 12px;
}

.npgrid2 a.npgrid2-left-post-title {
  font-size: 35px;
  display: inline-block;
  line-height: 1.5;
  padding-top: 10px;
}

.npgrid2 .single-left-npgrid2-post-details a {
  display: flex;
  flex-flow: wrap;
  transition: 0.3s;
}

.npgrid2 .single-left-npgrid2-post-details a:hover {
  color: var(--color-primary);
  text-decoration: none;
}
.npgrid2 a.npgrid2-right-post-title {
  font-size: 25px;
  text-decoration: none;
  color: #fff;
  transition: 0.3s;
}

.npgrid2 a.npgrid2-right-post-title:hover {
  color: var(--color-primary);
}

.npgrid2 .npgrid2-bottom-post:hover .npgrid2-bottom-img:before,
.npgrid2 .npgrid2-bottom-post:hover .npgrid2-bottom-img:after {
  opacity: 1;
}

.npgrid2 .npgrid2-bottom-post:hover .npgrid2-bottom-img:before {
  bottom: -1%;
  right: -3%;
}
.npgrid2 .npgrid2-bottom-post:hover .npgrid2-bottom-img:after {
  top: -4%;
  left: -3%;
}
.npgrid2 a.npg2-cat {
  font-size: 12px;
  color: var(--color-primary);
}

.npgrid2 .npgrid2-bottom-img {
  padding-bottom: 10px;
  position: relative;
  z-index: 9999;
  margin-bottom: 1rem;
}
.npgrid2 .npgrid2-bottom-img:before {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80px;
  height: 80px;
  content: "";
  z-index: -1;
  border-bottom: 1px solid var(--color-primary);
  border-right: 1px solid var(--color-primary);
  transition: 0.5s;
  opacity: 0;
}
.npgrid2 .npgrid2-bottom-img:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 80px;
  content: "";
  z-index: -1;
  border-top: 1px solid var(--color-primary);
  border-left: 1px solid var(--color-primary);
  transition: 0.5s;
  opacity: 0;
}

.npgrid2 h2.npgrid2-bottom-title a {
  text-decoration: none;
  color: var(--black);
  font-size: 20px;
  display: inline-block;
  line-height: 1.2;
  transition: 0.3s;
}

.npgrid2 h2.npgrid2-bottom-title a:hover {
  color: var(--color-primary);
}

.npgrid2 p.npgrid2-bottom-dres {
  font-size: 14px;
  color: var(--gray);
  padding-bottom: 15px;
}

.npgrid2 a.npgrid2-bottom-btn {
  text-decoration: none;
  color: var(--gray);
  font-size: 13px;
  transition: 0.3s;
}

.npgrid2 a.npgrid2-bottom-btn:hover {
  color: var(--color-primary);
  letter-spacing: 1px;
}

@media (max-width: 991px) {
  .npgrid2 .single-right-npgrid2-post {
    margin-top: 50px;
  }
  .npgrid2 .npgrid2-bottom-post {
    margin-bottom: 30px;
  }
  .npgrid2 .single-left-npgrid2-post-details {
    padding-left: 0 50px;
  }
}

@media (max-width: 500px) {
  .npgrid2 .single-left-npgrid2-post-details {
    padding-left: 0 30px;
  }
  .npgrid2 a.npgrid2-left-post-title {
    font-size: 25px;
  }
}

/********************** npksp1 *********************************/

.npksp1 .single-npksp1-item {
  padding-bottom: 30px;
  border-bottom: 1px solid var(--gray);
}
.npksp1 .single-npksp1-img {
  width: 100%;
  height: 100%;
  transition: 0.3s;
}

.npksp1 .single-npksp1-img:hover {
  filter: brightness(1.1);
}

.npksp1 .single-npksp1-content {
  padding-top: 15px;
  display: flex;
  flex-direction: column;
}

.npksp1 h5.single-npksp1-title a {
  text-decoration: none;
  color: var(--black);
  transition: 0.3s;
}

.npksp1 h5.single-npksp1-title a:hover {
  color: var(--color-primary);
}

.npksp1 .single-npksp1-content span {
  color: var(--gray);
  font-size: 12px;
}
.npksp1 .npksp1-author-date {
  padding-bottom: 15px;
  padding-top: 10px;
}
.npksp1 a.npksp1-author {
  color: var(--black);
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s;
}

.npksp1 a.npksp1-author:hover {
  color: var(--color-primary);
}

.npksp1 p.single-npksp1-dres {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.8;
}

.npksp1 .npksp1-bottom-post-img {
  flex: 0 0 200px;
  height: auto;
  transition: 0.3s;
}

.npksp1 .npksp1-bottom-post-img:hover {
  filter: brightness(1.1);
}

.npksp1 .npksp1-bottom-post-img img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

.npksp1 .npksp1-bottom-post {
  display: flex;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--color-gray-2);
}
.npksp1 .npksp1-bottom-post img {
  margin-bottom: 5px;
  flex: 0 0 150px;
  overflow: hidden;
}
.npksp1 .npksp1-bottom-post-content {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 100%;
  flex-direction: column;
  padding-left: 20px;
  margin-top: 10px;
}

.npksp1 h6.npksp1-bottom-post-title a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1.6;
  transition: 0.3s;
}

.npksp1 .npksp1-bottom-post-content span {
  font-size: 12px;
  color: var(--gray);
}

.npksp1 h6.npksp1-bottom-post-title a:hover {
  color: var(--color-primary);
}

/*
 Categories Section 
*/

.npkit-pcats .npkit-cat-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 5px;
}

.npkit-pcats .npkit-cat-item-img {
  width: 100%;
  height: 100%;
}

.npkit-pcats .npkit-cat-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.npkit-pcats .npkit-cat-details {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: #0000004d;
  display: flex;
  align-items: center;
  justify-content: center;
}

.npkit-pcats h4.npkit-cat-title {
  color: #fff;
  letter-spacing: 2px;
  font-weight: 600;
}

.npkit-pcats .npkit-cat-number {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.npkit-pcats .npkit-cat-number span {
  color: #fff;
  font-weight: 700;
}

@media (max-width: 991px) {
  .npkit-pcats .npkit-cat-item {
    margin-bottom: 30px;
  }
  .npksp1 .npksp1-bottom-post {
    flex-flow: row wrap;
  }
  .npksp1 .npksp1-bottom-post-content {
    padding-left: 0;
  }
}

/********************** Tranding Posts Section *********************************/
.swiper-button-prev,
.swiper-container-rtl .swiper-button-next,
.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background: transparent !important;
}
.npkit-carousel-item-content {
  padding-top: 15px;
}
a.npkit-more {
  display: inline-block;
}
.npkit-pncarousel .npkit-carousel-item {
  cursor: pointer;
  padding-bottom: 40px;
}
.npkit-pncarousel .npkit-carousel-item-img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.npkit-pncarousel .npkit-carousel-item-img img {
  object-fit: cover;
  transition: 0.5s;
}
.npkit-pncarousel .npkit-carousel-item:hover .npkit-carousel-item-img img {
  transform: scale(1.1);
}
.npkit-pncarousel .single-tranding-post-content {
  padding-right: 15px;
}
.npkit-pncarousel .npkit-carousel-item-cat {
  padding-top: 12px;
}
.npkit-pncarousel .npkit-carousel-item-cat span {
  font-size: 11px;
  color: var(--gray);
}

.npkit-pncarousel .tranding-post-title {
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  padding: 7px 0;
  margin: 0;
  transition: 0.3s;
}
.npkit-pncarousel .npkit-carousel-item:hover a.tranding-post-title {
  color: var(--color-primary);
}

.npkit-pncarousel .tranding-post-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-flow: wrap;
}
.npkit-video-icon {
  position: relative;
}
.npkit-pncarousel .trending-post-author span {
  color: var(--gray);
  font-size: 12px;
}

.npkit-pncarousel .trending-post-author a {
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  transition: 0.3s;
  text-decoration: none;
}

.npkit-pncarousel .tranding-post-date a {
  font-size: 13px;
  color: var(--gray);
  text-decoration: none;
  transition: 0.3s;
}

.npkit-pncarousel .tranding-post-comment a {
  font-size: 12px;
  color: var(--gray);
  text-decoration: none;
  transition: 0.3s;
}

.npkit-pncarousel .tranding-post-comment i {
  margin-right: 4px;
}

.npkit-pncarousel .tranding-post-bottom a:hover {
  color: var(--color-primary);
}
.npkit-pncarousel.swiper-container-horizontal
  > .swiper-pagination-bullets
  .swiper-pagination-bullet {
  border-radius: 0;
}
.npkit-pncarousel.swiper-container-horizontal
  > .swiper-pagination-bullets
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--color-primary);
  width: 13px;
}
.npkit-pncarousel
  .npkit-pncarousel
  .swiper-horizontal
  > .swiper-pagination-bullets,
.npkit-pncarousel .swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 0;
  left: 0;
  width: 100%;
}
.npstyle2 .npkit-carousel-item,
.npstyle2 .npgrid2-bottom-post {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset,
    rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
}

.npstyle2 .npkit-carousel-item .npkit-carousel-item-content {
  padding: 15px 20px 5px;
}
.npstyle2 .npgrid2-bottom-post .npgrid2-bottom-details {
  padding: 15px 20px 20px;
}
.npkit-ptab .tabs-title {
  margin-bottom: 1rem;
  width: 100%;
}
.npkit-ptab .tabstyle1 .tabs-title {
  margin-bottom: 0;
  width: auto;
}
.tabfullyes nav button.nav-link {
  flex: 1;
}
.tab-content .npksp1 {
  padding-top: 20px;
}
.npkit-ptab .title-and-tab {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-flow: row wrap;
  margin-top: 15px;
  border-bottom: 2px solid #ccc;
}
.npkit-ptab .tab-content .tab-pane:first-child {
  margin-left: 0;
  margin-right: 0;
}
.title-and-tab.tabstyle2,
.title-and-tab.tabstyle3 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.title-and-tab.tabstyle2 button.nav-link.active,
.title-and-tab.tabstyle2 button.nav-link:hover {
  background: var(--color-primary);
  color: var(--white);
  border-bottom: 0;
}
.tabs-item {
  display: block;
  width: 100%;
}
.tabstyle1 .tabs-item {
  width: auto;
}
.title-and-tab.tabstyle3 .tabs-item {
  background: var(--color-primary);
  color: var(--white);
}
.title-and-tab.tabstyle3 button.nav-link {
  color: var(--white);
}
.title-and-tab.tabstyle3 button.nav-link.active {
  color: var(--black);
}
.title-and-tab.tabstyle4 {
  border-bottom: inherit;
}

.title-and-tab.tabstyle4 .tabs-item {
  background: #ededed;
}
.title-and-tab.tabstyle4 .tabs-item .nav-tabs .nav-link {
  border-top: 3px solid #ccc;
  border-radius: 0;
}
.title-and-tab.tabstyle4 .tabs-item .nav-tabs button.nav-link.active,
.title-and-tab.tabstyle4 .tabs-item .nav-tabs button.nav-link:hover {
  border-top: 2px solid var(--color-primary);
}
/*
# overlay grid style
*/

.np-ovgrid .np-ovgrid-categoris a {
  text-decoration: none;
  color: #fff;
  background: var(--gray);
  font-size: 11px;
  padding: 4px 9px;
  border-radius: 10px;
  text-align: center;
  transition: 0.3s;
}

.np-ovgrid .np-ovgrid-categoris a:hover {
  background: var(--color-primary);
}

.np-ovgrid h4.np-ovgrid-post-title a {
  font-size: 18px;
  text-decoration: none;
  transition: 0.3s;
  color: #fff;
}

.np-ovgrid h4.np-ovgrid-post-title {
  margin: 0;
  padding: 10px 0;
}

.np-ovgrid .nx-single-trabel-post:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.8295693277310925) 19%,
    rgba(108, 108, 108, 0.075) 100%
  );
}
.np-ovgrid .np-ovgrid-post-content {
  position: absolute;
  bottom: 5%;
  width: 100%;
  z-index: 999;
  padding: 10px 25px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.np-ovgrid h4.np-ovgrid-post-title a:hover {
  color: var(--gray);
}

.np-ovgrid .np-ovgrid-post-author a {
  text-align: center;
  text-decoration: none;
  color: var(--gray);
  font-size: 12px;
  transition: 0.3s;
}

.np-ovgrid .nx-single-trabel-post {
  position: relative;
  overflow: hidden;
}
.np-ovgrid .single-home-post-meta.npgmeta {
  color: rgb(192, 187, 187);
}
