.default-el .dz-card {
  position: relative;
  background-color: #fff;
}
.default-el .dz-card .dz-info {
  padding: 30px;
  position: relative;
}
.default-el .dz-card .dz-title {
  margin-bottom: 15px;
  word-break: break-word;
}
@media only screen and (max-width: 575px) {
  .default-el .dz-card .dz-title {
    margin-bottom: 15px;
  }
}
.default-el .dz-card.blog-half {
  display: flex;
}
@media only screen and (max-width: 575px) {
  .default-el .dz-card.blog-half {
    display: block;
  }
}
.default-el .dz-card.blog-half .dz-info {
  padding: 30px;
  position: relative;
  flex: 1;
}
.default-el .dz-card.blog-half .dz-media {
  margin-bottom: 0;
  max-width: 300px;
  min-width: 300px;
}
.default-el .dz-card.blog-half .dz-media a {
  display: block;
  height: 100%;
}
.default-el .dz-card.blog-half .dz-media img {
  height: 100%;
  object-fit: cover;
  min-height: 215px;
}
@media only screen and (max-width: 575px) {
  .default-el .dz-card.blog-half .dz-media img {
    min-height: auto;
  }
}
.default-el .dz-card.blog-half.post-video .post-video-icon {
  width: 60px;
  height: 60px;
  font-size: 20px;
}
.default-el .dz-card.blog-half .swiper {
  height: 100%;
}

.default-el .dz-media.height-sm {
  height: 220px;
}
.default-el .dz-media.height-sm img {
  height: 100%;
  object-fit: cover;
}

.default-el .dz-media.height-md {
  height: 265px;
}
.default-el .dz-media.height-md img {
  height: 100%;
  object-fit: cover;
}
@media only screen and (max-width: 1199px) {
  .default-el .dz-media.height-md {
    height: 220px;
  }
}
@media only screen and (max-width: 767px) {
  .default-el .dz-media.height-md {
    height: 200px;
  }
}
.default-el .dz-media.height-md .post-swiper {
  height: 100%;
}

.default-el .dz-media.height-lg {
  height: 350px;
}
@media only screen and (max-width: 1199px) {
  .default-el .dz-media.height-lg {
    height: 300px;
  }
}
@media only screen and (max-width: 767px) {
  .default-el .dz-media.height-lg {
    height: 220px;
  }
  .default-el .dz-media.height-lg img {
    height: 100%;
    object-fit: cover;
  }
}

.default-el .dz-meta {
  margin-bottom: 10px;
}
.default-el .dz-meta ul {
  margin: 0;
  padding: 0;
}
.default-el .dz-meta ul li {
  display: inline-block;
  position: relative;
  font-size: 14px;
  margin-right: 10px;
  letter-spacing: 0px;
  padding-right: 10px;
}
.default-el .dz-meta ul li:after {
  content: "";
  height: 6px;
  width: 6px;
  background-color: var(--primary);
  position: absolute;
  top: 50%;
  right: -5px;
  border-radius: 50%;
  transform: translateY(-50%);
}
.default-el .dz-meta ul li:last-child {
  margin-right: 0;
  padding-right: 0;
}
.default-el .dz-meta ul li:last-child:after {
  content: none;
}
.default-el .dz-meta ul li i {
  font-size: 16px;
  margin-right: 2px;
  color: var(--primary);
  transform: scale(1.3);
  position: relative;
  top: 2px;
}
.default-el .dz-meta ul li a {
  color: inherit;
}
@media only screen and (max-width: 575px) {
  .default-el .dz-meta ul li {
    margin-right: 10px;
    padding-right: 10px;
  }
}

.dz-badge {
  background-color: var(--primary);
  color: #fff;
  border-radius: 3px;
  padding: 6px 15px;
  font-size: 15px;
}
.dz-badge:hover {
  color: white;
}

.post-video .post-video-icon {
  width: 100px;
  height: 100px;
  line-height: 100px;
  border-radius: 100px;
  position: absolute;
  top: 50%;
  left: 50%;
  color: var(--primary);
  font-size: 30px;
  margin: 0 auto;
  background-color: #fff;
  transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transition: all 1s;
  -ms-transition: all 1s;
  transition: all 1s;
/*  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.5);*/
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 5px;
}
@media only screen and (max-width: 575px) {
  .post-video .post-video-icon {
    height: 50px;
    width: 50px;
    line-height: 50px;
    font-size: 14px;
  }
}
.post-video .post-video-icon:before,
.post-video .post-video-icon:after {
  content: "";
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  border: 1px solid #fff;
  z-index: -1;
  transform: scale(1);
  -moz-transform: scale(1);
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  -moz-transition: all 0.5;
  -o-transition: all 0.5;
  -webkit-transition: all 0.5;
  -ms-transition: all 0.5;
  transition: all 0.5;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-duration: 3s;
}
.post-video .post-video-icon:before {
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  animation: animationSignal1;
  animation-iteration-count: infinite;
  -webkit-animation: animationSignal1;
}
.post-video .post-video-icon:after {
  -webkit-border-radius: 100%;
  -khtml-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  border-radius: 100%;
  animation: animationSignal2;
  animation-iteration-count: infinite;
  -webkit-animation: animationSignal2;
}

.default-el .dz-card.blog-half.sticky {
  position: relative;
  border: 0.375rem solid var(--primary);
  overflow: hidden;
}
.default-el .dz-card.blog-half.sticky .sticky-icon {
  background: var(--primary);
  width: 3.125rem;
  height: 3.125rem;
  position: absolute;
  transform: rotate(45deg);
  top: -1.563rem;
  right: -1.563rem;
  z-index: 1;
  color: #fff;
}
.default-el .dz-card.blog-half.sticky .sticky-icon i {
  position: absolute;
  bottom: 0.1875rem;
  right: 1.125rem;
  transform: rotate(5deg);
  color: #fff;
  font-size: 1rem;
}

.default-el .dz-card.default-el-1 {
    border: 1px solid #0000001c;
/*  box-shadow: 0px 0 50px rgba(0, 0, 0, 0.1);*/
  -webkit-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
  padding: 20px;
/*  margin: 30px 0 20px;*/
}
.default-el .dz-card.default-el-1 .dz-info {
  padding: 20px 0 0;
}
.default-el .dz-card.default-el-1 .dz-info p {
  margin-bottom: 25px;
  text-transform: capitalize;
}
@media only screen and (max-width: 991px) {
  .default-el .dz-card.default-el-1 .dz-info p {
    margin-bottom: 20px;
  }
}
.default-el .dz-card.default-el-1 .dz-info .dz-meta {
  margin-bottom: 12px;
}
.default-el .dz-card.default-el-1 .dz-info .dz-title {
  margin-bottom: 12px;
}
.default-el .dz-card.default-el-1 .dz-info .post-author img {
  height: 35px;
  width: 35px;
  border-radius: 100%;
  margin-right: 10px;
}
@media only screen and (max-width: 767px) {
  .default-el .dz-card.default-el-1 .dz-info .post-author img {
    height: 27px;
    width: 27px;
    margin-right: 5px;
  }
}
.default-el .dz-card.default-el-1 .dz-media {
  border-radius: unset;
}
.default-el .dz-card.default-el-1 .dz-media .dz-badge-list {
  position: absolute;
  top: 20px;
  left: 20px;
}
.default-el .dz-card.default-el-1 .dz-media .dz-badge {
  background-color: var(--primary);
  color: #fff;
  border-radius: var(--border-radius-base);
  padding: 8px 15px;
  font-size: 12px;
  text-transform: uppercase;
}
.default-el .dz-card.default-el-1:hover {
/*  box-shadow: 0px 0 50px rgba(0, 0, 0, 0.2);*/
}
.default-el .dz-card.default-el-1.blog-half {
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .default-el .dz-card.default-el-1.blog-half {
    display: block;
  }
}
.default-el .dz-card.default-el-1.blog-half .dz-info {
  padding: 0 0 0 30px;
}
@media only screen and (max-width: 1199px) {
  .default-el .dz-card.default-el-1.blog-half .dz-info {
    padding: 0 0 0 20px;
  }
  .default-el .dz-card.default-el-1.blog-half .dz-info .dz-title {
    font-size: 20px;
  }
  .default-el .dz-card.default-el-1.blog-half .dz-info .dz-meta ul li:last-child {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .default-el .dz-card.default-el-1.blog-half .dz-info {
    padding: 0;
  }
  .default-el .dz-card.default-el-1.blog-half .dz-info .dz-title {
    font-size: 18px;
  }
}
.default-el .dz-card.default-el-1.blog-half .dz-media {
  margin: 0;
}
@media only screen and (max-width: 1199px) {
  .default-el .dz-card.default-el-1.blog-half .dz-media {
    max-width: 220px;
    min-width: 220px;
  }
}
@media only screen and (max-width: 767px) {
  .default-el .dz-card.default-el-1.blog-half .dz-media {
    max-width: 100%;
    min-width: 100%;
    margin-bottom: 20px;
  }
}

.read-more-btn {
    padding: 7px 18px;
    font-size: 15px;
    color: #fff;
    font-weight: 500;
    position: relative;
    line-height: 1.5;
}
.read-more-btn:hover {
    color: #fff;
    background-color: var(--primary) !important;
}
.justify-content-between {
    justify-content: space-between;
}
.align-items-center {
    align-items: center;
}
.m-b30 {
    margin-bottom: 30px;
}
.m-b10 {
    margin-bottom: 10px;
}

.default-el .section-head {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    justify-content: space-between;
}
.default-el .section-head:after {
    content: none;
}

.default-el .section-head .content {
  width: 70%;
}
.default-el .section-head .title,
.default-el .section-head .description,
.default-el .section-head .sub-title {
  text-align: left;
  padding: 0;
  max-width: 100%;

  margin-bottom: 10px;
}

@media only screen and (max-width: 767px) {
  .default-el .section-head {
      margin-bottom: 10px;
      display: block;
      text-align: center !important;
  } 
  .default-el .section-head .content {
    width: 100%;
    margin-bottom: 20px;
  }
  .default-el .section-head .title,
  .default-el .section-head .description,
  .default-el .section-head .sub-title {
    text-align: center;
  }
}

.default-el {
    position: relative;
    padding-top: 50px;
    padding-bottom: 50px;
}
.default-el ul {
  margin: 0;
  padding: 0;
}
.default-el .pagination {
    justify-content: center;
}
.default-el .swiper-pagination {
    margin-top: 30px;
    position: relative;
}
/* Category Box */
.default-el .category-box{
    position:relative;
}
.default-el .category-box img{
    width: 100%;
}
.default-el .category-box .category-info{
    position:absolute;
    left:0;
    bottom:0;
    text-align:center;
    width:100%;
    padding:30px 5px;
}
.default-el .category-box .category-info a{
    position:relative;
    background: #fff;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    color: #242627;
    letter-spacing: 1px;
    padding: 10px 25px;
    display: inline-block;
    transition:all 0.5s;
    -moz-transition:all 0.5s;
    -webkit-transition:all 0.5s;
    -o-transition:all 0.5s;
    -ms-transition:all 0.5s;
}
.default-el .category-box .category-info a:before,
.default-el .category-box .category-info a:after{
    content: "";
    position: absolute;
    top: 50%;
    width: 20px;
    height: 1px;
    background: #fff;
    left: -28px;
    transition:all 0.5s;
    -moz-transition:all 0.5s;
    -webkit-transition:all 0.5s;
    -o-transition:all 0.5s;
    -ms-transition:all 0.5s;
}
.default-el .category-box .category-info a:after{
    right: -28px;
    left:auto;
}
.default-el .category-box .category-info a:hover{
    background: #212326;
    color: #fff;    
}
.default-el .category-box .category-info a:hover:before,
.default-el .category-box .category-info a:hover:after{
    background:#212326;
}
.default-el .page-list li {
  list-style-type: disc;
  margin-bottom: 10px;
}
.default-el .page-list {
  margin-bottom: 30px;
}
.default-el .page-listing-box {
  padding: 20px;
  background: #fff;
  border: 1px solid #0000001a;
}
