@charset "UTF-8";
/*--------------------------------------------------------------
# Import Modules
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/
body {
  margin: 0px;
  font-family: "Roboto", Sans-serif;
  font-weight: 400;
  line-height: 1.7em;
}
body h1 span {
  display: block;
  font-size: 18px;
  color: #83888B;
  font-weight: lighter;
  line-height: 1;
  text-transform: uppercase;
}
body a {
  color: #164962;
}
body a:hover {
  color: #164962;
}

/*--------------------------------------------------------------
# Partials
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Pages
--------------------------------------------------------------*/
/* Multi-step navigation */
.wpcf7-multistep-progress {
  display: flex;
  margin-bottom: 2rem;
}

.wpcf7-multistep-progress span {
  flex: 1;
  text-align: center;
  padding: 0.5rem;
  border-bottom: 3px solid #ddd;
}

.wpcf7-multistep-progress span.active {
  border-color: #2a7f40;
}

/* Grid layout */
.grid {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.col {
  flex: 1;
}

/* Full-width fields */
.wpcf7-form-control.full-width {
  width: 100%;
}

/* Button styling */
.wpcf7-submit, .wpcf7-next, .wpcf7-previous {
  background: #2a7f40;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  margin-right: 1rem;
}

.wpcf7-previous {
  background: #666;
}

/* Conditional field animations */
.wpcf7-conditionally-hidden {
  display: none;
  animation: fadeIn 0.3s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.awps-pagination {
  text-align: center;
}
.awps-pagination .pagination {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 2rem auto;
  background-color: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
  font-size: 1rem;
}
@media (max-width: 767px) {
  .awps-pagination .pagination {
    font-size: 0.875rem;
  }
}
.awps-pagination .pagination .page-item {
  display: flex;
  align-items: center;
  margin: 0;
}
.awps-pagination .pagination .page-item::before {
  content: none;
}
.awps-pagination .pagination .page-item .page-link {
  display: block;
  padding: 0.5rem 0.75rem;
  text-decoration: none;
  color: #495057;
  border: 1px solid transparent;
  border-left: 1px solid #dee2e6;
  transition: all 0.2s ease;
}
.awps-pagination .pagination .page-item .page-link:hover, .awps-pagination .pagination .page-item .page-link:focus {
  background-color: #e9ecef;
  color: #495057;
  border-color: #dee2e6;
  outline: none;
}
.awps-pagination .pagination .page-item .page-link.current {
  background-color: #164962;
  color: #fff;
  border-color: #164962;
  font-weight: bold;
}
.awps-pagination .pagination .page-item.page-separator .page-link {
  padding: 0.5rem 0.75rem;
  color: #adb5bd;
  background: none;
  border: none;
  cursor: default;
  font-weight: bold;
  pointer-events: none;
}
.awps-pagination .pagination .page-item.page-separator .page-link:hover, .awps-pagination .pagination .page-item.page-separator .page-link:focus {
  background: none;
  border: none;
  color: #adb5bd;
}
.awps-pagination .pagination .page-item:first-child .page-link {
  border-left: none;
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
.awps-pagination .pagination .page-item:last-child .page-link {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}

.blog-grid-page {
  background: #fff;
  padding: 4rem 1rem;
}
.blog-grid-page .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.blog-grid-page header {
  text-align: center;
  margin-bottom: 3em;
}
.blog-grid-page header .page-title {
  font-family: "Poppins", sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.3;
  color: #333;
  margin: 0 0 0.75rem;
}
.blog-grid-page header .page-title span {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.3;
  color: #333;
  margin: 0 0 0.75rem;
}
.blog-grid-page .blog-header {
  text-align: center;
  margin-bottom: 3rem;
}
.blog-grid-page .blog-header .wp-block-heading {
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  margin: 0 0 0.5rem;
}
@media (min-width: 768px) {
  .blog-grid-page .blog-header .wp-block-heading {
    font-size: 2rem;
  }
}
.blog-grid-page .blog-header .widget_text {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  color: #666;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto 1rem;
  font-weight: 400;
}
.blog-grid-page .blog-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  justify-content: center;
}
@media (max-width: 767px) {
  .blog-grid-page .blog-cards-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.blog-grid-page .blog-card {
  background: white;
  border: 1px solid #e9ecef;
  border-radius: 2px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  overflow: hidden;
}
.blog-grid-page .blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.blog-grid-page .blog-card .card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.blog-grid-page .blog-card .card-image {
  overflow: hidden;
  height: 240px;
}
.blog-grid-page .blog-card .card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.blog-grid-page .blog-card .card-image img:hover {
  transform: scale(1.05);
}
.blog-grid-page .blog-card .card-content {
  padding: 1.5rem;
}
.blog-grid-page .blog-card .card-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-family: "Poppins", sans-serif;
  font-size: 0.875rem;
  color: #666;
  font-weight: 400;
}
.blog-grid-page .blog-card .card-meta .post-date {
  font-weight: 400;
}
.blog-grid-page .blog-card .card-meta .post-category {
  color: #555;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.blog-grid-page .blog-card .card-title {
  font-family: "Poppins", sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.3;
  color: #333;
  margin: 0 0 0.75rem;
}
.blog-grid-page .blog-card .card-title:hover {
  color: #164962;
}
.blog-grid-page .blog-card .card-excerpt {
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #666;
  margin-bottom: 1rem;
  font-weight: 400;
}
.blog-grid-page .blog-card .read-more {
  font-family: "Poppins", sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #555;
  text-decoration: none;
  display: inline-block;
  position: relative;
  padding-right: 1rem;
}
.blog-grid-page .blog-card .read-more::after {
  content: "→";
  position: absolute;
  right: 0;
  opacity: 0;
  transition: opacity 0.2s ease, right 0.2s ease;
}
.blog-grid-page .blog-card .read-more:hover::after {
  opacity: 1;
  right: -0.25rem;
}

.single-post-page {
  background: #fff;
  padding: 4rem 1rem;
}
.single-post-page .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
}
@media (max-width: 767px) {
  .single-post-page .container {
    grid-template-columns: 1fr;
  }
}
.single-post-page .post-sidebar {
  background: white;
  border: 1px solid #e9ecef;
  border-radius: 2px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  padding: 1.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.single-post-page .post-sidebar:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.single-post-page .post-sidebar .widget {
  margin-bottom: 1.5rem;
}
.single-post-page .post-sidebar .widget .widget-title {
  font-family: "Poppins", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
  border-bottom: 2px solid #164962;
  padding-bottom: 0.5rem;
}
.single-post-page .post-sidebar .widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.single-post-page .post-sidebar .widget ul li {
  margin-bottom: 0.5rem;
}
.single-post-page .post-sidebar .widget ul li a {
  color: #555;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-size: 0.9375rem;
}
.single-post-page .post-sidebar .widget ul li a:hover {
  color: #164962;
}
.single-post-page table {
  border-collapse: collapse;
  width: 100%;
  margin: 1rem 0;
  font-size: 14px;
}
.single-post-page th, .single-post-page td {
  padding: 8px;
  text-align: left;
  border: 1px solid #ddd;
}
.single-post-page th {
  background-color: #f5f5f5;
  font-weight: 600;
}
.single-post-page tr:nth-child(even) {
  background-color: #fafafa;
}

.single-post-card {
  background: white;
  border: 1px solid #e9ecef;
  border-radius: 2px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.single-post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.single-post-card .entry-image {
  overflow: hidden;
  height: 400px;
  margin: 0;
  margin-bottom: 1.5rem;
}
.single-post-card .entry-image img.featured-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: transform 0.3s ease;
}
.single-post-card .entry-image img.featured-image:hover {
  transform: scale(1.03);
}
.single-post-card .entry-image .featured-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e0e7ff, #dbeafe);
}
.single-post-card .entry-header {
  margin-bottom: 1.5rem;
  padding: 2rem;
  padding-bottom: 0px;
}
.single-post-card .entry-header .card-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-family: "Poppins", sans-serif;
  font-size: 0.875rem;
  color: #666;
  font-weight: 400;
}
.single-post-card .entry-header .card-meta .post-date {
  font-weight: 400;
}
.single-post-card .entry-header .card-meta .post-category {
  color: #555;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.single-post-card .entry-header .entry-title {
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  color: #333;
  margin: 0;
}
@media (min-width: 768px) {
  .single-post-card .entry-header .entry-title {
    font-size: 2rem;
  }
}
.single-post-card .entry-content {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  letter-spacing: 0.02em;
  color: #666;
  margin-bottom: 2rem;
  padding: 0 2rem;
}
.single-post-card .entry-content p {
  margin-bottom: 1rem;
}
.single-post-card .entry-content h2,
.single-post-card .entry-content h3,
.single-post-card .entry-content h4 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: #333;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.single-post-card .entry-content a {
  color: #164962;
  text-decoration: underline;
  font-weight: 500;
}
.single-post-card .entry-content a:hover {
  color: #0d2a38;
}
.single-post-card .entry-footer {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #e9ecef;
}
.single-post-card .entry-footer .comment-list {
  margin-top: 1.5rem;
}
.single-post-card .entry-footer .comment-form {
  margin-top: 2rem;
}

@media (max-width: 767px) {
  .single-post-card .entry-image {
    height: 280px;
  }
  .single-post-card .entry-image img.featured-image {
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center center;
       object-position: center center;
  }
}
.comments-area {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid #e9ecef;
}
.comments-area h2.comments-title {
  font-family: "Poppins", sans-serif;
  font-size: 1.625rem;
  font-weight: 700;
  color: #333;
  text-align: center;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .comments-area h2.comments-title {
    font-size: 1.875rem;
  }
}
.comments-area .comment-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}
.comments-area .comment-list li.comment {
  padding: 1.25rem;
  background: #f8f9fa;
  border-radius: 4px;
  margin-bottom: 1rem;
  border-left: 3px solid #164962;
  position: relative;
}
.comments-area .comment-list li.comment.depth-2, .comments-area .comment-list li.comment.depth-3, .comments-area .comment-list li.comment.depth-4, .comments-area .comment-list li.comment.depth-5 {
  margin-left: 1.5rem;
  background: #fafcff;
  border-left-color: #ccc;
}
.comments-area .comment-list .comment-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  gap: 0.5rem;
}
.comments-area .comment-list .comment-meta .comment-author {
  font-family: "Poppins", sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #333;
}
.comments-area .comment-list .comment-meta .comment-author .fn {
  font-weight: 600;
}
.comments-area .comment-list .comment-meta .comment-metadata {
  font-family: "Poppins", sans-serif;
  font-size: 0.875rem;
  color: #666;
}
.comments-area .comment-list .comment-meta .comment-metadata a {
  color: #666;
  text-decoration: none;
}
.comments-area .comment-list .comment-meta .comment-metadata a:hover {
  color: #164962;
}
.comments-area .comment-list .comment-content {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #475569;
}
.comments-area .comment-list .comment-content p {
  margin: 0.75rem 0;
}
.comments-area .comment-list .comment-content a {
  color: #164962;
  text-decoration: underline;
  font-weight: 500;
}
.comments-area .comment-list .comment-content a:hover {
  color: #0d2a38;
}
.comments-area .comment-list .comment-reply-link {
  font-family: "Poppins", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #164962;
  text-decoration: none;
  display: inline-block;
  margin-top: 0.5rem;
}
.comments-area .comment-list .comment-reply-link:hover {
  text-decoration: underline;
}
.comments-area #respond {
  background: white;
  border: 1px solid #e9ecef;
  border-radius: 4px;
  padding: 1.75rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}
.comments-area #respond .comment-reply-title {
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1.25rem;
}
.comments-area #respond .comment-reply-title small {
  font-weight: 400;
  font-size: 0.875rem;
}
.comments-area #respond .comment-reply-title small a {
  color: #164962;
  text-decoration: none;
}
.comments-area #respond .comment-reply-title small a:hover {
  text-decoration: underline;
}
.comments-area #respond .comment-notes {
  font-family: "Poppins", sans-serif;
  font-size: 0.875rem;
  color: #666;
  margin-bottom: 1.25rem;
}
.comments-area #respond .comment-notes .required-field-message {
  display: block;
  margin-top: 0.25rem;
}
.comments-area #respond .comment-notes .required {
  color: #164962;
}
.comments-area #respond .comment-form {
  padding: 0 0.75rem;
}
.comments-area #respond .comment-form .comment-form-comment,
.comments-area #respond .comment-form .comment-form-author,
.comments-area #respond .comment-form .comment-form-email,
.comments-area #respond .comment-form .comment-form-url,
.comments-area #respond .comment-form .comment-form-cookies-consent {
  margin-bottom: 1rem;
}
.comments-area #respond .comment-form label {
  font-family: "Poppins", sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #333;
  display: block;
  margin-bottom: 0.5rem;
}
.comments-area #respond .comment-form label .required {
  color: #164962;
}
.comments-area #respond .comment-form textarea,
.comments-area #respond .comment-form input[type=text],
.comments-area #respond .comment-form input[type=email],
.comments-area #respond .comment-form input[type=url] {
  width: 100%;
  padding: 0.75rem;
  padding-right: 0px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  color: #333;
  background: #fff;
  transition: border-color 0.2s ease;
}
.comments-area #respond .comment-form textarea:focus,
.comments-area #respond .comment-form input[type=text]:focus,
.comments-area #respond .comment-form input[type=email]:focus,
.comments-area #respond .comment-form input[type=url]:focus {
  outline: none;
  border-color: #164962;
  box-shadow: 0 0 0 3px rgba(22, 73, 98, 0.1);
}
.comments-area #respond .comment-form textarea {
  min-height: 120px;
  resize: vertical;
}
.comments-area #respond .comment-form .comment-form-cookies-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.comments-area #respond .comment-form .comment-form-cookies-consent input[type=checkbox] {
  margin-top: 0.25rem;
}
.comments-area #respond .comment-form .comment-form-cookies-consent label {
  margin-bottom: 0;
  font-weight: 400;
  font-size: 0.9375rem;
}
.comments-area #respond .comment-form .form-submit {
  margin-top: 1rem;
}
.comments-area #respond .comment-form .form-submit input#submit {
  background: #164962;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}
.comments-area #respond .comment-form .form-submit input#submit:hover {
  background: #0d2a38;
}
@media (max-width: 576px) {
  .comments-area #respond .comment-form .form-submit input#submit {
    width: 100%;
  }
}
.comments-area .comment-navigation {
  text-align: center;
  margin: 1.5rem 0;
}
.comments-area .comment-navigation .nav-links {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
@media (max-width: 576px) {
  .comments-area .comment-navigation .nav-links {
    flex-direction: column;
  }
}
.comments-area .comment-navigation .nav-previous,
.comments-area .comment-navigation .nav-next {
  font-family: "Poppins", sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #555;
  text-decoration: none;
}
.comments-area .comment-navigation .nav-previous a,
.comments-area .comment-navigation .nav-next a {
  color: #164962;
  text-decoration: none;
}
.comments-area .comment-navigation .nav-previous a:hover,
.comments-area .comment-navigation .nav-next a:hover {
  text-decoration: underline;
}
.comments-area .no-comments {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  color: #666;
  text-align: center;
  padding: 1rem;
}

.post-navigation-thumbnails {
  margin: 3rem 0;
  padding: 1.5rem;
  background: white;
  border: 1px solid #e9ecef;
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}
.post-navigation-thumbnails .nav-links {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1rem;
}
@media (max-width: 767px) {
  .post-navigation-thumbnails .nav-links {
    flex-direction: column;
  }
}
.post-navigation-thumbnails .nav-previous,
.post-navigation-thumbnails .nav-next {
  flex: 1;
  min-width: 200px;
}
.post-navigation-thumbnails .nav-previous a,
.post-navigation-thumbnails .nav-next a {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s ease;
}
.post-navigation-thumbnails .nav-previous a:hover,
.post-navigation-thumbnails .nav-next a:hover {
  opacity: 0.9;
}
.post-navigation-thumbnails .nav-previous.nav-disabled,
.post-navigation-thumbnails .nav-next.nav-disabled {
  opacity: 0.3;
  pointer-events: none;
}
.post-navigation-thumbnails .nav-previous {
  text-align: left;
}
.post-navigation-thumbnails .nav-previous a {
  align-items: flex-start;
}
.post-navigation-thumbnails .nav-previous .nav-thumb {
  margin: 0.5rem 0.5rem 0.5rem 0;
}
.post-navigation-thumbnails .nav-previous .nav-direction {
  color: #555;
}
.post-navigation-thumbnails .nav-next {
  text-align: right;
}
.post-navigation-thumbnails .nav-next a {
  align-items: flex-end;
}
.post-navigation-thumbnails .nav-next .nav-thumb {
  margin: 0.5rem 0 0.5rem 0.5rem;
}
.post-navigation-thumbnails .nav-next .nav-direction {
  color: #555;
}
.post-navigation-thumbnails .nav-direction {
  font-family: "Poppins", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.post-navigation-thumbnails .nav-thumb {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}
.post-navigation-thumbnails .nav-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
}
.post-navigation-thumbnails .nav-thumb .nav-thumb-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e0e7ff, #dbeafe);
  border-radius: 4px;
}
.post-navigation-thumbnails .nav-title {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-sidebar {
  background: white;
  border: 1px solid #e9ecef;
  border-radius: 2px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  padding: 1.5rem;
  margin-bottom: 2rem;
  height: -moz-fit-content;
  height: fit-content;
}
.post-sidebar .widget {
  margin-bottom: 1.5rem;
  color: #666;
  font-family: Poppins, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.02em;
  line-height: 1.7;
}
.post-sidebar .widget .widget-title {
  font-family: "Poppins", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
  border-bottom: 2px solid #164962;
  padding-bottom: 0.5rem;
}
.post-sidebar .widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.post-sidebar .widget ul li {
  margin-bottom: 0.5rem;
}
.post-sidebar .widget ul li a {
  color: #555;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-size: 0.9375rem;
}
.post-sidebar .widget ul li a:hover {
  color: #164962;
}
.post-sidebar .widget .wp-block-separator {
  border-top: 1px solid #E9ECEF;
}

.search-page {
  margin: 50px auto;
}
.search-page header {
  background-color: transparent;
}
.search-page header h1 {
  margin-bottom: 50px;
}
.search-page article {
  margin-bottom: 20px;
  border: 1px solid #eee;
}
.search-page article .flexbox {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  margin-bottom: 0px;
}
.search-page article h2 {
  color: #000;
  font-size: 20px;
  letter-spacing: normal;
  line-height: normal;
}
.search-page article h2 a {
  color: #000;
}
.search-page article .entry-meta {
  color: #7a7a7a;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
}
.search-page article .entry-content {
  color: #7a7a7a;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
}

.page404 {
  margin: 50px auto;
}
.page404 .error-icon {
  font-size: 1000%;
  text-align: center;
  display: block;
  color: #c9c9c9;
}
.page404 h1 {
  text-align: center;
}

@media (max-width: 767px) {
  .col-img {
    order: -1 !important;
    margin-bottom: 30px;
  }
}
.woocommerce-page #primary {
  padding: 60px !important;
}

.woocommerce-cart .wc-block-cart__submit-button {
  background-color: #000;
  color: #fff;
}

.single-product .product_title {
  line-height: 1.3em;
}
.single-product .woocommerce .quantity .qty {
  padding: 0.5em 0px;
}
.single-product .flex-direction-nav {
  display: none;
}
.single-product .product_meta {
  display: none;
}

.search-no-results .search-field {
  color: #333333;
  background-color: #ffffff;
  border-color: #E8E8E8;
  text-align: left;
  border-width: 1px 1px 1px 1px;
  border-radius: 2px 2px 2px 2px !important;
  padding: 15px 15px 15px 15px;
}
.search-no-results .search-submit {
  color: #ffffff;
  background-color: #FCD804;
  border-color: #E8E8E8;
  min-width: 125px;
  border-width: 0px 0px 0px 0px;
  border-radius: 0px 0px 0px 0px;
  padding: 15px 15px 15px 15px;
}
.search-no-results .search-submit:hover {
  background-color: #000;
}

.page404 .error-404 {
  text-align: center;
  margin: 50px 0 100px 0;
}
.page404 .error-404 .nummber-404 {
  font-size: 9rem;
  color: #313030;
  font-weight: 700;
  line-height: 1.75;
}
.page404 .error-404 p {
  font-size: 0.9em;
  line-height: 1.75;
  color: #707070;
  font-weight: 400;
}
.page404 .error-404 .button {
  background: #313030;
  box-shadow: none;
  border: 0;
  color: #fff;
  display: inline-block;
  font-size: 1rem;
  line-height: 22px;
  font-weight: 400;
  overflow: hidden;
  padding: 10px 20px;
  text-shadow: none;
  text-transform: capitalize;
  text-align: center;
  height: auto;
  border-radius: 0;
  -webkit-border-radius: 0;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -ms-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  vertical-align: middle;
  cursor: pointer;
  text-decoration: none;
}
.page404 .error-404 .button:hover {
  background: #651A53;
}

.search .site-main {
  padding: 2rem 0;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 50px;
}
.search .site-main .page-header {
  margin-bottom: 2.5rem;
  text-align: center;
}
.search .site-main .page-header .page-title {
  font-size: 1.8rem;
  color: #333;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.search .site-main .row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.search .site-main article {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 44%;
}
@media (max-width: 768px) {
  .search .site-main article {
    width: 100%;
    margin: 0 15px;
  }
}
.search .site-main article:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}
.search .site-main article .entry-header {
  margin-bottom: 1rem;
}
.search .site-main article .entry-header .entry-title {
  font-size: 1.4rem;
  margin: 0 0 0.5rem;
}
.search .site-main article .entry-header .entry-title a {
  color: #333;
  text-decoration: none;
}
.search .site-main article .entry-header .entry-title a:hover {
  color: #000;
}
.search .site-main article .entry-content .row {
  display: inline-block;
  align-items: center;
  margin: 0 -15px;
}
.search .site-main article .entry-content .row .col-md-3 {
  flex: 0 0 25%;
  max-width: 25%;
  padding: 0 15px;
  float: left;
}
@media (max-width: 768px) {
  .search .site-main article .entry-content .row .col-md-3 {
    max-width: 50%;
  }
}
.search .site-main article .entry-content .row .col-md-3 img {
  width: 150px;
  height: auto;
  border-radius: 4px;
  -o-object-fit: cover;
     object-fit: cover;
}
.search .site-main article .entry-content .row .col-md-3 a {
  display: block;
}
.search .site-main article .entry-content .row .col-md-9 {
  flex: 0 0 75%;
  max-width: 75%;
  padding: 0 15px;
  max-width: 60%;
  float: left;
}
@media (max-width: 768px) {
  .search .site-main article .entry-content .row .col-md-9 {
    max-width: 40%;
  }
}
.search .site-main article .entry-content .row .col-md-9 p {
  margin: 0;
  color: #555;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .search .site-main .entry-content .row {
    flex-direction: column;
  }
  .search .site-main .entry-content .row .col-md-3,
  .search .site-main .entry-content .row .col-md-9 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .search .site-main .entry-content .row .col-md-3 {
    margin-bottom: 1rem;
  }
}
.search .no-results {
  text-align: center;
  padding: 3rem;
  background: #f9f9f9;
  border-radius: 8px;
}
.search .no-results .page-title {
  color: #666;
}
.search .no-results .page-content p {
  color: #777;
}

.search-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2rem auto;
  width: 100%;
  text-align: center;
}
.search-pagination .page-numbers {
  display: block;
  padding: 8px 16px;
  margin: 0;
  text-decoration: none;
  color: #333;
  background-color: #fff;
  border: 1px solid #ddd;
  transition: all 0.2s ease;
}
.search-pagination .page-numbers:hover, .search-pagination .page-numbers:focus {
  background-color: #f5f5f5;
  color: #000;
  outline: none;
}
.search-pagination .page-numbers.current {
  background-color: #333;
  color: #fff;
  border-color: #333;
  font-weight: bold;
}
.search-pagination .page-numbers:first-child {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  border-right: 1px solid #ddd;
}
.search-pagination .page-numbers:last-child {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-left: 1px solid #ddd;
}
.search-pagination .page-numbers:not(:first-child) {
  border-left: none;
}

.single-product {
  color: #747474;
  /* Related Products Section */
  /* Responsive */
}
.single-product .summary h1 {
  color: #747474;
}
.single-product #primary {
  padding: 30px;
}
.single-product .flex-control-thumbs {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px !important;
}
.single-product .flex-control-thumbs li {
  max-width: 97px;
  padding: 0 5px;
}
.single-product .custom-related-products {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid #eee;
}
@media (min-width: 1024px) {
  .single-product .custom-related-products {
    padding: 0px 150px;
  }
}
.single-product .custom-related-products h4 {
  text-align: center;
  margin: 30px 0px;
  font-size: 24px;
}
.single-product .related-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.single-product .related-product {
  position: relative;
  overflow: hidden;
}
.single-product .related-product-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.single-product .related-product img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: opacity 0.3s ease;
}
@media (min-width: 1024px) {
  .single-product .related-product img {
    height: 300px;
  }
}
.single-product .product-image-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.single-product .related-product:hover .product-image-main {
  opacity: 0;
}
.single-product .related-product:hover .product-image-hover {
  opacity: 1;
}
.single-product .related-product h3 {
  margin: 15px 0 5px;
  font-size: 16px;
  font-weight: normal;
}
.single-product .related-product .price {
  display: block;
  color: #777;
  font-size: 14px;
}
@media (max-width: 768px) {
  .single-product .related-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.single-product .product-social-share {
  margin: 20px 0px;
}
.single-product .product-social-share .share-label {
  border-top: 1px solid #f7f7f7;
  padding: 10px 0px;
}
.single-product .product-social-share .social-share {
  border: 1px solid #f7f7f7;
  padding: 5px 10px;
  margin: 5px;
  line-height: 42px;
}
.single-product .product-social-share .social-share:hover {
  background-color: #747474;
  color: #fff !important;
}
.single-product .wc-tabs {
  padding-left: 0px !important;
}
.single-product .wc-tabs li {
  border: none;
}
