/* nav section */
.zb-nav-section {
  margin: 0;
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
  padding: 25px 30px;
  display: grid;
  justify-content: space-between;
  align-items: center;
  grid-template-columns: 80% 18%;
  gap: 20px;
}
.zb-nav-mob {
  position: relative;
  cursor: pointer;
  display: none;
}
.zb-nav-mob:after,
.zb-nav-mob:after {
  position: absolute;
  content: '';
  width: 8px;
  height: 8px;
  background: transparent;
  border-right: 2px solid #808080;
  border-bottom: 2px solid #808080;
  transform: rotate(45deg);
  top: 14px;
  right: 10px;
}

.zb-nav-wrapper.active .zb-nav-mob:after,
.zb-nav-wrapper.active .zb-nav-mob:after {
  border-right: none;
  border-bottom: none;
  border-top: 2px solid #262626;
  border-left: 2px solid #262626;
  top: 18px;
}        

.zb-nav-menu>ul {
  display: flex;
  gap: 30px;
}

.zb-nav-menu>ul>li>a,
.zb-nav-menu>ul>li>span>a,
.zb-dropdown-menu>li>a,
.zb-nav-menu .zb-dropdown>span {
  font-size: 14px;
  color: #444444;
  text-transform: uppercase;
  padding: 10px 0;
  line-height: 30px;
  cursor: pointer;
}

.zb-nav-menu>ul li.active>a {
  font-family: var(--secondaryfont-semibold);
  color: var(--body-font-clr);
}

.zb-nav-menu>ul li>a:hover,
.zb-nav-menu>ul li>span>a:hover,
.zb-dropdown-menu>li>a:hover {
  color: var(--primary-anchor-clr);
}
.zb-dropdown {
  position: relative;
}

.zb-nav-menu .zb-dropdown>span:before {
  content: '';
  position: absolute;
  right: -15px;
  top: -3px;
  bottom: 0;
  margin: auto;
  width: 7px;
  height: 7px;
  border-style: solid;
  border-width: 0px 0px 1px 1px;
  transform: rotate(-45deg);
}

.zb-dropdown-menu {
  opacity: 0;
  visibility: hidden;
  box-shadow: 2px 4px 10px rgb(0 0 0 / 10%);
  transform: translateY(10px);
  transition: transform .3s ease-in-out, opacity .3s ease-in-out;
  overflow: hidden;
  z-index: 9;
  position: absolute;
  top: 48px;
  width: 0;
  background: #fff;
  padding: 10px 15px;
}

.zb-dropdown.active .zb-dropdown-menu {
  overflow: visible;
  transform: translateY(-20px);
  opacity: 1;
  visibility: visible;
  width: 220px;
}

.zb-dropdown-menu>li {
  padding: 5px 0;
}
/* nav section ends */

/* search bar */

.search-form {
    width: 100%;
}
.zb-searchbar {
  width: 100%;
  display: grid;
  grid-template-columns: 30px calc(100% - 30px);
  align-items: center;
}

.zsearch-icon {
  width: 15px;
  height: 15px;
  display: block;
  border: 1px solid;
  border-radius: 100%;
  position: relative;
  max-width: 100%;
  cursor: pointer;
}

.zsearch-icon:before {
  content: '';
  position: absolute;
  width: 6px;
  height: 1px;
  background: #000;
  right: -4px;
  bottom: -1px;
  transform: rotate(45deg);
  border-radius: 2px;
}

.zb-searchbar input {
  border: none;
  border-bottom: 1px solid #e6e6e6;
  width: 100%;
  padding: 8px 0;
  font-size: 14px;
  transition: .5s ease;
  -moz-appearance: none;/* older firefox */
   -webkit-appearance: none; /* safari, chrome, edge and ie mobile */
   appearance: none; /* rest */
   background: none;
   border-radius: 0;
}

.zb-searchbar input:focus
{
  border-color: #03a9f5;
}

/* search bar ends */

/* breadcumbs */
.zb-breadcumbs {
  margin: 0 0 30px;
}

.zb-breadcumbs ul {
  display: flex;
  /* flex-wrap: wrap; */
}

.zb-breadcumbs ul li,
.zb-breadcumbs ul li a {
  font-size: 14px;
  color: #444444;
  text-transform: uppercase;
  max-width: 450px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.zb-breadcumbs ul li:before {
  content: '/';
  padding: 0 5px;
}

.zb-breadcumbs ul li:first-child:before {
  display: none;
}

.zb-breadcumbs ul li a:hover {
  color: var(--primary-anchor-clr);
}
/* breadcumbs ends */


/* banner section */
.zb-banner-section {
  background: #1B1F4D;
  color: #fff;
  padding: 120px 0;
  text-align: center;
  margin: 0 0 80px;
}

.zb-banner-section h1 {
  font-size: 74px;
  font-family: var(--primaryfont-semibold);
}

.zb-banner-section p {
  max-width: 710px;
  margin: 0 auto;
  font-size: 18px;
}
/* banner section ends*/


/* post section */
.zb-post-section {
  margin: 60px 0 0;
}
.zb-post-section h2 {
  font-size: 24px;
  text-transform: uppercase;
}

.zb-post-list {
  margin: 40px 0 80px;
  display: grid;
  grid-template-columns: 32% 32% 32%;
  gap: 70px 2%;
}

.zpost-img {
    border: 5px solid #fff;
    outline: 1px solid #E6E6E6;    
  margin: 0;
  max-width: 100%;
  max-height: 200px;
  overflow: hidden;
}
 img,figure {
    max-width: 100%;
}
.zpost-box .zpost-img img
{
  transition: transform .9s ease;
}
.zpost-box li:hover .zpost-img img
{
  transform: scale(1.1);
}
.zpost-img>a,
.zpost-img>a img {
  display: block;
}

.zpost-vtime {
  font-size: 16px;
  color: #666666;
  margin: 20px 0 15px;
  display: flex;
  gap: 12px;
}

.zpost-box h3 {
  font-size: 23px;
  margin: 10px 0 20px;
}

.zpost-box h3 a {
  color: var(--body-font-clr);
}

.loadmore-cta {
  max-width: 150px;
  margin: 0 auto 100px;
  background: #141414;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  padding: 12px 10px;
  font-size: 14px;
  font-family: var(--secondaryfont-semibold);
  cursor: pointer;
  display: none;
}
/* post section ends*/

/* pagination */
.zb-pagination {
  margin: 0 0 100px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.zb-pagination span, .zb-pagination a {
  border: 1px solid;
  display: inline-flex;
  padding: 8px 10px;
  border-radius: 4px;
  font-size: 14px;
  color: #000;
  min-width: 40px;
  justify-content: center;
  align-items: center;
}
.zb-pagination a:hover, .zb-pagination .zb-current {
  background: #5F9DFF;
  color: #fff;
  border-color: #5F9DFF;
}

.alft-icon, .arht-icon {
  width: 20px;
  height: 20px;
  position: relative;
  display: inline-block;
  cursor: pointer;
}
.alft-icon:before, .alft-icon:after,
.arht-icon:before, .arht-icon:after {
  content: '';
  position: absolute;
  left: 2px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 7px;
  height: 7px;
  border-style: solid;
  border-width: 0px 0px 1px 1px;
  transform: rotate(-135deg);
}
.alft-icon:before, .alft-icon:after
{
  transform: rotate(45deg);
  left: auto;
  right: 2px;
}
.arht-icon:after
{
  left: 8px;
}
.alft-icon:after
{
  right: 8px;
}

/* pagination ends*/

/* post tags */
.zpost-tags>a {
  background: #F5F5F5;
  color: #444444;
  border-radius: 4px;
  font-size: 12px;
  padding: 6px 10px;
  margin: 0 5px 5px 0;
  display: inline-block;
  font-family: var(--zf-secondary-medium);
}

.zpost-tags>a:hover {
  background: #E6E6E6;
  color: var(--body-font-clr);
}
/* post tags ends */

/* popular post */
.zb-popular-post {
  padding: 0 0 40px;
}

.zb-popular-list {
  margin: 35px 0 80px;
}

.zb-popular-list li {
    margin: 1px 5px 0;
}

.zb-popular-list li:first-child {
    margin: 1px 9px 0 1px;
}

.zb-popular-list li:last-child {
    margin: 1px 1px 0 9px;
}

.zb-popular-list h4 {
  font-size: 18px;
  font-family: var(--zf-secondary-medium);
  margin: 15px 0 0;
}

.zb-popular-list h4 a {
  color: #000;
}

.zb-popular-list .zpost-img {
  max-height: 150px;
}

.slick-next,
.slick-prev {
  top: -50px;
  width: 25px;
  height: 25px;
}

.slick-prev {
  left: auto;
  right: 30px;
}

.slick-next:after,
.slick-next:before,
.slick-prev:after,
.slick-prev:before {
  background: #000000;
  height: 15px;
}

/* popular post ends */

/* post profile */
.zb-post-profile>ul {
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
  padding: 25px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 110px;
}

.zb-post-profile .zb-profile-name {
  font-size: 14px;
  font-family: var(--secondaryfont-semibold);
  display: block;
}

.zb-post-profile .zb-profile-role, .zb-post-profile .zb-profile-role p {
  font-size: 12px;
  color: #666666;
  display: block;
  margin: 0;
}

.zb-post-profile>ul>li {
  position: relative;
}
.zb-profile {
  display: flex;
  align-items: center;
  gap: 10px;
}
.zb-profile-pic {
  display: block;
  max-width: 48px;
  max-height: 48px;
  overflow: hidden;
  border-radius: 100%;
  width: 100%;
}
.zb-profile-pic img {
  display: block;
}
.zb-profile-name {
  color: var(--body-font-clr);
}

.zb-post-profile>ul>li:not(:nth-child(1)):before {
  content: '';
  position: absolute;
  left: -55px;
  background-color: #E6E6E6;
  width: 1px;
  height: 50px;
  margin: auto;
  top: 0;
  bottom: 0;
}
/* post profile ends */


/* social media icons */
.zb-smedia-icons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.zb-smedia-icons li a {
  display: inline-block;
  text-indent: -999px;
  height: 24px;
  width: 24px;
  background: url(https://zohowebstatic.com/sites/zweb/images/commonroot/common-elements.svg) no-repeat;
  background-size: 700px auto;
  padding: 0;
  vertical-align: middle;
}

.zb-smedia-icons li a.zb-social-twitter {
  background-position: -182px 0;
  width: 27px;
}

.zb-smedia-icons li a.zb-social-facebook {
  background-position: -158px 0;
}

.zb-smedia-icons li a.zb-social-linkedin {
  background-position: -209px 0;
}

.zb-smedia-icons li a.zb-social-youtube {
  background-position: -254px 0;
  width: 32px;
}

.zb-smedia-icons li a.zb-social-instagram {
  background-position: -285px 0;
}

.zb-smedia-icons li a.zb-social-pinterest {
  background-position: -309px 0;
}
.zb-smedia-icons li a.zb-social-support {
  background-position: -400px 0;
}
/* social media icons ends */

/* other posts */
.zb-other-post {
  margin: 40px 0 100px;
}
.zb-other-post li {
    max-width: 400px;
    margin: 1px 5px 0;
}
.zb-other-post li:first-child {
    margin: 1px 5px 0 1px;
}
.zb-other-post .slick-track
{
    display: flex;
    gap: 0 20px;
    margin: 0;
}
.zb-other-post .slick-next
{
  right: 25px;
}
.zb-other-post .slick-prev
{
  right: 60px;
}
/* other posts ends */

/* inner page wrapper */
.zb-inner-wrapper {
  padding: 60px 0 0;
}


/* post wrapper */
.zb-post-wrapper {
  max-width: 1170px;
  margin: 0 auto;
  padding: 60px 0;
  display: grid;
  grid-template-columns: 67.1% 25.7%;
  gap: 7%;
}

.zb-post-wrapper h1 {
  font-size: 40px;
}

.zb-post-wrapper h2 {
  font-size: 32px;
}

.zb-post-wrapper h3 {
  font-size: 24px;
}

.zb-post-wrapper h4 {
  font-size: 20px;
}

.zb-post-wrapper h5 {
  font-size: 16px;
}



/* post details */
.zb-post-details ul {
  margin: 25px 0 45px;
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
  padding: 15px 0;
  display: flex;
  align-items: center;
  gap: 50px;
}

.zb-post-details ul li {
  font-size: 14px;
  color: #666666;
  position: relative;
}

.zb-small-pic {
  display: block;
  max-width: 35px;
  max-height: 35px;
  overflow: hidden;
  border-radius: 100%;
}

.zb-post-details ul li:not(:nth-child(1)):before {
  content: '|';
  position: absolute;
  left: -25px;
  color: #E6E6E6;
}


/* post content */
.zb-post-img {
  margin: 45px 0 0;
  max-width: 100%;
  max-height: 400px;
  overflow: hidden;
}

.zb-post-cont {
  margin: 40px 0 0;
}

.zb-post-cont p {
  font-size: 18px;
}

.zb-post-cont strong,
.zb-post-cont b {
  font-weight: normal;
  font-family: var(--secondaryfont-semibold);
}

.zb-post-cont a {
  border-bottom: 1px solid;
}

.zb-post-cont ul {
  list-style: initial;
  margin: revert;
  padding: 0 0 0 20px;
}
.zb-post-cont ol {
  list-style: auto;
  margin: revert;
  padding: 0 0 0 20px;
}


.zb-post-cont ul > li p+p, .zb-post-cont ol> li p+p {
  margin: 20px 0;
}

.zb-post-cont ul > li, .zb-post-cont ol> li {
  margin: 0 0 20px;
  font-size: 18px;
}

.zb-post-cont ul > li:last-child, .zb-post-cont ol> li:last-child {
  margin: 0;
}

.zb-post-aside {
  position: -webkit-sticky;
  position: sticky;
  top: 80px;
  align-self: flex-start;
  max-height: 782px;
  overflow-y: auto;
}

/* side banner section */
.zb-post-sidebanner {
  margin: 20px 0;
  max-width: 100%;
  max-height: 450px;
  overflow: hidden;
}

.zb-post-sidebanner img {
  max-width: 100%;
}

/* contributor section */
.zb-post-side-content {
  background: #fff7e6;
  margin: 0;
  padding: 25px 25px 10px;
}

.zb-post-side-content p {
  font-size: 14px;
}

/* social media connect */
.zb-post-connect {
  background: #FFF0F0;
  margin: 35px 0 25px;
  padding: 25px 25px 30px;
}

/* contributor section */
.zb-post-contributor {
  background: #F0F7FF;
  margin: 0;
  padding: 25px 25px;
}

.zb-post-contributor p {
  font-size: 14px;
}

.zb-cta-btn {
  background-color: #DF5547;
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
  padding: 12px 42px;
  display: inline-block;
  font-family: var(--zf-primary-semibold);
  cursor: pointer;
}

/* popular post section */
.zb-post-popular {
  margin: 35px 0 0;
}

.zb-post-popular ul {
  max-height: 180px;
  overflow: auto;
}

.zb-post-popular ul li {
  display: grid;
  grid-template-columns: 15% 77%;
  gap: 20px;
  align-items: center;
  margin: 0 0 20px;
}

.zpopular-post-img {
  display: block;
  max-width: 45px;
  max-height: 45px;
  overflow: hidden;
}

.zb-post-popular ul li p {
  font-size: 14px;
  line-height: 20px;
  margin: 0;
}

.zb-post-popular ul li p a {
  color: #000;
}

.zb-post-popular ul li:last-child {
  margin: 0;
}


/* post topic section */
.zb-post-topics {
  background: #e6f2ff;
  margin: 20px 0;
  padding: 25px;
}

.zb-post-topics ul {
  margin: 0;
  position: relative;
  padding: 0;
}

.zb-post-topics ul li {
  padding: 8px 0;
}

.zb-post-topics ul li a {
  color: #434343;
  padding: 0 15px;
  display: block;
  font-size: 15px;
  position: relative;
  transition: all .1s ease;
}

.zb-post-topics ul li.active>a {
  font-family: var(--primaryfont-semibold);
  color: #2386f3;
}

.zb-post-topics ul li.active>a:before {
  content: '';
  position: absolute;
  width: 3px;
  height: 100%;
  background: #2386f3;
  top: 0;
  left: 0;
}

.zb-post-topics ul li>ul {
  padding: 10px 0 0 20px;
}
.zb-topic-submenu
{
  display: none;
}

.zb-topic-parent>a:after {
  content: '+';
  position: absolute;
  top: 0;
  right: 5px;
  color: #000;
  font-size: 17px;
}

.zb-topic-parent.active>a:after {
  content: '-';
  right: 7px;
  color: #2386f3;
}

/* Related post */
.zp-post-related-tags {
  padding: 60px 0;
}

/* post comment section */
.zb-pcomment-section {
  padding: 80px 0;
}

.zb-comment-wrap {
  margin: 50px 0;
}

.zb-comment {
  display: grid;
  grid-template-columns: 5% 94%;
  gap: 15px;
  margin: 45px 0;
}

.zb-usr-pic {
  display: block;
  max-width: 36px;
  max-height: 36px;
  overflow: hidden;
}
.zb-usr-pic img {
  width: 36px;
  height: 36px;
  min-height: 36px;
  border-radius: 100%;
}

.zb-comment-wrap ul > li > ul {
  margin: 0 0 0 50px;
}

.zb-usr-details>p {
  margin: 15px 0 0;
  font-size: 16px;
}

.zb-usr-name {
  font-size: 14px;
  font-weight: normal;
  font-family: var(--secondaryfont-semibold);
}

.zb-usr-ctime {
  font-size: 12px;
  color: #666666;
  display: inline-block;
  margin: 0 0 0 30px;
  position: relative;
}

.zb-usr-ctime:before {
  content: '|';
  position: absolute;
  left: -15px;
  color: #D9D9D9;
}

.zb-reply-btn {
  font-size: 14px;
  color: #666666;
  font-family: var(--zf-secondary-medium);
  border-bottom: 1px solid;
  margin: 15px 0 0;
  display: inline-block;
}

/* post form section */
.zb-form-section {
  background: #FCFCFC;
  border: 1px solid #E6E6E6;
  padding: 60px 20px 40px;
  position: relative;
}

.zb-form-wrapper {
  max-width: 520px;
  margin: 0 auto;
  position: relative;
}

.zb-form-wrapper h4 {
  margin: 0 0 5px;
}

.zb-form-wrapper>p {
  font-size: 14px;
  color: #444444;
}

.zb-form-wrapper>p:after,
.form-required:after {
  content: '*';
  color: #FF0000;
  padding: 0 0 0 2px;
}

.zb-form {
  margin: 40px 0 0;
}

.form-wrapper {
  position: relative;
  margin: 0 0 30px;
}

.comment-form .form-wrapper input[type="date"],
.comment-form .form-wrapper input[type="time"],
.comment-form .form-wrapper input[type="datetime-local"],
.comment-form .form-wrapper input[type="week"],
.comment-form .form-wrapper input[type="month"],
.comment-form .form-wrapper input[type="text"],
.comment-form .form-wrapper input[type="email"],
.comment-form .form-wrapper input[type="url"],
.comment-form .form-wrapper input[type="password"],
.comment-form .form-wrapper input[type="search"],
.comment-form .form-wrapper input[type="tel"],
.comment-form .form-wrapper input[type="number"],
.comment-form .form-wrapper textarea {
  border: none;
  border-bottom: 1px solid #e3e3e3;
  background: none;
  width: 100%;
  padding: 15px 0 8px;
  position: relative;
  z-index: 1;
  font-family: var(--secondaryfont-regular);
  outline: none;
}

.form-item__label {
  font-size: 14px;
  color: #666666;
  position: absolute;
  top: 7px;
  transition: all .3s ease;
}

.added-placeholder .form-item__label {
  font-size: 12px;
  top: -3px;
  z-index: 2;
}

.comment-form .agree-text {
  font-size: 14px;
}

 .content-wrap > p {
     text-align: right;
 }

.comment-form .form-submit, a.filter-view-all {
  margin: 20px 0 0;
  background: #000;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  padding: 16px 32px;
  font-size: 14px;
  font-family: var(--secondaryfont-semibold);
  cursor: pointer;
  border: none;
}

a.filter-view-all {
  display: block;
  margin: 0 auto 80px;
  max-width: 180px;
}

#cancel-comment-reply-link {
  position: absolute;
  top: 15px;
  right: 15px;
  text-indent: -9999px;
  width: 30px;
  height: 30px;
  background: #000;
  border-radius: 100%;
}

#cancel-comment-reply-link:before, #cancel-comment-reply-link:after {
  content: '';
  width: 2px;
  height: 15px;
  background: #fff;
  position: absolute;
  left: 14px;
  top: 8px;
}

#cancel-comment-reply-link:before {
  transform: rotate(45deg);
}

#cancel-comment-reply-link:after {
  transform: rotate(-45deg);
}

/* Related post */
.zb-related-post {
  padding: 60px 0 0;
}

.zb-related-post h2 {
  text-transform: uppercase;
  font-size: 24px;
  padding: 0 50px 0 0;
}

/* search txt section */
.srch-txt {
  font-size: 14px;
  display: block;
  margin: 0 0 10px;
}

/* no result found */

.zb-srch-noresult {
padding: 40px 0;
border-top: 1px solid #e6e6e6;
margin: 40px 0 0;
text-align: center;
}

.zb-srch-noresult h4 {
text-transform: uppercase;
}

.zb-srchbar-noresult {
max-width: 450px;
margin: 0 auto 100px;
}
.zb-srchbar-noresult .zb-searchbar
{
margin: 0 auto;
}

.zb-srchbar-noresult .submit-btn {
margin: 20px auto 0;
display: block;
background: #000;
color: #fff;
text-align: center;
text-transform: uppercase;
padding: 16px 32px;
font-size: 14px;
font-family: var(--secondaryfont-semibold);
cursor: pointer;
border: none;
}


/* notfound section */
.zb-notfound-section {
  padding: 20px 0 60px;
  display: flex;
  max-width: 1150px;
  margin: 0 auto;
  justify-content: space-between;
  align-items: center;
}

.zb-notfound-cont {
  max-width: 420px;
}

.zb-notfound-cont h1 {
  font-size: 96px;
  margin: 0;
}

.zb-notfound-cont h4 {
  font-size: 24px;
  font-family: var(--zf-secondary-medium);
}

.zbck-link {
  display: inline-block;
  margin: 40px 0 0;
  border-bottom: 1px solid;
}

@media only screen and (min-width : 1200px) and (max-width: 1399px) {
  .zb-inner-wrapper {
      padding: 40px 0 0;
  }
}

@media only screen and (min-width : 992px) and (max-width: 1199px) {
  .zb-post-section {
      margin: 60px 0 0;
  }
  .zpost-img
  {
      margin: 0;
  }
  .zb-banner-section {
      padding: 80px 0;
      margin: 0 0 60px;
  }

  .zb-banner-section h1 {
      font-size: 60px;
  }

  .zpost-vtime {
    font-size: 14px;
}
.zpost-box h3 {
    font-size: 21px;
}
.zpost-tags>a {
    font-size: 10px;
}

  .zb-inner-wrapper {
      padding: 30px 0 0;
  }

  .zb-post-aside {
      top: 30px;
  }

  .zb-post-search {
      max-width: 90%;
  }

  .zb-post-wrapper {
      grid-template-columns: 67.1% 27.7%;
      gap: 5%;
  }
}

@media only screen and (min-width : 768px) and (max-width: 991px) {
  .zb-post-section {
    margin: 60px auto 0;
    max-width: 800px;
  }
  .content-wrap > p {
     text-align: left;
     margin-left: 30px;
 }
  .zb-nav-section {
      margin: 0 auto;
      gap: 20px;
      justify-content: space-between;
      display: flex;
      flex-direction: row-reverse;
      padding: 15px 0;
      border: none;
      max-width: 700px;
  }
  .zb-nav-wrapper {
      width: 100%;
      border: 1px solid #e5e5e5;
      position: relative;
      z-index: 1;
      max-width: 350px;
  }
  .zb-nav-mob{
      display: block;
      font-size: 14px;
      text-overflow: ellipsis;
      overflow: hidden;
      white-space: nowrap;
      padding: 10px 25px 10px 10px;
  }
.zb-nav-menu {
  position: absolute;
  top: 42px;
  left: 0;
  width: 100%;
  background: #fafafa;
  box-shadow: -1px 1px 9px 0px #00000030;
  display: none;
}
.zb-nav-menu.active {
  right: 0;
  z-index: 9999999999999;
  opacity: 1;
}
.zb-nav-menu > ul {
  display: block;
  margin: 0;
}
.zb-nav-menu>ul>li>a, .zb-dropdown-menu>li>a
{
  display: block;
  padding: 8px 12px;
  line-height: 20px;
  text-transform: none;
}
.zb-dropdown-menu
{
  position: relative;
  opacity: 1;
  visibility: visible;
  top: 0;
  box-shadow: none;
  transform: none;
  background: none;
  width: 100%;
  padding: 0;
}
  .zb-nav-menu .zb-dropdown>span {
      display: none;
  }
  .zb-searchbar {
      max-width: 200px;
  }
  .zb-searchbar {
      max-width: 300px;
  }
  .zb-banner-section {
      padding: 80px 0;
      margin: 0 0 60px;
  }

  .zb-banner-section h1 {
      font-size: 54px;
  }

  .zpost-vtime {
    font-size: 14px;
}
.zpost-box h3 {
    font-size: 21px;
}
.zpost-tags>a {
    font-size: 10px;
}

  .zb-popular-list .zpost-img {
      max-height: 170px;
  }
  .zpost-img
  {
      margin: 0;
  }
  .zb-post-list {
      grid-template-columns: 49% 49%;
      gap: 40px 2%;
  }
  .zpost-vtime
  {
      margin: 10px 0;
  }
  .zb-inner-wrapper {
      padding: 20px 0 0;
  }

  .zb-post-wrapper {
      padding: 40px 0;
      grid-template-columns: 100%;
      gap: 0;
  }

  .zb-post-wrapper h1 {
      font-size: 32px;
  }

  .zb-post-cont p {
      font-size: 17px;
  }

  .zb-post-wrapper h2 {
      font-size: 28px;
  }

  .zp-post-related-tags {
      padding: 40px 0;
  }

  .zb-pcomment-section {
      padding: 40px 0;
  }

  .zb-post-aside {
      top: 0;
      max-height: none;
      overflow-y: auto;
      padding: 50px 0 0;
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
  }

  .zb-post-search {
      width: 47%;
  }

  .zb-post-connect {
      margin: 0 0 25px;
      width: 47%;
  }

  .zb-post-contributor {
      margin: 0;
      width: 50%;
  }

  .zb-post-sidebanner, .zb-post-topics {
      display: none;
  }

  .zb-post-side-content {
      margin: 0;
      width: 50%;
  }

  .zb-post-popular {
      margin: 0;
      width: 40%;
  }
  .zb-post-section h2
  {
      padding: 0 80px 0 0;
  }

  .zb-related-post {
      padding: 40px 0 0;
      max-width: 800px;
  }

  .zb-related-post h2 {
      font-size: 22px;
      padding: 0 100px 0 0;
  }
  .zb-notfound-section {
      gap: 50px;
  }
}

@media only screen and (max-width : 767px) {
  .zb-nav-section {
      margin: 0 auto;
      gap: 20px;
      justify-content: space-between;
      display: flex;
      flex-direction: row-reverse;
      padding: 15px 0;
      border: none;
      max-width: 420px;
  }
  .content-wrap > p {
     text-align: left;
     margin-left: 30px;
 }
  .zb-nav-wrapper {
      width: 100%;
      border: 1px solid #e5e5e5;
      position: relative;
      z-index: 1;
      max-width: 210px;
  }
  .zb-nav-mob{
      display: block;
      font-size: 14px;
      text-overflow: ellipsis;
      overflow: hidden;
      white-space: nowrap;
      padding: 10px 25px 10px 10px;
  }
.zb-nav-menu {
  position: absolute;
  top: 42px;
  left: 0;
  width: 100%;
  background: #fafafa;
  box-shadow: -1px 1px 9px 0px #00000030;
  display: none;
}
.zb-nav-menu.active {
  right: 0;
  z-index: 9999999999999;
  opacity: 1;
}
.zb-nav-menu > ul {
  display: block;
  margin: 0;
}
.zb-nav-menu>ul>li>a, .zb-dropdown-menu>li>a
{
  display: block;
  padding: 8px 12px;
  line-height: 20px;
  text-transform: none;
}
.zb-dropdown-menu
{
  position: relative;
  opacity: 1;
  visibility: visible;
  top: 0;
  box-shadow: none;
  transform: none;
  background: none;
  width: 100%;
  padding: 0;
}
.zb-nav-menu .zb-dropdown>span {
  display: none;
}
  .zb-searchbar {
      max-width: 200px;
  }
  .zb-breadcumbs ul {
      flex-wrap: wrap;
      gap: 5px 0;
  }
  .zb-breadcumbs ul li,
  .zb-breadcumbs ul li a {
      font-size: 12px;
  }
  .zb-banner-section {
      padding: 80px 20px;
      margin: 0 0 40px;
  }

  .zb-banner-section h1 {
      font-size: 42px;
  }

  .zb-banner-section p {
      font-size: 15px;
      max-width: 390px;
  }

  .zb-popular-post {
      padding: 0;
  }

  .zb-popular-list .zpost-img {
      max-height: 200px;
  }

  .slick-next,
  .slick-prev {
      width: 20px;
      height: 20px;
  }

  .slick-next:after,
  .slick-next:before,
  .slick-prev:after,
  .slick-prev:before {
      width: 2px;
      height: 12px;
  }
  .zb-post-section {
      max-width: 400px;
      margin: 40px auto 0;
  }
  .zpost-img
  {
      margin: 0;
  }
  .zb-post-list {
      grid-template-columns: 100%;
      gap: 60px 0%;
  }
  .zpost-vtime
  {
      margin: 10px 0;
      font-size: 12px;
  }
  .zpost-box h3 {
    font-size: 21px;
}
.zpost-tags>a {
    font-size: 10px;
}
  .zb-post-profile>ul {
      padding: 15px 0;
      gap: 40px;
  }
  .zb-post-profile>ul>li:not(:nth-child(1)):before {
      left: -20px;
  }
  .zb-inner-wrapper {
      padding: 20px 0 0;
      max-width: 420px;
      margin: 0 auto;
  }
  .zb-other-post {
      max-width: 400px;
      margin: 40px 0 60px;
  }
  .zb-other-post .slick-track
  {
      gap: 0;
  }
  .zb-other-post .slick-next
{
  right: 0;
}
.zb-other-post .slick-prev
{
  right: 30px;
}
.zb-post-section h2 {
  padding: 0 50px 0 0;
}

.zb-post-wrapper {
  padding: 40px 0;
  grid-template-columns: 100%;
  gap: 0;
}

.zb-post-wrapper h1 {
  font-size: 28px;
}

.zb-post-cont p, .zb-post-cont ul > li, .zb-post-cont ol> li {
  font-size: 17px;
}


.zb-post-wrapper h2 {
  font-size: 24px;
}

.zb-post-wrapper h4 {
  font-size: 18px;
}

.zb-small-pic {
  max-width: 30px;
  max-height: 30px;
}

.zb-post-details ul {
  gap: 10px 15px;
}

.zb-post-details ul li:last-child {
  margin: 0 0 0 10px;
}

.zp-post-related-tags {
  padding: 40px 0;
}

.zb-pcomment-section {
  padding: 40px 0 0;
}

.zb-post-aside {
  top: 0;
  max-height: none;
  overflow-y: auto;
  padding: 50px 0 0;
  display: flex;
  flex-wrap: wrap;
}

.zb-post-search {
  width: 100%;
}

.zb-post-side-content {
  margin: 20px 0 0;
  width: 100%;
}

.zb-post-sidebanner, .zb-post-topics {
  display: none;
}

.zb-post-connect {
  margin: 20px 0;
  width: 100%;
}

.zb-post-contributor {
  margin: 0;
  width: 100%;
}

.zb-post-popular {
  margin: 30px 0 0;
  width: 100%;
  max-width: 300px;
}

.zb-related-post {
  padding: 40px 0 0;
  max-width: 400px;
}

.zb-related-post h2 {
  font-size: 20px;
  padding: 0 60px 0 0;
}

.zb-post-details ul {
  margin: 10px 0 25px;
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 10px 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.zb-post-details ul li {
  font-size: 12px;
}

.zb-post-details ul li:not(:nth-child(1)):before {
  left: -10px;
}

.zb-post-img {
  margin: 30px 0 0;
}

.zb-post-cont {
  margin: 30px 0 0;
}

.zp-post-related-tags {
  padding: 30px 0;
}

.zb-post-media iframe {
  width: 100%;
}

.zb-comment-wrap {
  margin: 30px 0 40px;
}

.zb-comment {
  grid-template-columns: 10% 85%;
}

.zb-usr-details>p {
  margin: 15px 0 0;
  font-size: 15px;
}

.zb-form-section {
  padding: 20px 20px 0px;
}
.srch-txt {
  font-size: 12px;
}
.zb-notfound-cont h1 {
  font-size: 60px;
}

.zb-notfound-section {
  flex-direction: column;
  gap: 30px 0;
  padding: 0;
}
}

@media only screen and (max-width : 480px) {
  .zb-nav-section {
      margin: 0 auto;
      padding: 15px 0;
      flex-direction: column;
      max-width: 300px;
  }
  .zb-nav-wrapper {
      max-width: 300px;
  }
  .zb-post-section h2 {
      font-size: 22px;
  }
  .zpost-box h3 {
      font-size: 19px;
      margin: 10px 0;
  }
  .zb-smedia-icons {
      gap: 10px 15px;
  }
  .zb-post-profile>ul {
      gap: 20px;
      flex-direction: column;
  }
  .zb-post-profile>ul>li {
      flex-direction: column;
      max-width: 100%;
      text-align: center;
  }
  .zb-post-profile>ul>li:not(:nth-child(1)):before {
      top: -50px;
      width: 70%;
      height: 1px;
      left: 50%;
      transform: translateX(-50%);
  }
  .zb-searchbar {
      max-width: 100%;
      grid-template-columns: 25px calc(100% - 25px);
  }
  .zb-banner-section h1 {
      font-size: 32px;
  }
  .zb-banner-section {
      padding: 60px 20px;
  }
  .zb-usr-name {
    display: block;
    line-height: 10px;
}
.zb-usr-ctime {
    font-size: 10px;
    margin: 0;
}
.zb-usr-ctime:before
{
    display: none;
}
}

@media only screen and (max-width : 320px) {
  .zb-banner-section h1 {
      font-size: 28px;
  }
}
.zb-post-content h6 {
  font-size: 15px;
  font-family: var(--primaryfont-semibold);
}

.zb-post-content table, .zb-post-content table th, .zb-post-content table td {
  border: 1px solid;
  padding: 10px;
  margin: 0 0 20px;
}
.zwc-blog-table {
  overflow: scroll;
  width: 100%;
}

.zwc-blog-table table {
  width: 100% !important;
}
blockquote {
  font-size: 1.1em;
  position: relative;
  margin: 1rem;
}

[dir="ltr"] blockquote {
  padding-left: 1.5rem;
}

[dir="rtl"] blockquote {
  padding-right: 1.5rem;
}

@media (min-width: 61em) {
  blockquote {
      font-size:1.2em;
  }
}

blockquote::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  width: 4px;
  height: 100%;
  background-color: rgb(5,80,230);
  border-radius: 2px;
}

[dir="ltr"] blockquote::before {
  left: 0;
}

[dir="rtl"] blockquote::before {
  right: 0;
}
.zb-post-content em,.zb-post-profile em {
  font-style: italic;
}
.zb-post-cont .topic-cta-link {
  text-align: center;
  margin: 30px 0 20px;
}
.topic-cta-link a {
  color: #03a9f5 !important;
  display: inline-block;
  padding: 5px 20px;
  border: 1px solid #03a9f5;
  margin: 0 5px 15px;
  text-transform: uppercase;
  font-size: 14px;
  text-decoration: none !important;
  font-family: var(--zf-primary-semibold);
}
.zb-post-content iframe {
  max-width: 100%;
}
.text-align-justify {
  text-align: justify;
}
.text-align-center {
  text-align: center;
}
.text-align-right {
  text-align: right;
}
/* related posts style */
.nav-links {
    display: flex;
}
.thumbnail-sec {
    max-width: 165px;
    border-radius: 7px;
    overflow: hidden;
    display: flex;
    /* box-shadow: 0px 0px 0px 1px; */
    border: 1px solid rgb(128 128 128 / 30%);
    max-height: 100px;
}
.nav-links > div {
    display: flex;
    position: relative;
    max-width: 50%;
}
.nav-next {
    text-align: right;
}
.nav-previous p.related-post-sec-title:before, .nav-next p.related-post-sec-title:after {
    content: "";
    width: 10px;
    height: 10px;
    display: block;
    border-left: 2px solid;
    border-top: 2px solid;
    transform: rotate(-45deg);
    position: absolute;
    left: 7px;
    top: calc(0% + 7px);
    color: #000;
    transition: .5s;
}
p.related-post-sec-title {
    position: relative;
    padding: 0 20px;
    margin-bottom: 10px;
    color: #03a9f5;
    font-weight: 800;
}
.nav-next p.related-post-sec-title:after {
    right: 7px;
    left: unset;
    transform: rotate(130deg);
}
nav.navigation.post-navigation a {
    color: #000;
    position: absolute;
    width: 100%;
    left: 0px;
    top: 0;
    height: 100%;
}
.post-navigation .content-sec {
    padding: 0 20px;
}
nav.navigation.post-navigation {
    max-width: 1170px;
    margin: auto;
}
.nav-links > div:hover .related-post-sec-title:before {left: -7px;}
.nav-links > div:hover .related-post-sec-title:after {right: -7px;}