/*
 * Custom SCSS for Hello Elementor Theme
 * Add your custom styles here using SCSS syntax
 */
body {
  color: #333;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mb-1 {
  margin-bottom: 1rem;
}

.mt-1 {
  margin-top: 1rem;
}

.ml-1 {
  margin-left: 1rem;
}

.mr-1 {
  margin-right: 1rem;
}

.p-1 {
  padding: 1rem;
}

.pt-1 {
  padding-top: 1rem;
}

.pb-1 {
  padding-bottom: 1rem;
}

.pl-1 {
  padding-left: 1rem;
}

.pr-1 {
  padding-right: 1rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mt-2 {
  margin-top: 2rem;
}

.ml-2 {
  margin-left: 2rem;
}

.mr-2 {
  margin-right: 2rem;
}

.p-2 {
  padding: 2rem;
}

.pt-2 {
  padding-top: 2rem;
}

.pb-2 {
  padding-bottom: 2rem;
}

.pl-2 {
  padding-left: 2rem;
}

.pr-2 {
  padding-right: 2rem;
}

.mb-3 {
  margin-bottom: 3rem;
}

.mt-3 {
  margin-top: 3rem;
}

.ml-3 {
  margin-left: 3rem;
}

.mr-3 {
  margin-right: 3rem;
}

.p-3 {
  padding: 3rem;
}

.pt-3 {
  padding-top: 3rem;
}

.pb-3 {
  padding-bottom: 3rem;
}

.pl-3 {
  padding-left: 3rem;
}

.pr-3 {
  padding-right: 3rem;
}

.mb-4 {
  margin-bottom: 4rem;
}

.mt-4 {
  margin-top: 4rem;
}

.ml-4 {
  margin-left: 4rem;
}

.mr-4 {
  margin-right: 4rem;
}

.p-4 {
  padding: 4rem;
}

.pt-4 {
  padding-top: 4rem;
}

.pb-4 {
  padding-bottom: 4rem;
}

.pl-4 {
  padding-left: 4rem;
}

.pr-4 {
  padding-right: 4rem;
}

.mb-5 {
  margin-bottom: 5rem;
}

.mt-5 {
  margin-top: 5rem;
}

.ml-5 {
  margin-left: 5rem;
}

.mr-5 {
  margin-right: 5rem;
}

.p-5 {
  padding: 5rem;
}

.pt-5 {
  padding-top: 5rem;
}

.pb-5 {
  padding-bottom: 5rem;
}

.pl-5 {
  padding-left: 5rem;
}

.pr-5 {
  padding-right: 5rem;
}

.background-shades {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  z-index: -3;
}

.custom-hero-section {
  position: initial;
}
.custom-hero-section .background-shades .eclipse {
  position: absolute;
  width: 47vw;
  height: 500px;
  filter: blur(146.8628997803px);
  opacity: 0.4;
}
.custom-hero-section .background-shades .eclipse.eclipse-1 {
  background: #B0DFED;
  border-radius: 545.178px;
  top: -110px;
  right: 100px;
}
.custom-hero-section .background-shades .eclipse.eclipse-2 {
  width: 65vw;
  height: 458.83px;
  left: -20%;
  top: 80%;
  border-radius: 998.511px;
  background: #B58FE3;
  filter: blur(200px);
}
.custom-hero-section .background-shades .eclipse.eclipse-3 {
  width: 45vw;
  height: 924px;
  transform: rotate(-96.013deg);
  right: 0;
  top: 70%;
  border-radius: 924px;
  background: #8AB8FF;
  filter: blur(210px);
}

.page-content {
  overflow: hidden;
}

.custom-accordion-wrapper .custom-accordion-item {
  border: 1px solid #e0e0e0;
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: hidden;
}
.custom-accordion-wrapper .custom-accordion-item:last-child {
  margin-bottom: 0;
}
.custom-accordion-wrapper .custom-accordion-header {
  background-color: #f8f9fa;
  padding: 1rem 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
}
.custom-accordion-wrapper .custom-accordion-header .custom-accordion-title {
  flex: 1;
  margin: 0;
  font-family: "Clash Display", Sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #333;
}
.custom-accordion-wrapper .custom-accordion-header:hover {
  background-color: #e9ecef;
}
.custom-accordion-wrapper .custom-accordion-header.active {
  background-color: #0073aa;
  color: #ffffff;
}
.custom-accordion-wrapper .custom-accordion-header.active .custom-accordion-title {
  color: #ffffff;
  font-size: 24px;
}
.custom-accordion-wrapper .custom-accordion-header.active .custom-accordion-toggle-icon i {
  transform: rotate(180deg);
  color: #ffffff;
}
.custom-accordion-wrapper .custom-accordion-icon {
  font-size: 1.2rem;
  color: #0073aa;
  min-width: 24px;
}
.custom-accordion-header.active .custom-accordion-wrapper .custom-accordion-icon {
  color: #ffffff;
}
.custom-accordion-wrapper .custom-accordion-toggle-icon {
  margin-left: auto;
}
.custom-accordion-wrapper .custom-accordion-toggle-icon i {
  transition: transform 0.3s ease;
  color: #0073aa;
  font-size: 0.9rem;
}
.custom-accordion-wrapper .custom-accordion-content {
  display: none;
  background-color: #ffffff;
}
.custom-accordion-wrapper .custom-accordion-content.active {
  display: block;
  animation: slideDown 0.3s ease-out;
}
.custom-accordion-wrapper .custom-accordion-content-inner {
  padding: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 1.5rem;
  align-items: start;
}
@media (max-width: 768px) {
  .custom-accordion-wrapper .custom-accordion-content-inner {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.custom-accordion-wrapper .custom-accordion-image img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  object-fit: cover;
  max-height: 200px;
}
.custom-accordion-wrapper .custom-accordion-text p {
  margin-bottom: 1rem;
  line-height: 1.6;
  color: #666;
}
.custom-accordion-wrapper .custom-accordion-text p:last-of-type {
  margin-bottom: 1.5rem;
}
.custom-accordion-wrapper .custom-accordion-button-wrapper {
  margin-top: 1rem;
}
.custom-accordion-wrapper .custom-read-more-btn {
  background-color: #0073aa;
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  font-weight: 500;
  transition: all 0.3s ease;
}
.custom-accordion-wrapper .custom-read-more-btn:hover {
  background-color: #005177;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@keyframes slideDown {
  from {
    opacity: 0;
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
  }
  to {
    opacity: 1;
    max-height: 500px;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
}
.custom-accordion-wrapper .custom-accordion-item {
  padding: 40px 0 16px 0;
  border: none;
  border-top: 1px solid #E6EAF1;
  margin-bottom: 0;
}
.custom-accordion-wrapper .custom-accordion-item:first-child {
  padding-top: 0;
  border-top: 0;
}
.custom-accordion-wrapper .custom-accordion-header {
  padding: 0;
  background: transparent;
  margin-bottom: 16px;
}
.custom-accordion-wrapper .custom-accordion-header .custom-accordion-title {
  color: #8A9EBF;
}
.custom-accordion-wrapper .custom-accordion-header.active, .custom-accordion-wrapper .custom-accordion-header:hover {
  background: transparent;
}
.custom-accordion-wrapper .custom-accordion-header.active .custom-accordion-title {
  color: #002C74;
}
.custom-accordion-wrapper .custom-accordion-content p {
  font-family: Avenir;
  font-weight: 500;
  font-size: 18px;
  color: #002C74;
}
.custom-accordion-wrapper .custom-accordion-content.active {
  background-color: transparent;
}
.custom-accordion-wrapper .custom-accordion-content .accordion-read-more {
  margin-top: 12px;
  padding: 16px 0;
}

.brand-link {
  font-family: "Clash Display", Sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  text-decoration: underline;
  color: #002C74;
  position: relative;
}

.custom-grid-slider-wrapper .slide-title {
  font-family: "Clash Display", Sans-serif;
  color: #002C74;
}
.custom-grid-slider-wrapper .slide-content {
  color: #002C74;
}
.custom-grid-slider-wrapper .slider-content-col {
  padding: 45px 0;
}
.custom-grid-slider-wrapper .slide-image-item img {
  border-radius: 12px;
  height: 100%;
}
.custom-grid-slider-wrapper .slider-arrow {
  border: none;
  padding: 8px;
  background: #D2D6DB;
}
.custom-grid-slider-wrapper .slider-arrow svg {
  color: #fff;
}
.custom-grid-slider-wrapper .slider-arrow:hover {
  background: #002C74;
}

@media screen and (min-width: 1200px) {
  .wide {
    overflow: hidden;
    width: 100%;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    margin-left: calc((100% - 1240px) / 2);
    max-width: none;
    flex-direction: initial !important;
  }
  .wide .e-con-inner {
    flex: 1 0 0;
    max-width: 100%;
  }
  .contains-wide-row .l {
    width: 50%;
    max-width: 665px;
  }
  .wide .r {
    width: auto;
    flex: 1 0 0;
  }
}
@media screen and (max-width: 1400px) and (min-width: 1200px) {
  .wide {
    margin-left: calc((100% - 1240px) / 2);
  }
}
.contact-us-form div.wpforms-container-full:not(:empty) {
  background: #fff;
}
.contact-us-form .wpforms-container .wpforms-form .wpforms-field-label {
  margin-bottom: 8px;
}
.contact-us-form .wpforms-container .wpforms-field {
  padding: 0;
  margin-bottom: 16px;
}
.contact-us-form div.wpforms-container-full button[type=submit] {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
}

.blog-category-filter-wrapper {
  margin: 0 0 2rem;
}
.blog-category-filter-wrapper .category-filter-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 0 0 1rem;
  border-bottom: 2px solid #E6EAF1;
}
@media (max-width: 768px) {
  .blog-category-filter-wrapper .category-filter-nav {
    gap: 0.5rem;
    justify-content: center;
  }
}
.blog-category-filter-wrapper .filter-btn {
  background: transparent;
  border: 1px solid #002C74;
  padding: 10px;
  border-radius: 8px;
  font-family: "Clash Display", Sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #5472A2;
  cursor: pointer;
  background: transparent;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}
.blog-category-filter-wrapper .filter-btn:hover {
  border-color: #002C74;
  background-color: #E9F6FD;
  color: #002C74;
}
.blog-category-filter-wrapper .filter-btn.active {
  background-color: #E9F6FD;
  border-color: #002C74;
  color: #002C74;
}
@media (max-width: 768px) {
  .blog-category-filter-wrapper .filter-btn {
    padding: 0.5rem 1rem;
    font-size: 13px;
  }
}
.blog-category-filter-wrapper .filter-loading {
  text-align: center;
  margin: 8px 0;
}
.blog-category-filter-wrapper .filter-loading .loading-spinner {
  width: 30px;
  height: 30px;
  border: 3px solid #E6EAF1;
  border-top: 3px solid #002C74;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 0 1rem;
}
.blog-category-filter-wrapper .filter-loading p {
  color: #8A9EBF;
  font-family: "Clash Display", Sans-serif;
  margin: 0;
}
.blog-category-filter-wrapper .filtered-posts-container.loading {
  opacity: 0.7;
  pointer-events: none;
}
.blog-category-filter-wrapper .posts-grid {
  display: grid;
  gap: 2rem;
}
.blog-category-filter-wrapper .posts-grid.grid {
  grid-template-columns: repeat(auto-fill, minmax(295px, 1fr));
}
@media (max-width: 768px) {
  .blog-category-filter-wrapper .posts-grid.grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.blog-category-filter-wrapper .posts-grid.list {
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.blog-category-filter-wrapper .post-item {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  margin-top: 20px;
}
.blog-category-filter-wrapper .post-item.fade-in {
  animation: fadeInUp 0.6s ease-out forwards;
}
.blog-category-filter-wrapper .post-item .post-thumbnail {
  position: relative;
  overflow: hidden;
  height: 200px;
}
.blog-category-filter-wrapper .post-item .post-thumbnail a {
  display: block;
  height: 100%;
}
.blog-category-filter-wrapper .post-item .post-thumbnail .post-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.blog-category-filter-wrapper .post-item .post-thumbnail:hover .post-image {
  transform: scale(1.05);
}
.blog-category-filter-wrapper .post-item .post-thumbnail .no-image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  background: linear-gradient(135deg, #E6EAF1 0%, #D2D6DB 100%);
  color: #8A9EBF;
  font-family: "Clash Display", Sans-serif;
  font-weight: 500;
}
.blog-category-filter-wrapper .post-item .post-content {
  padding: 12px;
  margin-top: 8px;
}
.blog-category-filter-wrapper .post-item .post-content .post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 0.75rem;
  font-size: 0.85rem;
}
.blog-category-filter-wrapper .post-item .post-content .post-meta .post-categories .category-tag {
  font-family: "Clash Display", Sans-serif;
  background: #E6EAF1;
  color: #002C74;
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 13px;
}
.blog-category-filter-wrapper .post-item .post-content .post-date {
  color: #5472A2;
  font-weight: 500;
  font-size: 13px;
}
.blog-category-filter-wrapper .post-item .post-content .reading-time {
  gap: 0.25rem;
  color: #5472A2;
  font-weight: 500;
  font-size: 13px;
}
.blog-category-filter-wrapper .post-item .post-content .reading-time .reading-time-icon {
  font-size: inherit;
}
.blog-category-filter-wrapper .post-item .post-content .post-title {
  margin: 0 0 1rem 0;
}
.blog-category-filter-wrapper .post-item .post-content .post-title a {
  font-family: "Clash Display", Sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #002C74;
  text-decoration: none;
  line-height: 20px;
  letter-spacing: -0.48px;
  transition: all 0.3s ease;
}
.blog-category-filter-wrapper .post-item .post-content .post-title a:hover {
  color: #0066cc;
}
.blog-category-filter-wrapper .post-item .post-content .post-excerpt {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.blog-category-filter-wrapper .post-item .post-content .post-author {
  color: #8A9EBF;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.blog-category-filter-wrapper .post-item .post-content .read-more-link {
  color: #002C74;
  font-weight: 600;
  text-decoration: none;
  font-family: "Clash Display", Sans-serif;
  transition: all 0.3s ease;
}
.blog-category-filter-wrapper .post-item .post-content .read-more-link:hover {
  color: #0066cc;
  text-decoration: underline;
}
.blog-category-filter-wrapper .load-more-container {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #E6EAF1;
}
.blog-category-filter-wrapper .load-more-btn {
  background-color: #002C74;
  color: white;
  border: 2px solid #002C74;
  padding: 1rem 2rem;
  border-radius: 6px;
  font-family: "Clash Display", Sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.blog-category-filter-wrapper .load-more-btn:hover:not(.loading) {
  background-color: transparent;
  color: #002C74;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 44, 116, 0.2);
}
.blog-category-filter-wrapper .load-more-btn.loading {
  opacity: 0.7;
  cursor: not-allowed;
}
.blog-category-filter-wrapper .load-more-btn.loading::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-left: 0.5rem;
}
.blog-category-filter-wrapper .filter-error {
  text-align: center;
  padding: 3rem 2rem;
  background: #f8f9fa;
  border-radius: 8px;
  border: 2px dashed #E6EAF1;
}
.blog-category-filter-wrapper .filter-error p {
  color: #666;
  font-size: 1.1rem;
  margin: 0;
}
.blog-category-filter-wrapper .results-count {
  margin-bottom: 1rem;
  color: #8A9EBF;
  font-style: italic;
  text-align: center;
}
@media (min-width: 1200px) {
  .blog-category-filter-wrapper .results-count {
    text-align: left;
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.blog-category-filter-wrapper .posts-grid.list .post-item {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 1.5rem;
  align-items: start;
}
.blog-category-filter-wrapper .posts-grid.list .post-item .post-thumbnail {
  height: 150px;
}
.blog-category-filter-wrapper .posts-grid.list .post-item .post-content {
  padding: 0;
  padding-left: 0;
}
@media (max-width: 768px) {
  .blog-category-filter-wrapper .posts-grid.list .post-item {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .blog-category-filter-wrapper .posts-grid.list .post-item .post-content {
    padding: 1rem;
  }
}

.recommended-posts-section {
  margin: 3rem 0 2rem;
  padding: 2rem 0;
  border-top: 1px solid #E6EAF1;
}
.recommended-posts-section .recommended-posts-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .recommended-posts-section .recommended-posts-header {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
}
.recommended-posts-section .recommended-posts-title {
  font-family: "Clash Display", Sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  color: #002C74;
  text-align: left;
  margin: 0;
}
@media (max-width: 768px) {
  .recommended-posts-section .recommended-posts-title {
    font-size: 20px;
    line-height: 26px;
  }
}
.recommended-posts-section .view-all-articles-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  font-family: "Clash Display", Sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #002C74;
  text-decoration: none;
  transition: all 0.3s ease;
}
.recommended-posts-section .view-all-articles-btn svg {
  transition: all 0.3s ease;
}
.recommended-posts-section .view-all-articles-btn:hover svg {
  transform: translateX(2px);
}
@media (max-width: 768px) {
  .recommended-posts-section .view-all-articles-btn {
    padding: 10px 16px;
    font-size: 13px;
  }
}
.recommended-posts-section .recommended-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
@media (max-width: 768px) {
  .recommended-posts-section .recommended-posts-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.recommended-posts-section .recommended-post-item {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.recommended-posts-section .recommended-post-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}
.recommended-posts-section .recommended-post-item .recommended-post-thumbnail {
  position: relative;
  overflow: hidden;
  height: 180px;
}
.recommended-posts-section .recommended-post-item .recommended-post-thumbnail a {
  display: block;
  height: 100%;
}
.recommended-posts-section .recommended-post-item .recommended-post-thumbnail .recommended-post-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.recommended-posts-section .recommended-post-item .recommended-post-thumbnail:hover .recommended-post-image {
  transform: scale(1.05);
}
.recommended-posts-section .recommended-post-item .recommended-post-thumbnail .recommended-no-image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  background: linear-gradient(135deg, #E6EAF1 0%, #D2D6DB 100%);
  color: #8A9EBF;
  font-family: "Clash Display", Sans-serif;
  font-weight: 500;
  font-size: 14px;
}
.recommended-posts-section .recommended-post-item .recommended-post-content {
  padding: 1.2rem;
}
.recommended-posts-section .recommended-post-item .recommended-post-content .recommended-post-meta {
  margin-bottom: 0.75rem;
}
.recommended-posts-section .recommended-post-item .recommended-post-content .recommended-post-meta .recommended-post-categories .recommended-category-tag {
  font-family: "Clash Display", Sans-serif;
  background: #E6EAF1;
  color: #002C74;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  margin-right: 0.5rem;
}
.recommended-posts-section .recommended-post-item .recommended-post-content .recommended-post-title {
  margin: 0 0 0.75rem 0;
}
.recommended-posts-section .recommended-post-item .recommended-post-content .recommended-post-title a {
  font-family: "Clash Display", Sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #002C74;
  text-decoration: none;
  line-height: 20px;
  letter-spacing: -0.32px;
  transition: all 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.recommended-posts-section .recommended-post-item .recommended-post-content .recommended-post-title a:hover {
  color: #0066cc;
}
.recommended-posts-section .recommended-post-item .recommended-post-content .recommended-post-excerpt {
  color: #666;
  line-height: 1.5;
  margin-bottom: 1rem;
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.recommended-posts-section .recommended-post-item .recommended-post-content .recommended-post-footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 13px;
}
.recommended-posts-section .recommended-post-item .recommended-post-content .recommended-post-footer .recommended-post-date {
  color: #5472A2;
  font-weight: 500;
}
.recommended-posts-section .recommended-post-item .recommended-post-content .recommended-post-footer .recommended-reading-time {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: #5472A2;
  font-weight: 500;
}
.recommended-posts-section .recommended-post-item .recommended-post-content .recommended-post-footer .recommended-reading-time .recommended-reading-time-icon {
  font-size: inherit;
}

@media (min-width: 1536px) {
  .custom-faq-container .container {
    max-width: 1420px;
  }
}
.custom-faq-container .container .faq-container {
  width: 70%;
}

.faq-top-container {
  background: #002C74;
  display: flex;
  padding: 64px 0;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.faq-top-container .faq-header {
  margin-bottom: 24px;
  text-align: center;
}
.faq-top-container .faq-header .faq-section-title {
  color: #D0ECFA;
  font-family: "Clash Display";
  font-size: 48px;
  font-weight: 600;
  line-height: 64px;
}
.faq-top-container .faq-header .faq-section-description {
  color: #D0ECFA;
  text-align: center;
  font-family: Avenir;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 34px;
}

@media (min-width: 1024px) {
  .faq-search-wrapper {
    margin: 0 67px;
  }
}
.faq-search-wrapper .faq-search-input {
  border-radius: 8px;
  background: #F2F4F8;
  color: #8A9EBF;
  font-family: Avenir;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px; /* 112.5% */
  padding: 15px 12px;
  border: none;
  box-shadow: none;
}
.faq-search-wrapper .faq-search-icon {
  top: 15px;
  right: 12px;
}

.faq-tabs-nav {
  margin-top: 30px;
  display: flex;
  gap: 16px;
  justify-content: center;
}
.faq-tabs-nav .faq-tab-btn {
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #D0ECFA;
  background: rgba(250, 253, 255, 0.1);
  color: #D0ECFA;
  font-family: "Clash Display";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 190%; /* 30.4px */
  letter-spacing: 1px;
}
.faq-tabs-nav .faq-tab-btn.active {
  color: #002C74;
  border: 1px solid #002C74;
  background: #D0ECFA;
}

.faq-tabs-content {
  padding: 80px 0;
}
.faq-tabs-content .faq-tab-panel {
  display: none;
}
.faq-tabs-content .faq-tab-panel.active {
  display: block;
}

.faq-category-section {
  margin-bottom: 40px;
}
.faq-category-section .faq-category-title {
  padding: 12px 16px;
  color: #002C74;
  font-family: "Clash Display";
  font-size: 32px;
  font-weight: 600;
  line-height: 42px;
  margin-bottom: 24px;
  border-left: 4px solid #002C74;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border-radius: 8px;
  border: 1px solid #F3F4F6;
  background: #FFFFFF;
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-item .faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  color: #002C74;
  font-family: "Clash Display";
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  transition: all 0.3s ease;
}
.faq-item .faq-question:hover {
  color: #0047AB;
}
.faq-item .faq-question .faq-toggle-icon {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq-item .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item .faq-answer .faq-answer-content {
  padding: 0 24px 20px 24px;
  color: #002C74;
  font-family: Avenir;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
.faq-item.active .faq-question {
  color: #002C74;
}
.faq-item.active .faq-question .faq-toggle-icon {
  transform: rotate(180deg);
}
.faq-item.active .faq-answer {
  max-height: 1000px;
}

.faq-no-results {
  text-align: center;
  padding: 40px 20px;
}
.faq-no-results p {
  color: #6B7280;
  font-family: Avenir;
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
}

.timeCode {
  color: #A0ABB8;
  font-family: Avenir;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px;
}

.job-form .wpforms-container {
  margin-top: 0;
}
.job-form .wpforms-container .wpforms-field .wpforms-field-label {
  color: #002C74;
  font-family: "Clash Display";
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 190%;
  letter-spacing: 1px;
}
.job-form .wpforms-container .wpforms-field .wpforms-field-label-inline {
  color: #002C74;
  font-family: Avenir;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
}
.job-form .wpforms-container .wpforms-field .wpforms-field-medium {
  border-radius: 8px;
  border: 1px solid #D1D5DB;
  background: #FFF;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.03);
  padding: 2px 16px;
  gap: 8px;
  height: 56px;
}
.job-form .wpforms-container .wpforms-field input[type=radio]:checked:before {
  border-color: #002C74;
  box-shadow: #002C74;
}
.job-form .wpforms-container .wpforms-field input[type=radio]:checked:after {
  background: #002C74;
}
.job-form .wpforms-container .wpforms-field .wpforms-uploader {
  display: flex;
  padding: 24px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  border-radius: 4px;
  border: 1px dashed #D2D6DB;
  background: #E9F6FD;
}
.job-form .wpforms-container .wpforms-field .modern-title {
  color: #002C74 !important;
  font-family: Avenir !important;
  font-size: 16px !important;
}
.job-form .wpforms-container .wpforms-field .modern-title span {
  display: block !important;
  margin-top: 8px !important;
  text-decoration: none !important;
}
.job-form .wpforms-container .wpforms-field .modern-title span:before {
  content: "Maximum file size allowed is 2MB, supported file formats include .doc, and .pdf.";
  display: block;
  font-size: 12px;
  color: #4D5761;
  margin-bottom: 8px;
}
.job-form .wpforms-container .wpforms-field svg {
  fill: #002C74;
}
.job-form .wpforms-container .wpforms-submit-container button[type=submit] {
  padding: 9px 40px;
  border-radius: 4px;
  background: #002C74 !important;
  color: #FFF;
  font-family: "Clash Display";
  font-size: 16px;
  font-weight: 600;
  line-height: 18px;
  letter-spacing: 1.28px;
}

.job-listings-wrapper .job-category-filter-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .job-listings-wrapper .job-category-filter-nav {
    gap: 0.5rem;
    margin-bottom: 2rem;
  }
}
.job-listings-wrapper .job-filter-btn {
  background: transparent;
  border: 1px solid #002C74;
  padding: 12px 24px;
  border-radius: 8px;
  font-family: "Clash Display", Sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #5472A2;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: flex;
  gap: 4px;
  align-items: center;
}
.job-listings-wrapper .job-filter-btn svg {
  margin-bottom: 2px;
}
.job-listings-wrapper .job-filter-btn:hover {
  border-color: #002C74;
  background-color: #E9F6FD;
  color: #002C74;
}
.job-listings-wrapper .job-filter-btn.active {
  background-color: #E9F6FD;
  border-color: #002C74;
  color: #002C74;
}
@media (max-width: 768px) {
  .job-listings-wrapper .job-filter-btn {
    padding: 10px 16px;
    font-size: 14px;
  }
}
.job-listings-wrapper .job-filter-loading {
  display: inline-flex;
  align-items: center;
  margin-left: 1rem;
}
.job-listings-wrapper .job-filter-loading .loading-spinner {
  width: 24px;
  height: 24px;
  border: 3px solid #E6EAF1;
  border-top: 3px solid #002C74;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
.job-listings-wrapper .jobs-container.loading {
  opacity: 0.6;
  pointer-events: none;
}
.job-listings-wrapper .jobs-grid {
  margin-bottom: 2rem;
}
.job-listings-wrapper .job-card {
  background: white;
  border-radius: 12px;
  border: 1px solid #E6EAF1;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.job-listings-wrapper .job-card .job-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4px;
}
.job-listings-wrapper .job-card .job-department {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.job-listings-wrapper .job-card .job-department .job-department-tag {
  background: #E9F6FD;
  color: #002C74;
  padding: 6px 12px;
  border-radius: 6px;
  font-family: "Clash Display", Sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 18px;
}
.job-listings-wrapper .job-card .job-posted-time {
  color: #25935F;
  font-family: Avenir;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  white-space: nowrap;
}
.job-listings-wrapper .job-card .job-title {
  margin: 0;
  font-family: "Clash Display", Sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  color: #002C74;
}
.job-listings-wrapper .job-card .job-title a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
}
.job-listings-wrapper .job-card .job-title a:hover {
  color: #0047AB;
}
@media (max-width: 768px) {
  .job-listings-wrapper .job-card .job-title {
    font-size: 20px;
    line-height: 28px;
  }
}
.job-listings-wrapper .job-card .job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
}
.job-listings-wrapper .job-card .job-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #4D6182;
  font-family: Avenir;
  font-size: 12px;
  font-weight: 500;
  line-height: 19px;
}
.job-listings-wrapper .job-card .job-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 4px;
}
.job-listings-wrapper .job-card .job-tags .job-tag {
  background: #F3F4F6;
  color: #4D5761;
  padding: 4px 10px;
  border-radius: 4px;
  font-family: Avenir;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
}
.job-listings-wrapper .job-card .job-description {
  color: #4D5761;
  font-family: Avenir;
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
  flex-grow: 1;
}
.job-listings-wrapper .job-card .job-card-footer {
  margin-top: auto;
  padding-top: 8px;
}
.job-listings-wrapper .job-card .job-apply-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #002C74;
  color: #FFFFFF;
  padding: 12px 24px;
  border-radius: 8px;
  font-family: "Clash Display", Sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid #002C74;
}
.job-listings-wrapper .job-card .job-apply-btn svg {
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.job-listings-wrapper .job-card.fade-in {
  animation: fadeInUp 0.6s ease-out forwards;
}
.job-listings-wrapper .job-load-more-container {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #E6EAF1;
}
.job-listings-wrapper .job-load-more-btn {
  background-color: #002C74;
  color: white;
  border: 2px solid #002C74;
  padding: 14px 32px;
  border-radius: 8px;
  font-family: "Clash Display", Sans-serif;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.job-listings-wrapper .job-load-more-btn:hover:not(.loading) {
  background-color: transparent;
  color: #002C74;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 44, 116, 0.2);
}
.job-listings-wrapper .job-load-more-btn.loading {
  opacity: 0.7;
  cursor: not-allowed;
}
.job-listings-wrapper .job-load-more-btn.loading::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-left: 0.5rem;
}
.job-listings-wrapper .no-jobs-found {
  padding: 27px 35px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #D2D6DB;
  display: flex;
  gap: 16px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.job-listings-wrapper .no-jobs-found:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 100%;
  background: #E5E7EB;
  opacity: 0.6;
  z-index: 1;
}
.job-listings-wrapper .no-jobs-found p {
  color: #002C74;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  font-family: Avenir;
}
.job-listings-wrapper .filter-error {
  text-align: center;
  padding: 3rem 2rem;
  background: #FEF2F2;
  border-radius: 8px;
  border: 2px dashed #FCA5A5;
}
.job-listings-wrapper .filter-error p {
  color: #991B1B;
  font-size: 1.1rem;
  margin: 0;
}

.single-careers .job-header {
  margin-bottom: 2rem;
}
.single-careers .job-header .job-meta-info {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: #F9FAFB;
  border-radius: 8px;
}
.single-careers .job-header .job-meta-info .job-info-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.single-careers .job-header .job-meta-info .job-info-item svg {
  color: #002C74;
  flex-shrink: 0;
}
.single-careers .job-header .job-meta-info .job-info-item .job-info-label {
  color: #8A9EBF;
  font-size: 13px;
  font-weight: 500;
  display: block;
}
.single-careers .job-header .job-meta-info .job-info-item .job-info-value {
  color: #002C74;
  font-family: "Clash Display", Sans-serif;
  font-size: 16px;
  font-weight: 600;
}

.ehf-header #masthead {
  position: sticky;
}
.ehf-header #masthead .lang-item a {
  color: #002C74;
  text-align: center;
  font-family: "Clash Display";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 25px;
}
.ehf-header #masthead .lang-item a:hover {
  color: #001F52;
}
.ehf-header #masthead .lang-item a:hover:after {
  content: none;
}

footer .lang-item a {
  font-family: "Clash Display";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 25px;
}
footer .lang-item a:hover:after {
  content: none;
}

.hfe-nav-menu .sub-arrow {
  font-size: 20px;
  transition: all 0.2s ease-in-out;
}

.hfe-nav-menu > .menu-item .sub-arrow i {
  font-family: "Font Awesome 6 Pro";
  font-weight: 300;
}
.hfe-nav-menu > .menu-item a:hover:after {
  content: "";
  width: calc(100% - 55px);
  height: 1px;
  background-color: #002C74 !important;
  position: absolute;
  bottom: 20px;
  left: 15px;
}
.hfe-nav-menu > .menu-item a:hover .sub-arrow {
  transform: rotate(180deg);
}
.hfe-nav-menu > .menu-item .sub-menu {
  padding: 24px;
}
.hfe-nav-menu > .menu-item .sub-menu a {
  padding: 12px !important;
  border-radius: 8px;
}
.hfe-nav-menu > .menu-item .sub-menu a[href="#label"] {
  pointer-events: none;
  font-family: Avenir !important;
  font-weight: 400 !important;
  font-size: 16px !important;
  line-height: 25px !important;
  color: #8A9EBF;
  padding: 0 !important;
  margin-bottom: 12px;
}
.hfe-nav-menu > .menu-item .sub-menu a:hover {
  background: #E9F6FD;
}
.hfe-nav-menu > .menu-item .sub-menu a:hover:after {
  content: none;
}
.hfe-nav-menu > .menu-item .sub-menu a:hover span:not(.sub-arrow) {
  text-decoration: underline;
}
.hfe-nav-menu > .menu-item .sub-menu a:hover .sub-arrow {
  transform: none;
}
.hfe-nav-menu > .menu-item .menu-item-has-children .sub-menu {
  min-width: 550px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.hfe-nav-menu > .menu-item .menu-item-has-children .sub-menu > .menu-item:first-child {
  grid-column: 1/-1;
}
@media (max-width: 768px) {
  .hfe-nav-menu > .menu-item .menu-item-has-children .sub-menu {
    min-width: initial;
    grid-template-columns: 1fr;
  }
  .hfe-nav-menu > .menu-item .menu-item-has-children .sub-menu > .menu-item:first-child {
    grid-column: auto;
  }
}
.hfe-nav-menu > .menu-item .menu-item-has-children#menu-item-503 .sub-menu {
  min-width: 805px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.hfe-nav-menu > .menu-item .menu-item-has-children#menu-item-503 .sub-menu > .menu-item:nth-child(5) {
  grid-column: 1/-1;
}
@media (max-width: 768px) {
  .hfe-nav-menu > .menu-item .menu-item-has-children#menu-item-503 .sub-menu {
    min-width: initial;
    grid-template-columns: 1fr;
  }
  .hfe-nav-menu > .menu-item .menu-item-has-children#menu-item-503 .sub-menu > .menu-item:nth-child(5) {
    grid-column: auto;
  }
}

footer {
  position: relative;
}
footer:before {
  content: "";
  position: absolute;
  height: 647.073px;
  width: 98vw;
  transform: rotate(-90deg);
  border-radius: 1437.666px;
  background: radial-gradient(223.69% 94.05% at 7.93% -30.77%, rgba(0, 255, 150, 0.2) 0%, rgba(0, 180, 208, 0.2) 25%, rgba(95, 28, 197, 0.2) 76%, rgba(7, 45, 112, 0.2) 94%);
  filter: blur(100px);
  top: -140px;
  left: 50%;
  transform: translate(-50%, 0);
  pointer-events: none;
}

/* Title Blocks */
.elementor-heading-title,
h1, h2, h3, h4 {
  font-weight: 700;
  margin: 0 0 12px 0;
  line-height: 1.2;
}

/* Description Blocks */
.elementor-widget-text-editor,
p, .elementor-section p, .elementor-column p {
  font-weight: 400;
  margin: 0 0 24px 0;
  font-size: 1.07em;
  line-height: 1.75;
}

/* Container for spacing */
.elementor-section, .elementor-container, .elementor-column {
  padding: 16px 0;
}

/* Responsive: Mobile Screens */
@media (max-width: 600px) {
  .elementor-heading-title,
  h1, h2, h3, h4 {
    font-size: 1.25em;
    margin-bottom: 8px;
  }
  .elementor-widget-text-editor,
  p, .elementor-section p, .elementor-column p {
    font-size: 1em;
    margin-bottom: 16px;
  }
  .elementor-section, .elementor-container, .elementor-column {
    padding: 8px 0;
  }
}
/* Responsive: Tablet Screens */
@media (min-width: 601px) and (max-width: 900px) {
  .elementor-heading-title,
  h1, h2, h3, h4 {
    font-size: 1.5em;
  }
  .elementor-widget-text-editor,
  p, .elementor-section p, .elementor-column p {
    font-size: 1.125em;
  }
}
/* Responsive: Desktop */
@media (min-width: 901px) {
  .elementor-heading-title,
  h1, h2, h3, h4 {
    font-size: 2em;
  }
  .elementor-widget-text-editor,
  p, .elementor-section p, .elementor-column p {
    font-size: 1.18em;
  }
}
/* Utility: Avoid duplication by targeting general Elementor widget/section classes */
.elementor-widget:not(.elementor-widget-image) {
  box-sizing: border-box;
}

.menu-item ._svg {
  width: 24px;
  margin-bottom: 1px;
}

.hfe-nav-menu .menu-item-has-children .menu-item-has-children .sub-menu {
  left: calc(100% + 25px);
}

[class*="!w-["] .elementor-button {
  width: 100% !important;
}

.elementor-button .elementor-button-icon svg {
  width: 24px;
}
.elementor-button:focus {
  background-color: #001840 !important;
}

.secondary-btn .elementor-button:focus {
  background-color: #E0F2FC !important;
  color: #001840 !important;
}

.elementor-counter-title {
  font-family: Avenir !important;
  margin-top: 12px !important;
}

footer .elementor-widget-container p {
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
  font-weight: inherit;
}
footer .elementor-widget-container p a:hover {
  text-decoration: underline;
}

/*# sourceMappingURL=aim-custom.css.map */
