html,
input,
textarea,
div {
  padding: 0;
}

* {
  -ms-word-wrap: break-word;
  word-wrap: break-word;
  word-wrap: anywhere;
  white-space: inherit;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  scrollbar-width: thin;
  scrollbar-color: var(--honrix-theme-color) #cccccc;
  transition: 0.3s;
}

*:focus-visible {
  outline: 1px solid #ccc;
}

input[type="submit"]:focus,
button:focus,
.btn:focus {
  outline: none;
}

/*********WordPress CSS*****/
.skip-link {
  width: auto !important;
  height: auto !important;
  clip: initial !important;
  padding: 5px 15px !important;
  border-radius: 5px;
  z-index: 999999;
  border-color: var(--honrix-theme-color);
  color: var(--honrix-theme-color);
  background: var(--honrix-background-color);
}

.skip-link:hover {
  background: var(--honrix-theme-color);
  color: var(--honrix-accent-color);
}

.skip-link:focus-within,
.skip-link:focus-visible {
  top: 32px;
  left: 32px;
  display: block;
}

/*********Honrix CSS******/
::-webkit-scrollbar-thumb {
  background: var(--honrix-theme-color);
  -webkit-box-shadow: 0px 1px 2px var(--honrix-theme-color);
}

::-webkit-scrollbar-corner {
  background: var(--honrix-theme-color);
}

::-webkit-scrollbar {
  height: 12px;
  width: 10px;
  background: #cccccc;
}

* {
  scrollbar-width: thin;
  transition: 0.3s;
}

.w40px {
  width: 40px;
}

.honrix-rounded {
  border-radius: 5px;
  -webkit-border-radius: 5px;
}

.honrix-is-mobile,
.honrix-is-mobile-flex {
  display: none !important;
}

.honrix-is-pc {
  display: block !important;
}

.honrix-is-pc.d-flex,
.honrix-is-pc-flex {
  display: flex !important;
}

@media (max-width: 991px) {
  .honrix-is-mobile {
    display: block !important;
  }

  .honrix-is-mobile-flex,
  .honrix-is-mobile.d-flex {
    display: flex !important;
  }

  .honrix-is-pc,
  .honrix-is-pc-flex,
  .honrix-is-pc.d-flex {
    display: none !important;
  }
}

.honrix-content article .entry-content a:not(.wp-block-button a, .post-page-numbers, .page-numbers, .wp-block-page-list a, .wp-block-archives-list a, .wp-block-categories-list a, .wp-block-tag-cloud a) {
  text-decoration: underline;
  color: var(--honrix-theme-color);
}

.honrix-content article .entry-content a:not(.wp-block-button a, .post-page-numbers, .page-numbers, .wp-block-page-list a, .wp-block-archives-list a, .wp-block-categories-list a, .wp-block-tag-cloud a):hover {
  color: var(--honrix-accent-color);
}

.wp-block-image .alignright {
  float: inherit;
  margin: 0 0 0 auto;
}

@media (min-width:768px) and (max-width:991px) {
  .w-md-50 {
    width: 50% !important;
  }
}

/*** Spinner ***/
.woocommerce .loader::before {
  display: none;
}

.spinner .loader {
  width: 48px;
  height: 48px;
  border: 5px solid var(--honrix-theme-color);
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
  border-bottom-color: var(--honrix-accent-color);
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes rotating {
  from {
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

#spinner {
  display: none;
  opacity: 0;
  transition: opacity .5s ease-out, visibility 0s linear .5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity .5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
  display: flex;
}

/*********Theme CSS*******/
a,
button {
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
}

.honrix-content [type="submit"],
.honrix-content .btn,
.entry-content button {
  /* text-decoration: none; */
  padding: 10px 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  display: inline-block;
}

.honrix-content .btn:hover,
.entry-content button:hover {
  color: var(--honrix-theme-color);
  background-color: var(--honrix-background-color);
}

.honrix-content input:not([type="submit"]):not([type="button"]),
.honrix-content textarea {
  padding: 10px;
  border: 1px solid;
}

.to-top {
  position: fixed;
  bottom: 15px;
  right: 15px;
  width: 35px;
  height: 35px;
  border: 1px solid var(--honrix-theme-color);
  cursor: pointer;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  z-index: 2;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  background: var(--honrix-background-color);
}

/*** gutenberg css ***/
.aligncenter {
  display: block;
  margin: 5px auto 5px auto;
}

.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

.alignwide {
  position: relative !important;
  width: 107% !important;
  max-width: 107% !important;
  margin-left: -4% !important;
}

/*** content css ***/
.entry-content * {
  max-width: 100%;
}

.entry-content>* {
  margin-left: 0;
  margin-right: 0;
  clear: both;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
  margin: 15px 0;
}

.entry-content figure {
  margin: 5px 0;
}

.entry-content blockquote,
.entry-content q {
  position: relative;
  padding: 0 0 0 25px !important;
  border-left: 3px solid var(--honrix-theme-color);
}

.entry-content blockquote cite {
  color: var(--honrix-theme-color);
}

.entry-content hr {
  color: var(--honrix-theme-color);
}

.honrix-entries .posts article .entry-content blockquote,
.honrix-entries .posts article .entry-content q {
  border: none;
  padding: 0 !important;
}

.entry-content blockquote.has-text-align-right,
.entry-content q.has-text-align-right {
  padding: 0 46px 0 0 !important;
}

.entry-content blockquote::before {
  content: "“";
  font-size: 143px;
  line-height: 1;
  position: absolute;
  top: 5%;
  left: 10%;
  opacity: 0.2;
  color: var(--honrix-theme-color);
  font-family: var(--honrix-header-font-family);
}

.entry-content blockquote.has-text-align-right::before,
.entry-content q.has-text-align-right::before {
  right: 5px;
  left: inherit;
}

.entry-content select {
  border: 1px solid var(--honrix-theme-color);
  padding: 5px;
  background: transparent;
}

.entry-content table {
  width: 100%;
}

.entry-content table th,
.entry-content table td {
  padding: 5px;
}

.entry-content table th,
.entry-content table th a {
  font-weight: 700;
  background: var(--honrix-theme-color);
  color: var(--honrix-background-color);
}

.entry-content pre {
  border-radius: 0;
  -webkit-border-radius: 0;
  border-color: var(--honrix-theme-color);
}

.entry-content .gallery {
  display: flex;
  flex-wrap: wrap;
}

.entry-content .gallery-columns-1>figure {
  width: 100%;
}

.entry-content .gallery-columns-2>figure {
  width: 50%;
}

.entry-content .gallery-columns-3>figure {
  width: 33.333333%;
}

.entry-content .gallery-columns-4>figure {
  width: 25%;
}

.entry-content .gallery-columns-5>figure {
  width: 20%;
}

.entry-content .gallery-columns-6>figure {
  width: 16.666666%;
}

.entry-content .gallery-columns-7>figure {
  width: 14.28%;
}

.entry-content .gallery-columns-8>figure {
  width: 12.5%;
}

.entry-content .gallery-columns-9>figure {
  width: 11.111111%;
}

.entry-content .gallery-columns-1>figure,
.entry-content .gallery-columns-2>figure,
.entry-content .gallery-columns-3>figure,
.entry-content .gallery-columns-4>figure,
.entry-content .gallery-columns-5>figure,
.entry-content .gallery-columns-6>figure,
.entry-content .gallery-columns-7>figure,
.entry-content .gallery-columns-8>figure,
.entry-content .gallery-columns-9>figure {
  text-align: center;
}

/*** wp widgets ***/
.widget_archive ul,
.widget_categories ul,
.widget_pages ul,
.widget_meta ul,
.widget_recent_comments ul,
.widget_recent_entries ul,
.widget_rss ul,
.wp-block-archives-list,
.wp-block-latest-posts,
.wp-block-rss,
.widget_product_categories ul,
.wp-block-page-list,
.wp-block-page-list ul,
.wp-block-latest-comments,
.wp-block-categories,
.wc-block-product-categories-list {
  list-style: none;
  padding: 0;
  margin: 0;
  clear: both;
}

.widget_recent_comments ul li,
.widget_recent_entries ul li,
.widget_rss ul li,
.wp-block-archives-list li,
.wp-block-latest-posts ul li,
.wp-block-rss ul li,
.widget_product_categories ul li,
.wp-block-archives-list ul li,
.widget_categories ul li,
.widget_archive ul li,
.widget_meta ul li,
.wp-block-page-list li,
.wp-block-latest-comments li,
.wp-block-categories li,
.widget_product_categories ul li,
.wc-block-product-categories-list li {
  padding: 5px 0;
  border-bottom: 1px solid #ccc;
  position: relative;
  text-align: right;
  overflow: hidden;
  text-transform: capitalize;
  font-size: 0.85rem;
}

.widget_recent_entries ul.is-grid li {
  border-bottom: none;
}

.widget_recent_comments ul li,
.widget_recent_entries ul li,
.widget_rss ul li,
.wp-block-latest-posts li,
.wp-block-rss li,
.wp-block-page-list li,
.wp-block-latest-comments li {
  text-align: left;
}

.widget_archive ul ul a::before,
.widget_categories ul ul a::before,
.widget_pages ul ul a::before,
.widget_meta ul ul a::before,
.widget_recent_comments ul ul a::before,
.widget_recent_entries ul ul a::before,
.widget_rss ul ul a::before,
.wp-block-archives-list ul a::before,
.widget_product_categories ul a::before,
.wp-block-page-list ul a::before,
.wp-block-categories ul a::before,
.wc-block-product-categories-list ul a::before {
  content: "►";
  padding: 0 7px 0 0;
}

.widget_archive ul ul li,
.widget_categories ul ul li,
.widget_pages ul ul li,
.widget_meta ul ul li,
.widget_recent_comments ul ul li,
.widget_recent_entries ul ul li,
.widget_rss ul ul li,
.wp-block-archives-list ul li,
.widget_product_categories ul li,
.wp-block-page-list ul li,
.wp-block-categories ul li,
.wc-block-product-categories-list ul li {
  border: none;
}

.widget_nav_menu ul li {
  padding: 5px 0;
  border-bottom: 1px solid #ccc;
  text-transform: capitalize;
  font-size: 0.85rem;
}

.widget_archive ul li a,
.widget_categories ul li a,
.widget_pages ul li a,
.widget_meta ul li a,
.wp-block-archives-list li a,
.widget_product_categories li a,
.wp-block-page-list li a,
.wp-block-categories li a,
.wc-block-product-categories-list li a {
  float: left;
  text-decoration: none;
  color: var(--honrix-theme-color);
}

.widget_archive ul li a:hover,
.widget_categories ul li a:hover,
.widget_pages ul li a:hover,
.widget_meta ul li a:hover,
.wp-block-archives-list li a:hover,
.wp-block-page-list li a:hover,
.wp-block-latest-comments li a:hover,
.wp-block-categories li a:hover,
.wp-block-latest-posts a:hover,
.header-top .menu a:hover,
.header-top .search-submit:hover,
.main-menu .mobile-btn:hover {
  color: var(--honrix-accent-color) !important;
}

.wp-block-latest-comments li a {
  text-decoration: none;
}

.widget_recent_comments a,
.widget_recent_entries a,
.widget_text a,
.widget_rss a,
.widget_tag_cloud a,
.wp-block-tag-cloud a,
.widget_product_tag_cloud a {
  text-decoration: none;
}

.wp-block-latest-comments {
  padding: 0;
}

.widget_tag_cloud a,
.wp-block-tag-cloud a,
.widget_product_tag_cloud a {
  border: 1px solid var(--honrix-theme-color);
  padding: 3px;
  text-decoration: none;
  font-size: 12px !important;
  margin: 0 2px 4px 0;
  text-transform: uppercase;
  display: inline-block;
  color: var(--honrix-header-color);
}

.widget_tag_cloud a:hover,
.wp-block-tag-cloud a:hover {
  color: var(--honrix-theme-color);
}

.widget_nav_menu ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.widget_nav_menu ul li {
  position: relative;
}

.widget_nav_menu .sub-menu {
  display: none;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 0;
  min-width: 250px;
}

.sidebar-right .widget_nav_menu .sub-menu {
  right: 100%;
}

.sidebar-left .widget_nav_menu .sub-menu {
  left: 100%;
}

.widget_nav_menu .menu-item-has-children:hover>.sub-menu {
  visibility: visible;
  opacity: 1;
  display: inline-block;
}

.widget_nav_menu a {
  padding: 5px 0;
  text-decoration: none;
  text-transform: capitalize;
  display: block;
}

.widget_nav_menu .sub-menu li:last-child>a,
.widget_nav_menu .honrix-mega-menu .sub-menu a {
  border-color: transparent;
}

.widget_nav_menu .sub-menu li a {
  padding-left: 15px;
  padding-right: 15px;
}

.widget_nav_menu .menu-item-has-children>a::before {
  content: "\25BA";
  padding: 0 7px 0 0;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.widget_nav_menu .honrix-mega-menu .menu-item-has-children>a::before {
  display: none;
}

.widget_media_gallery .gallery {
  display: flex;
  flex-wrap: wrap;
}

.widget_media_gallery .gallery.gallery-columns-3 .gallery-item {
  width: 33.333333%;
}

.calendar_wrap>table {
  width: 100%;
}

.calendar_wrap>table th,
.calendar_wrap>table td {
  border-bottom: 1px solid #ccc;
}

.wp-block-latest-posts li {
  padding: 5px 0;
}

.wp-block-latest-posts__featured-image {
  overflow: hidden;
}

.wp-block-latest-posts a {
  text-decoration: none;
  display: block;
}

.wp-block-latest-posts img {
  display: block;
  border: 2px solid var(--honrix-theme-color);
  border-radius: 10px;
}

.wp-block-latest-posts__list>li>a {
  padding: 0px 0 3px 0;
  display: block;
  width: 100%;
  font-weight: 700;
  text-transform: capitalize;
}

.wp-block-latest-posts__list>li>div:not(.wp-block-latest-posts__featured-image),
.wp-block-latest-posts__list>li>time {
  padding: 0px 0 3px 0;
  margin: 0;
  width: 100%;
}

.wp-block-latest-posts.is-grid .wp-block-latest-posts__featured-image,
.wp-block-latest-posts.is-grid>li>a,
.wp-block-latest-posts.is-grid>li>div,
.wp-block-latest-posts.is-grid>li>time {
  width: 100%;
}

.wp-block-latest-posts.is-grid>li>a,
.wp-block-latest-posts.is-grid>li>div:not(.wp-block-latest-posts__featured-image),
.wp-block-latest-posts.is-grid>li>time {
  padding: 0px 0 3px 0;
}

.widget_recent_comments ol {
  margin: 0;
}

.widget_recent_comments ol li {
  border-bottom: 1px solid var(--honrix-theme-color);
}

.wp-block-calendar a {
  text-decoration: none;
}

.widget_search input {
  width: 100%;
}

.widget_search button {
  margin: 0;
}

.wp-block-calendar table caption,
.wp-block-calendar table tbody,
.wp-block-rss__item-author,
.wp-block-rss__item-publish-date {
  color: inherit;
}

.wp-block-calendar table th {
  background: var(--honrix-theme-color);
}

/*** header ***/
.site-header {
  z-index: 2;
  position: relative;
}

/*** header top ***/
.header-top {
  padding: 7px 0;
}

.header-top .menu {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  align-items: center;
}

.header-top .menu a {
  padding: 0 10px 0 0;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.header-top .menu span,
.header-top .menu i {
  padding-right: 5px;
}

/*** search box ***/
.search-box-responsive-icon {
  display: none;
}

.search-box-responsive {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  z-index: 999999;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  visibility: hidden;
  opacity: 0;
}

.search-box-responsive .close {
  text-align: center;
  padding: 30px;
}

.search-box-responsive .close span {
  font-size: 36px;
  cursor: pointer;
  color: var(--honrix-theme-color);
}

.search-box-responsive .search-box-form {
  width: 100%;
}

.search-box-responsive .search-box-form form {
  width: 100%;
  display: flex;
  padding: 15px;
}

.search-box-responsive .search-box-form input {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid;
}

.search-box-responsive .search-box-form button {
  text-decoration: none;
  padding: 10px 15px;
  border: 1px solid var(--honrix-theme-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 0;
  -webkit-border-radius: 0;
  cursor: pointer;
  display: inline-block;
  background: var(--honrix-theme-color);
  color: var(--honrix-background-color);
}

.header-top .search-box {
  text-align: right;
}

.search-box .search-box-form {
  display: inline-block;
}

.search-box .search-form {
  display: flex;
}

.header-top .search-field {
  background: transparent;
  border: none !important;
  border-bottom: 1px solid !important;
  padding: 5px;
}

.header-top .search-submit {
  border: none;
  padding: 5px;
  border-bottom: 1px solid;
  background: transparent;
  cursor: pointer;
}

.header-top .search-submit span {
  width: auto;
  height: auto;
}

/*** main menu ***/
.honrix-header {
  display: flex;
  padding: 15px 0;
}

.honrix-header .main-menu {
  width: 75%;
  position: relative;
}

.main-nav .close span {
  display: none;
}

.honrix-header>div:last-child {
  display: none;
}

.menu-show {
  left: 0 !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.main-menu .mobile-btn {
  cursor: pointer;
  display: none;
}

.main-menu .mobile-btn span {
  font-size: 28px;
}

.main-nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.main-nav ul li {
  position: relative;
}

.main-nav .menu>li {
  display: inline-block;
}

.main-nav ul a {
  display: block;
  padding: 15px 0;
  text-decoration: none;
  text-transform: capitalize;
  font-size: 16px;
}

.main-nav ul a span {
  width: 25px;
  text-align: left;
}

.main-nav ul a::after {
  width: 10px;
  text-align: right;
}

.main-nav .menu>li>a {
  padding: 15px 15px 15px 0;
  font-weight: 700;
  text-transform: capitalize;
  font-size: 17px;
}

.main-nav .menu li.menu-item-has-children>a:after {
  content: "\f0d7";
  padding: 0 0 0 5px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 11px;
  margin: 5px 0 0 0;
}

.main-nav .menu .sub-menu li.menu-item-has-children>a:after {
  content: "\25BA";
  float: right;
  padding: 0 0 0 5px;
  text-align: center;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 11px;
}

.main-nav ul .sub-menu {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  left: -15px;
  top: 0;
  min-width: 270px;
  margin-top: 50px;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
}

.main-nav li:hover>.sub-menu,
.main-nav li:focus-within>.sub-menu {
  visibility: visible;
  opacity: 1;
}

.main-nav .menu .sub-menu li {
  display: block;
  text-align: left;
  padding: 0 15px;
}

.main-nav .menu .sub-menu li:not(:last-child) {
  border-bottom: 1px solid;
}

.main-nav li .sub-menu .sub-menu {
  left: 100%;
  margin-top: 0;
}

/*** mega menu***/
.header-menu .honrix-mega-menu {
  position: inherit !important;
}

.header-menu .honrix-mega-menu .sub-menu .sub-menu,
.widget_nav_menu .honrix-mega-menu .sub-menu .sub-menu {
  position: relative !important;
  left: 0 !important;
  box-shadow: none;
}

.header-menu .honrix-mega-menu>.sub-menu,
.widget_nav_menu .honrix-mega-menu>.sub-menu {
  display: flex;
}

.header-menu .honrix-mega-menu .sub-menu li.menu-item-has-children>a::after {
  display: none;
}

.header-menu .honrix-mega-menu .honrix-menu-title>a,
.widget_nav_menu .honrix-mega-menu .honrix-menu-title>a {
  font-size: 150%;
  font-weight: 700;
}

.header-menu .honrix-mega-menu .sub-menu .sub-menu li {
  padding: 0;
}

.header-menu .honrix-mega-menu .sub-menu .sub-menu li a {
  padding-top: 0;
}

.header-menu .honrix-mega-menu .sub-menu li:not(:last-child) {
  border-bottom: none !important;
}

.header-menu .honrix-mega-menu .sub-menu {
  visibility: hidden !important;
  opacity: 0 !important;
  z-index: 0;
}

.header-menu .honrix-mega-menu:hover .sub-menu,
.widget_nav_menu .honrix-mega-menu:hover .sub-menu {
  visibility: visible !important;
  opacity: 1 !important;
}

.honrix-header .logo {
  width: 25%;
  padding-right: 15px;
}

.site-title,
.site-title a {
  font-size: 36px;
  font-family: var(--honrix-header-font-family);
}

/********* blog **********/
.honrix-content .sidebar .widget {
  margin-bottom: 30px;
  clear: both;
}

/*** widgets areas ***/
.home-before-content,
.home-after-content,
.before-footer {
  padding: 30px 0;
}

.home-before-content .widget:not(:last-child),
.home-after-content .widget:not(:last-child),
.before-footer .widget:not(:last-child) {
  margin-bottom: 30px;
}

.home-before-content .widget:first-child .widget-title {
  margin-top: 30px;
}

.honrix-entries .pagination,
.wp-block-query-pagination .wp-block-query-pagination-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-top: 20px;
}

.wp-block-query-pagination .wp-block-query-pagination-numbers a,
.wp-block-query-pagination .wp-block-query-pagination-numbers span {
  min-width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  border-radius: 5px;
  border: 1px solid #ddd;
}

.wp-block-query-pagination .wp-block-query-pagination-numbers a:focus,
.wp-block-query-pagination .wp-block-query-pagination-numbers a:hover,
.wp-block-query-pagination .wp-block-query-pagination-numbers span.current,
.honrix-entries .pagination .nav-links>span.current,
.honrix-entries .pagination .nav-links>a:hover,
.honrix-content .page-links>span.current,
.honrix-content .page-links>a:hover,
.comment-pagination>span.page-numbers,
.comment-pagination>a.page-numbers:hover {
  border-color: var(--honrix-theme-color);
  background: var(--honrix-theme-color);
  color: var(--honrix-accent-color);
}

/*** posts ***/
.honrix-entries .posts {
  display: flex;
  flex-wrap: wrap;
}

.honrix-entries .posts.column-2 article {
  width: 50%;
  margin-bottom: 20px;
}

.honrix-entries .posts.column-2 article:nth-child(2n+1) {

  padding-right: 10px;
}

.honrix-entries .posts.column-2 article:nth-child(2n+2) {
  padding-right: 0;
  padding-left: 10px;
}

.honrix-entries .posts.honrix-grid.column-1 article {
  padding: 0 0 30px 0;
}

.honrix-entries .posts.honrix-grid.column-2 article {
  padding: 0 15px 30px 0;
}

.honrix-entries .posts.honrix-grid.column-2 article:nth-child(2n + 2) {
  padding: 0 0 30px 15px;
}

.honrix-entries .posts.honrix-grid.column-3 article:nth-child(3n + 1) {
  padding: 0 15px 30px 0;
}

.honrix-entries .posts.honrix-grid.column-3 article:nth-child(3n + 2) {
  padding: 0 15px 30px 15px;
}

.honrix-entries .posts.honrix-grid.column-3 article:nth-child(3n + 3) {
  padding: 0 0 30px 15px;
}

.honrix-entries .posts.honrix-grid.column-4 article:nth-child(4n + 1) {
  padding: 0 15px 30px 0;
}

.honrix-entries .posts.honrix-grid.column-4 article:nth-child(4n + 2),
.honrix-entries .posts.honrix-grid.column-4 article:nth-child(4n + 3) {
  padding: 0 15px 30px 15px;
}

.honrix-entries .posts.honrix-grid.column-4 article:nth-child(4n + 4) {
  padding: 0 0 30px 15px;
}

.honrix-entries .posts.honrix-masonry article {
  padding: 0 15px 30px 15px;
}

.honrix-entries .posts.honrix-list article {
  width: 100%;
  padding: 0 0 30px 0;
}

.honrix-entries .posts.honrix-list article:nth-child(2n + 2) {
  padding: 0 0 15px 0;
}

.honrix-entries .pagination {
  clear: both;
}

.honrix-entries .pagination .nav-links,
.honrix-content .page-links,
.comment-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-top: 20px;
}

.honrix-entries .pagination .nav-links>a,
.honrix-entries .pagination .nav-links>span,
.honrix-content .page-links>a,
.honrix-content .page-links>span,
.comment-pagination>.page-numbers {
  min-width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  border-radius: 5px;
  border: 1px solid #ddd;
  text-decoration: none;
  text-transform: capitalize;
}

/************** post ***************/
.single .post-thumbnail img,
.page .post-thumbnail img {
  display: block;
}

.single .entry-categories a {
  padding: 0 10px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  font-size: 10px;
}

.single .entry-title,
.page .entry-title {
  margin-top: 0;
  text-transform: capitalize;
}

.single .entry-meta,
.page .entry-meta {
  font-size: 10px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.single .entry-comment-count::before,
.page .entry-comment-count::before {
  content: "-";
  padding: 0 10px;
}

.single .entry-content,
.page .entry-content {
  text-align: justify;
}

.single .entry-tags .tag-title {
  padding: 2px 5px;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-block;
}

.single .entry-tags a {
  text-decoration: none;
  text-transform: uppercase;
  font-size: 10px;
  padding: 0 10px;
  display: inline-block;
  color: var(--honrix-theme-color);
}

.single .entry-navigation a,
.page .entry-navigation a,
.single .entry-avatar .author-name a {
  color: var(--honrix-theme-color);
  font-family: var(--honrix-header-font-family);
}

.single .related-posts .related-post-title a {
  color: var(--honrix-theme-color);
}

.single .entry-navigation .next-post,
.page .entry-navigation .next-post {
  text-align: right;
}

.single .entry-avatar {
  border-top: 1px solid;
}

.single .entry-avatar .author-avatar {
  width: 50px;
}

.single .entry-avatar .author-avatar img {
  border-radius: 100%;
  -webkit-border-radius: 100%;
}

.single .entry-avatar .author-meta {
  width: calc(100% - 50px);
}

.single .entry-avatar .author-description {
  text-align: justify;
  font-size: 0.85rem;
}

.single .related-posts .related-post-thumbnail {
  border-color: var(--honrix-theme-color);
}

.single .related-posts .related-post-thumbnail img {
  transition: 2s;
  -webkit-transition: 2s;
  -moz-transition: 2s;
  -o-transition: 2s;
  transform: scale(1.01);
  -webkit-transform: scale(1.01);
  -moz-transform: scale(1.01);
  -o-transform: scale(1.01);
}

.single .related-posts .related-post:hover .related-post-thumbnail img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
}

.single .entry-comment .comments-title span,
.page .entry-comment .comments-title span {
  border-color: var(--honrix-theme-color);
}

.single .entry-comment .comment-reply-title,
.page .entry-comment .comment-reply-title {
  font-weight: 400;
  font-size: 20px;
  margin: 0 0 15px 0;
}

.single .entry-comment .comment-respond a,
.page .entry-comment .comment-respond a {
  text-decoration: none;
  color: var(--honrix-theme-color);
}

.single .entry-comment .comment-form textarea,
.page .entry-comment .comment-form textarea {
  min-height: 120px;
}

.single .entry-comment .comment-list .comment-body .avatar-image img,
.page .entry-comment .comment-list .comment-body .avatar-image img {
  border-radius: 100%;
  -webkit-border-radius: 100%;
}

.single .entry-comment .comment-list .comment-body .comment-author,
.page .entry-comment .comment-list .comment-body .comment-author {
  width: calc(100% - 50px);
}

.single .entry-comment .comment-list .comment-body .comment-author a,
.page .entry-comment .comment-list .comment-body .comment-author a {
  color: var(--honrix-theme-color);
}

.single .entry-comment .comment-list .trackback .comment-body .comment-author,
.page .entry-comment .comment-list .trackback .comment-body .comment-author {
  padding: 0;
}

.single .entry-comment .comment-list .comment-author .comment-metadata a,
.page .entry-comment .comment-list .comment-author .comment-metadata a {
  text-decoration: none;
  text-transform: capitalize;
  color: var(--honrix-theme-color);
}

.single .entry-comment .comment-list ul,
.page .entry-comment .comment-list ul {
  list-style: none;
}

.single .entry-comment .comment-list .comment .comment-body {
  border-radius: 5px;
  -webkit-border-radius: 5px;
}

.single .entry-comment .comment-list .comment-author .comment-content,
.page .entry-comment .comment-list .comment-author .comment-content {
  text-align: justify;
}

.single .entry-comment .comment-list .comment-author .comment-content p,
.page .entry-comment .comment-list .comment-author .comment-content p {
  margin: 0;
  font-size: 0.85rem;
}

.single .entry-comment .comment-list .children,
.page .entry-comment .comment-list .children {
  margin: 0;
}

.single .entry-comment .comment-list .trackback,
.page .entry-comment .comment-list .trackback {
  padding-top: 15px;
  border-top: 1px solid;
}

.single .entry-comment .comment-list>.trackback:first-child,
.page .entry-comment .comment-list>.trackback:first-child {
  border: none !important;
}

/******** Author *********/
.honrix-author {
  width: 50%;
  margin: 30px auto 15px auto;
}

.honrix-author .avatar,
.honrix-author .name,
.honrix-author .description,
.honrix-author .social-media {
  text-align: center;
  margin-bottom: 15px;
}

.honrix-author .avatar img {
  border-radius: 100%;
  -webkit-border-radius: 100%;
  border: 5px solid var(--honrix-theme-color);
  padding: 5px;
}

.honrix-author .name {
  font-size: 18px;
  font-weight: 700;
  text-transform: capitalize;
  text-decoration: none;
}

.honrix-author .description {
  line-height: 28px;
  font-size: 16px;
}

.honrix-author .social-media a {
  font-size: 20px;
  margin: 0 10px;
}

/******** 404 ***********/
.error404 .entry-title {
  text-align: center;
  font-size: 75px;
}

.error404 .entry-content {
  text-align: center;
}

.error404 .entry-content .search-box-form {
  display: flex;
}

.error404 .entry-content .search-form {
  display: flex;
  margin: 15px auto;
}

.error404 .entry-content .search-form .search-field {
  width: 300px;
}

.error404 .entry-content a {
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
}

/************* archive ***********/
.honrix-archive-title h1,
.honrix-search-title h1 {
  margin: 30px 0 0 0;
  padding: 15px 0;
}

.honrix-archive-title span,
.honrix-search-title span {
  text-transform: capitalize;
}

/*********** copyright *************/
.site-copyright {
  padding: 15px 0;
  border-top: 1px solid;
}

.site-copyright a {
  text-decoration: none;
}

.site-copyright .social-media {
  text-align: right;
}

.site-copyright .social-media ul {
  display: inline-block;
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-copyright .social-media ul li {
  float: left;
}

.site-copyright .social-media a {
  padding: 0 0 0 15px;
  display: flex;
  align-items: center;
  text-transform: capitalize;
  font-size: 13px;
  font-weight: 400;
}

.site-copyright .social-media a span,
.site-copyright .social-media a i {
  padding-right: 5px;
}

/************** media **************/
@media (max-width: 1200px) {
  .header-top {
    padding: 15px;
  }

  .honrix-header {
    padding: 15px;
  }

  .honrix-content,
  .site-footer,
  .site-copyright {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 991px) {
  .honrix-header>div:last-child {
    width: 25%;
    display: block;
    order: 3;
  }

  .main-menu .mobile-btn {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 0;
    left: -30%;
    height: 100%;
    width: 100%;
    padding: 50px 30px 30px 30px;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    z-index: 999999;
    border-right: 1px solid;
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
  }

  .main-nav .close:hover {
    cursor: pointer;
  }

  .main-nav .close span {
    font-size: 50px;
    height: 50px;
    width: 50px;
    display: block;
  }

  .honrix-header .logo {
    order: 2;
    width: 50%;
    text-align: center;
  }

  .honrix-header .main-menu {
    order: 1;
    width: 25%;
  }

  .main-nav ul a {
    display: block;
    padding: 15px 0;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 700;
    border-bottom: 1px solid;
  }

  .main-nav .menu>li {
    display: block;
  }

  .main-nav .menu .sub-menu li {
    padding: 0 0 0 15px;
  }

  .main-nav .menu .sub-menu li:not(:last-child) {
    border-bottom: none;
  }

  .main-nav .menu li.menu-item-has-children>a::after {
    display: none;
  }

  .main-nav ul .sub-menu {
    visibility: visible;
    opacity: 1;
    position: relative;
    left: inherit;
    top: inherit;
    min-width: 100%;
    margin-top: 0;
    background: none;
    box-shadow: none;
    transition: none;
    -webkit-transition: none;
    -moz-transition: none;
    -o-transition: none;
  }

  .main-nav li .sub-menu .sub-menu {
    left: inherit;
    margin-top: 0;
  }

  .main-nav ul .sub-menu a::before {
    content: "\25BA";
    padding: 0 7px 0 0;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
  }

  .main-nav ul .sub-menu .sub-menu {
    padding-left: 15px;
  }

  .honrix-mega-menu .sub-menu {
    visibility: visible !important;
    opacity: 1 !important;
    display: block;
    padding: 0 !important;
  }

  .honrix-mega-menu .sub-menu li {
    padding: 0 !important;
  }

  .honrix-mega-menu a {
    border-bottom: none !important;
  }

  .honrix-mega-menu .sub-menu a::before {
    display: none !important;
  }

  .honrix-mega-menu>.sub-menu>li {
    border-bottom: 1px solid !important;
  }

  .honrix-entries .posts article,
  .honrix-entries .posts article:nth-child(2n + 2),
  .honrix-entries .posts.column-1 article,
  .honrix-entries .posts.column-2 article,
  .honrix-entries .posts.column-2 article:nth-child(2n+2),
  .honrix-entries .posts.column-3 article,
  .honrix-entries .posts.column-4 article,
  .honrix-entries .posts.honrix-grid.column-1 article,
  .honrix-entries .posts.honrix-grid.column-2 article,
  .honrix-entries .posts.honrix-grid.column-2 article:nth-child(2n + 2),
  .honrix-entries .posts.honrix-grid.column-3 article:nth-child(3n + 1),
  .honrix-entries .posts.honrix-grid.column-3 article:nth-child(3n + 2),
  .honrix-entries .posts.honrix-grid.column-3 article:nth-child(3n + 3),
  .honrix-entries .posts.honrix-grid.column-4 article:nth-child(4n + 1),
  .honrix-entries .posts.honrix-grid.column-4 article:nth-child(4n + 2),
  .honrix-entries .posts.honrix-grid.column-4 article:nth-child(4n + 3),
  .honrix-entries .posts.honrix-grid.column-4 article:nth-child(4n + 4),
  .honrix-entries .posts.honrix-masonry article,
  .honrix-entries .posts.honrix-list article,
  .honrix-entries .posts.honrix-list article:nth-child(2n + 2) {
    clear: both;
    width: 100%;
    padding: 0 0 30px 0;
  }

  .honrix-entries .posts article .entry-categories,
  .honrix-entries .posts article .entry-title,
  .honrix-entries .posts article .entry-meta,
  .honrix-entries .posts article .entry-content,
  .honrix-entries .posts article .entry-read-more {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 767px) {
  .header-top .social-media {
    width: 85%;
  }

  .header-top .search-box {
    display: none;
  }

  .header-top .search-box-responsive-icon {
    text-align: right;
    display: block;
    width: 15%;
  }

  .honrix-content {
    flex-wrap: wrap;
  }

  .honrix-content .sidebar {
    width: 100%;
    padding: 0;
  }

  .honrix-content .sidebar {
    order: 2;
  }

  .site-footer .inner-footer {
    flex-wrap: wrap;
    padding: 60px 0 0 0;
  }

  .site-footer .footer,
  .site-footer .footer:first-child,
  .site-footer .footer:last-child,
  .site-footer .inner-footer.column-1 .footer,
  .site-footer .inner-footer.column-2 .footer,
  .site-footer .inner-footer.column-3 .footer {
    margin: 0;
    width: 100%;
  }

  .site-copyright {
    flex-wrap: wrap;
  }

  .site-copyright .inner-copyright {
    flex-wrap: wrap;
  }

  .site-copyright .inner-copyright>div {
    width: 100% !important;
    padding: 0 7px 15px 7px;
    text-align: center !important;
  }

  .site-copyright .copyright {
    order: 2;
  }

  .site-copyright .social-media {
    order: 1;
  }

  .site-copyright .social-media ul li {
    padding: 10px 0 0 0;
  }

  .single .entry-content,
  .page .entry-content {
    margin-top: 20px;
  }

  .single .entry-avatar {
    flex-wrap: wrap;
  }

  .single .entry-avatar .author-avatar,
  .single .entry-avatar .author-meta {
    width: 100%;
    text-align: center;
    padding: 0;
  }

  .single .entry-avatar .author-description {
    text-align: center;
  }

  .single .related-posts .posts {
    flex-wrap: wrap;
  }

  .single .related-posts .related-post,
  .single .related-posts .related-post:first-child,
  .single .related-posts .related-post:last-child {
    width: 100%;
    padding: 0;
  }

  .single .entry-comment .comment-list .comment-body,
  .page .entry-comment .comment-list .comment-body {
    flex-wrap: wrap;
  }

  .single .entry-comment .comment-list .comment-body .avatar,
  .page .entry-comment .comment-list .comment-body .avatar {
    width: 100%;
  }

  .single .entry-comment .comment-list .comment-body .avatar img,
  .page .entry-comment .comment-list .comment-body .avatar img {
    width: 70px;
    border-color: var(--honrix-theme-color);
  }

  .single .entry-comment .comment-list .comment-body .comment-author,
  .page .entry-comment .comment-list .comment-body .comment-author {
    width: 100%;
    padding: 0;
  }

  .single .entry-comment .comment-list .children,
  .page .entry-comment .comment-list .children {
    padding: 0;
  }

  .error404 .entry-content .search-form {
    width: 100%;
  }

  .wp-block-latest-posts.is-grid li {
    margin: 0;
  }

  .widget_recent_entries ul.is-grid li {
    display: flex;
    align-items: center;
  }

  .wp-block-latest-posts.is-grid>li>div,
  .wp-block-latest-posts.is-grid>li>a {
    width: 50% !important;
  }

  .wp-block-latest-posts.is-grid>li>a {
    padding: 0 0 0 15px;
  }

  .wp-block-latest-posts.is-grid>li>div img {
    width: 100%;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .main-nav {
    width: 50%;
  }
}

@media (max-width: 400px) {

  .site-description::after,
  .site-description::before {
    display: none;
  }
}

.page .entry-comment .comment-list .comment-author .comment-metadata a,
.honrix-author .name,
.honrix-author .social-media a,
.honrix-entries .posts article .entry-author .author-name a,
.honrix-entries .posts article .entry-read-more a,
.single .entry-categories a,
.wp-block-query-pagination .wp-block-query-pagination-numbers a,
.wp-block-query-pagination .wp-block-query-pagination-numbers span,
.honrix-entries .pagination .nav-links>a,
.honrix-entries .pagination .nav-links>span,
.honrix-content .page-links>a,
.honrix-content .page-links>span,
.comment-pagination>.page-numbers {
  color: var(--honrix-theme-color);
}

.widget_nav_menu .sub-menu {
  box-shadow: var(--honrix-theme-color) 2px 2px 10px -4px;
}

h1,
h2,
h3,
h4,
h5,
h6,
textarea,
.widget_archive ul li a,
.widget_categories ul li a,
.widget_pages ul li a,
.widget_meta ul li a,
.wp-block-archives-list li a,
.wp-block-page-list li a,
.wp-block-categories li a,
.wp-block-latest-comments li a,
.widget_nav_menu a,
.wp-block-latest-posts a,
.main-menu .mobile-btn,
.main-nav ul a,
.single .entry-navigation a:hover,
.page .entry-navigation a:hover,
.single .entry-comment .comment-list .comment-body .comment-author .name,
.page .entry-comment .comment-list .comment-body .comment-author .name,
.single .entry-comment .comment-list .comment-body .comment-author a:hover,
.page .entry-comment .comment-list .comment-body .comment-author a:hover,
.honrix-author .description,
.honrix-author .social-media a:hover,
.honrix-entries .posts article .entry-title a {
  color: var(--honrix-header-color);
}

.site-header {
  box-shadow: 0 0 7px -2px var(--honrix-header-color);
}

.main-nav ul .sub-menu {
  box-shadow: var(--honrix-header-color) 3px 3px 10px -5px;
}

body,
.header-top .search-submit,
.single .entry-tags a:hover,
.single .entry-navigation .pre-post,
.single .entry-navigation .next-post,
.page .entry-navigation .pre-post,
.page .entry-navigation .next-post,
.single .entry-avatar .author-name a:hover,
.single .related-posts .related-post-title a:hover,
.single .entry-comment .comment-respond a:hover,
.page .entry-comment .comment-respond a:hover,
.honrix-entries .posts article .entry-categories a:hover,
.honrix-entries .posts article .entry-categories a:not(:last-child)::after,
.honrix-entries .posts article .entry-read-more a:hover {
  color: var(--honrix-text-color);
}

.honrix-content input:not([type="submit"]):not([type="button"]),
.honrix-content textarea,
.entry-content .wp-block-pullquote,
.search-box-responsive .search-box-form input,
.header-top .search-field,
.header-top .search-submit,
.main-nav .menu .sub-menu li:not(:last-child),
.single .entry-navigation,
.page .entry-navigation,
.single .entry-avatar,
.single .related-posts,
.single .entry-comment,
.page .entry-comment,
.single .entry-comment .comment-form input:not(.submit),
.single .entry-comment .comment-form textarea,
.page .entry-comment .comment-form input:not(.submit),
.page .entry-comment .comment-form textarea,
.single .entry-comment .comment-list .comment .comment-body,
.page .entry-comment .comment-list .comment,
.single .entry-comment .comment-list .trackback,
.page .entry-comment .comment-list .trackback,
.site-copyright,
.honrix-entries .posts article .entry-read-more a:hover {
  border-color: var(--honrix-text-color);
}

.single .entry-tags .tag-title {
  background: var(--honrix-text-color);
}

html,
body,
.entry-content .sidebar .wp-block-cover-text,
.widget_nav_menu .sub-menu,
.search-box-responsive,
.main-nav ul .sub-menu,
.wp-block-query-pagination .wp-block-query-pagination-numbers a,
.wp-block-query-pagination .wp-block-query-pagination-numbers span,
.honrix-entries .pagination .nav-links>a,
.honrix-entries .pagination .nav-links>span,
.honrix-content .page-links>a,
.honrix-content .page-links>span,
.comment-pagination>.page-numbers {
  background-color: var(--honrix-background-color);
}

.single .entry-tags .tag-title {
  color: var(--honrix-background-color);
}

textarea,
.honrix-entries .posts article:hover .post-thumbnail img,
.hrix-header-search-form .hrix-header-search {
  border-bottom-color: var(--honrix-accent-color);
}

.honrix-entries .posts article .entry-author .author-name a:hover {
  color: var(--honrix-accent-color);
}

@media (max-width: 991px) {
  .main-nav {
    border-color: 1px solid var(--honrix-theme-color);
    background-color: var(--honrix-background-color);
  }

  .main-nav .close:hover {
    color: var(--honrix-theme-color);
  }

  .main-nav ul a {
    color: var(--honrix-header-color);
    border-color: var(--honrix-text-color);
  }

  .honrix-mega-menu>.sub-menu>li {
    border-color: var(--honrix-text-color);
  }
}

body,
.honrix-entries .posts article .entry-title a {
  font-family: var(--honrix-text-font-family);

}

h1,
h2,
h3,
h4,
h5,
h6,
.single .entry-comment .comment-list .comment-body .comment-author .name,
.single .entry-comment .comment-list .comment-body .comment-author .name a,
.page .entry-comment .comment-list .comment-body .comment-author .name,
.page .entry-comment .comment-list .comment-body .comment-author .name a {
  font-family: var(--honrix-header-font-family);
}

.entry-content h1 {
  font-size: var(--honrix-h1-font-size);
}

.entry-content h2 {
  font-size: var(--honrix-h2-font-size);
}

.entry-content h3 {
  font-size: var(--honrix-h3-font-size);
}

.entry-content h4 {
  font-size: var(--honrix-h4-font-size);
}

.entry-content h5 {
  font-size: var(--honrix-h5-font-size);
}

.entry-content h6 {
  font-size: var(--honrix-h6-font-size);
}