:root {
  --sek-text: #1f2937;
  --sek-muted: #6b7280;
  --sek-border: #d1d5db;
  --sek-bg: #ffffff;
  --sek-chip: #f3f4f6;
  --sek-link: #111827;
  --sek-gap: 36px;
  --sek-filter-height: 48px;
  --sek-radius: 0px;
}

/* .sek-filter-wrapper {
	margin-bottom: 38px;
} */

.sek-filter-form {
  display: grid;
  grid-template-columns: minmax(448px, 1.2fr) repeat(auto-fit, minmax(120px, 1fr));
  gap: 14px;
  align-items: center;
}

.sek-filter-form .sek-field {
  position: relative;
}

.sek-filter-form input[type="text"],
.sek-filter-form select,
.sek-filter-form button {
  width: 100%;
  height: 40px;
  border: 1px solid #e5e7eb;
  border-radius: var(--sek-radius);
  background: var(--sek-bg);
  color: var(--sek-text);
  font-size: 14px;
  line-height: 1.2;
  padding: 0 16px;
  box-shadow: none;
  outline: none;
  transition: border-color 0.2s ease, background-color 0.2s ease;
  border-radius: 6px !important;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e5e5;
}

.sek-filter-form input[type="text"]:focus {
  border-color: #e5e5e5;
}

.sek-filter-form input[type="text"] {
  padding-left: 42px;
}

.sek-filter-form .sek-search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  pointer-events: none;
  opacity: 0.65;
}

.sek-filter-form select:focus {
  border-color: #0a0a0a;
}

.sek-filter-form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #6b7280 50%),
    linear-gradient(135deg, #6b7280 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 3px),
    calc(100% - 12px) calc(50% - 3px);
  background-size:
    6px 6px,
    6px 6px;
  background-repeat: no-repeat;
  padding-right: 34px;
  border-radius: 6px !important;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e5e5;
  height: 40px;
}

.sek-filter-form .sek-reset {
  /* width: 95px; */
  width: auto;
  min-width: 95px;
  height: 40px;
  cursor: pointer;
  background: transparent;
  color: #6b7280;
  font-weight: 600;
  line-height: normal;
  transition: all 0.3s ease;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: none !important;
  border: 1 solid transparent;
}

.sek-filter-form .sek-reset svg {
  width: 16px;
  height: 16px;
}

.sek-filter-form .sek-reset:hover {
  background: #f5f5f5;
  color: #171717;
  border: 1 solid #f5f5f5;
}

.sek-group {
  margin-bottom: 48px;
}

.sek-group-title {
  margin: 0 0 24px;
  font-size: 32px;
  line-height: 1.2;
}

.sek-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    text-align: center;
}
.sek-loading p {
    margin: 0;
    color: #00567e;
    font-size: 15px;
    font-weight: 700;
    font-family: var(--et_global_heading_font);
    letter-spacing: 0.02em;
}
.sek-loading-dots {
    display: flex;
    align-items: center;
    gap: 9px;
}
.sek-loading-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #001b27;
    animation: sek-dot-loading 1.2s ease-in-out infinite;
}
.sek-loading-dots span:nth-child(2) {
    animation-delay: 0.15s;
}
.sek-loading-dots span:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes sek-dot-loading {
    0%, 60%, 100% {
        opacity: 0.3;
        transform: translateY(0);
    }
    30% {
        opacity: 1;
        transform: translateY(-8px);
    }
}
@media (prefers-reduced-motion: reduce) {
    .sek-loading-dots span {
        animation: none;
        opacity: 0.65;
    }
}

.sek-filter-results {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 40px;
  row-gap: 60px;
}

.sek-item.sek-hidden {
  display: none !important;
}

.sek-item.sek-show {
  display: flex !important;
}

.sek-scroll-trigger {
  width: 100%;
  height: 20px;
}

.sek-section-hidden {
  display: none !important;
}

.sek-section-show {
  display: block !important;
}

.sek-item.sek-hidden {
  display: none !important;
}

.sek-item.sek-show {
  display: flex !important;
  flex-direction: column;
}

.sek-content {
  padding: 1.5rem;
  background-color: #ffffff;
}

.sek-item {
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s ease;
}

.sek-item:hover {
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.sek-item:hover .sek-image img {
  transform: scale(1.05);
}

.sek-image{
    position:relative;
    overflow:hidden;
}
.sek-image::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);
    opacity:0;
    transition:.3s ease;
    z-index:1;
}

.sek-image img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.3s ease;
  object-position: top;
}

.sek-view-profile{
    position:absolute;
    left:50%;
    bottom:25px;
    transform:translateX(-50%);
    color:#fff;
    font-size:16px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
    opacity:0;
    transition:.3s ease;
    z-index:3;
    white-space:nowrap;
}

.sek-item:hover .sek-image::before,
.sek-item:hover .sek-view-profile{
    opacity:1;
}

.sek-item:hover .sek-image img{
    transform:scale(1.05);
}

.sek-name {
  color: #00567e;
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  padding-bottom: 0;
  margin-bottom: 8px;
}

.sek-jobtitle {
  color: #374151;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
}

.sek-titles {
  color: #8b9f98;
}

@media (max-width: 1520px) {
  .sek-filter-form {
    grid-template-columns: minmax(200px, 1.2fr) repeat(
        auto-fit,
        minmax(140px, 1fr)
      );
  }
}

@media (max-width: 1230px) and (min-width: 981px) {
  .sek-filter-form {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 12px;
  }

  .sek-filter-form > *:nth-child(1) {
    grid-column: span 4;
  }

  .sek-filter-form > *:nth-child(2) {
    grid-column: span 4;
  }

  .sek-filter-form > *:nth-child(3),
  .sek-filter-form > *:nth-child(4),
  .sek-filter-form > *:nth-child(5),
  .sek-filter-form > *:nth-child(6) {
    grid-column: span 2;
  }
}

@media (max-width: 1200px) {
  .sek-filter-results {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 980px) {
  .sek-filter-form {
    grid-template-columns: repeat(2, minmax(160px, 1fr));
  }

  .sek-filter-results {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 767px) {
  .sek-filter-form {
    grid-template-columns: 1fr;
  }

  .sek-filter-results {
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
  }
}

/*--- Articles & Insights - Staff Member detail page ---*/
.sek-author-posts-wrap {
  padding: 4% 0;
}
.sek-author-posts-title {
  margin: 0 0 24px;
  font-weight: 700;
  text-transform: uppercase;
  color: #00567e !important;
  font-size: 24px;
  line-height: 32px;
}

.sek-author-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.sek-author-post-card {
  background: #fff;
  padding: 28px 24px;
}

.sek-author-post-card:hover {
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.sek-author-post-category {
  font-size: 12px;
  line-height: 16px;
  font-weight: 500;
  color: #8b9f98;
}

.sek-author-post-heading {
  margin: 8px 0;
  font-weight: 600;
  color: #00567e !important;
  font-size: 16px;
  line-height: 24px;
  padding: 0;
}

.sek-author-post-heading a {
  text-decoration: none;
}

.sek-author-post-excerpt {
  color: #6b7280;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
}

@media (max-width: 980px) {
  .sek-author-posts-grid {
    grid-template-columns: 1fr;
  }
}

body.et-db #et-boc .cust_location .et_pb_link_inner .et-pb-icon {
  font-family: "ETmodules" !important;
}

.sek_results_module_0 .sek-item {
  padding-top: 0px !important;
  border: 4px solid #e5e7eb;
  background-color: #fff;
}

.sek-jobtitle {
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 12px;
}

.sek-titles {
  font-size: 14px;
  line-height: 20px;
  color: #8b9f98;
}

.sek-location {
  font-size: 14px;
  display: flex;
  align-items: center;
  line-height: 20px;
  gap: 8px;
}

.sek-location svg {
  width: 16px;
  height: 16px;
}

.sek-group-title {
  font-size: 36px;
  margin-bottom: 35px;
  padding-bottom: 0;
  color: #686868;
  text-transform: capitalize;
}

.sek-location-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  display: flex;
}

.sek-field-location select {
  padding-left: 38px;
}

.sek-location-icon svg {
  width: 16px;
  height: 16px;
  color: #9ca3af;
}

.sek-reset.reset-hide {
  display: none;
}

.download_bio:hover {
  background-color: #7a8c86 !important;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(139, 159, 152, 0.3);
}

.staff-area-of-practice-title,
.staff-industry-title {
  font-weight: 700;
  text-transform: uppercase;
  color: #00567e !important;
  font-size: 24px;
  line-height: 32px;
}
.staff-area-of-practice,
.staff-industry {
  padding: 0 !important;
}
.staff-area-of-practice-item,
.staff-industry-item {
  position: relative;
  margin: 0 0 14px 0;
  padding: 0 0 0 26px;
  line-height: 1.4;
  list-style: none;
}
.staff-area-of-practice-item::before,
.staff-industry-item::before {
  color: #cfcfcf;
  font-size: 30px;
  line-height: 1;
  font-weight: 300;
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid #c5cfc9;
  border-bottom: 2px solid #c5cfc9;
  transform: rotate(-45deg);
  position: absolute;
  left: 0;
  top: 6px;
}
.staff-area-of-practice-item,
.staff-industry-item,
.staff-area-of-practice-item a,
.staff-industry-item a {
  color: #2b1a0f;
  font-size: 16px;
  font-weight: 400;
}
.staff-area-of-practice-item a:hover,
.staff-industry-item a:hover {
  color: #005b8f;
}
.sek-post-author a {
  color: #666;
}

/*--- FAQ ---*/
.sek-faqs-wrapper {
  padding: 4% 0;
}
.sek-faqs-title {
  margin: 0 0 24px;
  font-weight: 700;
  text-transform: uppercase;
  color: #00567e !important;
  font-size: 24px;
  line-height: 32px;
  text-align: center;
}
.sek-faq-wrap {
  max-width: 1160px;
  margin: 0 auto;
  font-family: inherit;
}
.sek-faq-item {
  margin-bottom: 2px;
}
.sek-faq-question {
  width: 100%;
  background: #005782;
  color: #fff;
  border: 0;
  padding: 18px 22px;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
}
.sek-faq-icon {
  font-size: 28px;
  line-height: 1;
  width: 18px;
  display: inline-block;
  flex-shrink: 0;
}
.sek-faq-text {
  flex: 1;
}
.sek-faq-answer {
  display: none;
  background: #f3f3f3;
  color: #666;
  padding: 22px;
  font-size: 16px;
  line-height: 1.7;
}
.sek-faq-item.active .sek-faq-question {
  background: #005782;
}

/*--- Testimonials ---*/
.sek-testimonials-wrapper {
  padding: 4% 0;
}
.sek-testimonials-title {
  margin: 0 0 24px;
  font-weight: 700;
  text-transform: uppercase;
  color: #00567e !important;
  font-size: 26px;
  line-height: 32px;
}
.sek-testimonials-slider {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}
.sek-testimonial-slide {
  display: none;
}
.sek-testimonial-slide.active {
  display: block;
}
.sek-testimonial-card {
  background: #fff;
  padding: 50px 40px 40px;
  position: relative;
}

/* Quote icon (top center) */
.sek-quote-top {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
}
.sek-quote-top::before {
  content: "|";
  font-family: ETmodules;
  font-size: 32px;
  background: #fff;
  color: #00567e;
  padding: 6px;
  border-radius: 50%;
}

/* Content animation */
.sek-testimonial-content,
.sek-testimonial-name,
.sek-testimonial-meta {
  opacity: 0;
  transform: translateY(15px);
}
.sek-testimonial-slide.active .sek-testimonial-content {
  animation: sekFadeUp 0.6s ease forwards;
}
.sek-testimonial-slide.active .sek-testimonial-name {
  animation: sekFadeUp 0.6s ease forwards;
  animation-delay: 0.15s;
}
.sek-testimonial-slide.active .sek-testimonial-meta {
  animation: sekFadeUp 0.6s ease forwards;
  animation-delay: 0.3s;
}

@keyframes sekFadeUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sek-testimonial-content {
  font-family: "Arial";
  font-size: 16px;
  line-height: 24px;
  color: #4b5563;
  margin-bottom: 20px;
}
.sek-testimonial-name {
  font-family: "Arial";
  color: #00567e;
  font-size: 16px;
  line-height: 16px;
  font-weight: 700;
}
.sek-testimonial-meta {
  font-family: "Arial";
  color: #4b5563;
  font-size: 13px;
  line-height: 20px;
}

/* NAV position */
.sek-testimonial-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 5;
}
.sek-arrow {
  position: absolute;
  width: 38px;
  height: 38px;
  border: 2px solid #00567e;
  border-radius: 50%;
  background: #f7f7f7;
  color: #00567e;
  font-size: 20px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  transition: all 0.25s ease;
}
.sek-arrow.prev {
  left: -22px;
}
.sek-arrow.next {
  right: -22px;
}
.sek-arrow:hover {
  background: #00567e;
  color: #fff;
}

@media (max-width: 767px) {
  .sek-testimonial-content {
    font-size: 16px;
  }
  .sek-arrow {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }
  .sek-arrow.prev {
    left: -12px;
  }
  .sek-arrow.next {
    right: -12px;
  }
}

/*.tax-card h3 {
	margin: 0 0 18px;
	font-size: 16px;
	font-weight: 700;
	color: #00507f;
}*/
.tax-card h3 {
  font-size: 26px;
  font-weight: 700 !important;
  color: #00567e !important;
	padding-bottom: 25px !important;	
}
.tax-member {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 25px;
}
.tax-member img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 60px;
}
.tax-member .sek-content {
  padding: 0 10px;
}
.tax-member .sek-name {
  color: #00567e;
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  padding-bottom: 0;
  margin-bottom: 0;
}
.tax-member .sek-jobtitle {
  color: #374151;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  margin-bottom: 0;
}
.tax-member .sek-titles {
  font-size: 14px;
  line-height: 20px;
  color: #8b9f98;
}
.tax-member .sek-location {
  color: #00567e;
  font-size: 14px;
  display: flex;
  align-items: center;
  line-height: 20px;
  gap: 8px;
}
.tax-member .sek-location svg {
  width: 16px;
  height: 16px;
}

.tax-link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 700;
  color: #000;
  text-decoration: none;
}
.tax-link span {
  font-size: 22px;
  line-height: 1;
}

.sek-tax-resources-wrapper .sek-tax-resources-title {
  padding-left: 30px !important;
}
.resource-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.resource-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 22px;
  background: #fff;
  text-decoration: none;
  color: #000;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}
.resource-icon {
  width: 32px;
  height: 32px;
  color: #00507f;
  flex: 0 0 32px;
}
.resource-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.resource-card strong {
  display: block;
  margin-bottom: 3px;
  font-size: 15px;
  line-height: 1.25;
  color: #00507f;
}
.resource-card small {
  display: block;
  font-size: 13px;
  color: #4f5b66;
}
.disabled_cls {
  cursor: not-allowed;
  pointer-events: none;
}
@media (max-width: 575px) {
  .resource-card {
    gap: 14px;
    padding: 16px;
  }
}

.single-service h2,
.single-service h3 {
  text-transform: capitalize !important;
  margin-bottom: 20px;
}

.testi_content_wrapper {
  display: flex;
  gap: 20px;
}
.sek-testimonial-image {
  width: 100%;
}
.sek-testimonial-image img {
  border: 2px solid #d1d5db;
}
@media (max-width: 768px) {
  .testi_content_wrapper {
    flex-direction: column-reverse;
  }
}


#sek-insights-blog-wrapper {
    position:relative;
    /*min-height:200px;*/
}
#sek-insights-blog-wrapper::after {
    content:'';
    position:absolute;
    top:50%;
    left:50%;
    width:42px;
    height:42px;
    margin:-21px 0 0 -21px;
    border:4px solid #e5e5e5;
    border-top-color:#00567e;
    border-radius:50%;
    animation:sekSpin .8s linear infinite;
    opacity:0;
    visibility:hidden;
    transition:.2s;
    z-index:20;
}
#sek-insights-blog-wrapper::before {
    content:'';
    position:absolute;
    inset:0;
    background:rgba(255,255,255,.7);
    opacity:0;
    visibility:hidden;
    transition:.2s;
    z-index:10;
}
#sek-insights-blog-wrapper.sek-loading::before,
#sek-insights-blog-wrapper.sek-loading::after {
    opacity:1;
    visibility:visible;
}
@keyframes sekSpin {
    to {
        transform:rotate(360deg);
    }
}
.selected-acf-posts {
    background:#fff;
    padding:30px;
    box-sizing:border-box;
    min-height: 200px;
}
body .sek-recent-title {
    margin:0 0 10px;
    color:#00567e;
    font-size:26px;
    font-weight:700;
    line-height: 29px;
    text-transform:uppercase !important;
}
.acf-post-card {
    display:flex;
    gap:12px;
    align-items:flex-start;
    margin-bottom:42px;
}
.selected-acf-posts:has(.pagination:empty) .acf-post-card:last-of-type {
    margin-bottom: 0;
}
.entry-featured-image-url {
    flex:0 0 100px;
}
.entry-featured-image-url img {
    width:100px;
    height:86px;
    object-fit:cover;
    display:block;
}
.sek-post-content {
    flex:1;
}
.entry-title {
    margin:0 0 10px;
    font-size:17px;
    line-height:1.1;
    font-weight:800;
}
.entry-title a {
    color:#00567e;
    text-decoration:none;
    font-size: 16px;
    font-weight: 700;
    line-height: 18px;
}
.entry-title a:hover {
    text-decoration:none;
}
.sek-post-meta {
    font-size:14px;
    font-family: "Arial";
    color:#666666;
    line-height:29px;
}
.sek-post-meta a {
    color: inherit !important;
}

/* Pagination */
.pagination {
    margin-top:10px;
    padding-top:10px;
    clear:both;
}
.pagination .alignleft {
    float:left;
}
.pagination .alignright {
    float:right;
}
.pagination a {
    color:#00567e;
    text-decoration:none;
    font-size:16px;
}
.pagination a:hover {
    text-decoration:underline;
}
.clearfix::after {
    content:"";
    display:block;
    clear:both;
}

@media (max-width: 1400px) and (min-width: 981px) {
  .acf-post-card {
    flex-direction: column;
    gap: 0;
  }
}
@media (max-width: 500px) {
  .acf-post-card {
    flex-direction: column;
    gap: 0;
  }
}
/* Divi 5 Visual Builder placeholder */
.sek-divi5-placeholder { padding: 24px; border: 1px dashed currentColor; text-align: center; opacity: .7; }