body {
  font-family: 'Helvetica Neue', sans-serif;
  letter-spacing: 3%;
}

ul, ol {
    list-style-type: disc;
    margin-bottom: 15px;
    padding-left: 30px;
}

.flash-message,
[data-control="flash-message"] {
  background-color: #0f7644;
}

.helvetica-condensed {
  font-family: "HelveticaNeue Condensed";
}

.helvetica-condensed-bold {
  font-family: "HelveticaNeue-BoldCond";
}

.bg-transparent-black {
  background: #000000;
  background: linear-gradient(180deg, rgba(0, 0, 0, 1) 23%, rgba(0, 0, 0, 0) 100%);
}

.text-blue-900 {
  color: #103876;
}

.text-yellow-900 {
  color: #FCB815;
}

.bg-blue-900 {
  background-color: #103876;
}

.fade-line {
  opacity: 0;
  transform: translateY(8px); /* very subtle movement */
  transition:
    opacity 1.6s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-line.show {
  opacity: 1;
  transform: translateY(0);
}

.image-shadow {
  filter: drop-shadow(0px 1px 3px rgba(255, 255, 255, 0.25));
}

/* .header {
  backdrop-filter: blur(8px);
} */

.swiper-button-prev-custom,
.swiper-button-next-custom {
  background-color: #1e3a8a; /* blue-900 */
  color: #FCB815;
}

.swiper-button-disabled {
  background-color: #e5e7eb; /* gray-200 */
  color: #9ca3af; /* gray-400 */
  cursor: not-allowed;
}

.article-text p {
  padding-bottom: 15px;
}

.article-text h1,
.article-text h2,
.article-text h3,
.article-text h4,
.article-text h5 {
  font-family: "HelveticaNeue-BoldCond";
  color: #103876;
  padding-bottom: 1rem;
  padding-top: 1.2rem;
}

.article-text h1 {
  font-size: 3rem;
  line-height: 1;
}

.article-text h2 {
  font-size: 2.25rem;
  line-height: 2.5rem;
}

.article-text h3 {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.article-text h4 {
  font-size: 1.5rem;
  line-height: 2rem;
}

/* TIMELINE BASE */
.timeline {
  position: relative;
}

/* CENTER LINE */
.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  width: 2px;
  background: #d1d5db;
  top: 0;
  bottom: 0;
  transform: translateX(-50%);
}

/* ITEM */
.timeline-item {
  position: relative;
  width: 50%;
  padding: 40px 60px;
}

/* LEFT / RIGHT POSITION */
.timeline-item.left {
  left: 0;
}

.timeline-item.right {
  left: 50%;
}

/* CENTER ITEM */
.timeline-item.center {
  width: 100%;
  left: 0;
  text-align: center;
}

/* DOT (CENTERED PERFECTLY) */
.timeline-item::before {
  content: "";
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  background: #facc15;
  border-radius: 9999px;
  z-index: 10;
}

/* PULSE EFFECT */
.timeline-item::after {
  content: "";
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  background: rgba(250, 204, 21, 0.4);
  border-radius: 9999px;
  animation: pulse 1.6s infinite;
  z-index: 5;
}

/* CONNECTOR LINE */
.timeline-content {
  position: relative;
}

.timeline-content::before {
  content: "";
  position: absolute;
  top: 20px;
  width: 60px;
  height: 1px;
  background: #d1d5db;
}

/* CONNECTOR POSITION */
.timeline-item.left .timeline-content::before {
  right: -60px;
}

.timeline-item.right .timeline-content::before {
  left: -60px;
}

/* REMOVE CONNECTOR FOR CENTER */
.timeline-item.center .timeline-content::before {
  display: none;
}

/* PULSE ANIMATION */
@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  70% {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
  100% {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
}

@media only screen and (max-width: 1023px) {
  .tab-services .tab-content.hidden {
    display: flex !important;
  }
}

@keyframes whizolSpin {
  to {
    transform: rotate(360deg);
  }
}

.whizol-spinner {
  width: 16px;
  height: 16px;
  border-radius: 9999px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #ffffff;
  animation: whizolSpin 0.8s linear infinite;
}

@keyframes whizolFadeUp {
  from {
    opacity: 0;
    transform: translate3d(0, 12px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.whizol-fade-up {
  animation: whizolFadeUp 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.jax-flash-message.success {
    background: #117644 !important;
}

@media (prefers-reduced-motion: reduce) {
  .whizol-spinner {
    animation: none;
  }

  .whizol-fade-up {
    animation: none;
  }
}