/*
 Theme Name:   Kadence Child
 Theme URI:    https://example.com/kadence-child/
 Description:  Kadence Child Theme
 Author:       Your Name
 Author URI:   https://example.com
 Template:     kadence
 Version:      1.0.17
 Tags:         customizable, modern, responsive-layout, gutenberg, header builder, footer builder
 Text Domain:  kadencechild
*/

/* Theme customization starts here
-------------------------------------------------------------- */

/* @import url("https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&display=swap"); */

/* @font-face {
  font-family: "Rajdhani";
  src: url("../assets/fonts/Rajdhani-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Rajdhani";
  src: url("../assets/fonts/Rajdhani-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Rajdhani";
  src: url("../assets/fonts/Rajdhani-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Rajdhani";
  src: url("../assets/fonts/Rajdhani-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Rajdhani";
  src: url("../assets/fonts/Rajdhani-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

body {
  font-family: "Rajdhani", sans-serif;
} */

.content-container.site-container {
  display: flex;
  gap: 24px;
  max-width: 1130px !important;
  padding: 0 !important;
  justify-content: space-between;
}

.single .content-container.site-container {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  max-width: 1130px !important;
  padding: 0 !important;
  justify-content: space-between;
}

.single .content-container.site-container > * {
  flex: 1 1 calc(50% - 12px); /* Adjusting width so two elements fit in one row */
}

.single .content-container.site-container > *:nth-child(3) {
  flex: 1 1 100%; /* Making the third element take full width */
}

.breadcrumb-link.new-gap {
  display: inline;
  padding-left: 4px;
}

aside.custom-sidebar {
  margin-top: 230px;
}

.latest-posts-carousel .psac-post-title {
  font-weight: 600;
  font-size: 28px !important;
  line-height: 130% !important;
  color: #1a1a1a;
}

.bg-linear-gradient {
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    rgba(255, 62, 104, 1) 0%,
    rgba(255, 154, 104, 1) 50%
  );
}

/* .categories {
  margin-top: 24px;
} */

.search-bar,
.categories {
  background: #fff;
  padding: 16px;
  border-radius: 8px;
  position: relative;
}

.search-bar h3,
.categories h3 {
  font-size: 23px;
  color: #0d0d0d;
  font-weight: 700;
  line-height: 140%;
  text-transform: uppercase;
}

.categories h3 {
  margin-bottom: 16px;
}

.search-container {
  position: relative;
}

.search-bar img.search-icon {
  width: 24px;
  position: absolute;
  left: 10px;
  top: 63%;
  transform: translateY(-50%);
}

.search-bar input {
  padding: 12px 16px;
  margin-top: 16px;
  width: 100%;
  font-weight: 500;
  border-radius: 6px;
  padding-left: 40px;
}

.entry-tags a.tag-link {
  border-radius: 8px;
}

.search-bar input::placeholder {
  color: #b3b3b3;
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  padding-left: 0;
}

.search-bar input:focus {
  padding-left: 40px;
}

.categories ul {
  margin-left: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 0;
}

.categories ul li {
  list-style: none;
  padding: 12px 16px;
  font-weight: 600;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.categories ul li:hover {
  background: #e6e6e6;
  color: #0d0d0d;
}

.categories ul a:hover {
  color: #0d0d0d;
}

.categories ul a {
  text-decoration: none;
  color: #666;
  font-size: 16px;
  white-space: nowrap;
  font-weight: 600;
  line-height: 130%;
}

/* blog posts */

.wp-site-blocks .post-thumbnail:not(.kadence-thumbnail-ratio-inherit) img {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.blog .post,
.archive .post {
  border-radius: 8px;
  box-shadow: 0px 3.2px 8px 0px rgba(0, 0, 0, 0.14);
}

.blog-navigation {
  display: flex;
  gap: 24px;
}

.prev-blog-details,
.next-blog-details {
  display: flex;
  box-shadow: 0px 3.2px 8px 0px rgba(0, 0, 0, 0.14);
  background: #fff;
  border-radius: 8px;
}

.prev-blog,
.next-blog {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.prev-blog-details span.category,
.next-blog-details span.category {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.prev-blog-details .blog-thumbnail,
.next-blog-details .blog-thumbnail {
  width: 40%;
}

.prev-blog-details .blog-thumbnail img,
.next-blog-details .blog-thumbnail img {
  aspect-ratio: 3/2;
  height: 100%;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

.prev-blog-details .blog-content,
.next-blog-details .blog-content {
  width: 60%;
  padding: 16px;
  position: relative;
}

.blog-content h3 a {
  font-size: 19px;
  color: #1a1a1a;
  font-weight: 600;
  line-height: 150%;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* Limits to 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.blog-content .date {
  font-size: 13px;
  font-weight: 400;
  color: #1a1a1a;
  line-height: 150%;
}

.blog-content .category a {
  font-size: 13px;
  color: #1a1a1a;
  text-decoration: none;
  font-weight: 600;
  line-height: 150%;
}

a.prev-next-button {
  font-size: 23px;
  color: #1a1a1a;
  text-decoration: none;
  font-weight: 400;
}

.next-blog a.prev-next-button {
  text-align: right;
  display: block;
}

.cta-sidebar {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  background-color: #fff;
  box-shadow: 0px 3.2px 8px 0px rgba(0, 0, 0, 0.14);
  border-radius: 8px;
}
.cta-sidebar img {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.cta-sidebar h3 {
  font-size: 23px;
  font-weight: 700;
  line-height: 140%;
  color: #0d0d0d;
  padding: 0 16px;
  text-align: center;
}

.cta-sidebar span {
  background: var(
    --Brand-Grad-Angled,
    linear-gradient(103deg, #ff9a68 0%, #ff3e68 100.32%)
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

main#main {
  max-width: 800px;
}

.cta-sidebar .button {
  padding: 12px 22px;
  background-color: #ff6d68;
  margin: 0 16px;
  text-align: center;
  border-radius: 8px;
  margin-bottom: 16px;
}

.cta-sidebar .button a {
  font-size: 18px;
  font-weight: 600;
  line-height: 150%;
  color: #fff;
  text-decoration: none;
}

.psac-post-carousel.psac-design-2 .psac-post-carousel-content {
  max-width: 840px !important;
}

.loop-entry .entry-content-wrap {
  padding: 16px !important;
}

.loop-entry .entry-taxonomies a {
  color: #ff3e68 !important;
}

a.read-more {
  position: relative;
}

svg.chevron-icon {
  color: #000;
}

a.read-more span.arrow-icon-new {
  right: 0;
}

.more-link-wrap {
  position: relative !important;
}
span.arrow-icon-new {
  background: #f2f2f2;
  border-radius: 5px;
  padding: 4px;
  display: flex;
  position: absolute;
  right: -8px;
  bottom: 0;
}

.subcategory-posts .post-item:hover {
  box-shadow: 0px 11.2px 28px rgba(0, 0, 0, 0.19);
}

span.arrow-icon-new:hover {
  background: linear-gradient(180deg, #ff3e68 0%, #ff9a68 100%);
}

.arrow-icon-new:hover .chevron-icon {
  color: #fff;
}

/* span.posted-by {
  display: none;
} */

body.category .bg-linear-gradient,
body.tag .bg-linear-gradient,
.author .bg-linear-gradient {
  display: none !important;
}

body.category aside.custom-sidebar,
body.tag aside.custom-sidebar,
.author aside.custom-sidebar {
  margin-top: 0;
  max-width: 303px;
}

form.search-form {
  display: none;
}

.jhavtech-blog-sharing-icons a:hover {
  color: #fff !important;
}

.entry-meta {
  position: relative;
}

.entry-meta .author-avatar,
.entry-meta .author-avatar img {
  width: 36px;
  height: 36px;
}

.entry-meta > *:after,
.entry-meta .meta-label {
  display: none;
}

span.author.vcard a {
  font-size: 11px;
  font-weight: 500;
  line-height: 150%;
  color: #1a1a1a;
}

span.author.vcard {
  position: absolute;
  top: -4px;
  left: 46px;
}

time.entry-date.published {
  font-size: 11px;
  font-weight: 400;
  line-height: 150%;
}

span.posted-on {
  position: absolute;
  left: 46px;
  top: 18px;
}

li.has-subcategories {
  position: relative;
  width: 79%;
}

.blog #archive-container {
  margin-top: 48px !important;
}

button.dropdown-toggle {
  right: -54px;
  background: #fff;
  top: 0;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 9px;
  display: flex;
  width: 20%;
  justify-content: center;
  align-items: center;
}

.content-width-narrow .wp-site-blocks .content-container .alignwide {
  margin: 0 !important;
}

.single .entry-content-wrap {
  background: #f2f2f2;
}

.single span.author.vcard,
.single .entry-related.alignfull.entry-related-style-wide,
.single span.tag-hash {
  display: none !important;
}

.jhavtech-post-sharing-buttons-section {
  align-items: flex-start !important;
}

.single-post .post-thumbnail .post-thumbnail-inner {
  margin-top: 48px;
}

.single
  .wp-site-blocks
  .post-thumbnail:not(.kadence-thumbnail-ratio-inherit)
  img {
  border-radius: 0;
}

aside.sidebar-single {
  max-width: 295px;
}

.latest-posts-sidebar {
  padding: 16px;
  padding-bottom: 0;
  background: #fff;
  border-radius: 8px;
}

.latest-posts-sidebar h2 {
  font-size: 19px;
  line-height: 150%;
  font-weight: 700;
  color: #0d0d0d;
}

.latest-posts-sidebar h3 {
  font-size: 13px;
  width: 70%;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 120%;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  max-height: 4.5em;
  overflow: hidden;
}

.latest-posts-sidebar ul {
  margin: 0;
}

.latest-posts-sidebar ul li {
  list-style: none;
}

.latest-posts-sidebar ul li a {
  display: flex;
  gap: 8px;
  align-items: center;
  text-decoration: none;
  padding: 16px 0;
}

.latest-posts-sidebar .post-thumbnail {
  width: 30%;
  border-radius: 4px;
}

.horizontal-line {
  width: 100%;
  height: 1px;
  background: #e6e6e6;
}

.category-popup {
  border-radius: 16px;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(20px);
  }
}

.category-popup {
  animation: fadeIn 0.3s ease-out forwards;
  opacity: 0; /* Start invisible */
}

.popup-wrapper.fade-out {
  opacity: 0;
}

.category-popup h2 {
  font-size: 40px;
  font-weight: 600;
  line-height: 120%;
  color: #0d0d0d;
  background: #ffe5eb;
  text-align: center;
  padding: 16px 32px;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

.Popup-container {
  padding: 32px;
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: center;
}

button#close-popup {
  width: 100%;
  text-decoration: underline;
  font-size: 19px;
}

#popup-form input:focus {
  color: #333 !important;
  background-color: #f2f2f2 !important;
  border-color: #666 !important;
}

form.wpcf7-form.init p {
  margin: 0;
}

.input-fullname {
  margin: 24px 0;
  width: 100%;
  background: #f2f2f2 !important;
  border: 1px solid #ccc;
}
.input-email {
  margin-bottom: 24px;
  border: 1px solid #ccc;
  width: 100%;
  background: #f2f2f2 !important;
}

input.wpcf7-form-control.wpcf7-submit.has-spinner {
  width: 100%;
  background: #ff6d68;
  border-radius: 8px;
}

h4.form-popup-heading {
  font-size: 19px;
  font-weight: 600;
  line-height: 150%;
  color: #000;
}

.category .wp-site-blocks .post-thumbnail,
.tag .wp-site-blocks .post-thumbnail {
  height: auto;
  padding-bottom: 0;
}

.subcategory-posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.subcategory-posts .post-item {
  transition: 100msease -in-out;
  background-color: #fff;
  position: relative;
  border-radius: 8px;
  box-shadow: 0px 3.2px 8px 0px rgba(0, 0, 0, 0.14);
}

.subcategory-posts .post-item .post-content {
  padding: 16px;
}

.subcategory-posts .post-item .post-content .post-category {
  margin: 0;
}
.subcategory-posts .post-item .post-content .post-category a {
  font-weight: 600 !important;
  letter-spacing: normal !important;
  color: #ff3e68 !important;
  text-transform: none !important;
  font-size: 13px !important;
  text-decoration: none;
}

.subcategory-posts .post-item .post-content h4 a {
  font-size: 16px;
  line-height: 140%;
  color: #1a1a1a;
  font-weight: 700;
}

.post-item .post-content .post-meta {
  display: flex;
  gap: 8px;
}

.post-item .post-content p.author-name {
  font-size: 11px;
  font-weight: 500;
  line-height: 150%;
  color: #1a1a1a;
  margin: 0;
}

.post-item .post-content p.post-date {
  font-size: 11px;
  font-weight: 500;
  line-height: 150%;
  margin: 0;
}

.post-item .post-content .author-image,
.post-item .post-content .author-image img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

.post-item .arrow-new {
  display: flex;
  justify-content: right;
}

a.view-all {
  display: flex;
  align-items: center;
  font-size: 23px;
  font-weight: 600;
  color: #1a1a1a;
  text-decoration: none;
  line-height: 150%;
}

.subcategory-header h2 {
  font-size: 28px;
  font-weight: 600;
}

.subcategory-header {
  display: flex;
  justify-content: space-between;
}

.subcategory-main-parent {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 36px;
}

.archive .entry-hero-container-inner .entry-header {
  min-height: auto;
  max-width: 1130px;
  margin: auto;
}

.blog .jhavtech-blog-custom-archive {
  margin-top: 64px;
}

.category .jhavtech-blog-custom-archive,
.tag .jhavtech-blog-custom-archive {
  position: absolute;
  top: 110px;
}

.category .content-area,
.tag .content-area {
  margin: 0 !important;
}

header.entry-header.post-archive-title {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-bottom: 8px;
}

header.entry-header.post-archive-title {
  display: flex;
  margin-top: 182px !important;
  flex-direction: row;
  justify-content: space-between;
  align-items: baseline;
}

h1.page-title.archive-title {
  font-size: 33px;
  font-weight: 600;
  line-height: 150%;
  color: #1a1a1a;
}

.blog .breadcrumbs-section {
  padding-bottom: 16px !important;
  padding-top: 20px;
}

p.post-count {
  font-size: 19px !important;
  color: #666 !important;
  line-height: 150%;
  font-weight: 500;
  margin: 0;
  margin-right: 331px;
}

#archive-container {
  row-gap: 24px !important;
}

.cta-container {
  display: none;
}
.category .content-area,
.tag .content-area {
  margin-bottom: 64px !important;
}
.single .content-area {
  margin-top: 64px;
  margin-bottom: 64px;
}
span.category-links.term-links {
  font-size: 13px;
  color: #0d0d0d !important;
  font-weight: 600;
}
.single .entry-meta {
  font-size: 13px !important;
  margin: 0 !important;
  font-weight: 600;
  margin-top: 8px !important;
  color: #666 !important;
}
.single h1 strong,
.single h2 strong,
.single h3 strong,
.single h4 strong,
.simgle h5 strong,
.single h5 strong {
  font-weight: 600;
}
.single-content p {
  font-size: 19px;
}
.single .entry-content-wrap {
  padding: 0;
  padding-top: 2rem;
}
.single-content a {
  color: #ff3e68 !important;
}
.jhavtech-blog-sharing-icons a {
  color: #000 !important;
}
.entry-tags a.tag-link {
  padding: 8px 16px !important;
  font-size: 23px;
  font-weight: 600;
  color: #999;
  border: 1px solid #999;
}
.entry.single-entry {
  box-shadow: none !important;
}
.latest-posts-sidebar.also-like {
  margin-top: 16px;
}
.single span.author.vcard,
.entry-related-inner.content-container.site-container {
  display: none;
}
.jhavtech-blog-custom-post-page {
  position: relative !important;
}
.jhavtech-blog-custom-post-page .jhavtech-blog-sharing-icons {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 8px;
  padding: 16px;
  background: #fff;
  border-radius: 8px;
  position: fixed;
  top: 196px;
  margin-left: -102px;
}

.single-post h1.entry-title {
  font-size: 48px !important;
  line-height: 130% !important;
}

.subcategories {
  display: none;
  opacity: 0;
  border: 1px solid #ccc;
  border-radius: 5px;
  background: #f9f9f9;
  width: 100%;
  margin-top: 4px; /* Ensures the required gap */
  transition: opacity 0.3s ease-in-out;
}

ul.subcategories {
  gap: 16px;
  margin-top: 16px;
  border: none;
  border-radius: 6px;
  background: #f2f2f2;
}
.subcategories li {
  border: none !important;
  color: #999;
  padding-left: 40px !important;
}
.categories ul .subcategories {
  display: none;
}
.with-toggle {
  display: flex;
  gap: 4px;
}
.blog .content-area {
  margin-bottom: 28px;
}
.entry-tags a.tag-link:hover {
  /* border-radius: 8px; */
  background: transparent;
  color: #4a5568 !important;
  border-color: #ff3e68 !important;
}
.jhavtech-blog-custom-post-page
  .jhavtech-blog-sharing-icons
  .jhavtech-blog-sharing-icon {
  background: none !important;
}
.jhavtech-blog-custom-post-page
  .jhavtech-blog-sharing-icons
  .jhavtech-blog-sharing-icon:hover {
  background: linear-gradient(180deg, #ff3e68 0%, #ff9a68 100%) !important;
}

.psac-post-carousel.psac-design-2 .psac-post-margin-content {
  margin-top: 16px;
}
li.active-category {
  color: #0d0d0d;
}
li.has-subcategories:hover > a {
  color: #0d0d0d !important;
}
li.has-subcategories a {
  display: block;
}
/* .single .post-navigation {
  display: none !important;
} */
.single .author-container {
  display: flex;
  gap: 8px;
}
.single .author-container .author-image {
  width: 41px;
}
.single .author-container .author-image img {
  border-radius: 50%;
}

.author-meta .author-name {
  font-size: 16px;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 150%;
}
.single .author-bio {
  display: flex;
  max-width: 840px;
}

.single .author-bio .author-details {
  width: 65%;
  margin-left: 40px;
}

.single .author-bio h3.author-name {
  font-size: 33px;
  font-weight: 600;
  line-height: 110%;
  color: #1a1a1a;
}
.single .author-bio p.author-nickname {
  margin: 0;
  margin-top: 8px;
  font-size: 23px;
  font-weight: 600px;
  color: #999;
  line-height: 110%;
}

.horizontal-line-single {
  width: 100%;
  background: #b3b3b3;
  height: 1px;
  margin-bottom: 40px;
  margin-top: 40px;
  max-width: 840px;
}

.single .author-bio p.author-bio-info {
  margin: 0;
  font-size: 19px;
  font-weight: 500;
  color: #000;
  line-height: 150%;
  margin-top: 40px;
}
.single .author-bio .author-image {
  width: 35%;
}
.single .author-bio .author-image img {
  width: 100%;
  border-radius: 10px;
}
.entry-tags {
  margin-bottom: 20px;
}
.horizontal-line-prev {
  width: 100%;
  height: 1px;
  background: #b3b3b3;
  margin-top: 20px;
  margin-bottom: 40px;
}
.post-navigation {
  display: none !important;
}
.prev-blog a.read-more,
.next-blog a.read-more {
  position: static;
}

.prev-blog a.read-more span.arrow-icon-new,
.next-blog a.read-more span.arrow-icon-new {
  right: 16px;
  bottom: 16px;
}
.horizontal-line-single.bottom {
  display: none;
}
.search-active h2.latest-blogs-heading,
.search-active .latest-posts-carousel,
.search-active .bg-linear-gradient,
.search-active .jhavtech-blog-custom-archive,
.search-active
  section.entry-hero.-archive-hero-section.entry-hero-layout-inherit,
.search-active .error .page-content p {
  display: none;
}
.search-active main#main {
  margin-top: 183px;
}
.search-active aside.custom-sidebar {
  max-width: 303px;
}
.no-results-found {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.no-results-found img {
  max-width: 387px;
}
.no-results-found h3 {
  font-size: 23px;
  font-weight: 700;
  line-height: 140%;
  color: #1a1a1a;
  text-align: center;
  padding-top: 48px;
}
.no-results-found h4 {
  font-size: 19px;
  font-weight: 500;
  color: #666;
  line-height: 150%;
  text-align: center;
}
.search-results-parent {
  position: relative;
  max-width: 1130px;
  margin: auto;
  width: 100%;
}
.search-results-wrapper {
  display: flex;
  width: 100%;
  align-items: baseline;
  justify-content: space-between;
}
.search-bar {
  margin-bottom: 24px;
}
.search-results-text {
  font-size: 23px;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 150%;
}
.search-bold-text {
  font-size: 33px;
  font-weight: 600;
}
.blog.search-active #archive-container {
  margin-top: 8px !important;
}
body:has(.error) .search-results-text {
  display: none;
}

.search-active .content-area {
  margin-top: 24px;
  margin-bottom: 64px;
}

form#popup-form {
  display: flex;
  flex-direction: column;
  margin-top: 24px;
  gap: 24px;
  font-weight: 500;
}

.category-popup {
  man-width: 840px;
}

form#popup-form button {
  background: #ff6d68;
}

form#popup-form button:hover {
  background: #ff3a33;
}

#popup-form input {
  border-radius: 8px;
  border: 1px solid #ccc;
  background: #f2f2f2;
  padding: 8px;
  padding-left: 32px;
  width: 100%;
  font-weight: 500;
  line-height: 100%;
  font-size: 19px;
  color: #333;
}
#popup-form button {
  border-radius: 8px;
}
form#popup-form button {
  background: #ff6d68;
  font-size: 28px;
  line-height: 120%;
  padding: 8px 32px;
  font-weight: 600;
}
img.cta-banner-new {
  max-width: 175px;
}

.landing-v2-connect-form-error-text {
  color: #cc002c !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  line-height: 150% !important;
}

.thank-you-new {
  display: flex;
  padding-top: 32px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: auto;
  min-width: 90% !important;
}

h2.downloading-message {
  background: no-repeat;
  color: #000;
  font-size: 40px;
  font-weight: 600;
  padding-bottom: 0;
}

p.downloading-text {
  margin-top: 0;
  color: #000;
  font-weight: 500;
  font-size: 19px;
  line-height: 150%;
}

.thank-you-new p {
  font-size: 16px;
  font-weight: 500;
  color: #000;
  text-align: center;
}

.popup-wrapper {
  z-index: 999;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  overflow: auto;
  transition: opacity 0.3s ease-in-out;
}

.category-popup {
  width: 100%;
  max-height: 95vh;
  max-width: 840px;
  background-color: #fff;
  border-radius: 16px;
  margin-left: auto;
  margin-right: auto;
  overflow: auto;
}

.input-wrapper input::placeholder {
  font-size: 19px;
  font-weight: 500;
  line-height: 150%;
  color: #b3b3b3;
}

.close-popup-btn {
  background: none;
  border: none;
  color: #ff3e68;
  cursor: pointer;
  margin-top: 10px;
}

.input-error {
  display: none;
  margin: 0;
  margin-top: 4px;
  color: #cc002c;
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
}

button#close-popup:hover {
  box-shadow: none;
}

div#thank-you-popup {
  max-width: 550px;
}

button#close-thankyou-popup {
  text-decoration: underline;
}

.thank-you-underline {
  width: 81%;
  height: 1px;
  background: #999999;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.spinner {
  display: inline-block;
  width: 26px;
  height: 26px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: white;
  animation: spin 1s ease-in-out infinite;
  vertical-align: middle;
  margin-right: 8px;
}

form#popup-form button[type="submit"] {
  background: #ff6d68;
  transition: background-color 0.3s ease;
}

form#popup-form button[type="submit"]:hover {
  background: #ff3a33;
}

form#popup-form button[type="submit"]:active {
  background: #cc0700;
  animation: clickFlash 0.3s ease-out;
}

@keyframes clickFlash {
  0% {
    background: #cc0700;
  }
  100% {
    background: #ff6d68;
  }
}

.clear-search {
  position: absolute;
  right: 16px;
  top: 31px;
  cursor: pointer;
  color: #b3b3b3;
  font-size: 18px;
  font-weight: 700;
}

.clear-search:hover {
  color: #999;
}

body.error-present .search-active main#main {
  margin-top: 45px;
}
body.error-present aside.custom-sidebar {
  margin-top: 123px;
}
#popup-form input:hover,
form#popup-form button:hover {
  box-shadow: none !important;
}

.form-container {
  width: 70%;
}

.search-active main#main {
  width: 100%;
}

section.error {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.post-item h4 {
  font-size: 16px;
  line-height: 140%;
  color: #1a1a1a;
  font-weight: 700;
}

.category .no-results-found {
  display: none;
}
.category aside.custom-sidebar {
  margin-top: 0 !important;
}

.prev-blog-details:hover,
.next-blog-details:hover {
  box-shadow: 0 11.2px 28px rgb(0 0 0 / 0.19);
}

/* responsive */

@media screen and (min-device-width: 1100px) and (max-device-width: 1285px) {
  .single .content-container.site-container {
    padding: 0 75px !important;
  }
  .jhavtech-blog-custom-post-page .jhavtech-blog-sharing-icons {
    margin-left: -7px !important;
  }

  .single main#main {
    max-width: 697px !important;
  }
}

@media screen and (max-width: 1346px) {
  .jhavtech-blog-custom-post-page .jhavtech-blog-sharing-icons {
    margin-left: -80px;
  }
}

@media screen and (max-width: 1099px) {
  .jhavtech-blog-custom-post-page .jhavtech-blog-sharing-icons {
    display: none;
  }
}

@media screen and (max-width: 1160px) {
  .jhavtech-blog-custom-post-page {
    padding-left: 16px;
  }
}

@media screen and (max-width: 1030px) {
  p.post-count {
    margin: 0;
  }
  .search-bar img.search-icon {
    top: 49%;
  }
  .horizontal-line-single.bottom {
    display: block;
  }

  .content-container.site-container {
    display: flex;
    flex-direction: column-reverse;
    position: relative;
  }
  body.category aside.custom-sidebar,
  body.tag aside.custom-sidebar {
    max-width: 100%;
  }
  .breadcrumbs-section {
    padding-left: 16px;
  }

  .blog .breadcrumbs-section {
    padding-top: 16px;
  }

  .blog .jhavtech-blog-custom-archive .latest-blogs-heading {
    padding-top: 16px;
  }
  main#main {
    max-width: 100%;
  }
  .breadcrumbs-section {
    position: absolute;
    top: 50px;
  }
  aside.custom-sidebar {
    margin-top: 135px;
  }
  .custom-sidebar .cta-sidebar {
    display: none;
  }
  .jhavtech-blog-custom-archive {
    margin-top: 0 !important;
  }
  .categories ul {
    flex-direction: row;
    flex-wrap: wrap;
  }
  li.has-subcategories {
    width: auto;
  }
  .blog .jhavtech-blog-custom-archive .latest-blogs-heading {
    padding-top: 0 !important;
  }
  .psac-post-title a {
    font-size: 28px;
  }
  .blog #archive-container {
    margin-top: 48px !important;
  }
  #archive-container.grid-sm-col-2 {
    grid-template-columns: repeat(3, 1fr) !important;
  }
  .blog .content-area {
    margin-top: 48px !important;
    margin-bottom: 0 !important;
  }
  .search-bar h3 {
    display: none;
  }
  .search-bar input {
    margin-top: 0;
  }
  .latest-posts-carousel .owl-dots {
    margin-top: 0;
  }
  .cta-sidebar {
    flex-direction: row;
    align-items: stretch;
    gap: 40px;
    margin-top: 0px;
    margin-bottom: 48px;
    position: relative;
  }
  .cta-sidebar h3 {
    font-size: 28px;
    font-weight: 600;
    text-align: left;
  }
  .cta-sidebar .button {
    padding: 12px 32px;
    margin: 0;
    margin-top: 16px;
  }
  .cta-sidebar .content-container {
    padding: 16px 0;
  }
  .cta-sidebar .button a {
    font-size: 19px;
  }
  .cta-sidebar h3 {
    padding: 0;
  }
  .cta-banner-container {
    width: 45%;
  }
  .cta-container {
    display: block;
  }

  .cta-banner-container img.cta-banner {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
  }
  img.cta-bg {
    position: absolute;
    bottom: 0px;
    right: 0;
  }
  .category .jhavtech-blog-custom-archive,
  .tag .jhavtech-blog-custom-archive {
    position: absolute;
    top: -180px;
    width: 100%;
  }
  .category .content-area {
    margin-top: 180px !important;
  }
  .category .jhavtech-blog-custom-archive,
  .tag .jhavtech-blog-custom-archive {
    top: -117px;
  }
  header.entry-header.post-archive-title {
    margin-top: 24px !important;
    margin-bottom: 8px !important;
  }
  .category .content-container.site-container,
  .tag .content-container.site-container {
    gap: 0;
  }
  .category .content-area,
  .tag .content-area {
    margin-bottom: 0 !important;
  }
  .single .content-container.site-container {
    display: flex;
    flex-direction: column;
  }
  .single .breadcrumbs-section {
    position: absolute;
    top: 6px;
    left: 0;
  }
  .single header.entry-header {
    margin-top: 0;
  }
  .single-post .post-thumbnail {
    width: auto !important;
  }
  .entry-tags a.tag-link {
    font-size: 19px;
  }
  .sidebar-single .cta-sidebar {
    display: none !important;
  }
  aside.sidebar-single {
    max-width: 100%;
    display: flex;
    gap: 24px;
  }
  .latest-posts-sidebar {
    width: 50%;
    margin-top: 0 !important;
  }
  .post-thumbnail.small-thumbnail {
    width: 64px !important;
  }
  .latest-posts-sidebar h3 {
    font-size: 16px;
    line-height: 150%;
  }
  .single .content-area {
    margin-bottom: 0 !important;
  }
  body.tag aside.custom-sidebar {
    margin-top: 78px !important;
  }
  .tag .jhavtech-blog-custom-archive {
    top: -51px;
  }
  .cta-sidebar {
    margin-top: 24px;
  }
  button.dropdown-toggle {
    width: 27%;
  }
  li.has-subcategories {
    width: 73%;
  }
  .with-toggle {
    display: flex;
    height: 47px;
    gap: 4px;
  }
  li.has-subcategories {
    display: flex;
  }
  /* .parent-subcategory {
    position: relative;
  } */
  .categories ul .subcategories {
    width: 162px !important;
    position: absolute;
    z-index: 999;
    box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.17);
  }
  .subcategories li {
    padding-left: 16px !important;
  }
  .pagination {
    margin-bottom: 0 !important;
  }
  .prev-blog-details .blog-thumbnail img,
  .next-blog-details .blog-thumbnail img {
    height: 100%;
    aspect-ratio: 3 / 2;
  }
  .prev-blog-details .blog-thumbnail,
  .next-blog-details .blog-thumbnail {
    width: 51%;
  }
  .horizontal-line-single.bottom {
    max-width: 100%;
  }
  .search-active aside.custom-sidebar {
    max-width: 100%;
    margin-top: 110px;
  }
  .search-active main#main {
    margin-top: 24px;
  }
  .no-results-found img {
    max-width: 313px;
  }
  .no-results-found {
    margin-top: 0;
  }
  .search-active .page-content {
    margin: 0;
  }
  .no-results-found h3 {
    padding-top: 24px;
  }
  .category-popup {
    margin: 0 30px;
  }
  .clear-search {
    top: 16px;
  }
}

@media screen and (max-width: 767px) {
  aside.custom-sidebar {
    margin-top: 112px;
  }
  form#popup-form {
    gap: 16px;
  }
  form#popup-form button {
    font-size: 19px;
  }
  #popup-form input {
    padding-left: 16px;
  }
  .content-container.site-container {
    gap: 0;
  }
  .categories h3 {
    margin-bottom: 8;
    font-size: 19px;
  }
  .categories ul {
    flex-direction: row;
    white-space: nowrap;
    flex-wrap: nowrap;
    overflow-x: auto;
  }
  .blog .jhavtech-blog-custom-archive .latest-blogs-heading {
    padding-bottom: 16px !important;
    padding-top: 24px !important;
  }
  .psac-post-carousel.psac-design-2 .psac-post-margin-content {
    display: flex;
    flex-direction: column;
    justify-content: left;
    width: 100%;
  }
  .blog #archive-container {
    margin-top: 24px !important;
  }
  #archive-container.grid-sm-col-2 {
    grid-template-columns: repeat(1, 1fr) !important;
  }
  .blog .post-archive .entry h2.entry-title {
    font-size: 16px !important;
  }
  .cta-sidebar {
    flex-direction: column;
  }
  .cta-banner-container {
    width: 100%;
  }
  .cta-sidebar .content-container {
    padding: 24px 16px;
    padding-bottom: 16px;
    text-align: center;
  }
  img.cta-bg {
    display: none;
  }
  .cta-sidebar h3 {
    text-align: center;
  }
  h1.page-title.archive-title {
    font-size: 28px !important;
  }
  .categories ul .subcategories {
    right: 16px;
  }
  p.post-count {
    font-size: 16px !important;
  }
  header.entry-header.post-archive-title {
    flex-direction: column;
  }
  .single header.entry-header {
    margin-top: 0;
  }
  .single-post h1.entry-title {
    font-size: 33px !important;
    line-height: 150%;
  }
  .single header.entry-header {
    margin-bottom: 0 !important;
    margin-top: 24px;
  }
  .jhavtech-post-sharing-buttons-section {
    align-items: center !important;
  }
  .entry-tags .tags-links {
    padding: 0 16px;
  }
  .entry-tags a.tag-link {
    font-size: 16px;
  }
  .jhavtech-post-sharing-buttons-section,
  .post-navigation {
    margin-top: 48px;
  }
  aside.sidebar-single {
    flex-direction: column;
  }
  .latest-posts-sidebar {
    width: 100%;
  }
  .single .cta-container {
    margin-top: 24px;
  }
  body.tag aside.custom-sidebar {
    margin-top: 52px !important;
  }
  .cta-sidebar {
    margin-top: 0;
  }
  .cta-container {
    margin-top: 48px;
  }
  .cta-sidebar .button {
    width: 100%;
  }
  .single .jhavtech-blog-custom-post-page .breadcrumb-links,
  .single .breadcrumb-separator {
    display: inline !important;
  }
  .subcategory-posts {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .blog-navigation {
    flex-direction: column;
  }
  .prev-blog,
  .next-blog {
    width: 100%;
  }
  .next-blog a.prev-next-button {
    text-align: left;
  }
  .prev-blog-details .blog-content,
  .next-blog-details .blog-content {
    padding: 8px;
  }
  .prev-blog a.read-more span.arrow-icon-new,
  .next-blog a.read-more span.arrow-icon-new {
    right: 8px;
    bottom: 8px;
  }
  .prev-blog-details .blog-content,
  .next-blog-details .blog-content {
    width: 50%;
  }
  .single .author-bio {
    flex-direction: column;
  }
  .single .author-bio .author-details {
    margin-left: 0;
    margin-top: 40px;
    width: 100%;
  }
  .single .author-bio .author-image {
    width: 83%;
  }
  .search-results-wrapper {
    display: flex;
    flex-direction: column;
  }
  .search-results-text {
    font-size: 19px;
  }
  .search-bold-text {
    font-size: 23px;
  }
  .search-results-count {
    font-size: 16px;
  }
  .no-results-found img {
    max-width: 183px;
  }
  .no-results-found h3 {
    font-size: 19px;
    padding-top: 5px;
  }
  .no-results-found h4 {
    font-size: 16px;
  }
  .Popup-container {
    flex-direction: column;
    padding: 16px 24px;
  }
  .category-popup h2 {
    font-size: 28px;
    padding: 8px 16px;
    text-align: center;
  }
  .category-popup {
    min-width: auto;
    margin: 0;
  }
  .category-popup {
    max-height: 80vh;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }
  .popup-wrapper {
    align-items: flex-end;
  }
  .form-container {
    width: 100%;
  }
  h4.form-popup-heading {
    text-align: center;
  }
}

@media screen and (max-width: 719px) {
  .single-content {
    padding-left: 16px;
    padding-right: 16px;
  }
}
