@import url('theme-fonts/stylesheet.css');

:root {
  --bodyColor: #222222;
  --bodyBg: #fff;
  --whiteColor: #ffffff;
  --blackColor: #000000;
  --fontOpenSans: "Open Sans", sans-serif;
  --fontCormorantGaramond: "Open Sans", sans-serif;
}

/* *,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
} */

.eps-ms-section {
  padding: 60px 0px;
  font-family: 'DM Sans', sans-serif;
  background: transparent;
}

.eps-ms-eyebrow {
  display: block;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.72rem;
  color: #057B45;
  font-weight: 500;
  margin-bottom: 10px;
  font-family: 'DM Sans', sans-serif;
}

.eps-ms-heading {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #1a1a1a;
  text-align: center;
  line-height: 1.1;
  margin-bottom: 50px;
}

.eps-ms-heading-accent {
  color: #057B45;
}

.eps-ms-outer {
  position: relative;
  overflow: hidden;
}

.eps-ms-outer::before,
.eps-ms-outer::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50px;
  z-index: 3;
  pointer-events: none;
}


.eps-ms-track {
  display: flex;
  gap: 24px;
  transition: transform 0.55s cubic-bezier(0.77, 0, 0.175, 1);
  will-change: transform;
}

/* ── Card ── */
.eps-ms-card {
  flex: 0 0 calc(25% - 18px);
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  /* box-shadow: 0 8px 40px rgba(33, 214, 132, 0.1); */
  position: relative;
  cursor: default;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

@media (max-width: 1024px) {
  .eps-ms-card {
    flex: 0 0 calc(33.33% - 16px);
  }
}

@media (max-width: 768px) {
  .eps-ms-card {
    flex: 0 0 calc(50% - 12px);
  }
}

@media (max-width: 480px) {
  .eps-ms-card {
    flex: 0 0 100%;
  }
}

.eps-ms-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(5, 123, 69, 0.20);
}

/* ── Image wrapper ── */
.eps-ms-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 3.5;
  overflow: hidden;
}

.eps-ms-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    filter 0.55s ease;
  filter: grayscale(15%);
}

.eps-ms-card:hover .eps-ms-img-wrap img {
  transform: scale(1.08);
  filter: grayscale(0%);
}

.eps-ms-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(5, 123, 69, 0.55) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.eps-ms-card:hover .eps-ms-img-wrap::after {
  opacity: 1;
}

.eps-ms-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  background: #057B45;
  color: #ffffff;
  border-radius: 50%;
  font-size: 0.68rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  letter-spacing: 0.05em;
  font-family: 'DM Sans', sans-serif;
  line-height: 1;
}

.eps-ms-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.05em;
  user-select: none;
}

/* ── Card info ── */
.eps-ms-info {
  padding: 22px 20px 24px;
  border-top: 3px solid #057B45;
  background: #F9F9F9;
  position: relative;
}

.eps-ms-info::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 20px;
  width: 40px;
  height: 3px;
  background: #c9a84c;
  border-radius: 0 0 4px 4px;
}

.eps-ms-name {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
  margin-bottom: 7px;
}

.eps-ms-role {
  display: block;
  color: #057B45;
  font-weight: 500;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-bottom: 4px;
  font-family: 'DM Sans', sans-serif;
}

.eps-ms-org {
  display: block;
  font-size: 0.78rem;
  color: #6b7a6e;
  line-height: 1.55;
  font-weight: 400;
  font-family: 'DM Sans', sans-serif;
}

/* ── Navigation ── */
.eps-ms-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.eps-ms-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #057B45;
  background: transparent;
  color: #057B45;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, color 0.25s, transform 0.2s;
  outline: none;
  padding: 0;
  line-height: 1;
  font-size: 0;
}

.eps-ms-btn:hover {
  background: #057B45;
  color: #ffffff;
  transform: scale(1.08);
}

.eps-ms-btn:disabled {
  opacity: 0.3;
  pointer-events: none;
}

.eps-ms-btn svg {
  display: block;
  flex-shrink: 0;
}

.eps-ms-dots-row {
  display: flex;
  gap: 8px;
  align-items: center;
}

.eps-ms-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cdd6d0;
  cursor: pointer;
  border: none;
  outline: none;
  padding: 0;
  transition: background 0.25s, width 0.3s, border-radius 0.3s;
}

.eps-ms-dot-active {
  background: #057B45;
  width: 24px;
  border-radius: 4px;
}



.espc-wic-wrap,
.espc-wic-wrap *,
.espc-wic-wrap *::before,
.espc-wic-wrap *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ── Outer column wrapper ── */
.espc-wic-wrap {
  position: relative;
  width: 100%;
  /* max-width: 480px; */
  padding: 40px 30px 60px 30px;
  font-family: 'DM Sans', sans-serif;
}


.espc-wic-bg-block {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 55%;
  height: 55%;
  background: #057B45;
  border-radius: 4px 20px 4px 4px;
  z-index: 0;
  transform: rotate(-2deg) translateY(10px);
  opacity: 0.12;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.espc-wic-wrap:hover .espc-wic-bg-block {
  opacity: 0.2;
  transform: rotate(-1deg) translateY(6px);
}

/* gold accent square (top-right) */
.espc-wic-gold-block {
  position: absolute;
  top: 20px;
  right: 10px;
  width: 90px;
  height: 90px;
  background: #c9a84c;
  border-radius: 16px 4px 16px 4px;
  z-index: 0;
  opacity: 0.18;
  transform: rotate(8deg);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.espc-wic-wrap:hover .espc-wic-gold-block {
  opacity: 0.30;
  transform: rotate(5deg) scale(1.05);
}

/* ── Green vertical stripe (left edge accent) ── */
.espc-wic-stripe {
  position: absolute;
  top: 60px;
  left: 14px;
  width: 4px;
  height: calc(100% - 120px);
  background: linear-gradient(to bottom, #057B45, #c9a84c, transparent);
  border-radius: 2px;
  z-index: 1;
  opacity: 0.5;
}

/* ────────────────────────────────────────────
   MAIN PHOTO — layered card look
──────────────────────────────────────────── */
.espc-wic-photo-stack {
  position: relative;
  z-index: 2;
  margin-bottom: 0;
}

/* shadow card behind the photo */
.espc-wic-photo-stack::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 14px;
  right: -14px;
  bottom: -14px;
  background: #057B45;
  border-radius: 24px 4px 24px 4px;
  z-index: -1;
  opacity: 0.25;
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.espc-wic-wrap:hover .espc-wic-photo-stack::before {
  opacity: 0.45;
  transform: translate(4px, 4px);
}

/* thin border frame */
.espc-wic-photo-stack::after {
  content: '';
  position: absolute;
  inset: -6px;
  border: 2px solid #057B45;
  border-radius: 28px 6px 28px 6px;
  opacity: 0;
  z-index: 3;
  transition: opacity 0.45s ease;
  pointer-events: none;
}

.espc-wic-wrap:hover .espc-wic-photo-stack::after {
  opacity: 0.6;
}

/* the actual photo */
.espc-wic-photo {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top center;
  border-radius: 20px 4px 20px 4px;
  position: relative;
  z-index: 2;
  filter: grayscale(10%);
  transition: filter 0.5s ease, transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.espc-wic-wrap:hover .espc-wic-photo {
  filter: grayscale(0%);
  transform: scale(1.02) translateY(-4px);
}

/* placeholder (remove when using real photo) */
.espc-wic-photo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 4 / 5;
  background: linear-gradient(160deg, #e8f5ef 0%, #c5e5d5 100%);
  border-radius: 20px 4px 20px 4px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  font-weight: 700;
  color: #057B45;
  opacity: 0.5;
  position: relative;
  z-index: 2;
}

/* ────────────────────────────────────────────
   DESIGNATION CARD — floats over photo
──────────────────────────────────────────── */
.espc-wic-card {
  position: absolute;
  bottom: -28px;
  left: -10px;
  right: 20px;
  z-index: 4;
  background: #057B45;
  border-radius: 14px;
  padding: 18px 20px 16px;
  box-shadow: 0 12px 40px rgba(5, 123, 69, 0.35);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.4s ease;
}

.espc-wic-wrap:hover .espc-wic-card {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(5, 123, 69, 0.45);
}

/* gold top-border accent on card */
.espc-wic-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20px;
  width: 50px;
  height: 3px;
  background: #c9a84c;
  border-radius: 0 0 3px 3px;
}

.espc-wic-card-name {
  display: block;
  font-family: var(--fontOpenSans);
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 8px;
}

.espc-wic-card-line {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
  font-weight: 400;
}

/* ── Small floating badge (top-right of photo) ── */
.espc-wic-badge {
  position: absolute;
  top: -12px;
  right: -12px;
  z-index: 5;
  width: 60px;
  height: 60px;
  background: #c9a84c;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.45);
  transition: transform 0.4s ease;
}

.espc-wic-wrap:hover .espc-wic-badge {
  transform: rotate(15deg) scale(1.1);
}

.espc-wic-badge-icon {
  font-size: 1.3rem;
  line-height: 1;
}

.espc-wic-badge-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.45rem;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 2px;
}

/* ── Dots pattern (decorative, bottom-right) ── */
.espc-wic-dots {
  position: absolute;
  bottom: 10px;
  right: 0px;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, 6px);
  gap: 7px;
  opacity: 0.25;
  transition: opacity 0.4s ease;
}

.espc-wic-wrap:hover .espc-wic-dots {
  opacity: 0.45;
}

.espc-wic-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #057B45;
}

/* ── Floating green ring (top-left) ── */
.espc-wic-ring {
  position: absolute;
  top: 10px;
  left: 0px;
  width: 70px;
  height: 70px;
  border: 3px solid #057B45;
  border-radius: 50%;
  opacity: 0.12;
  z-index: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.espc-wic-wrap:hover .espc-wic-ring {
  opacity: 0.25;
  transform: scale(1.1);
}


.schedule-sec h2 {
  margin: 0px !important;
  padding-top: 60px;
  padding-bottom: 20px;
}


/* ── Shared keyframes ── */
@keyframes ckt-fade-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cwsa-fade-in {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes ckt-line-grow {
  from {
    width: 0;
  }

  to {
    width: 48px;
  }
}

@keyframes cwsa-pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(5, 123, 69, 0.25);
  }

  70% {
    box-shadow: 0 0 0 12px rgba(5, 123, 69, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(5, 123, 69, 0);
  }
}

@keyframes ckt-float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* ======================================================
   SECTION 1 — KEY TOPICS
====================================================== */

.ckt-section {
  width: 100%;
  padding: 80px 20px;
  font-family: 'DM Sans', sans-serif;
  position: relative;
  overflow: hidden;
}

/* Background mesh texture */
.ckt-section::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(5, 123, 69, 0.07) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.ckt-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.ckt-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ── Two-column layout: topics left, image right ── */
.ckt-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 900px) {
  .ckt-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ckt-img-col {
    order: -1;
  }
}

/* ── Topic list ── */
.ckt-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ckt-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: #ffffff;
  border-radius: 12px;
  border-left: 4px solid transparent;
  box-shadow: 0 2px 16px rgba(5, 123, 69, 0.07);
  cursor: default;
  transition: border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease,
    background 0.3s ease;
  opacity: 0;
  animation: ckt-fade-up 0.55s ease forwards;
}

/* stagger animation delays */
.ckt-item:nth-child(1) {
  animation-delay: 0.10s;
}

.ckt-item:nth-child(2) {
  animation-delay: 0.18s;
}

.ckt-item:nth-child(3) {
  animation-delay: 0.26s;
}

.ckt-item:nth-child(4) {
  animation-delay: 0.34s;
}

.ckt-item:nth-child(5) {
  animation-delay: 0.42s;
}

.ckt-item:nth-child(6) {
  animation-delay: 0.50s;
}

.ckt-item:hover {
  border-left-color: #057B45;
  box-shadow: 0 8px 32px rgba(5, 123, 69, 0.14);
  transform: translateX(6px);
  background: #f7fcf9;
}

.ckt-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #057B45, #07a85e);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.ckt-item:hover .ckt-icon {
  transform: rotate(-8deg) scale(1.1);
}

.ckt-icon svg {
  width: 18px;
  height: 18px;
  stroke: #ffffff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ckt-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  color: #1a2e22;
  line-height: 1.45;
  padding-top: 8px;
}

/* ── Image column ── */
.ckt-img-col {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ckt-img-stack {
  position: relative;
  width: 100%;
  max-width: 400px;
}

/* floating shape behind image */
.ckt-img-stack::before {
  content: '';
  position: absolute;
  top: 20px;
  left: -20px;
  right: 20px;
  bottom: -20px;
  background: linear-gradient(135deg, #057B45, #07a85e);
  border-radius: 24px 4px 24px 4px;
  opacity: 0.18;
  z-index: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.ckt-img-stack:hover::before {
  opacity: 0.30;
  transform: translate(4px, 4px);
}

/* gold corner accent */
.ckt-img-stack::after {
  content: '';
  position: absolute;
  bottom: -14px;
  right: -14px;
  width: 80px;
  height: 80px;
  background: #c9a84c;
  border-radius: 4px 16px 4px 4px;
  z-index: 0;
  opacity: 0.3;
  transition: opacity 0.4s ease;
}

.ckt-img-stack:hover::after {
  opacity: 0.55;
}

.ckt-img {
  display: block;
  width: 100%;
  border-radius: 20px 4px 20px 4px;
  object-fit: cover;
  aspect-ratio: 4 / 4.5;
  position: relative;
  z-index: 1;
  filter: grayscale(8%) brightness(1.02);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    filter 0.5s ease,
    box-shadow 0.5s ease;
  box-shadow: 0 12px 40px rgba(5, 123, 69, 0.15);
  animation: ckt-float 6s ease-in-out infinite;
}

.ckt-img-stack:hover .ckt-img {
  transform: scale(1.03) translateY(-4px);
  filter: grayscale(0%) brightness(1.05);
  box-shadow: 0 20px 55px rgba(5, 123, 69, 0.25);
  animation-play-state: paused;
}

/* floating label on image */
.ckt-img-label {
  position: absolute;
  bottom: 20px;
  left: -10px;
  z-index: 3;
  background: #057B45;
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 6px 20px rgba(5, 123, 69, 0.3);
  transition: transform 0.3s ease;
}

.ckt-img-stack:hover .ckt-img-label {
  transform: translateX(5px);
}

.ckt-img-label::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #c9a84c;
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
  animation: cwsa-pulse-ring 2s infinite;
}

/* dot grid decoration */
.ckt-dots-grid {
  position: absolute;
  top: -10px;
  right: -10px;
  display: grid;
  grid-template-columns: repeat(4, 6px);
  gap: 7px;
  z-index: 0;
  opacity: 0.2;
}

.ckt-dots-grid span {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #057B45;
}

.cwsa-section {
  width: 100%;
  padding: 80px 20px;
  font-family: 'DM Sans', sans-serif;
  position: relative;
  overflow: hidden;
  background: #ffffff;
}

/* subtle diagonal stripe background */
.cwsa-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(-55deg,
      rgba(5, 123, 69, 0.025) 0px,
      rgba(5, 123, 69, 0.025) 1px,
      transparent 1px,
      transparent 40px);
  pointer-events: none;
  z-index: 0;
}

.cwsa-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ── Attendee grid ── */
.cwsa-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

@media (max-width: 1100px) {
  .cwsa-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 860px) {
  .cwsa-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .cwsa-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 380px) {
  .cwsa-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Each attendee card ── */
.cwsa-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 16px 22px;
  background: #ffffff;
  border-radius: 16px;
  border: 1.5px solid #e8f0eb;
  box-shadow: 0 4px 20px rgba(5, 123, 69, 0.06);
  cursor: default;
  overflow: hidden;
  opacity: 0;
  animation: cwsa-fade-in 0.5s ease forwards;
  transition: border-color 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.35s ease;
}

/* stagger */
.cwsa-card:nth-child(1) {
  animation-delay: 0.05s;
}

.cwsa-card:nth-child(2) {
  animation-delay: 0.10s;
}

.cwsa-card:nth-child(3) {
  animation-delay: 0.15s;
}

.cwsa-card:nth-child(4) {
  animation-delay: 0.20s;
}

.cwsa-card:nth-child(5) {
  animation-delay: 0.25s;
}

.cwsa-card:nth-child(6) {
  animation-delay: 0.30s;
}

.cwsa-card:nth-child(7) {
  animation-delay: 0.35s;
}

.cwsa-card:nth-child(8) {
  animation-delay: 0.40s;
}

.cwsa-card:nth-child(9) {
  animation-delay: 0.45s;
}

.cwsa-card:nth-child(10) {
  animation-delay: 0.50s;
}

/* green fill on hover */
.cwsa-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #057B45 0%, #07a85e 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 0;
  border-radius: 16px;
}

.cwsa-card:hover {
  border-color: #057B45;
  box-shadow: 0 12px 36px rgba(5, 123, 69, 0.20);
  transform: translateY(-6px);
}

.cwsa-card:hover::after {
  opacity: 1;
}

/* icon bubble */
.cwsa-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(5, 123, 69, 0.10), rgba(5, 123, 69, 0.04));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
  transition: background 0.35s ease, transform 0.35s ease;
}

.cwsa-card:hover .cwsa-icon-wrap {
  background: rgba(255, 255, 255, 0.18);
  transform: scale(1.12);
  animation: cwsa-pulse-ring 1.5s infinite;
}

.cwsa-icon-wrap svg {
  width: 26px;
  height: 26px;
  stroke: #057B45;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.35s ease;
}

.cwsa-card:hover .cwsa-icon-wrap svg {
  stroke: #ffffff;
}

.cwsa-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: #1a2e22;
  line-height: 1.4;
  position: relative;
  z-index: 1;
  transition: color 0.35s ease;
}

.cwsa-card:hover .cwsa-label {
  color: #ffffff;
}

/* ── Stats bar below grid ── */
.cwsa-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 60px;
  flex-wrap: wrap;
}

.cwsa-stat {
  text-align: center;
  opacity: 0;
  animation: ckt-fade-up 0.6s ease forwards;
}

.cwsa-stat:nth-child(1) {
  animation-delay: 0.6s;
}

.cwsa-stat:nth-child(2) {
  animation-delay: 0.7s;
}

.cwsa-stat:nth-child(3) {
  animation-delay: 0.8s;
}

.cwsa-stat-number {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 700;
  color: #057B45;
  line-height: 1;
}

.cwsa-stat-label {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  color: #6b7a6e;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 4px;
}

/* ── Divider between stats ── */
.cwsa-stat-divider {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, #057B45, transparent);
  opacity: 0.3;
  align-self: center;
}

@media (max-width: 600px) {
  .cwsa-stat-divider {
    display: none;
  }
}


@keyframes espc-spo-fade-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes espc-spo-line-in {
  from {
    width: 0;
    opacity: 0;
  }

  to {
    width: 40px;
    opacity: 1;
  }
}

/* ── Section wrapper ── */
.espc-spo-section,
.espc-spo-section *,
.espc-spo-section *::before,
.espc-spo-section *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.espc-spo-section {
  width: 100%;
  padding: 30px 20px 120px;
  background: #f9f9f9;
  font-family: 'DM Sans', sans-serif;
  position: relative;
  overflow: hidden;
}

.sponser-sec {
  padding-top: 100px !important;
}

/* very subtle warm noise wash — bottom half */
.espc-spo-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 260px;
  background: linear-gradient(to top, #f9faf8, transparent);
  pointer-events: none;
  z-index: 0;
}

.espc-spo-inner {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ── Sub-label below heading ── */
.espc-spo-sublabel {
  display: block;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 400;
  color: #8a9890;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: -28px;
  /* tucks just below the main heading */
  margin-bottom: 48px;
  opacity: 0;
  animation: espc-spo-fade-up 0.5s ease 0.1s forwards;
}

/* ── Contact person card (top) ── */
.espc-spo-person {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 32px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e4ece8;
  margin-bottom: 16px;
  opacity: 0;
  animation: espc-spo-fade-up 0.55s ease 0.2s forwards;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.espc-spo-person:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.07);
  border-color: #c8d9cf;
}

.espc-spo-avatar {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 50%;
  background: #e8f0eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #057B45;
  letter-spacing: 0.02em;
  transition: background 0.3s ease;
}

.espc-spo-person:hover .espc-spo-avatar {
  background: #d5e9dc;
}

.espc-spo-person-text {}

.espc-spo-person-intro {
  display: block;
  font-size: 0.78rem;
  color: #9aaa9e;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 4px;
}

.espc-spo-person-name {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #1a2e22;
  line-height: 1.2;
}

.espc-spo-person-role {
  display: block;
  font-size: 0.8rem;
  color: #6b7a6e;
  font-weight: 400;
  margin-top: 3px;
}

/* ── Contact cards grid ── */
.espc-spo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

@media (max-width: 600px) {
  .espc-spo-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Base contact card ── */
.espc-spo-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 24px;
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid #e4ece8;
  text-decoration: none;
  cursor: pointer;
  opacity: 0;
  transition: box-shadow 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease,
    background 0.3s ease;
}

.espc-spo-card:nth-child(1) {
  animation: espc-spo-fade-up 0.5s ease 0.32s forwards;
}

.espc-spo-card:nth-child(2) {
  animation: espc-spo-fade-up 0.5s ease 0.40s forwards;
}

.espc-spo-card:hover {
  border-color: #b5d4c2;
  box-shadow: 0 8px 28px rgba(5, 123, 69, 0.09);
  transform: translateY(-3px);
  background: #fafcfb;
}

/* ── Full-width WhatsApp card ── */
.espc-spo-card-wide {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 28px;
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid #e4ece8;
  text-decoration: none;
  cursor: pointer;
  opacity: 0;
  animation: espc-spo-fade-up 0.5s ease 0.48s forwards;
  transition: box-shadow 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease,
    background 0.3s ease;
}

.espc-spo-card-wide:hover {
  border-color: #b5d4c2;
  box-shadow: 0 8px 28px rgba(5, 123, 69, 0.09);
  transform: translateY(-3px);
  background: #fafcfb;
}

/* ── Icon circle ── */
.espc-spo-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  background: #f0f5f2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.3s ease;
}

.espc-spo-card:hover .espc-spo-icon,
.espc-spo-card-wide:hover .espc-spo-icon {
  background: #e0ede6;
  transform: scale(1.08) rotate(-5deg);
}

.espc-spo-icon svg {
  width: 20px;
  height: 20px;
  stroke: #057B45;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── Card text ── */
.espc-spo-card-body {}

.espc-spo-card-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #9aaa9e;
  margin-bottom: 4px;
}

.espc-spo-card-value {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  color: #1a2e22;
  transition: color 0.3s ease;
}

.espc-spo-card:hover .espc-spo-card-value,
.espc-spo-card-wide:hover .espc-spo-card-value {
  color: #057B45;
}

.espc-spo-card-sub {
  display: block;
  font-size: 0.78rem;
  color: #6b7a6e;
  margin-top: 2px;
  font-weight: 400;
}

/* ── Arrow chevron on right ── */
.espc-spo-arrow {
  margin-left: auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid #dde8e2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.espc-spo-card:hover .espc-spo-arrow,
.espc-spo-card-wide:hover .espc-spo-arrow {
  background: #057B45;
  border-color: #057B45;
  transform: translateX(3px);
}

.espc-spo-arrow svg {
  width: 12px;
  height: 12px;
  stroke: #9aaa9e;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.3s ease;
}

.espc-spo-card:hover .espc-spo-arrow svg,
.espc-spo-card-wide:hover .espc-spo-arrow svg {
  stroke: #ffffff;
}

/* ── Thin divider line ── */
.espc-spo-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 36px 0 28px;
  opacity: 0;
  animation: espc-spo-fade-up 0.5s ease 0.55s forwards;
}

.espc-spo-divider::before,
.espc-spo-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #e4ece8;
}

.espc-spo-divider-text {
  font-size: 0.7rem;
  color: #b0bdb5;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  white-space: nowrap;
  font-weight: 500;
}

/* ── Bottom note ── */
.espc-spo-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.78rem;
  color: #9aaa9e;
  text-align: center;
  opacity: 0;
  animation: espc-spo-fade-up 0.5s ease 0.60s forwards;
}

.espc-spo-note-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #057B45;
  opacity: 0.5;
  flex-shrink: 0;
}

.slider-content h2 {
  color: #fff;
  font-size: 24px;
}

.about-section .container {
  padding-right: 0px !important;
  padding-left: opx !important;
}

.visit-dubai-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px 60px;
}

/* ── Section blocks ── */
.info-section {
  margin-bottom: 50px;
}

.custom-head {
  font-size: 1.4rem;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid currentColor;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: 'Poppins', sans-serif !important;
}


.info-section p {
  margin-bottom: 12px;
}

/* ── Image placeholder styling ── */
.section-image {
  width: 100%;
  max-height: 380px;
  object-fit: cover;
  display: block;
  margin: 18px 0 22px;
  border-radius: 4px;
}

.image-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin: 18px 0 22px;
}

.image-row img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}

/* ── Highlights list ── */
.info-list {
  list-style: disc;
  padding-left: 22px;
  margin-bottom: 12px;
}

.info-list li {
  margin-bottom: 6px;
}


.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}

@media (max-width: 680px) {
  .two-col {
    grid-template-columns: 1fr;
  }
}

@keyframes espc-tbu-fade-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes espc-tbu-pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.7);
  }
}

@keyframes espc-tbu-line-grow {
  from {
    width: 0;
    opacity: 0;
  }

  to {
    width: 40px;
    opacity: 1;
  }
}

@keyframes espc-tbu-shimmer {
  0% {
    background-position: -200% center;
  }

  100% {
    background-position: 200% center;
  }
}

/* ── Wrapper ── */
.espc-tbu-wrap,
.espc-tbu-wrap *,
.espc-tbu-wrap *::before,
.espc-tbu-wrap *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.espc-tbu-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  font-family: 'DM Sans', sans-serif;
}

/* ── Card ── */
.espc-tbu-card {
  position: relative;
  width: 100%;
  max-width: 480px;
  padding: 48px 40px 42px;
  background: #ffffff;
  border-radius: 20px;
  border: 1.5px solid #e4ece8;
  box-shadow: 0 4px 30px rgba(5, 123, 69, 0.07);
  overflow: hidden;
  text-align: center;
  opacity: 0;
  animation: espc-tbu-fade-up 0.6s ease 0.1s forwards;
  transition: box-shadow 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
  cursor: default;
}

.espc-tbu-card:hover {
  box-shadow: 0 12px 48px rgba(5, 123, 69, 0.13);
  border-color: #b5d4c2;
  transform: translateY(-4px);
}

/* top green accent bar */
.espc-tbu-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #057B45;
  border-radius: 0 0 4px 4px;
  animation: espc-tbu-line-grow 0.5s ease 0.5s both;
}

/* very subtle diagonal pattern */
.espc-tbu-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(-45deg,
      rgba(5, 123, 69, 0.018) 0px,
      rgba(5, 123, 69, 0.018) 1px,
      transparent 1px,
      transparent 28px);
  pointer-events: none;
  border-radius: 20px;
  z-index: 0;
}

/* ── Pulsing dot indicator ── */
.espc-tbu-dot-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: espc-tbu-fade-up 0.5s ease 0.3s forwards;
}

.espc-tbu-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #057B45;
}

.espc-tbu-dot:nth-child(1) {
  animation: espc-tbu-pulse-dot 1.8s ease 0.0s infinite;
}

.espc-tbu-dot:nth-child(2) {
  animation: espc-tbu-pulse-dot 1.8s ease 0.3s infinite;
  opacity: 0.5;
  transform: scale(0.75);
}

.espc-tbu-dot:nth-child(3) {
  animation: espc-tbu-pulse-dot 1.8s ease 0.6s infinite;
  opacity: 0.25;
  transform: scale(0.55);
}

/* ── Main heading ── */
.espc-tbu-heading {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #1a2e22;
  line-height: 1.15;
  letter-spacing: 0.01em;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: espc-tbu-fade-up 0.55s ease 0.35s forwards;
}

/* shimmer on heading text */
.espc-tbu-heading-shine {
  display: inline;
  background: linear-gradient(90deg,
      #1a2e22 30%,
      #057B45 50%,
      #1a2e22 70%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: espc-tbu-shimmer 4s linear 1.2s infinite;
}

/* ── Divider ── */
.espc-tbu-rule {
  width: 40px;
  height: 2px;
  background: linear-gradient(to right, #057B45, #c9a84c);
  border-radius: 2px;
  margin: 0 auto 16px;
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: espc-tbu-fade-up 0.5s ease 0.45s forwards;
}

/* ── Sub text ── */
.espc-tbu-sub {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  color: #8a9890;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: espc-tbu-fade-up 0.5s ease 0.55s forwards;
}

/* ── Bottom corner accents ── */
.espc-tbu-corner-tl,
.espc-tbu-corner-br {
  position: absolute;
  width: 28px;
  height: 28px;
  z-index: 1;
  opacity: 0.25;
  transition: opacity 0.35s ease;
}

.espc-tbu-card:hover .espc-tbu-corner-tl,
.espc-tbu-card:hover .espc-tbu-corner-br {
  opacity: 0.55;
}

.espc-tbu-corner-tl {
  top: 16px;
  left: 16px;
  border-top: 2px solid #057B45;
  border-left: 2px solid #057B45;
  border-radius: 4px 0 0 0;
}

.espc-tbu-corner-br {
  bottom: 16px;
  right: 16px;
  border-bottom: 2px solid #c9a84c;
  border-right: 2px solid #c9a84c;
  border-radius: 0 0 4px 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 15px;
}

.footer-links a {
  text-decoration: none;
  color: #bbb;
  font-size: 15px;
}

.footer-links a+a::before {
  content: "|";
  margin-right: 8px;
}

@media (max-width:768px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

.inner-sec {
  background-image: url(../img/others/dubai-banner.jpg) !important;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
  width: 100%;
  height: 540px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}


@media (max-width:991px) {
  .page-header {
    height: 330px;
    background-position: center 60%;
  }
}

@media (max-width:768px) {
  .page-header {
    height: 230px;
    background-position: center 55%;
    background-attachment: scroll;
  }
}


.dl-slider,
.dl-slider .single-slide,
.dl-slider .bg-img {
  height: 650px;
  background-size: cover;
  background-position: center 65%;
}



@media (min-width:1400px) {

  .dl-slider,
  .dl-slider .single-slide,
  .dl-slider .bg-img {
    width: 100%;
    background-size: 100% 100%;
    background-position: top center;
    height: 1200px;
  }
}


@media (max-width:1200px) {

  .dl-slider,
  .dl-slider .single-slide,
  .dl-slider .bg-img {

    background-size: cover;
    background-position: center 80%;
  }
}


@media (max-width:991px) {

  .dl-slider,
  .dl-slider .single-slide,
  .dl-slider .bg-img {
    width: 100%;
    background-size: 100% 100%;
    background-position: top center;
    height: 400px;
  }

}

@media (max-width:768px) {
  .dl-slider {
    height: 230px;
    background-position: center 55%;
    background-attachment: scroll;
  }

  .dl-slider .single-slide {
    height: 230px;
    background-position: center 55%;
    background-attachment: scroll;
  }
}

@media (max-width:991px) {

  .slider-content .heading {
    font-size: 14px;
  }

}

@media (max-width:768px) {
  .dl-slider .bg-img {
    height: 230px;
    background-position: center 55%;
    background-attachment: scroll;
  }


  .slider-content .heading {
    font-size: 14px;
  }
}


.more-text {
  display: none;
}

.about-wrap.expanded .more-text {
  display: inline;
}

.about-wrap.expanded .col-lg-5 {
  margin-top: 30px;
}

.section-heading p {
  white-space: normal;
}

.sign {
  min-height: 50px;
}


@media (max-width: 768px) {

  .slider-content-wrap {
    justify-content: center !important;
  }

  .banner-text {
    margin: 0 auto;
  }

}

@media (max-width:768px) {
  .banner-text .heading {
    font-size: 12px;
    line-height: 1.3;
  }

  .header-two {
    margin: 0px;
    background-color: #fff;

  }

  .mobile-menu-icon {
    margin-right: 20px;
  }

}

.widget-contact li span a {
  color: #ddd;
}

.banner {
  position: relative;
  width: 100%;
}

.banner img {
  width: 100%;
  height: auto;
  display: block;
}

.banner .register-link {
  position: absolute;
  top: 82%;
  left: 3%;
  width: 13%;
  height: 7%;
  display: block;
  cursor: pointer;
}

.physio_committee .member .image {
  display: flex;
  justify-content: center;
  padding: 10px;
}

.circle-wrap {
  position: relative;
}

.circle-wrap img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 3px solid #45B3B9;
  box-sizing: border-box;
  background: #fff;
}

.circle-wrap::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: calc(100% + 5px);
  height: calc(100% + 5px);
  border-radius: 50%;
  border: 10px solid transparent;
  border-right-color: #107C43;
  transform: rotate(40deg);
}

.physio_committee .member .info {
  margin-top: 20px;
  text-align: center;
}

.physio_committee .member .info .name {
  font-size: 20px;
  text-transform: uppercase;
}

.slider_home .oc-prev,
.slider_home .oc-next {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: none;
  background: #107C43;
  color: #fff;
  font-size: 20px;
  z-index: 2;
  cursor: pointer;
  transition: 0.3s;
}

.slider_home .oc-prev:hover,
.slider_home .oc-next:hover {
  background: #107C43;
}

.slider_home .oc-prev {
  left: -40px;
}

.slider_home .oc-next {
  right: -40px;
}

.main-board {
  background: #fff;
  box-shadow: 2px 0px 32px rgba(0, 0, 0, 0.07);
  position: relative;
  margin-top: 30px;
  padding-bottom: 30px;
}

.main-board .nav-tabs {
  border-bottom: none;
}

.main-board .day {
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.05);
}

.main-board .day>li.active>a,
.main-board .day>li.active>a:focus,
.main-board .day>li.active>a:hover {
  background-color: #e91e63;
  color: #fff;
  border-radius: 0;
  border: none;
}

.main-board .day>li>a {
  color: #777777;
  padding: 8px 106.9px;
  margin-right: 0px;
  font-weight: 400;
  border: none;
  text-transform: uppercase;
  font-size: 20px;
  text-align: center;
  border-radius: 0;
}

.main-board .day>li>a span {
  font-size: 16px;
}

.main-board .day>li>a:focus,
.main-board .day>li>a:hover {
  background: #e91e63;
  color: #fff;
}

.column-1 {
  position: relative;
}

.column-1:before {
  position: absolute;
  content: "";
  left: 45px;
  top: 38px;
  bottom: 0;
  width: 4px;
  height: 96%;
  background: #efefef;
}

.column-1:after {
  position: absolute;
  content: "";
  left: 35px;
  bottom: -25px;
  width: 24px;
  height: 24px;
  background: #efefef;
  border-radius: 50%;
}

.column-1 .nav-pills li {
  text-align: left;
  float: none;
  margin-bottom: 34px;
}

.column-1 .nav-pills li a {
  background: #dddddd;
  color: #777777;
  border-radius: 0px;
  padding: 7px 10px;
  width: 120px;
  display: block;
  text-align: center;
}

.column-1 .nav-pills ul {
  margin-left: 40px;
}

.column-1 .nav-pills ul li {
  margin: 40px 35px;
  position: relative;
}

.column-1 .nav-pills ul li:after {
  position: absolute;
  content: "";
  left: -55px;
  top: 10px;
  bottom: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
}

.column-1 .nav-pills ul>li.color-1:after {
  background: #057b45;
}

.column-1 .nav-pills ul>li.color-2:after {
  background: #057b45;
}

.column-1 .nav-pills ul>li.color-3:after {
  background: #057b45;
}

.column-1 .nav-pills ul>li.color-4:after {
  background: #057b45;
}

.column-1 .nav-pills ul>li.color-5:after {
  background: #057b45;
}

.column-1 .nav-pills ul>li.color-6:after {
  background: #057b45;
}

.column-1 .nav-pills ul>li.color-7:after {
  background: #057b45;
}

.column-1 .nav-pills ul>li.color-8:after {
  background: #057b45;
}


.column-1 .nav-pills ul>li>a {
  background: #dddddd;
  color: #777777;
  border-radius: 0px;
  padding: 7px 10px;
  width: 140px;
  display: block;
  text-align: center;
  font-size: 12px !important;
}

.board {
  padding: 60px 60px 30px;
}

.board .button {
  position: relative;
  margin-top: -45px;
  text-align: center;
}

.board .button .btn-large {
  padding: 12px 0px;
  color: #fff;
  font-size: 16px;
  border-radius: 6px;
  width: 100%;
  display: flex;
  text-align: center;
  justify-content: center;
}

.board .button a img {
  margin-right: 12px;
}

.board .member {
  background: #efefef;
  padding: 34px 32px 10px 32px;
  margin-bottom: 42px;
  margin-top: 45px;
  border-radius: 6px;
  min-height: 160px;
}

@media(max-width:991px) {
  .board .member {
    min-height: auto;
  }
}

.board .member h4 {
  font-size: 18px;
  padding: 18px 0px;
}

.board .member p {
  font-size: 14px;
  line-height: 20px;
}

.board .member .bg-1 {
  background: #057b45;
}

.board .member .bg-2 {
  background: #057b45;
}

.board .member .bg-3 {
  background: #057b45;
}

.board .member .bg-4 {
  background: #057b45;
}

.board .member .bg-6 {
  background: #057b45;
}

.board .member .bg-7 {
  background: #057b45;
}


.board .jon p {
  margin: 40px 0;
}

.board .coffee {
  margin: 80px auto;
  padding: 15px 0px 60px 0px;
  width: 40px;
  background: #736357;
}

.board .coffee .coffee-icon {
  margin-bottom: 24px;
}

.board .coffee p {
  color: #fff;
}

.count_timer .count-down {
  margin: auto;
  padding: 20px 0px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.count_timer .flipdown.flipdown__theme-dark {
  font-family: var(--fontOpenSans);
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 600;
  text-align: center;
}

.count_timer .rotor-group-heading {
  margin-bottom: 10px;
  font-size: 16px;
}

.count_timer .count-down .flipdown {
  margin: auto;
  width: 100%;
  /* margin-top: 30px; */
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.count_timer .flipdown.flipdown__theme-dark .rotor-top,
.count_timer .flipdown.flipdown__theme-dark .rotor,
.count_timer .flipdown.flipdown__theme-dark .rotor-leaf-front {
  background-color: #18566c !important;
}

.count_timer .flipdown.flipdown__theme-dark .rotor-bottom {
  background-color: #007A43 !important;
}

@media (max-width: 550px) {
  .count_timer .count-down {
    width: 100%;
    flex-direction: column;
    /* padding: 10px; */
  }

  .who-attend .wt-icon-box-wraper.right {
    text-align: left;
  }

  .count_timer .flipdown.flipdown__theme-dark {
    font-size: 16px;
  }

  .count_timer .rotor-group-heading {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .count_timer .count-down .flipdown {
    margin-top: 20px;
    justify-content: center;
  }
}

.main-content {
  background: url('../img/others/memorial_bg.jpg') center center no-repeat;
  background-size: cover;
  padding: 120px 0;
}

.memorial-card {
  background: #fff;
  border-radius: 0;
  padding: 40px;
  margin-top: -140px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
  ;
}

.memorial-img img {
  width: 100%;
  height: auto;
  border-radius: 0;
}

.memorial-text p {
  margin-bottom: 10px;
  line-height: 1.5;
}

@media (max-width: 991px) {
  .main-content {
    padding: 100px 0;
  }

  .memorial-card {
    padding: 30px;
    margin-top: -100px;
  }
}

@media (max-width: 767px) {

  .main-content {
    padding: 80px 0;
  }

  .memorial-card {
    padding: 20px;
    margin-top: -60px;
  }

  .memorial-img {
    margin-bottom: 20px;
  }

  .memorial-text h3 {
    font-size: 20px;
  }

  .memorial-text p {
    font-size: 14px;
    line-height: 1.6;
  }
}

@media (max-width: 480px) {

  .memorial-card {
    padding: 15px;
    margin-top: -40px;
  }

  .memorial-text h3 {
    font-size: 18px;
  }

  .memorial-text p {
    font-size: 13px;
  }
}