/*
Theme Name: twentytwentyfour-child
Template: twentytwentyfour
*/

/* fonts */

:root {
  --Primary1: #005eb8;
  --Primary2: #a7d5f2;
  --LightBlue: #e6f0fa;
  --Silver: #d9d9d9;
  --LightSteelBlue: #c9d1d8;
  --ErrorLight: #fdecec;
  --ErrorDark: #e63946;
  --SuccessLight: #f4faec;
  --SuccessDark: #a3d55f;
  --WarningLight: #fff8e1;
  --WarningDark: #ffc107;
  --Primary1Tint-30: #b3cfea;
  --Primary1Shade-90: #0055a6;
  --Primary1Shade-80: #004b93;
  --Primary1Shade-70: #004281;
  --Primary1Shade-60: #00386e;
  --Primary1Shade-50: #002f5c;
  --Primary1Shade-40: #00264a;
  --Primary1Shade-30: #001c37;
  --Primary1Shade-20: #001325;
  --Primary1Shade-10: #000912;
  --Primary2Shade-90: #96c0da;
  --Primary2Shade-80: #86aac2;
  --Primary2Shade-70: #7595a9;
  --Primary2Shade-60: #648091;
  --Primary2Shade-50: #546b79;
  --Primary2Shade-40: #435561;
  --Primary2Shade-30: #324049;
  --Primary2Shade-20: #212b30;
  --Primary2Shade-10: #212b30;
  --Primary2Tint-90: #b0d9f3;
  --Primary2Tint-80: #b9ddf5;
  --Primary2Tint-70: #c1e2f6;
  --Primary2Tint-60: #cae6f7;
  --Primary2Tint-50: #d3eaf9;
  --Primary2Tint-40: #dceefa;
  --Primary2Tint-30: #e5f2fb;
  --Primary2Tint-20: #edf7fc;
  --Primary2Tint-10: #edf7fc;
  --Neutral-90: #171819;
  --Neutral-80: #2e3032;
  --Neutral-70: #45484b;
  --Neutral-60: #5c6064;
  --Neutral-50: #73787d;
  --Neutral-40: #8a9096;
  --Neutral-30: #a1a8af;
  --Neutral-20: #b8c0c8;
  --Neutral-10: #cfd8e1;
  --Gray-90: #e6e6e6;
  --Gray-80: #ccc;
  --Gray-70: #999;
  --Gray-60: #808080;
  --Gray-50: #666;
  --Gray-40: #4c4c4c;
  --Gray-30: #333;
  --Gray-20: #333;
  --Gray-10: #191919;
  --footerbg: #ffffff;
  --gradientColor: linear-gradient(0deg,
      rgba(0, 0, 0, 0.2) 0%,
      rgba(0, 0, 0, 0.2) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%),
    linear-gradient(94deg, #00509d 47.94%, #001c37 75.11%);
  --footerBottom: #ededed;
  --Roboto: "Roboto", sans-serif;
  --RobotoCondensed: "Roboto Condensed", sans-serif;
  --RobotoSlab: "Roboto Slab", serif;
  --RobotoMono: "Roboto Mono", monospace;
  --Inter: "Inter", sans-serif;
}

body.dark-mode {
  --bg-color: #121212;
  --text-color: #f1f1f1;
  --header-bg: #1e1e1e;
  --footer-bg: #1a1a1a;
  --button-bg: #1a73e8;
  --button-text: #ffffff;
  --footerbg: #011427;
  --footerBottom: #000912;
}

.container,
.mec-events-template-default .is-layout-constrained> :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
  width: 100%;
  max-width: 1306px;
  margin: 0 auto;
  padding: 0 16px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  width: 100%;
  background-color: white;
}

#header-container {
  position: sticky;
  top: 0;
  z-index: 50;
}

a:focus,
a:focus-visible,
a:focus-within {
  /* border: none; */
  outline: none;
}

.darkRed-btn {
  border-radius: 8px;
  background: #e63946;
  display: flex;
  padding: 14px 71px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-align: center;
  font-family: var(--RobotoCondensed);
  font-size: 18px;
  font-weight: 500;
  line-height: 140%;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.darkRed-btn:hover {
  background-color: transparent;
  border: 1px solid #e63946;
}

.transparent-btn {
  display: flex;
  padding: 14px 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
  border: 1px solid #fff;
  background: rgba(255, 255, 255, 0.01);
  backdrop-filter: blur(3px);
  color: #fff;
  text-align: center;
  font-family: var(--RobotoCondensed);
  font-size: 18px;
  font-weight: 500;
  line-height: 140%;
  text-transform: uppercase;
  transition: all 0.3s ease;
  text-decoration: none;
}

.transparent-btn:hover {
  background-color: white;
  color: black;
  border: 1px solid transparent;
}

.heading2 {
  font-family: var(--Roboto);
  font-size: 50px;
  font-weight: 700;
  line-height: 128%;
}

/* media */
/* @media screen and (max-width: 1280px) {
  .heading2 {
    font-size: 42px;
  }
} */

/* @media screen and (max-width: 640px) {
  .heading2 {
    font-size: 34px;
  }
} */

/* @media screen and (max-width: 480px) {
  .heading2 {
    font-size: 28px;
  }
} */


.content-sidebar-section[data-section-theme="dark"] .main-heading {
  color: var(--LightSteelBlue);
}

.main-heading {
  color: var(--Primary1);
  font-weight: 700;
}

/* header */
.header-wrapper {
  width: 100%;
  position: fixed;
  inset: 0;
  height: fit-content;
  z-index: 50;
  top: 0;
}

.header-wrapper header {
  padding: 16px 16px;
  backdrop-filter: blur(25px);
  background-color: rgba(255, 255, 255, 0.15);
}

.top-header-wrapper {
  background-color: white;
}

.header-wrapper[data-section-theme="dark"] .top-header-wrapper {
  background-color: #011427;
}

.icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: var(--Primary1);
  border-radius: 10px;
}

.icon-wrapper img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  aspect-ratio: 1/1;
}

.top-right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.Social-icon ul {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style-type: none;
}

.Social-icon ul li .label {
  display: none;
}

.Contact-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
}

.Contact-wrapper img {
  width: 24px;
  height: 24px;
}

.Contact {
  display: flex;
  align-items: center;
}

.Contact>div.location,
.Contact a {
  color: var(--Gray-60);
  text-align: center;
  font-family: var(--Roboto);
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
}

.header-wrapper[data-section-theme="dark"] .Contact>div.location,
.header-wrapper[data-section-theme="dark"] .Contact a {
  color: white;
}

.top-header {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.left-nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.left-nav a {
  color: var(--Gray-60);
  font-family: var(--Roboto);
  font-size: 12px;
  font-weight: 400;
  line-height: 183.333%;
  text-decoration: none;
}

.header-wrapper[data-section-theme="dark"] .left-nav a {
  color: white;
}

.sit-header {
  display: flex;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 24px;
  justify-content: center;
  align-items: center;
  gap: 4px;
  border-radius: 16px;
  background: #001325e5;
  backdrop-filter: blur(31.5px);
}

.logo img {
  width: 100%;
  height: 61px;
  aspect-ratio: 133/61;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 8px;
  flex: 1;
  justify-content: center;
}

.nav-links.active {
  justify-content: center;
}

.nav-links a {
  font-size: 16px;
  color: var(--Primary1Tint-30);
  font-weight: 700;
  line-height: 167.889%;
  letter-spacing: 1.08px;
  text-transform: uppercase;
  font-family: var(--Roboto);
  text-decoration: none;
  padding: 12px 8px;
  transition: all 0.3s ease;
  border-bottom: 4px solid transparent;
}

.nav-links a:hover,
.nav-links a.active {
  color: white;
  border-bottom: 4px solid #005eb8;
}

.nav-links a:focus,
.nav-links a:focus-within,
.nav-links a:focus-visible {
  border: none;
  outline: none;
}

.header-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.search-btn {
  display: flex;
  width: 100%;
  max-width: 54px;
  height: 54px;
  padding: 14px 18px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
  border: 1px solid #005eb8;
  background: #005eb8;
  cursor: pointer;
  transition: all 0.3s ease;
}

.search-btn:hover svg path {
  stroke: var(--Silver);
}

.theme-icon.hidden {
  display: none;
}

.theme-toggle {
  display: flex;
  width: 100%;
  max-width: 54px;
  height: 54px;
  padding: 14px 18px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
  border: 1px solid #005eb8;
  background: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
}

.theme-toggle[data-section-theme="dark"] {
  background-color: var(--Primary1);
}

.theme-toggle:hover {
  background-color: var(--Primary1);
}

.theme-toggle:hover svg path {
  stroke: var(--Silver);
}

a {
  text-decoration: none;
}

.btn {
  display: flex;
  padding: 14px 18px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.login-btn {
  border-radius: 8px;
  border: 1px solid #005eb8;
  background: #fff;
  color: #005eb8;
  text-align: center;
  font-family: var(--Roboto);
  font-size: 18px;
  font-weight: 500;
  line-height: 120%;
  text-transform: uppercase;
  width: 100%;
  max-width: 82px;
}

.login-btn:hover {
  background-color: transparent;
  color: white;
  border: 1px solid white;
}

.join-btn {
  border-radius: 8px;
  background: var(--Primary1);
  color: #fff;
  text-align: center;
  font-family: var(--RobotoCondensed);
  font-size: 20px;
  font-weight: 500;
  line-height: 110%;
  border: 1px solid transparent;
}

.join-btn:hover {
  border: 1px solid white;
  background-color: transparent;
}

.white-btn {
  border-radius: 8px;
  border: 1px solid #005eb8;
  background: #fff;
  color: #005eb8;
  text-align: center;
  font-family: var(--Roboto);
  font-size: 18px;
  font-weight: 500;
  line-height: 120%;
  text-transform: uppercase;
}

.white-btn:hover {
  background-color: transparent;
  color: white;
  border: 1px solid white;
}

.blue-btn,
.mec-custom-button,
.mec-fes-form-top-actions a,
.mec-fes-list-top-actions a,
.mec-fes-form button[type=submit].mec-fes-sub-button {
  display: flex;
  padding: 14px 18px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
  background: var(--Primary1);
  color: #fff;
  text-align: center;
  font-family: var(--RobotoCondensed);
  font-size: 20px;
  font-weight: 500;
  line-height: 120%;
  border: 1px solid var(--Primary1);
  cursor: pointer;
  transition: all 0.3s ease;
}

.right-content {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile-toggle-icon {
  display: none;
  width: 40px;
  height: 40px;
}

.toggle {
  transform: scaleY(0);
  transform-origin: top;
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  overflow: hidden;
  visibility: hidden;
  height: 0;
}

#toggleopen {
  background: #001325e5;
  border-radius: 0px 0px 16px 16px;
  padding-top: 0px;
}

.toggle.open {
  transform: scaleY(1);
  opacity: 1;
  visibility: visible;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  width: 100%;
  height: 100%;
}

.toggle a {
  font-size: 18px;
  color: var(--Primary1Tint-30);
  font-weight: 700;
  line-height: 188.889%;
  letter-spacing: 1.08px;
  text-transform: uppercase;
  font-family: var(--Roboto);
  text-decoration: none;
  transition: all 0.3s ease;
}

.toggle a:hover {
  color: white;
}

.mobile-toggle {
  border-radius: 16px 16px 0px 0px;
}

.footer {
  padding-top: 80px;
}

.footer[data-section-theme="dark"] {
  background-color: #011427;
}

.footer[data-section-theme="light"] {
  background: var(--footerbg);
}

.footer-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  padding-bottom: 129px;
}

/* Left Section */

.footer-logo {
  width: 100%;
  max-width: 163px;
  height: 76px;
  aspect-ratio: 163/76;
  margin-bottom: 24px;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-info .footer-item {
  display: flex;
  align-items: flex-start;
}

.icon {
  background: #005bac;
  color: #fff;
  border-radius: 10px;
  font-size: 20px;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 22px;
  overflow: hidden;
}

.footer-info h4 {
  color: #000;
  font-family: var(--Roboto);
  font-size: 20px;
  font-weight: 600;
  line-height: 140%;
}

.footer[data-section-theme="dark"] .footer-info h4 {
  color: white;
}

.footer-info p {
  color: #787878;
  font-family: var(--Roboto);
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
  display: inline-block;
}

.footer[data-section-theme="dark"] .footer-info p {
  color: #9ea2a2;
}

.footer-info p strong {
  color: #000;
}

.footer[data-section-theme="dark"] .footer-info p strong {
  color: white;
}

/* Navigation */

.footer-nav {
  display: flex;
  gap: 135px;
}

.footer-nav h4 {
  color: #000;
  font-family: var(--Roboto);
  font-size: 20px;
  font-weight: 600;
  line-height: 140%;
  margin-bottom: 24px;
}

.footer[data-section-theme="dark"] .footer-nav h4 {
  color: white;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-nav ul li a {
  color: #000;
  font-family: var(--RobotoCondensed);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  text-decoration: none;
  transition: all 0.3ms ease;
}

.footer[data-section-theme="dark"] .footer-nav ul li a {
  color: white;
}

.footer-nav ul li a:hover {
  color: var(--Primary1);
}

/* Social Links */

.footer-social h4 {
  color: #000;
  font-family: var(--Roboto);
  font-size: 20px;
  font-weight: 600;
  line-height: 140%;
  margin-bottom: 24px;
}

.footer[data-section-theme="dark"] .footer-social h4 {
  color: white;
}

.footer-social ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-social li a {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-social li .icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: var(--Primary1);
  border-radius: 10px;
}

.footer-social li .icon-wrapper img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  aspect-ratio: 1/1;
}

.footer-social li .label {
  color: #000;
  font-family: var(--RobotoCondensed);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  text-decoration: none;
  transition: all 0.3ms ease;
}

.footer[data-section-theme="dark"] .footer-social li .label {
  color: white;
}

.footer-social li label:hover {
  color: var(--Primary1);
}

.footer-social svg {
  flex-shrink: 0;
}

/* Footer Bottom */
.footer-bottom {
  background: var(--footerBottom);
  padding: 24px 0px;
  border-top: 1px solid #e0e0e0;
}

.footer[data-section-theme="dark"] .footer-bottom {
  background-color: #000912;
  border-top: 1px solid #000912;
}

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

.footer-bottom-wraper p {
  color: #111518;
  font-family: var(--Roboto);
  font-size: 12px;
  font-weight: 400;
  line-height: 148.76%;
}

.footer[data-section-theme="dark"] .footer-bottom-wraper p {
  color: #e6eff8;
}

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

.footer-bottom-links a {
  color: #111518;
  font-family: var(--RobotoCondensed);
  font-size: 12px;
  font-weight: 400;
  line-height: 140%;
  text-decoration: none;
}

.footer[data-section-theme="dark"] .footer-bottom-links a {
  color: #e6eff8;
}

.footer-bottom-links a:hover {
  color: #005bac;
}

/* hero css */
.hero {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 331px;
  padding-bottom: 231px;
}

.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg,
      rgba(0, 0, 0, 0.6) 0%,
      rgba(0, 0, 0, 0.6) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 909px;
  padding: 0 20px;
}

.hero h1 {
  color: #fff;
  text-align: center;
  font-family: var(--Roboto);
  font-size: 70px;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 10px;
}

.hero p {
  color: #fff;
  text-align: center;
  font-family: var(--Roboto);
  font-size: 20px;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 0.5px;
}

.button-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.btn.join {
  background-color: #e63b42;
  color: #fff;
}

.btn.join:hover {
  background-color: #c32e36;
}

.btn.explore {
  border: 1px solid #fff;
  color: #fff;
}

.btn.explore:hover {
  background-color: #fff;
  color: #000;
}

/* difference section */
.difference-section {
  padding: 40px 0px;
  text-align: center;
}

.difference-section[data-section-theme="dark"] {
  background: var(--gradientColor);
}

.difference-section[data-section-theme="light"] {
  background-color: var(--LightBlue);
}

.difference-section h2 {
  color: var(--Neutral-80);
  text-align: center;
}

.difference-section[data-section-theme="dark"] h2 {
  color: #ebebeb;
}

.difference-section p.subtitle {
  color: var(--Neutral-80);
  text-align: center;
  font-family: var(--Roboto);
  font-size: 22px;
  font-weight: 700;
  line-height: 200%;
  letter-spacing: 1.32px;
  text-transform: uppercase;
  margin-top: 16px;
}

.difference-section[data-section-theme="dark"] p.subtitle {
  color: #ebebeb;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin: 0 auto;
  padding-top: 32px;
}

.stat-card {
  background: #fff;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px 0px;
  gap: 10px;
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.difference-section[data-section-theme="dark"] .stat-card {
  background: rgba(0, 0, 0, 0.5);
}

.bg-icon {
  width: 200px;
  height: 200px;
  opacity: 0.03;
  position: absolute;
  right: -50px;
  top: 0;
  z-index: 1;
}

.difference-section[data-section-theme="dark"] .bg-icon {
  filter: brightness(0) invert(1);
}

.stat-icon {
  border-radius: 10px;
  border: 1px solid var(--Gray-90, #e6e6e6);
  display: flex;
  width: 60px;
  height: 60px;
  padding: 13px;
  justify-content: center;
  align-items: center;
}

.difference-section[data-section-theme="dark"] .stat-icon {
  border: 1px solid #232323;
}

.stat-icon img {
  width: 34px;
  height: 34px;
}

.difference-section[data-section-theme="dark"] .stat-icon img {
  filter: brightness(0) invert(1);
}

.stat-value {
  color: var(--Primary1);
  text-align: center;
  font-family: var(--RobotoSlab);
  font-size: 40px;
  font-weight: 600;
  line-height: 120%;
}

.stat-label {
  color: var(--Primary1Shade-20);
  font-family: var(--Roboto);
  font-size: 16px;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: 0.5px;
}

.difference-section[data-section-theme="dark"] .stat-label {
  color: #cfcfcf;
}

/* why join */

.why-join {
  padding: 40px 0px;
  text-align: center;
}

.why-join[data-section-theme="dark"] {
  background: var(--Primary1Shade-20);
}

.why-join[data-section-theme="light"] {
  background-color: #fff;
}

.why-join h2 {
  text-align: center;
}

.why-join[data-section-theme="dark"] h2 {
  color: var(--LightSteelBlue);
}

.why-join[data-section-theme="light"] h2 {
  color: var(--Neutral-80);
}

.why-grid {
  display: flex;
  gap: 50px;
  max-width: 1025px;
  margin: 0 auto;
  padding: 24px 16px 0px 16px;
}

.why-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.icon-box {
  width: 60px;
  height: 60px;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px;
}

.why-join[data-section-theme="dark"] .icon-box {
  background-color: var(--LightSteelBlue);
}

.icon-box img {
  width: 34px;
  height: 34px;
}

.why-item h3 {
  color: var(--Primary1);
  text-align: center;
  font-family: var(--RobotoSlab);
  font-size: 24px;
  font-weight: 500;
  line-height: 120%;
  margin-top: 24px;
}

.why-join[data-section-theme="dark"] .why-item h3 {
  color: var(--LightSteelBlue);
}

.why-item p {
  color: var(--Primary1Shade-20);
  font-family: var(--Roboto);
  font-size: 16px;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: 0.5px;
  margin-top: 10px;
}

.why-join[data-section-theme="dark"] .why-item p {
  color: var(--LightSteelBlue);
}

.Seanc-section {
  background-color: var(--Primary1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.Seanc-section[data-section-theme="dark"] {
  background: var(--gradientColor);
}

.Seanc-container {
  width: 100%;
  max-width: 1122px;
  margin: 0 auto;
  padding: 40px 16px;
}

.SeancContent-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.SeancContent-wrapper h2 {
  color: white;
  text-align: center;
}

.SeancContent-wrapper p {
  color: white;
  font-family: var(--Roboto);
  font-size: 20px;
  font-weight: 400;
  line-height: 120%;
  margin-top: 10px;
  text-align: center;
}

.Seancvideo-wrapper {
  overflow: hidden;
  width: 100%;
  max-width: 1122px;
  aspect-ratio: 1122/440;
  position: relative;
  border-radius: 20px;
  height: 440px;
  margin: 0 auto;
  margin-top: 60px;
}

.playIcon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 134px;
  height: 134px;
  cursor: pointer;
  z-index: 10;
}

.black-layer {
  border-radius: 20px;
  background: #000;
  opacity: 90%;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 10;
}

.Seancvideo-wrapper video, .Seancvideo-wrapper iframe{
  width: 100%;
  max-width: 1122px;
  border-radius: 20px;
  height: 440px;
  object-fit: cover;
}

/* upcoming */
.upcomingEvents-section {
  background-color: var(--LightBlue);
}

.upcomingEvents-section[data-section-theme="dark"] {
  background: var(--gradientColor);
}

.upcomingEvents-container {
  width: 100%;
  max-width: 1244px;
  margin: 0 auto;
  padding: 40px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.upcomingEvents-container h2 {
  color: var(--Neutral-80);
}

.upcomingEvents-section[data-section-theme="dark"] h2 {
  color: white;
}

.upcomingEvents-container p {
  color: var(--Neutral-80);
  font-family: var(--Roboto);
  font-size: 20px;
  font-weight: 400;
  line-height: 120%;
  margin-top: 10px;
  text-align: center;
}

.upcomingEvents-section[data-section-theme="dark"] p {
  color: white;
}

.custom-btn {
  border-radius: 8px;
  border: 1px solid #a1a8af;
  background: #fff;
  display: flex;
  width: 52px;
  padding: 14px 18px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  position: absolute;
  top: 58%;
  transform: translateY(-50%);
  z-index: 30;
  cursor: pointer;
}

.prev-btn {
  left: -2%;
}

.next-btn {
  right: -2%;
}

.next-btn img {
  rotate: 180deg;
}

.slider-wrapper {
  width: 100%;
  margin-top: 24px;
}

.text-overlay {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.slide-content {
  width: 100%;
  max-width: 1064px;
  height: 405px;
  border-radius: 20px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.overlay-black {
  background: linear-gradient(270deg,
      rgba(0, 0, 0, 0) 12.46%,
      rgba(0, 0, 0, 0.7) 85.78%);
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.slide-content img {
  width: 100%;
  max-width: 1064px;
  height: 405px;
  min-height: 405px;
  border-radius: 20px;
  object-fit: cover;
}

.text-overlay {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  padding: 0px 54px;
  max-width: 450px;
}

.text-overlay h2 {
  color: #fff;
}

.text-overlay p {
  color: #fff;
  font-family: var(--Roboto);
  font-size: 28px;
  font-weight: 500;
  line-height: 120%;
  margin-top: 12px;
}

.text-overlay a {
  display: flex;
  padding: 14px 18px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
  background: #005eb8;
  color: #fff;
  text-align: center;
  font-family: var(--RobotoCondensed);
  font-size: 18px;
  font-weight: 500;
  line-height: 140%;
  text-transform: uppercase;
  text-decoration: none;
  margin-top: 34px;
}

.player-section {
  width: 100%;
  background: #fff;
  padding: 40px 0px;
}

.player-section[data-section-theme="dark"] {
  background-color: #011427;
}

.title {
  text-align: center;
  color: var(--Neutral-80);
}

.player-section[data-section-theme="dark"] .title {
  color: white;
}

.subtitle {
  color: var(--Neutral-80);
  font-family: var(--Roboto);
  font-size: 20px;
  font-weight: 400;
  line-height: 120%;
  margin-top: 16px;
  text-align: center;
}

.player-section[data-section-theme="dark"] .subtitle {
  color: white;
}

.player-header {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 20px 40px;
  border-radius: 16px 16px 0 0;
  border-top: 1px solid #dbd4d4;
  border-right: 1px solid #dbd4d4;
  border-left: 1px solid #dbd4d4;
  background: #fff;
}

.player-card {
  margin-top: 32px;
}

.cover {
  width: 100%;
  max-width: 243px;
  height: 236px;
  object-fit: cover;
  border-radius: 16px;
}

.episode-info {
  flex: 1;
}

.show-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.show {
  display: inline-block;
  font-family: var(--Inter);
  font-size: 16px;
  color: rgba(28, 33, 53, 0.8);
  font-weight: 400;
  line-height: 120%;
}

.show .show-name {
  text-transform: uppercase;
}

.show .month {
  text-transform: uppercase;
}

.episode-title {
  color: #1c2135;
  font-family: var(--Inter);
  font-size: 24px;
  font-weight: 500;
  line-height: 120%;
  margin-top: 14px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.player-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid #d9d9d9;
  padding-top: 28px;
}

.play-btn img {
  width: 64px;
  height: 64px;
  aspect-ratio: 1/1;
  cursor: pointer;
}

.audio-progress {
  width: 100%;
}

.audio-time {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}

.audio-time .start-time {
  color: rgba(28, 33, 53, 0.4);
  font-family: var(--Inter);
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
}

.audio-time .duration {
  color: rgba(28, 33, 53, 0.4);
  font-family: var(--Inter);
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
}

.progress-bar {
  flex: 1;
  height: 4px;
  background: #ddd;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.dots {
  position: absolute;
  width: 20px;
  height: 20px;
  fill: #fff;
  border: 1px solid #dbd4d4;
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.25));
}

.progress {
  width: 40%;
  height: 100%;
  background: #dbd4d4;
}

.duration {
  color: #666;
  font-size: 12px;
}

.bottom-icon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-left: 40px;
  margin-top: 8px;
}

.left-image {
  display: flex;
  align-items: center;
  gap: 16px;
}

.right-image {
  display: flex;
  align-items: center;
  gap: 16px;
}

.listeners {
  display: flex;
  align-items: center;
  gap: 8px;
}

.listeners span {
  color: rgba(28, 33, 53, 0.4);
  font-family: var(--Inter);
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
}

.episode-list {
  border-top: 1px solid #eee;
}

.episode {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid #eee;
  cursor: pointer;
}

.episode.active {
  border: 1px solid #b9dcff;
  background: #edf6ff;
  box-shadow: 0 2px 14px 0 rgba(0, 0, 0, 0.25);
  padding: 30px 10px;
  border-radius: 0;
}

.episode-left svg {
  width: 24px;
  height: 24px;
  min-width: 24px;
}

.episode-name {
  font-family: var(--Inter);
  font-size: 24px;
  font-weight: 700;
  line-height: 120%;
  display: flex;
  align-items: center;
  gap: 10px;
}

.episode-date {
  color: #1c2135;
  font-family: var(--Inter);
  font-size: 24px;
  font-weight: 500;
  line-height: 120%;
}

.episode-right {
  display: flex;
  align-items: center;
  gap: 50px;
}

.episode-length {
  color: #1c2135;
  font-family: var(--Inter);
  font-size: 24px;
  font-weight: 500;
  line-height: 120%;
}

.episode.active .episode-name {
  color: var(--Primary1);
}

.episode .episode-name {
  color: #1c2135;
}

.episode {
  border-radius: 0 0 16px 16px;
  border-right: 1px solid #dbd5d4;
  border-bottom: 1px solid #dbd5d4;
  border-left: 1px solid #dbd5d4;
  background: #fff;
  display: flex;
  padding: 30px 10px;
  justify-content: space-between;
  align-items: center;
}

.explore-container {
  text-align: center;
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.explore-btn {
  display: flex;
  padding: 14px 71px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
  background: var(--Primary1);
  color: #fff;
  text-align: center;
  font-family: var(--RobotoCondensed);
  font-size: 18px;
  font-weight: 500;
  line-height: 140%;
  text-transform: uppercase;
  border: transparent;
  cursor: pointer;
}

.player-section iframe {
  margin-top: 32px;
}

.testimonial-section {
  background-color: #e6f1fb;
  padding-top: 40px;
  padding-bottom: 24px;
}

.testimonial-section[data-section-theme="dark"] {
  background: var(--gradientColor);
}

.top-content {
  display: flex;
  align-items: end;
  justify-content: space-between;
  width: 100%;
  gap: 16px;
}

.testimonial-slider-arrow.swiper-button-lock {
  display: flex !important;
}

.testimonial-slider-arrow.swiper-button-disabled {
  opacity: 0.6;
  pointer-events: auto;
}

.testimonial-slider-arrow {
  border-radius: 8px;
  border: 1px solid #a1a8af;
  background: #fff;
  display: flex !important;
  width: 52px;
  padding: 14px 18px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.custom-next img {
  rotate: 180deg;
}

.testimonial-header h2 {
  text-align: left;
  color: var(--Neutral-80);
}

.testimonial-section[data-section-theme="dark"] .testimonial-header h2 {
  color: white;
}

.testimonial-header p {
  color: var(--Neutral-80);
  font-family: var(--Roboto);
  font-size: 20px;
  font-weight: 400;
  line-height: 120%;
  margin-top: 10px;
}

.testimonial-section[data-section-theme="dark"] .testimonial-header p {
  color: white;
}

.testimonial-swiper {
  margin-top: 32px;
}

.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.testimonial-card {
  border-radius: 20px;
  border: 1px solid var(--Silver);
  background: #fff;
  padding: 16px 23px 16px 16px;
  height: auto !important;
}

.user-info {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}

.user-image {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  margin-right: 12px;
  object-fit: cover;
}

.user-info h4 {
  color: #191d23;
  font-family: var(--Roboto);
  font-size: 18px;
  font-weight: 600;
  line-height: 120%;
}

.user-info p {
  color: #575757;
  font-family: var(--Roboto);
  font-size: 14px;
  font-weight: 400;
  line-height: 120%;
  /*  */
}

.stars {
  display: flex;
  gap: 5px;
  margin-bottom: 14px;
}

.stars img {
  width: 17px;
  height: 16px;
}

.testimonial-text {
  overflow: hidden;
  color: #575757;
  text-overflow: ellipsis;
  font-family: var(--Roboto);
  font-size: 16px;
  font-weight: 400;
  line-height: 137%;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
}

.testimonial-btn {
  display: flex;
  padding: 14px 18px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
  border: 1px solid var(--Primary1);
  background: #fff;
  color: #005eb8;
  text-align: center;
  font-family: var(--RobotoCondensed);
  font-size: 18px;
  font-weight: 500;
  line-height: 140%;
  text-transform: uppercase;
  cursor: pointer;
}

.testimonial-btn:hover {
  background-color: var(--Primary1);
  color: white;
}

.arrow-controls {
  display: flex;
  gap: 14px;
}

.fighting-section {
  background-color: white;
  padding: 40px 0px;
}

.fighting-section[data-section-theme="dark"] {
  background-color: #011427;
}

.fighting-title {
  text-align: center;
  color: var(--Neutral-80);
}

.fighting-section[data-section-theme="dark"] .fighting-title {
  color: white;
}

.fighting-content {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 16px;
}

.fighting-logo {
  aspect-ratio: 417/345.86;
  width: 100%;
  max-width: 475px;
}

.fighting-content img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.fighting-content p {
  color: var(--Neutral-80);
  text-align: center;
  font-family: var(--Roboto);
  font-size: 20px;
  font-weight: 400;
  line-height: 200%;
}

.fighting-section[data-section-theme="dark"] .fighting-content p {
  color: white;
}

.news-section {
  background: #e8f2fa;
  padding: 30px 0px;
  text-align: center;
}

.news-section[data-section-theme="dark"] {
  background: var(--gradientColor);
}

.news-section[data-section-theme="dark"] .news-title {
  color: white;
}

.news-subtitle {
  color: #000;
  font-family: var(--Roboto);
  font-size: 20px;
  font-weight: 400;
  line-height: 120%;
  margin-top: 16px;
  text-align: center;
}

.news-section[data-section-theme="dark"] .news-subtitle {
  color: white;
}

.news-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 24px;
  text-align: left;
}

.news-card {
  background: #fafafa;
  overflow: hidden;
  padding: 10px;
  border: 1px solid #d9d9d9;
}

.large-card {
  border-radius: 26px;
}

.small-card {
  border-radius: 16px;
}

.small-card img {
  width: 100%;
  height: 285px;
  object-fit: cover;
  border-radius: 16px;
}

.large-card img {
  width: 100%;
  height: 419px;
  object-fit: cover;
  border-radius: 20px;
}

.news-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
}

.tag {
  display: flex;
  padding: 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 10px;
  background: #ebebeb;
  color: #000;
  text-align: center;
  font-family: var(--RobotoMono);

  font-weight: 400;
  line-height: 120%;
}

.large-card .news-content .news-meta .tag {
  font-size: 14px;
}

.small-card .news-content .news-meta .tag {
  font-size: 12px;
}

.large-card .news-content .news-meta .date {
  font-size: 16px;
}

.small-card .news-content .news-meta .date {
  font-size: 11px;
}

.date {
  color: #575757;
  font-family: var(--Roboto);
  font-weight: 400;
  line-height: 137.5%;
}

.news-card h3 {
  color: #000;
  font-family: var(--Roboto);
  font-weight: 500;
  line-height: 110%;
  margin-top: 10px;
}

.large-card .news-content h3 {
  font-size: 24px;
}

.small-card .news-content h3 {
  font-size: 16px;
}

.news-card p {
  color: #575757;
  font-family: var(--Roboto);
  font-weight: 400;
  line-height: 137.5%;
  margin: 10px 0px;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* show only 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.large-card .news-content p {
  font-size: 16px;
}

.small-card .news-content p {
  font-size: 12px;
}

.read-more {
  color: var(--Primary1);
  font-family: var(--RobotoCondensed);
  font-size: 16px;
  font-weight: 600;
  line-height: 137.5%;
  text-decoration-line: underline;
  text-transform: uppercase;
}

.large-card .news-content .read-more {
  font-size: 16px;
}

.right-news .small-card .news-content .read-more {
  font-size: 12px;
}

.read-more:hover {
  text-decoration: underline;
}

.right-news {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.small-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  text-align: left;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.small-card img {
  width: 100%;
  height: 130px;
  object-fit: cover;
}

.cta-section {
  display: flex;
  padding: 24px 16px;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background-color: white;
}

.cta-section[data-section-theme="dark"] {
  background-color: var(--Primary1);
}

.cta-section h3 {
  color: var(--Primary1);
  font-family: var(--Inter);
  font-size: 27.2px;
  font-weight: 700;
  line-height: 209.559%;
  text-transform: uppercase;
  text-align: center;
}

.cta-section[data-section-theme="dark"] h3 {
  color: white;
}

.cta-btn {
  display: flex;
  padding: 14px 18px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
  border: 1px solid #005eb8;
  background: #fff;
  color: var(--Primary1);
  text-align: center;
  font-family: var(--RobotoCondensed);
  font-size: 18px;
  font-weight: 500;
  line-height: 140%;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background-color: var(--Primary1);
  color: white;
}

.cta-section[data-section-theme="dark"] .cta-btn:hover {
  background-color: transparent;
  border: 1px solid white;
}

.footer-cta-section {
  background-color: var(--Primary1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.footer-cta-section .cta-container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 34px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.footer-cta-section .cta-container h2 {
  color: #fff;
  text-align: center;
}

.content-sidebar-section {
  padding-bottom: 16px;
  background-color: white;
}

.content-sidebar-section[data-section-theme="dark"] {
  background: var(--gradientColor);
}

.content-sidebar-section-wrapper {
  display: grid;
  grid-template-columns: auto 522px;
  width: 100%;
  gap: 20px;
}

.content-sidebar-section-wrapper.no-sidebar {
  grid-template-columns: 100%;
}

.content-sidebar-section-wrapper.has-media {
  gap: 110px;
}

.video-wrapper {
  max-width: 630px;
  height: 440px;
  position: relative;
  margin-top: 32px;
}

.video-wrapper iframe{
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
}

.video-wrapper.full-width-video {
  margin: 0 auto;
}

.black-layer {
  border-radius: 20px;
  background: #000;
  opacity: 30%;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.content-block {
  padding: 16px 0px;
  width: 100%;
  max-width: 100%;
  margin: 0px 0px !important;
}

.content-block[data-section-theme="dark"] {
  background: var(--gradientColor);
}

.content-block[data-section-theme="dark"] .inner-heading {
  color: var(--LightSteelBlue);
}

.content-block[data-section-theme="dark"] .inner-paragraph a {
  color: var(--WarningDark);
}

.content-block[data-section-theme="dark"] .inner-paragraph span {
  color: var(--WarningDark);
}

.content-block.full-width {
  max-width: 100%;
  width: 100%;
}

.content-block p:not(.inner-paragraph) {
  color: #000;
  font-family: var(--Roboto);
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}

.content-block p:not(.inner-paragraph) a {
  color: var(--Primary1);
  font-weight: 700;
}

.content-block p.inner-paragraph a {
  color: var(--Primary1);
}

.sidebar {
  display: flex;
  padding: 32px 0px;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  border-radius: 26px;
  border: 1px solid #d9d9d9;
  background: #fff;
  width: 100%;
}

.title-wrapper {
  padding: 0px 16px;
  width: 100%;
}

.sidebar h3 {
  color: var(--Primary1);
  font-family: var(--Roboto);
  font-size: 34px;
  font-weight: 700;
  line-height: 76.471%;
  width: 100%;
  border-bottom: 1px solid #d9d9d9;
  padding-bottom: 4px;
}

.sidebar h3 .first-word {
  color: var(--Gray-10);
}

.sidebar .AboutTitle {
  color: var(--Primary1);
}

.menu {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0px 16px;
}

.menu-item {
  cursor: pointer;
  padding: 0px 8px;
  border-radius: 8px;
}

.menu-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-item img {
  width: 28px;
  height: 28px;
}

.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 6px;
  transition: background 0.3s;
}

.open .submenu {
  background-color: #f6fbfe;
  padding-bottom: 8px;
}

.open {
  background-color: #f6fbfe;
}

.open .menu-header .menu-left .label {
  color: var(--Primary1);
}

.open .menu-header .menu-left img {
  filter: brightness(0) saturate(100%) invert(74%) sepia(89%) saturate(1470%) hue-rotate(1deg) brightness(107%) contrast(106%);
}

.menu-item:hover,
.menu-item.active {
  background: #f5faff;
}

.menu-item:hover .menu-left .label,
.menu-item.active .menu-left .label {
  color: var(--Primary1);
}

.menu-item:hover .menu-left img,
.menu-item.active .menu-left img {
  filter: brightness(0) saturate(100%) invert(74%) sepia(89%) saturate(1470%) hue-rotate(1deg) brightness(107%) contrast(106%);
}

.label {
  color: var(--Gray-10);
  font-family: var(--Roboto);
  font-size: 22px;
  font-weight: 700;
  line-height: 200%;
  letter-spacing: 1.32px;
  text-transform: uppercase;
  text-decoration: none;
}

.arrow {
  transition: transform 0.3s ease;
}

.submenu {
  list-style: disc;
  padding-left: 50px;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.submenu li {
  color: #000;
  font-family: var(--Roboto);
  font-size: 18px;
  font-weight: 500;
  line-height: 171%;
}

.has-submenu.open .submenu {
  max-height: 600px;
  opacity: 1;
  border-radius: 0px 0px 8px 8px;
  padding-top: 13px;
}

.has-submenu .arrow {
  transform: rotate(180deg);
}

.has-submenu.open .arrow {
  transform: rotate(0deg);
}

.has-submenu.open .arrow svg path {
  fill: #ffc107;
}

.buttons {
  display: flex;
  gap: 32px;
  padding: 0px 16px;
}

.yellow-btn {
  border-radius: 8px;
  border: 1px solid var(--WarningDark);
  background: var(--WarningDark);
  display: flex;
  padding: 14px 18px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #000 !important;
  text-align: center;
  font-family: var(--RobotoCondensed);
  font-size: 18px;
  font-weight: 500;
  line-height: 140%;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.blue-btn {
  display: flex;
  padding: 14px 18px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
  background: var(--Primary1);
  color: #fff !important;
  text-align: center;
  font-family: var(--RobotoCondensed);
  font-size: 20px;
  font-weight: 500;
  line-height: 120%;
  border: 1px solid var(--Primary1);
  cursor: pointer;
  transition: all 0.3s ease;
}

.yellow-btn:hover {
  background-color: transparent;
  color: var(--WarningDark);
}

.blue-btn:hover {
  background-color: transparent;
  color: var(--Primary1) !important;
}

.mobile-explore-dropdown {
  display: none;
}

.inner-paragraph {
  color: var(--Gray-30);
  font-family: var(--Roboto);
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  margin-top: 12px;
}

.content-sidebar-section[data-section-theme="dark"] .inner-paragraph {
  color: white;
}

.content-block[data-section-theme="dark"] .inner-paragraph {
  color: white;
}

.coreValues-section[data-section-theme="dark"] .inner-paragraph {
  color: white;
}

.bold-text {
  color: var(--Gray-30);
  font-family: var(--Roboto);
  font-size: 16px;
  font-weight: 700;
  line-height: 150%;
}

.inner-link {
  color: var(--Primary1);
  text-decoration: none;
  font-family: var(--Roboto);
  font-size: 16px;
  font-weight: 400;
  line-height: 110%;
  margin-top: 12px;
}

.inner-heading {
  color: var(--Neutral-90);
  font-family: var(--Roboto);
  font-size: 34px;
  font-weight: 700;
  line-height: 110%;
  margin-bottom: 10px;
}

.content-sidebar-section[data-section-theme="dark"] .inner-heading {
  color: var(--LightSteelBlue);
}

.president-section[data-section-theme="dark"] .inner-heading {
  color: white;
}

.coreValues-section[data-section-theme="dark"] .inner-heading {
  color: white;
}

.inner-list-link {
  color: var(--Primary1);
  font-size: 16px;
  padding-left: 30px;
}

.content-sidebar-section[data-section-theme="dark"] .inner-list-link {
  color: var(--WarningDark);
}

.inner-list-link li a {
  color: var(--Primary1);
  font-family: var(--Roboto);
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  text-decoration: none;
  margin-bottom: 5px;
  display: block;
}

.content-sidebar-section[data-section-theme="dark"] .inner-list-link li a {
  color: var(--WarningDark);
}

.inner-underlineLink {
  font-size: 20px;
  text-decoration: underline;
}

.inner {
  color: var(--Gray-30);
  padding-left: 30px;
}

.inner li {
  color: var(--Gray-30);
  font-family: var(--Roboto);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.content-sidebar-section[data-section-theme="dark"] .inner li {
  color: white;
}

.inner-h3 {
  color: #000;
  font-family: var(--Roboto);
  font-size: 36px;
  font-weight: 500;
  line-height: 110%;
  margin-bottom: 10px;
}

.content-sidebar-section[data-section-theme="dark"] .inner-h3 {
  color: white;
}

.content-sidebar-section .inner-h3 {
  margin-top: 16px;
}

.content-sidebar-section .inner-heading {
  margin-top: 16px;
}

.content-sidebar-section ul.inner+.inner-heading {
  margin-top: 32px;
}

.content-sidebar-section .main-heading,
.districts-single .main-heading {
  padding-top: 32px;
}

.districts-single .main-heading {
  padding-bottom: 16px;
}

.breadcrumb-section {
  padding-top: 220px;
  padding-bottom: 12px;
  border-bottom: 1px solid #d9d9d9;
  padding-bottom: 16px;
}

.breadcrumb-section[data-section-theme="dark"] {
  background: var(--gradientColor);
}

.breadcrumb-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb-wrapper span {
  color: var(--Gray-20, #333);
  font-family: var(--RobotoMono);
  font-size: 16px;
  font-weight: 400;
  line-height: 175%;
}

.breadcrumb-section[data-section-theme="dark"] .breadcrumb-wrapper span a {
  color: var(--LightSteelBlue);
  opacity: 0.7;
}

.breadcrumb-wrapper .active {
  color: var(--Primary1);
  font-weight: 700;
}

.breadcrumb-section[data-section-theme="dark"] .breadcrumb-wrapper .active {
  color: var(--WarningDark);
}

.breadcrumb-section[data-section-theme="dark"] .breadcrumb-arrow svg path {
  fill: var(--LightSteelBlue);
}

.coreValues-section {
  padding: 16px 0px;
}

.coreValues-section[data-section-theme="dark"] {
  background: var(--gradientColor);
}


.coreValues-boxWrapper {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.coreValues-box {
  display: flex;
  padding: 16px;
  flex-direction: column;
  align-items: center;
  border-radius: 16px;
  border: 1px solid var(--Gray-90);
}

.coreValues-box img {
  width: 34px;
  height: 34px;
}

.box-title {
  color: var(--Primary1);
  text-align: center;
  font-family: var(--RobotoSlab);
  font-size: 24px;
  font-weight: 500;
  line-height: 125%;
  margin-top: 13px;
  margin-bottom: 10px;
}

.coreValues-section[data-section-theme="dark"] .box-title {
  color: var(--LightSteelBlue);
}

.box-description {
  color: var(--Primary1Shade-20);
  text-align: center;
  font-family: var(--Roboto);
  font-size: 16px;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: 0.5px;
}

.coreValues-section[data-section-theme="dark"] .box-description {
  color: var(--LightSteelBlue);
}

.Bylaws-section {
  padding: 16px 0px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.Bylaws-section p,
.Bylaws-section h2,
.Bylaws-section a {
  margin: 0;
}

/* staff */
.Staff-left-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.Staff-card-wrapper {
  padding: 0px 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  width: 100%;
}

.Staff-card {
  width: 100%;
  max-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.Staff-card .Staff-label {
  color: #000;
  text-align: center;
  font-family: var(--Roboto);
  font-size: 20px;
  font-weight: 400;
  line-height: 150%;
  margin-top: 12px;
}

.content-sidebar-section[data-section-theme="dark"] .Staff-label {
  color: var(--WarningDark);
}

.Staff-card .staff-name {
  color: var(--Primary1);
  font-family: var(--Roboto);
  font-size: 20px;
  font-weight: 700;
  line-height: 150%;
}

.content-sidebar-section[data-section-theme="dark"] .staff-name {
  color: var(--LightSteelBlue);
}

.bottom-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.information {
  color: #000;
  font-family: var(--Roboto);
  font-size: 20px;
  font-style: italic;
  font-weight: 400;
  line-height: 150%;
  text-align: center;
  margin-top: 35px;
  margin-bottom: 10px;
}

.inner-paragraph a {
  color: var(--Primary1);
}

.content-sidebar-section[data-section-theme="dark"] .inner-paragraph a {
  color: var(--WarningDark);
}

.staff-bottom {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 24px;
}

.history-left-content {
  width: 100%;
  max-width: 738px;
  margin: 0 auto;
}

.timeline {
  position: relative;
  padding-top: 32px;
}

.timeline-item {
  position: relative;
  padding-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.timeline .timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item:nth-last-child(1)::after,
.timeline-item:nth-last-child(1)::before {
  content: none;
}

.timeline-item::after {
  content: "";
  width: 1px;
  height: 100%;
  background: #000;
  position: absolute;
  left: 44px;
  bottom: -75px;
}

.timeline-item::before {
  content: "";
  width: 1px;
  height: 100%;
  background: #000;
  position: absolute;
  left: 44px;
  bottom: -40px;
}

.timeline-decade {
  background-color: var(--Primary1);
  width: 100%;
  max-width: 97px;
  padding: 15px 8px;
  color: #fff;
  font-family: var(--Inter);
  font-size: 12px;
  font-weight: 600;
  line-height: normal;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  flex-shrink: 0;
  overflow: hidden;
}

.border-yellow {
  position: absolute;
  left: -3px;
  top: -1px;
}

.timeline-content {
  background: white;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
  width: 100%;
}

.timeline-content ul {
  margin: 0;
  padding-left: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.timeline-content li {
  color: #000;
  font-family: var(--Roboto);
  font-size: 12px;
  font-weight: 600;
  line-height: 150%;
}

.text-content {
  color: black;
  font-family: var(--Roboto);
  font-size: 20px;
  font-weight: 400;
  line-height: 150%;
}

.content-sidebar-section[data-section-theme="dark"] .text-content {
  color: white;
}

.presidents-section {
  margin-top: 40px;
}

.presidents-boxWrapper {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.presidents-box {
  padding-top: 24px;
  padding-bottom: 32px;
}

.publications-section {
  padding-bottom: 48px;
}

.president-img-wrapper {
  width: 100%;
  max-width: 200px;
  aspect-ratio: 4/5;
}

.presidents-box img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: contain;
}

.presidents-box .president-data {
  color: #000;
  font-family: var(--Roboto);
  font-size: 20px;
  line-height: 150%;
}

.president-section[data-section-theme="dark"] .presidents-boxWrapper .presidents-box .president-data {
  color: white;
}

.publications-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 10px;
}

.publications-title {
  color: var(--Primary1);
  font-family: var(--Roboto);
  font-size: 20px;
  font-weight: 400;
  line-height: 170%;
}

.publications-description {
  color: #000;
  font-family: var(--Roboto);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 212.5%;
}

.presidents-section {
  margin-top: 40px;
}

.presidents-boxWrapper {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.presidents-box {
  padding-top: 24px;
  padding-bottom: 32px;
}

.publications-section {
  padding-bottom: 48px;
}

.president-img-wrapper {
  width: 100%;
  max-width: 200px;
  aspect-ratio: 4/5;
}

.presidents-box img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: contain;
}

.presidents-box .president-data {
  color: #000;
  font-family: Roboto;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.publications-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 10px;
}

.publications-title {
  color: var(--Primary1);
  font-family: var(--Roboto);
  font-size: 20px;
  font-weight: 400;
  line-height: 170%;
}

.publications-description {
  color: #000;
  font-family: var(--Roboto);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 212.5%;
}

.president-section {
  padding-top: 24px;
}

.president-section[data-section-theme="dark"] {
  background: var(--gradientColor);
}

.blue-text {
  color: var(--Primary1) !important;
}

.inner-paragraph .btn {
  border-radius: 8px;
  display: flex;
  height: 80px;
  padding: 14px 18px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 25.2px;
  text-transform: uppercase;
  max-width: 265px;
  width: 100%;
  text-decoration: none !important;
}

.inner-paragraph .btn.btn-white {
  text-decoration: none;
  border: 1px solid var(--Primary1);
  background: #fff;
  color: #005eb8 !important;
}

.inner-paragraph .btn.btn-white:hover {
  background-color: #005eb8;
  color: white !important;
}

.inner-paragraph:has(.btn) {
  display: flex;
  align-items: center;
  gap: 40px;
  font-size: inherit;
  margin-bottom: 40px;
}

.inner-paragraph:has(.btn) br {
  display: none;
}

.membership-guide-section[data-section-theme="dark"] {
  background: var(--gradientColor);
}

.membership-guide-section[data-section-theme="dark"] .inner-h3 {
  color: var(--LightSteelBlue);
}

.membership-guide-section[data-section-theme="dark"] .inner-paragraph {
  color: white;
}

.membership-guide-section[data-section-theme="dark"] .inner-paragraph .text-content {
  color: white;
}

.submenu {
  padding-left: 8px;
}

.menu-item.has-submenu.open ul li {
  list-style-type: none;
  padding: 3.5px 3.5px 3.5px 30px;
}

.menu-item.open ul li.active {
  border-radius: 8px;
  border: 1px solid var(--Primary2Tint-30);
  background: #fff;
}

.menu-item.has-submenu.open ul li a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.menu-item.has-submenu.open ul li a:before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: black;
  display: inline-block;
  margin-right: 10px;
}

.members-left-content {
  width: 100%;
  max-width: 738px;
}

.members-card {
  display: flex;
  padding: 32px 16px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  border-radius: 24px;
  border: 1px solid #d9d9d9;
  width: 100%;
}

.members-card h4 {
  color: #000;
  font-family: var(--RobotoSlab);
  font-size: 32px;
  font-weight: 700;
  line-height: 100%;
  text-align: center;
}

.content-sidebar-section[data-section-theme="dark"] .members-card h4 {
  color: white;
}

.content-sidebar-section[data-section-theme="dark"] .members-card p {
  color: var(--LightSteelBlue);
}

.insurance-card-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 24px;
  overflow: hidden;
}

.insurance-card {
  display: flex;
  padding: 16px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  border-radius: 20px;
  background: var(--Primary1);
  position: relative;
  z-index: 10;
  min-height: 316px;
  overflow: hidden;
}

.insurance-card .accident-img {
  width: 60px;
  height: 60px;
}

.services-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.insurance-card .accidentBgImage {
  aspect-ratio: 1/1;
  z-index: -1;
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
}

.insurance-card .accidentBgImage img {
  max-width: 100%;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.insurance-card-title {
  color: #e6eff8;
  text-align: center;
  font-family: var(--RobotoSlab);
  font-size: 40px;
  font-weight: 600;
  line-height: 120%;
}

.insurance-card-description {
  color: #e6eff8;
  font-family: var(--Roboto);
  font-size: 14px;
  font-weight: 400;
  line-height: 137.143%;
  letter-spacing: 0.5px;
  text-align: center;
}

.accordion-section {
  margin-bottom: 16px;
}

.accordion-section .accordion-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.accordion-section .accordion-content p a {
  color: var(--Primary1);
}

.table-container {
  margin: 24px 0;
  overflow-x: auto;
}

.responsive-table,
.empac-award,
.acf-wysiwyg table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.responsive-table th,
.responsive-table td,
.empac-award th,
.empac-award td ,
.acf-wysiwyg th,
.acf-wysiwyg td{
  padding: 22px 12px;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #ddd;
  border-right: 1px solid #dbdbdb;
  color: #222;
  font-family: var(--Poppins);
  font-size: 20px;
  font-weight: 500;
  line-height: 120%;
}

.responsive-table th img,
.empac-award th img {
  position: relative;
  top: 2px;
}

.responsive-table td:nth-last-child(1),
.empac-award td:nth-last-child(1),
.acf-wysiwyg td:nth-last-child(1){
  border-right: none;
}

.responsive-table thead tr:nth-child(1),
.empac-award thead tr:nth-child(1),
.acf-wysiwyg thead tr:nth-child(1) {
  width: 384px;
  border-right: 1px solid #dbdbdb;
}

.responsive-table thead tr:nth-child(2),
.empac-award thead tr:nth-child(2),
.acf-wysiwyg thead tr:nth-child(2){
  width: 446px;
  border-right: 1px solid #dbdbdb;
}

.responsive-table th,
.empac-award th ,
.acf-wysiwyg th{
  color: #fff;
  padding: 22px;
  font-family: var(--Poppins);
  font-size: 20px;
  font-weight: 500;
  line-height: 120%;
  background: var(--Primary1);
  text-align: left;
}

.responsive-table tr,
.empac-awarde tr, 
.acf-wysiwyg tr{
  background-color: #fcfcfc;
}

strong .text-content {
  font-weight: 700;
}

.insurance-directory-table[data-section-theme="dark"] {
  background: var(--Primary1Shade-20);
  padding: 40px 0;
}

.insurance-directory-table .header {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
}

.insurance-directory-table .inner-h3 {
  margin-bottom: 0;
}

.insurance-directory-table[data-section-theme="dark"] .inner-h3 {
  color: white;
}

.insurance-directory-table .btn {
  padding: 14px 18px;
  height: auto;
}

.insurance-directory-table .inner-paragraph:has(.btn) {
  margin: 0;
}

.past-webinars-card {
  display: flex;
  padding: 40px 24px;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  border-radius: 16px;
  border: 1px solid var(--Silver);
  background: #fafafa;
}

.top-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.past-webinars-title {
  color: #000;
  font-family: var(--Roboto);
  font-size: 24px;
  font-weight: 500;
  line-height: 110%;
}

.past-webinars-month {
  display: flex;
  padding: 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 10px;
  background: #ebebeb;
  color: #000;
  text-align: center;
  font-family: var(--RobotoMono);
  font-size: 14px;
  font-weight: 400;
  line-height: 120%;
}

.black-layer {
  border-radius: 20px;
  background: #000;
  opacity: 30%;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.video-wrapper video {
  width: 100%;
  max-width: 489px;
  border-radius: 20px;
  height: 341px;
  object-fit: cover;
}

.insurance-webinars {
  width: 100%;
  max-width: 628px;
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.past-webinars-card .video-wrapper {
  width: 489px;
  height: 341.524px;
  margin-top: 0;
}


.past-webinars-card-wrapper {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.playIcon {
  width: 104px;
  height: 104px;
}

.past-webinars-card-wrapper.col-2 {
  grid-template-columns: repeat(2, 1fr);
}

.webinars-section .inner-h3 {
  margin-top: 24px;
}

.past-webinars-card-wrapper.col-1 .past-webinars-card {
  max-width: 628px;
  width: 100%;
}

.black-layer,
.playIcon {
  transition: opacity 0.3s ease;
}

/* media */

/* @media (max-width: 1280px) {
  .past-webinars-card-wrapper.col-2 {
    grid-template-columns: repeat(1, 1fr);
  }
} */

/* @media (max-width: 1024px) {
  .insurance-directory-table .header {
    gap: 20px;
  }

  .past-webinars-card-wrapper.col-1 .past-webinars-card {
    max-width: 100%;
  }

  .past-webinars-title {
    font-size: 20px;
  }

  .past-webinars-month {
    font-size: 12px;
    padding: 6px;
    border-radius: 6px;
  }

  .insurance-webinars {
    max-width: 100%;
  }

  .playIcon {
    width: 80px;
    height: 80px;
  }

  .video-wrapper video {
    width: 100%;
    max-width: 100%;
  }

  .left-content .about-content {
    width: 100%;
    max-width: 100%;
  }
} */

/* @media (max-width: 768px) {
  .past-webinars-card-wrapper {
    margin-top: 20px;
  }

 .past-webinars-card .video-wrapper {
    max-width: 400px;
    width: 100%;
    height: 250px;
  }

  .top-heading {
    flex-direction: column;
  }

  .video-wrapper{
    height: 400px;
  }

  .past-webinars-card {
    padding: 24px 18px;
  }
} */

/* @media (max-width: 480px) {
  .past-webinars-card .video-wrapper {
    max-width: 300px;
    width: 100%;
    height: 200px;
  }
  .video-wrapper{
    height: 300px;
    margin-top: 20px;
  }
} */

.large-media-img {
  max-width: 100%;
  width: 100%;
  height: auto;
}

.inner-paragraph img {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
}

.scholarship-section[data-section-theme="dark"] {
  /* background: var(--Primary1Shade-20); */
  background: var(--gradientColor);
  padding: 40px 0px;
}

.scholarship-section[data-section-theme="dark"] .heading2 {
  color: white;
}

.application-card-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  width: 100%;
  max-width: 935px;
  margin: 0 auto;
  margin-top: 16px;
  padding-bottom: 16px;
}

.application-card {
  display: flex;
  padding: 32px;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  border-radius: 24px;
  border: 1px solid #d9d9d9;
  background: #fff;
  width: 100%;
  max-width: 285px;
  height: 100%;
}

.application-icon img {
  width: 60px;
  height: 60px;
}

.application-title {
  color: var(--Primary1);
  font-family: var(--Roboto);
  font-size: 30px;
  font-weight: 700;
  line-height: 86.667%;
  text-align: center;
}

.application-description {
  color: #000;
  text-align: center;
  font-family: var(--RobotoSlab);
  font-size: 16px;
  font-weight: 700;
  line-height: 162.5%;
}

/* @media screen and (max-width: 1024px) {
  .application-card-wrapper {
    gap: 24px;
  }
} */

/* @media screen and (max-width: 640px) {
  .application-card {
    width: 100%;
    max-width: 100%;
  }
} */

/* form */

.form-container {
  padding: 30px 25px;
  border-radius: 12px;
  border: 1px solid #d9d9d9;
  background: #fff;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  margin-top: 16px;
  width: 100%;
  max-width: 654px;
  margin-bottom: 42px;
}

.form-container .referral-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-container label {
  color: #242426;
  font-family: var(--Roboto);
  font-size: 16px;
  font-weight: 400;
  line-height: 125%;
}

.form-container input:not([type="submit"]),
.form-container textarea, 
.form-container select{
  width: 100%;
  padding: 8px 0px;
  border-bottom: 1px solid #e2e4e5 !important;
  outline: none;
  border: 0px solid;
  margin-top: 8px;
}

.form-container input:not([type="submit"])::placeholder,
.form-container textarea::placeholder {
  color: #aaa;
  font-family: var(--Roboto);
  font-size: 14px;
  font-weight: 300;
  line-height: 110%;
}

.form-container input:not([type="submit"]):focus,
.form-container textarea:focus {
  border-color: #007bff;
}

.form-container input[type="submit"]:focus,
.form-container input[type="submit"]:focus-visible {
  border-width: 1px;
  outline: none;
}

/* .wpcf7-spinner {
  display: none;
} */

p:has(.wpcf7-spinner){
  display: flex;
  align-items: center;
}

.wpcf7-spinner{
  display: none;
}

form.submitting .wpcf7-spinner{
  display: block;
}

.two-inputs .inner-paragraph {
  display: flex;
  gap: 10px;
  margin: 0;
}

.form-container textarea {
  height: 120px;
  border-radius: 9px;
  border: 1px solid #ddd;
  background: #fff;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.18);
  padding: 10px;
}

.form-container textarea:focus {
  border-color: #ddd;
}

.form-container .submit-btn {
  display: flex;
  padding: 14px 18px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
  background: var(--Primary1);
  color: #fff;
  text-align: center;
  font-family: var(--RobotoCondensed);
  font-size: 20px;
  font-weight: 500;
  line-height: 120%;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-container .submit-btn:hover {
  background-color: transparent;
  border: 1px solid var(--Primary1);
  color: var(--Primary1);
}

.form-container .button-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}

.referral-form p {
  margin-top: 0;
}

/* @media screen and (max-width: 1024px) {
  .form-container {
    max-width: 100%;
  }

  .button-wrapper {
    width: 100%;
    justify-content: start;
  }

  .submit-btn {
    width: 100%;
  }
} */

/* @media screen and (max-width: 480px) {
  .two-inputs .inner-paragraph {
    flex-direction: column;
  }
  .two-inputs .inner-paragraph  br{
    display: none;
  }
  .form-container input:not([type="submit"]), .form-container textarea{
    margin-top: 8px;
  }
} */

.district-card-wrapper .district-card {
  border-radius: 16px;
  width: calc((100% - (32px * 3)) / 4);
  height: 110px;
}

/* @media (min-width: 1200px) {
  .district-card-wrapper .district-card {
      width: calc((100% - (32px * 3)) / 4);
      height: 110px;
  }
} */

/* @media (max-width: 1199px) and (min-width: 900px) {
  .district-card-wrapper .district-card {
      width: calc((100% - (32px * 2)) / 3); 
      height: 100px;
  }
} */

/* @media (max-width: 899px) and (min-width: 600px) {
  .district-card-wrapper .district-card {
      width: calc((100% - 32px) / 2);
      height: 90px;
  }
} */

/* @media (max-width: 599px) {
  .district-card-wrapper .district-card {
      width: 100%; 
      height: 80px;
  }
} */

.district-card-wrapper .district-card a {
  border-radius: 16px;
  display: flex;
  padding: 32px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  width: 100%;
  height: 100%;
}

.district-card-wrapper {
  display: flex;
  flex-wrap: wrap;
  column-gap: 32px;
  row-gap: 8px;
}

.district-section.full {
  margin-top: 32px;
}

.district-card-wrapper.full .district-card {
  border-radius: 16px;
  width: calc((100% - (32px * 6)) / 7);
  height: 110px;
}

/* @media (min-width: 1200px) {
  .district-card-wrapper.full .district-card {
      width: calc((100% - (32px * 6)) / 7);
      height: 110px;
  }
} */

/* @media (max-width: 1199px) and (min-width: 900px) {
  .district-card-wrapper.full .district-card {
      width: calc((100% - (32px * 3)) / 4);
      height: 100px;
  }
} */

/* @media (max-width: 899px) and (min-width: 600px) {
  .district-card-wrapper.full .district-card {
      width: calc((100% - (32px * 1)) / 2); 
      height: 90px;
  }
} */

/* @media (max-width: 599px) {
  .district-card-wrapper.full .district-card {
      width: 100%; 
      height: 80px;
  }
} */

.district-section {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.district-section h3 {
  margin-top: 0;
}

.aboutvideo-wrapper {
  width: 100%;
  max-width: 489px;
  height: 341px;
  position: relative;
}




/*  */
.search-form {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  /* overflow: hidden; */
}

.search-field {
  width: 0;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.4s ease;
  border-radius: 8px;
  font-size: 16px;
  border-color: transparent;
  background-image: none !important;
}

.search-field:focus,
.search-field:focus-within {
  border-color: transparent;
  outline: none;
}

/* When active */

/* .search-form .search-field {
  position: fixed;
  bottom: -14px;
} */



.search-form .search-field {
  width: 0;
  height: 54px;
  opacity: 1;
  transform: translateX(0);
  background-color: transparent;
}


.search-form.active .search-field {
  width: 250px;
  padding: 10px 15px;
  background-color: white;
}

.search-form.active .search-field {
  border-radius: 8px 0 0 8px;
}

.search-form.active .search-btn {
  border-radius: 0 8px 8px 0;
  background-color: #005eb8;
}

/* Icon toggle states */
.close-icon {
  display: none;
}

/* .search-form.active .search-icon {
  display: none;
} */

.search-form.active .close-icon {
  display: block;
}

/* Remove default "X" (clear) button in search inputs */
.search-field::-webkit-search-decoration,
.search-field::-webkit-search-cancel-button,
.search-field::-webkit-search-results-button,
.search-field::-webkit-search-results-decoration {
  display: none;
}

.search-field::-ms-clear,
.search-field::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}


/* districts */

/* .districts-single{
  padding-top: 200px;
} */

/* officer */


.related-officers {
  margin-top: 32px;
}

.officer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 12px;
}

.officer-card {
  display: flex;
  padding: 32px;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  border-radius: 24px;
  border: 1px solid #D9D9D9;
  background: #FFF;
}

.officer-card .officer-position {
  color: #005EB8;
  font-family: var(--Roboto);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 12px;
}

.officer-card .officer-name {
  color: #191919;
  font-family: var(--RobotoSlab);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px;
  /* 122.222% */
}


.officer-email {
  color: #4C4C4C;
  font-family: var(--RobotoSlab);
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
  /* 171.429% */
}

.districts-single .news-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
}

.districts-single .news-card img {
  width: 100%;
  height: 147px;
  object-fit: cover;
  border-radius: 20px;
}

.districts-single .news-card h3 {
  font-size: 16px;
}

.districts-single .date {
  font-size: 11px;
}

.districts-single .tag {
  font-size: 12px;
}

.districts-single .news-card {
  border-radius: 16px;
}

.view-all-btn {
  padding: 20px 0 32px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.related-officers .officer-category+.officer-category {
  margin-top: 32px;
}

/* .related-officers div:last-child{
  margin-bottom: 32px;
} */

/* gallery */

.district-gallery {
  max-width: 738px;
  margin: 12px auto 0;
  padding: 61.5px 24px;
  border-radius: 16px;
  border: 1px solid #D9D9D9;
}

.district-gallery .slide-image img {
  width: 100%;
  height: 388px;
  flex-shrink: 0;
  align-self: stretch;
  aspect-ratio: 690/287;
  object-fit: cover;
}

.district-gallery .slide-caption {
  text-align: center;
  margin-bottom: 38px;
  max-width: 554px;
  width: 100%;
  margin: 0 auto;
}

.district-gallery .slide-caption h4 {
  font-weight: 700;
  margin-bottom: 5px;
}

.district-gallery .swiper-button-prev,
.district-gallery .swiper-button-next {
  color: white;
}

.district-gallery .swiper-pagination {
  color: #2E3032;
  text-align: center;
  font-family: var(--Roboto);
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  padding: 0;
}

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


.district-gallery .swiper-button-prev,
.district-gallery .swiper-button-next {
  position: static;
  margin-top: 32px !important;
}

.district-gallery-section h3 {
  margin-top: 32px;
}

.related-officers.full-row .officer-grid {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.related-officers.full-row {
  margin-bottom: 32px;
}

.newsletter-section {
  margin-top: 32px;
}


.bottom-icon button {
  border: none;
  background-color: transparent;
}



/*  */

.district-gallery .swiper-pagination {
  position: static !important;
  margin-top: 32px;
}

.no-post-found {
  margin: 50px 0;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}


.search-form .search-field::placeholder {
  color: #787878;
  font-family: var(--Roboto);
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
  /* 22.4px */
}

body.search main {
  padding-top: 180px;
}

body.search main * {
  font-family: var(--Roboto);
}

body.search .wp-block-search__button {
  background-color: var(--Primary1);
}

body.search .wp-block-search__button:focus,
body.search .wp-block-search__button:focus-within {
  outline: none;
  border: none;
}

body.search .wp-block-search__button-outside {
  display: none;
}

body.error404 main {
  padding-top: 150px;
}

body.error404 main * {
  font-family: var(--Roboto);
}

body.error404 .wp-block-search__button {
  background-color: var(--Primary1);
}

/* test */


.inner-paragraph img.profile-img {
  max-width: 200px;
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.inner-paragraph+section table.empac-award {
  margin-top: 20px;
}

/* insurance single */

.insurance-single .acf-wysiwyg img:not(.pdf-image):not(.side-image) {
  border-radius: 20px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  height: 440px;
}

.insurance-single .acf-wysiwyg img.side-image {
  max-width: 300px;
  width: 100%;
  height: auto;
  object-fit: contain;
  display: inline-block;
}

.insurance-single .main-heading {
  margin-top: 16px;
}

.inner+.inner-list-link {
  margin-top: 5px;
}

.inner+.inner-list-link li a {
  margin-bottom: 0;
}

.brightcove-player,
.youtube-player,
.youtube-player iframe,
.vimeo-player,
.vimeo-player iframe {
  max-width: 100%;
  width: 100%;
  height: 100%;
}

/* .video-wrapper > div{
  background-color: var(--footerBottom);
} */

.inner-list-link li:has(strong) a {
  font-weight: 700;
}

section.insurance-single {
  padding-bottom: 50px;
}

.insurance-single .inner-paragraph:has(.btn) {
  display: flex;
  justify-content: center;
}

.vimeo-player {
  background-color: black;
}

.insurance-single .video-wrapper {
  max-width: 100%;
}


.search-form .search-btn {
  min-width: 38px;
}

.search-form .search-btn:focus,
.search-form .search-btn:focus-within {
  outline: none;
  border: none;
}

.close-icon {
  color: white;
  font-size: 16px;
}



.rounded-image {
  border-radius: 20px;
}

.content-block .inner-paragraph:has(img) img:not(.pdf-image):not(.poster-img):not(.retire-image) {
  max-width: 100%;
  width: 100%;
  height: 443px;
  object-fit: cover;
}


.discount-image {
  margin-top: 20px;
}

.discount-image img {
  max-width: 400px;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/*  */


.featured-title {
  text-align: center;
  padding-top: 30px;
  padding-bottom: 14px;
}

.search-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 20px;
}

.filter-btn {
  display: flex;
  padding: 14px 18px;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
  border: 1px solid var(--Silver);
  background: #fff;
  color: var(--Primary1);
  text-align: center;
  font-family: var(--RobotoCondensed);
  font-size: 18px;
  font-weight: 500;
  line-height: 140%;
  text-transform: uppercase;
  cursor: pointer;
}

.filter-btn:focus,
.filter-btn:focus-within {
  border-color: var(--Silver) !important;
  outline: none !important;
}

.featured-discounts .search {
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  border: 1px solid var(--Silver);
  background: #fff;
  width: 100%;
  max-width: 518px;
  outline: none;
  padding: 0px 10px;
}

.featured-discounts  input {
  padding: 17px 0px;
  border: 1px solid transparent;
  background: #fff;
  width: 100%;
  max-width: 518px;
  outline: none;
}

input::placeholder {
  color: #c4c4c4;
  font-family: var(--Roboto);
  font-size: 14px;
  font-style: italic;
  font-weight: 400;
  line-height: 142.857%;
  /* */
}

.shortby-btn {
  display: flex;
  padding: 14px 18px;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
  border: 1px solid var(--Silver) !important;
  background: #fff;
  color: var(--Primary1);
  text-align: center;
  font-family: var(--RobotoCondensed);
  font-size: 18px;
  font-weight: 500;
  line-height: 140%;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
}

.shortby-btn:focus,
.shortby-btn:focus-within {
  border-color: var(--Silver) !important;
  outline: none !important;
}

.featured-card-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.featured-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 10px 10px 30px 10px;
  justify-content: space-between;
  align-items: center;
  border-radius: 16px;
  border: 1px solid #d9d9d9;
}

.featured-img img {
  width: 100%;
  height: auto;
}

.featured-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.featured-title {
  color: #000;
  font-family: var(--Roboto);
  font-size: 16px;
  font-weight: 500;
  line-height: 120%;
  margin-bottom: 0px;
  margin-top: 16px;
}

.pagination-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 24px 0;
  gap: 15px;
}

.pagination-box-wrapper {
  display: flex;
  gap: 10px;
}

.pagination-box {
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14),
    0 1px 5px 0 rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: var(--Global-White, #fff);
  padding: 5px;
  cursor: pointer;
  width: 34px;
  height: 34px;
  border: none;
  outline: none;
}

.pagination-box span {
  font-size: 16px;
  font-family: var(--Roboto);
}

.active-box {
  background-color: var(--Primary1);
  color: white;
}

.previous-arrow svg {
  rotate: 90deg;
  width: 24px;
  width: 24px;
}

.next-arrow svg {
  rotate: 270deg;
  width: 24px;
  width: 24px;
}


.pagination-box.disabled svg path {
  fill: #CCC !important;
}

.pagination-box svg path {
  fill: black !important;
}

.no-results {
  margin: 40px 0;
  text-align: center;
  font-weight: 500;
}

.featured-discounts {
  padding-bottom: 32px;
}

.featured-discounts h3 {
  text-align: center;
  padding-top: 30px;
  padding-bottom: 14px;
}

.theme-park-ticket-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  row-gap: 24px;
  column-gap: 20px;
}

.theme-park-ticket-list .ticket-item img {
  max-width: 100%;
  width: 100%;
  height: 100%;
}

.theme-park-ticket-list .ticket-item {
  padding: 10px;
  border-radius: 16px;
  border: 1px solid #D9D9D9;
}

/* events */

.mec-wrap .mec-totalcal-box {
  background-color: transparent;
  padding: 0;
  border: none;
}

.mec-wrap .mec-totalcal-box label,
.mec-fes-form label,
.mec-fes-form span.mec-label,
.mec-fes-form .mec-meta-box-fields h4,
.mec-fes-form .mec-meta-box-fields h4 label {
  color: #000;
  font-family: var(--RobotoSlab);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px;
  margin-bottom: 10px;
}

.mec-checkboxes-search .mec-searchbar-category-wrap,
.mec-wrap .mec-totalcal-box .mec-totalcal-view span,
.mec-wrap .mec-totalcal-box input,
.mec-wrap .mec-totalcal-box select,
.mec-wrap .mec-totalcal-box i {
  border: none;
}

.mec-wrap .mec-totalcal-box input[type=search],
.colorskin-custom .mec-events-meta-group-countdown .mec-end-counts h3,
.leaflet-popup-content .mec-color,
.leaflet-popup-content .mec-color-before :before,
.leaflet-popup-content .mec-color-hover:hover,
.leaflet-popup-content .mec-wrap .mec-color,
.leaflet-popup-content .mec-wrap .mec-color-before :before,
.leaflet-popup-content .mec-wrap .mec-color-hover:hover,
.lity .mec-color,
.lity .mec-color-before :before,
.lity .mec-color-hover:hover,
.lity .mec-wrap .mec-color,
.lity .mec-wrap .mec-color-before :before,
.lity .mec-wrap .mec-color-hover:hover,
.mec-attendees-list-details .mec-attendee-profile-link a:hover,
.mec-av-spot .mec-av-spot-head .mec-av-spot-box span,
.mec-booking-calendar-month-navigation .mec-next-month:hover,
.mec-booking-calendar-month-navigation .mec-previous-month:hover,
.mec-calendar .mec-calendar-side .mec-next-month i,
.mec-calendar .mec-event-article .mec-event-title a:hover,
.mec-calendar-events-side .mec-modal-booking-button:hover,
.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day.mec-daily-view-day-active.mec-color,
.mec-choosen-time-message,
.mec-event-container-classic .mec-modal-booking-button:hover,
.mec-event-grid-minimal .mec-modal-booking-button:hover,
.mec-event-grid-simple .mec-modal-booking-button,
.mec-event-grid-yearly .mec-modal-booking-button,
.mec-event-list-minimal .mec-modal-booking-button:hover,
.mec-events-agenda .mec-modal-booking-button,
.mec-events-timeline-wrap .mec-organizer-item a,
.mec-events-timeline-wrap .mec-organizer-item:after,
.mec-events-timeline-wrap .mec-shortcode-organizers i,
.mec-map-boxshow .mec-color,
.mec-map-boxshow .mec-color-before :before,
.mec-map-boxshow .mec-color-hover:hover,
.mec-map-boxshow .mec-wrap .mec-color,
.mec-map-boxshow .mec-wrap .mec-color-before :before,
.mec-map-boxshow .mec-wrap .mec-color-hover:hover,
.mec-map-boxshow div .mec-map-view-event-detail.mec-event-detail i,
.mec-map-boxshow div .mec-map-view-event-detail.mec-event-detail:hover,
.mec-marker-infowindow-wp .mec-marker-infowindow-count,
.mec-next-event-details a,
.mec-next-event-details i:before,
.mec-single-event .mec-speakers-details ul li .mec-speaker-name,
.mec-skin-list-events-container .mec-data-fields-tooltip .mec-data-fields-tooltip-box ul .mec-event-data-field-item a,
.mec-timeline-event .mec-modal-booking-button,
.mec-timeline-month-divider,
.mec-timetable-t2-col .mec-modal-booking-button:hover,
.mec-wrap .mec-map-lightbox-wp.mec-event-list-classic .mec-event-date,
.mec-wrap .mec-totalcal-box i,
.mec-wrap.colorskin-custom .mec-color,
.mec-wrap.colorskin-custom .mec-event-grid-simple .mec-event-title:hover,
.mec-wrap.colorskin-custom .mec-event-list-classic a.magicmore:hover,
.mec-wrap.colorskin-custom .mec-event-sharing-wrap .mec-event-sharing>li:hover a,
.mec-wrap.colorskin-custom .mec-events-masonry-cats a.mec-masonry-cat-selected,
.mec-wrap.colorskin-custom .mec-events-meta-group.mec-events-meta-group-venue:before,
.mec-wrap.colorskin-custom .mec-infowindow-wp h5 a:hover,
.mec-wrap.colorskin-custom .mec-next-event-details li i,
.mec-wrap.colorskin-custom .mec-single-event .mec-event-meta dd.mec-events-event-categories:before,
.mec-wrap.colorskin-custom .mec-single-event-date:before,
.mec-wrap.colorskin-custom .mec-single-event-time:before,
.mec-wrap.colorskin-custom .mec-totalcal-box .mec-totalcal-view span:hover,
.mec-wrap.colorskin-custom .mec-widget .mec-event-grid-classic.owl-carousel .owl-nav i,
.mec-wrap.mec-cart table tr td a,
.mec-yearly-view-wrap .mec-agenda-event-title a:hover,
.mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year i,
.mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year:hover,
.mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year:hover .mec-load-month-link,
.mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year i,
.mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year:hover,
.mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year:hover .mec-load-month-link {
  color: black;
  border-radius: 8px 0 0 8px;
  border: 1px solid #005EB8;
  border-right: none;
  max-width: 100%;
}

.mec-checkboxes-search .mec-searchbar-category-wrap,
.mec-wrap .mec-search-form .mec-dropdown-wrap .mec-dropdown-search select,
.mec-wrap .mec-totalcal-box input[type=search] {
  border-radius: 0 8px 8px 0;
  border: 1px solid #005EB8;
  border-left: none;
}

.mec-custom-button {
  border: none;
}

.mec-wrap .mec-totalcal-box input[type=search] {
  border-radius: 0 8px 8px 0 !important;
}

.mec-checkboxes-search .mec-searchbar-category-wrap,
.mec-wrap .mec-totalcal-box .mec-totalcal-view span,
.mec-wrap .mec-totalcal-box input,
.mec-wrap .mec-totalcal-box select,
.mec-wrap .mec-totalcal-box i {
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}


.mec-checkboxes-search .mec-searchbar-category-wrap,
.mec-wrap .mec-search-form .mec-dropdown-wrap .mec-dropdown-search select,
.mec-wrap .mec-totalcal-box input[type=search] {
  color: #C4C4C4;
  font-family: var(--Roboto);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

/* Remove outline and border on focus for MEC search inputs and dropdowns */
.mec-checkboxes-search .mec-searchbar-category-wrap:focus,
.mec-checkboxes-search .mec-searchbar-category-wrap:focus-visible,
.mec-wrap .mec-search-form .mec-dropdown-wrap .mec-dropdown-search select:focus,
.mec-wrap .mec-search-form .mec-dropdown-wrap .mec-dropdown-search select:focus-visible,
.mec-wrap .mec-totalcal-box input[type=search]:focus,
.mec-wrap .mec-totalcal-box input[type=search]:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}


.mec-custom-button,
.mec-fes-form-top-actions a,
.mec-fes-list-top-actions a,
.mec-fes-form button[type=submit].mec-fes-sub-button {
  display: inline-flex;
}


.mec-calendar .mec-calendar-side .mec-next-month i,
.mec-calendar .mec-calendar-side .mec-previous-month i {
  font-size: 14px;
  font-weight: bold;
  color: black;
  border: none;

}

.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,
.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month {
  border: none;
  box-shadow: none;
}

.mec-next-month a,
.mec-previous-month a {
  font-size: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}


.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-previous-month {
  right: 65px;
  left: unset;
}

.mec-custom-button {
  display: inline-flex;
  position: absolute;
  left: 20.992px;
  z-index: 100;
}

.mec-calendar .mec-calendar-header h2 {
  padding: 16px 0 0;
  margin: 0;
}


.mec-box-calendar.mec-calendar .mec-calendar-header {
  margin-top: 2px;
  margin-bottom: 50px;
  margin-top: 0;
}


.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-previous-month,
.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-next-month {
  border-radius: 4px;
  background: white;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.20), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  padding: 0;
  width: 34px;
  height: 34px;
}

.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-previous-month,
.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-next-month {
  width: 34px;
  height: 34px;
  min-width: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}


.mec-calendar.mec-event-calendar-classic .mec-calendar-side {
  display: block;
  border-radius: 10.496px;
  background: #FFF;
  box-shadow: 0 0 10.496px 1.968px rgba(0, 0, 0, 0.15);
  padding: 20.992px;
}

.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-next-month,
.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-previous-month {
  top: 20.992px;
}

.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-next-month {
  right: 20.992px;
}

.mec-calendar .mec-calendar-side .mec-previous-month i {
  padding-left: 6px;
}

.mec-calendar .mec-calendar-side .mec-next-month i {
  padding-right: 6px;
}

.mec-calendar .mec-event-article.mec-single-event-novel {
  margin: 6px;
  border-radius: 2.624px;
}

.mec-events-template-default main {
  padding-top: 220px;
}


.mec-events-template-default main .wp-block-group {
  display: none;
}


.mec-single-event .mec-event-content {
  padding: 0;
  margin-bottom: 10px;
}

.mec-events-template-default main {
  font-family: var(--Roboto);
}

.mec-events-template-default main .mec-wrap .mec-single-title {
  color: #000;
  font-family: var(--Roboto);
  font-size: 36px;
  font-weight: 500;
  line-height: 110%;
  margin-bottom: 10px;
}

.mec-events-template-default .has-global-padding {
  padding: 0 !important;
}

.mec-border-color,
.mec-border-color-hover:hover,
.mec-wrap .mec-border-color,
.mec-wrap .mec-border-color-hover:hover {
  border-color: #005eb8;
}

.mec-color,
.mec-color-before :before,
.mec-color-hover:hover,
.mec-wrap .mec-color,
.mec-wrap .mec-color-before :before,
.mec-wrap .mec-color-hover:hover {
  color: #005eb8;
}

.mec-bg-color,
.mec-bg-color-hover:hover,
.mec-wrap .mec-bg-color,
.mec-wrap .mec-bg-color-hover:hover {
  background-color: #005eb8;
}

.mec-events-meta-group-booking .mec-booking-shortcode,
.mec-single-event .mec-events-meta-group-booking,
.mec-single-event .mec-frontbox {
  padding: 20px;
}

.mec-single-event .mec-frontbox-title:before {
  border-color: #005eb8;
}

.mec-fes-form,
.mec-fes-form .html-active .switch-html,
.mec-fes-form .mec-attendees-wrapper .mec-attendees-list .w-clearfix,
.mec-fes-form .tmce-active .switch-tmce,
.mec-fes-form .wp-editor-tabs .wp-switch-editor:active {
  padding: 0;
  background: transparent;
}

#mec_fes_form,
.mec-fes-form-top-actions {
  max-width: 100%;
  width: 100%;
}

.mec-fes-form .mec-fes-form-cntt {
  max-width: 100% !important;
  width: 100% !important;
}


.mec-fes-form input[type=text]#mec_fes_title {
  box-shadow: none;
  border-color: #005EB8;
}

.mec-fes-form .mec-meta-box-fields h4,
.mec-fes-form .quicktags-toolbar,
.mec-fes-form div.mce-toolbar-grp {
  background-color: transparent;
}

.mec-fes-form #mec-event-data input[type=date],
.mec-fes-form #mec_bfixed_form_field_types .button,
.mec-fes-form #mec_bfixed_form_fields input[type=checkbox],
.mec-fes-form #mec_bfixed_form_fields input[type=radio],
.mec-fes-form #mec_reg_form_field_types .button,
.mec-fes-form #mec_reg_form_fields input[type=checkbox],
.mec-fes-form #mec_reg_form_fields input[type=radio],
.mec-fes-form .mce-tinymce.mce-container.mce-panel,
.mec-fes-form .mce-toolbar .mce-btn-group .mce-btn.mce-listbox,
.mec-fes-form .mec-meta-box-fields,
.mec-fes-form .quicktags-toolbar,
.mec-fes-form .wp-editor-tabs .wp-switch-editor,
.mec-fes-form div.mce-toolbar-grp,
.mec-fes-form input[type=checkbox],
.mec-fes-form input[type=email],
.mec-fes-form input[type=number],
.mec-fes-form input[type=password],
.mec-fes-form input[type=radio],
.mec-fes-form input[type=tel],
.mec-fes-form input[type=text],
.mec-fes-form input[type=url],
.mec-fes-form select,
.mec-fes-form textarea,
.mec-fes-form ul#mec_bfixed_form_fields li,
.mec-fes-form ul#mec_reg_form_fields li,
.mec-fes-list input[type=search],
.mec-fes-list select,
.mec-fes-list ul li {
  border-color: #005EB8;
}

.mec-fes-form #mec_bfixed_form_field_types .button,
.mec-fes-form #mec_reg_form_field_types .button,
.mec-fes-form .html-active .switch-html,
.mec-fes-form .mec-attendees-wrapper .mec-attendees-list .mec-booking-attendees-tooltip:before,
.mec-fes-form .mec-form-row .button:not(.wp-color-result),
.mec-fes-form .mec-form-row .quicktags-toolbar input.button.button-small,
.mec-fes-form .mec-meta-box-fields h4,
.mec-fes-form .mec-meta-box-fields h4 label,
.mec-fes-form .mec-title span.mec-dashicons,
.mec-fes-form .tmce-active .switch-tmce,
.mec-fes-form .wp-editor-tabs .wp-switch-editor:active,
.mec-fes-form input[type=file],
.mec-fes-list .mec-form-row .button,
.mec-fes-list ul li a:hover {
  color: black;
}

.mec-fes-list {
  background: transparent;
  padding: 0;
  color: black;
}

.mec-fes-list .mec-fes-list-top-actions,
.mec-fes-list ul {
  max-width: 100%;
}

.mec-fes-form .mec-book-confirmed,
.mec-fes-list .mec-book-confirmed {
  background: #005eb8 !important;
}

.mec-fes-list ul li .mec-event-status {
  float: left;
  margin-right: 10px;
  margin-left: 0;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .3px;
  border-radius: 3px;
  padding: 5px 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.mec-fes-form .post-status.mec-book-confirmed:before,
.mec-fes-list ul li .mec-event-status.mec-book-confirmed:before {
  content: none;
}

.mec-fes-form .mec-form-row .button:not(.wp-color-result),
.mec-fes-form input[type=file],
.mec-fes-list .mec-form-row .button {
  border-color: #005EB8;
}

.mec-fes-list ul li .mec-fes-event-edit a,
.mec-fes-list ul li .mec-fes-event-export a,
.mec-fes-list ul li .mec-fes-event-remove,
.mec-fes-list ul li .mec-fes-event-view a {
  padding: 4px 8px;
  display: inline-block;
  border: 1px solid #e7e8e9;
  border-radius: 2px;
  color: #789;
  position: relative;
  background: transparent;
  height: 24px;
  width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mec-fes-list .inner-list-link li a {
  margin: 0;
}

.mec-fes-list ul li .mec-fes-event-edit,
.mec-fes-list ul li .mec-fes-event-remove,
.mec-fes-list ul li .mec-fes-event-view {
  background: transparent;
}

.mec-fes-list ul li .mec-fes-event-edit a:hover,
.mec-fes-list ul li .mec-fes-event-view a:hover {
  background-color: #005eb8;
  border-color: #005eb8;
}

.mec-wrap .mec-search-form .mec-dropdown-wrap .mec-dropdown-search select,
.mec-fes-form select,
.mec-fes-list select,
.select2-container--default .select2-selection--single .select2-selection__arrow b {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath fill='none' stroke='%23000' stroke-width='2' d='M1 1l4 4 4-4'/%3E%3C/svg%3E") no-repeat right 10px center;
  padding-right: 30px;
}


.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: unset;
  border-style: unset;
  border-width: unset;
  height: unset;
  left: unset;
  margin-left: unset;
  margin-top: unset;
  position: unset;
  top: 50%;
  width: 0;
  top: 4px;
  position: relative;
  padding-right: 24px;
}

.mec-fes-form .select2-container {
  margin: 0;
}

.mec-fes-form .select2-container {
  width: 100% !important;
}

.mec-wrap .mec-totalcal-box input[type=search] {
  color: black;
}

.mec-fes-sub-button {
  width: fit-content !important;
}

.mec-wrap.colorskin-custom .mec-calendar .mec-calendar-side .mec-previous-month i {
  color: #005eb8;
}

/* hide componeents from events form */
.box.top+.dashicons-before,
#mec_comment,
#mec_meta_box_repeat_form,
#mec_comment+.inner-paragraph,
#mec_hide_end_time,
#mec_hide_end_time+label,
#mec_allday,
#mec_allday+label,
#mec_hide_time,
#mec_hide_time+label,
#wp-mec_fes_content-editor-container,
#wp-mec_fes_content-editor-tools {
  display: none !important;
}

.mec-fes-form .mec-meta-box-fields {
  border: none;
  padding: 0;
}

.mec-fes-form textarea {
  max-width: 100%;
  width: 100%;
}

.mec-fes-form input[type=radio] {
  width: inherit;
}

.mec-fes-form .mec-tooltip .dashicons-before:before,
.mec-wrap.colorskin-custom .mec-calendar.mec-event-calendar-classic .mec-selected-day {
  color: #005eb8 !important;
}

.mec-fes-form .select2-container {
  border-color: #005eb8;
  border-radius: 4px;
}

.mec-fes-form .mec-form-row .mec-col-6 input[type=text] {
  max-width: 100%;
}


.mec-fes-form #mec_bfixed_form_field_types .button,
.mec-fes-form #mec_reg_form_field_types .button,
.mec-fes-form .mec-meta-box-fields {
  box-shadow: none;
}

@media (min-width: 783px) {

  .mec-fes-form .mec-col-6,
  .mec-fes-list .mec-col-6 {
    width: 25%;
  }
}

body:has(.mec-fes-form) .select2-container--open .select2-dropdown--below {
  border: 1px solid #005eb8;
}

body:has(.mec-fes-form) .select2-search--dropdown .select2-search__field {
  border-color: #005eb8 !important;
}

.mec-fes-form input[type=text]#mec_fes_title {
  height: 36px;
}

.mec-form-row.mec-fes-title,
div#mec-date-time,
#mec-event-data,
.mec-fes-form .mec-fes-form-cntt {
  border-bottom: 1px solid #d9d9d9;
  padding-bottom: 20px;
}

.mec-form-row.mec-fes-submit-wide {
  border-top: 1px solid #d9d9d9;
  padding-top: 20px;
}


.mec-form-row .mec-col-8 input[type=text] {
  max-width: 100%;
  width: 100%;
}

.mec-form-row input[type=checkbox] {
  width: 24px;
  height: 24px;
}

.mec-fes-form label input[type=checkbox] {
  margin-right: 10px;
}

.mec-fes-form label:not(.mec-title label) {
  font-weight: 400;
}

body:has(.mec-fes-form) .select2-container--default .select2-results__option--selected {
  background-color: transparent !important;
}

.mec-fes-form button[type=submit].mec-fes-sub-button:focus,
.mec-fes-form button[type=submit].mec-fes-sub-button:focus-within {
  background-color: #005eb8 !important;
  margin-bottom: 0;
  outline: none !important;
}



.affiliates-img {
  width: 100%;
  max-width: 486px;
  aspect-ratio: 486/162;
  margin: 0 auto;
}

.affiliates-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.affiliates-left {
  width: 100%;
  max-width: 676px;
  padding: 32px 24px;
  border-radius: 16px;
  border: 1px solid var(--Silver);
}

.cards-border {
  padding: 32px 24px;
  border-radius: 16px;
  border: 1px solid var(--Silver);
  margin-top: 48px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
}

.affiliates-section.full-row .affiliates-left {
  max-width: 100%;
  width: 100%;
}

.affiliates-section.full-row .affiliates-left {
  margin-top: 80px;
}

.affiliates-section {
  margin-top: 16px;
}

.affiliates-left .inner-h3 {
  margin-top: 0;
}

.affiliates-section.full-row {
  padding-bottom: 32px;
}

.content-sidebar-section .container>.subtitle {
  text-align: left;
  margin-bottom: 16px;
}


.mec-fes-form .mec-fes-form-sdbr {
  padding-left: 0 !important;
}

.mec-fes-form .mec-fes-form-sdbr {
  max-width: 100% !important;
  width: 100% !important;
}

/* events test */
.district-events-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mec-district-event {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 16px;
  border: 1px solid var(--Global-Silver, #D9D9D9);
  background: #FFF;
  padding: 16px;
}

.mec-date-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 120px;
  /* border-right: 1px solid #e5e7eb; */
  padding-right: 15px;
  border-radius: 8px;
  background: var(--Primary2-Tint-10, #F6FBFE);
  padding: 16px;
}

.mec-date-text {
  color: var(--Neutral-90, #171819);
  font-family: var(--Roboto);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 34px;
  /* 188.889% */
  line-height: 1;
  text-transform: uppercase;
}

.mec-rsvp-btn {
  display: flex;
  height: 40px;
  padding: 16px;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex: 1 0 0;
  color: var(--Primary1-0, #005EB8);

  /* Regular Header 2/H4 */
  font-family: var(--Roboto);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 34px;
  /* 188.889% */
  letter-spacing: 1.08px;
  text-transform: uppercase;
  background-color: white;
  width: 100%;
  border-radius: 8px;
}

.mec-event-details {
  flex-grow: 1;
  padding: 0 20px;
}

.mec-event-title {
  color: #005EB8;
  font-family: var(--RobotoSlab);
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
  /* 122.222% */
}

.mec-event-location .location {
  color: #171819;
  text-align: justify;
  font-family: var(--Roboto);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 150% */
}

.mec-event-title:hover {
  text-decoration: underline;
}

.mec-event-location {
  display: flex;
  align-items: center;
  margin-top: 16px;
}

.mec-location-icon {
  margin-top: 3px;
  margin-right: 3px;
}

.mec-event-time {
  color: #575757;

  /* Regular Header/H6 */
  font-family: var(--RobotoSlab);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  white-space: nowrap;
}

/* events test */

.date-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.events-section {
  margin-top: 56px;
}


.events-section+.related-news {
  margin-top: 50px;
}

.mec-wrap.colorskin-custom .mec-color-before :before {
  color: black;
}

.colorskin-custom .mec-events-meta-group-countdown .mec-end-counts h3,
.leaflet-popup-content .mec-color,
.leaflet-popup-content .mec-color-before :before,
.leaflet-popup-content .mec-color-hover:hover,
.leaflet-popup-content .mec-wrap .mec-color,
.leaflet-popup-content .mec-wrap .mec-color-before :before,
.leaflet-popup-content .mec-wrap .mec-color-hover:hover,
.lity .mec-color,
.lity .mec-color-before :before,
.lity .mec-color-hover:hover,
.lity .mec-wrap .mec-color,
.lity .mec-wrap .mec-color-before :before,
.lity .mec-wrap .mec-color-hover:hover,
.mec-attendees-list-details .mec-attendee-profile-link a:hover,
.mec-av-spot .mec-av-spot-head .mec-av-spot-box span,
.mec-booking-calendar-month-navigation .mec-next-month:hover,
.mec-booking-calendar-month-navigation .mec-previous-month:hover,
.mec-calendar .mec-calendar-side .mec-next-month i,
.mec-calendar .mec-event-article .mec-event-title a:hover,
.mec-calendar-events-side .mec-modal-booking-button:hover,
.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day.mec-daily-view-day-active.mec-color,
.mec-choosen-time-message,
.mec-event-container-classic .mec-modal-booking-button:hover,
.mec-event-grid-minimal .mec-modal-booking-button:hover,
.mec-event-grid-simple .mec-modal-booking-button,
.mec-event-grid-yearly .mec-modal-booking-button,
.mec-event-list-minimal .mec-modal-booking-button:hover,
.mec-events-agenda .mec-modal-booking-button,
.mec-events-timeline-wrap .mec-organizer-item a,
.mec-events-timeline-wrap .mec-organizer-item:after,
.mec-events-timeline-wrap .mec-shortcode-organizers i,
.mec-map-boxshow .mec-color,
.mec-map-boxshow .mec-color-before :before,
.mec-map-boxshow .mec-color-hover:hover,
.mec-map-boxshow .mec-wrap .mec-color,
.mec-map-boxshow .mec-wrap .mec-color-before :before,
.mec-map-boxshow .mec-wrap .mec-color-hover:hover,
.mec-map-boxshow div .mec-map-view-event-detail.mec-event-detail i,
.mec-map-boxshow div .mec-map-view-event-detail.mec-event-detail:hover,
.mec-marker-infowindow-wp .mec-marker-infowindow-count,
.mec-next-event-details a,
.mec-next-event-details i:before,
.mec-single-event .mec-speakers-details ul li .mec-speaker-name,
.mec-skin-list-events-container .mec-data-fields-tooltip .mec-data-fields-tooltip-box ul .mec-event-data-field-item a,
.mec-timeline-event .mec-modal-booking-button,
.mec-timeline-month-divider,
.mec-timetable-t2-col .mec-modal-booking-button:hover,
.mec-wrap .mec-map-lightbox-wp.mec-event-list-classic .mec-event-date,
.mec-wrap .mec-totalcal-box i,
.mec-wrap.colorskin-custom .mec-calendar .mec-calendar-side .mec-next-month:hover,
.mec-wrap.colorskin-custom .mec-calendar .mec-calendar-side .mec-next-month:hover .mec-load-month-link,
.mec-wrap.colorskin-custom .mec-calendar .mec-calendar-side .mec-previous-month i,
.mec-wrap.colorskin-custom .mec-calendar .mec-calendar-side .mec-previous-month:hover,
.mec-wrap.colorskin-custom .mec-calendar .mec-calendar-side .mec-previous-month:hover .mec-load-month-link,
.mec-wrap.colorskin-custom .mec-calendar.mec-event-calendar-classic .mec-selected-day,
.mec-wrap.colorskin-custom .mec-calendar.mec-event-calendar-classic dt.mec-selected-day:hover,
.mec-wrap.colorskin-custom .mec-color,
.mec-wrap.colorskin-custom .mec-color-before :before,
.mec-wrap.colorskin-custom .mec-color-hover:hover,
.mec-wrap.colorskin-custom .mec-event-grid-simple .mec-event-title:hover,
.mec-wrap.colorskin-custom .mec-event-list-classic a.magicmore:hover,
.mec-wrap.colorskin-custom .mec-event-sharing-wrap .mec-event-sharing>li:hover a,
.mec-wrap.colorskin-custom .mec-events-masonry-cats a.mec-masonry-cat-selected,
.mec-wrap.colorskin-custom .mec-events-meta-group.mec-events-meta-group-venue:before,
.mec-wrap.colorskin-custom .mec-infowindow-wp h5 a:hover,
.mec-wrap.colorskin-custom .mec-next-event-details li i,
.mec-wrap.colorskin-custom .mec-single-event .mec-event-meta dd.mec-events-event-categories:before,
.mec-wrap.colorskin-custom .mec-single-event-date:before,
.mec-wrap.colorskin-custom .mec-single-event-time:before,
.mec-wrap.colorskin-custom .mec-totalcal-box .mec-totalcal-view span:hover,
.mec-wrap.colorskin-custom .mec-widget .mec-event-grid-classic.owl-carousel .owl-nav i,
.mec-wrap.mec-cart table tr td a,
.mec-yearly-view-wrap .mec-agenda-event-title a:hover,
.mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year i,
.mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year:hover,
.mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year:hover .mec-load-month-link,
.mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year i,
.mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year:hover,
.mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year:hover .mec-load-month-link {
  color: #005EB8;
}



a.btn.btn-sm {
  height: auto;
  width: auto;
}

.inner-paragraph:has(.btn.btn-sm) {
  display: flex;
  align-items: center;
  justify-content: center;
}


.inner-heading-5 {
  color: #005EB8;
  font-family: var(--Roboto);
  font-size: 30px;
  font-weight: 700;
  line-height: 26px;
}

.timeline.full-row {
  padding-bottom: 32px;
}

/* tabs */

.custom-accordion {
  width: 100%;
  border-radius: 8px;
  border: 1px solid #E2E8F0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.10), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  margin-top: 8px;
}

.custom-accordion .accordion-item {
  overflow: hidden;
}

.custom-accordion .accordion-header {
  display: flex;
  padding: 14px;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  cursor: pointer;
  border: none;
  color: #005EB8;
  font-family: var(--RobotoSlab);
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  width: 100%;
  background-color: transparent;
  border-bottom: 1px solid #E2E8F0;
}

.custom-accordion .accordion-content .inner-list-link li:last-child a {
  margin-bottom: 0;
}

.custom-accordion .accordion-header:focus,
.accordion-header:focus-visible {
  outline: none;
}

.custom-accordion .accordion-content {
  border-bottom: 1px solid #E2E8F0;
}

.custom-accordion .accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  background: #fff;
}

.custom-accordion .accordion-content {
  padding: 20px;
  font-size: 16px;
  color: #333;
}

.custom-accordion .arrow-icon {
  transition: transform 0.35s ease;
}

.custom-accordion .accordion-item.active .accordion-header svg {
  transform: rotate(180deg);
}

.blue-text .text-content {
  color: inherit !important;
}

span {
  text-decoration-color: #005eb8 !important;
}

.timeline .inner-h3 {
  margin-bottom: 16px;
}

.areas-grid .area-box {
  display: flex;
  padding: 32px 9px;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  border-radius: 24px;
  border: 1px solid #D9D9D9;
  background: #FFF;
}

.areas-grid .area-box h4 {
  color: #005EB8;
  font-family: var(--Roboto);
  font-size: 30px;
  font-weight: 700;
}

.areas-grid .area-box p.seanc-district {
  color: #191919;
  font-family: var(--RobotoSlab);
  font-size: 18px;
  font-weight: 700;
}

.areas-grid .area-box .area-details h6 {
  color: #005EB8;
  font-family: var(--RobotoSlab);
  font-size: 16px;
  font-weight: 700;
}

.areas-grid .area-box .area-details>span {
  color: #4C4C4C;
  font-family: var(--RobotoSlab);
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
}

.areas-grid .area-box .area-details .location-icon {
  min-width: 24px;
}

.areas-grid .area-box .area-location>span {
  color: #4C4C4C;
  font-family: var(--RobotoSlab);
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  /* 171.429% */
}

.area-location {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.areas-grid.remaining-posts {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-row-gap: 24px;
  grid-column-gap: 40px;
  margin-top: 40px;
}

.areas-grid.first-post {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-row-gap: 24px;
  grid-column-gap: 40px;
}


.nav-item {
  position: relative;
}

/* Default (hidden) */
.nav-item .dropdown-menu {
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  position: absolute;
  top: 110%;
  left: 0;
  background: #fff;
  padding: 12px 16px;
  min-width: 250px;
  box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  z-index: 50;

  /* Smooth transition */
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
}

.nav-item .dropdown-menu li {
  list-style: none;
}

.nav-item .dropdown-menu li a {
  padding: 10px 0 5px;
  display: block;
  font-size: 14px;
  color: var(--Primary1Shade-20);
  ;
  text-decoration: none;
  transition: background .25s ease;
  border-bottom: 2px solid transparent;
  display: inline-flex;
  cursor: pointer;
}

.nav-item .dropdown-menu li a:hover {
  border-color: #005eb8;
}

/* On hover (show) */
.nav-item.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}


.seanc-logos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 34px;
  column-gap: 20px;
}

.seanc-logo-card {
  display: flex;
  padding: 22px 10px;
  align-items: flex-start;
  flex-direction: column;
  border-radius: 16px;
  border: 1px solid #D9D9D9;
  background: #FAFAFA;
  gap: 16px;
}

.seanc-logo-card img {
  max-width: 285px;
  width: 100%;
  height: 131px;
  object-fit: contain;
}

.seanc-logo-badge {
  display: flex;
  padding: 8px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 7px;
  background: #EBEBEB;
  font-family: var(--RobotoMono);
  color: #000;
  text-align: center;
  font-family: var(--RobotoMono);
  font-size: 12px;
  font-weight: 400;
  line-height: 14.4px;
}

.seanc-logo-title{
  color: #000;
  font-family: var(--Roboto);
  font-size: 16px;
  font-weight: 500;
  line-height: 19.2px;
}

.seanc-logo-download{
  color: #005EB8;
  font-family: var(--RobotoCondensed);
  font-size: 16px;
  font-weight: 600;
  line-height: 22px; /* 137.5% */
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  text-transform: uppercase;
}


.seanc-logos{
  margin-top: 48px;
}


.video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 40px;
}

.video-card {
  display: flex;
  padding: 45px 18px;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  border-radius: 26px;
  border: 1px solid #D9D9D9;
  background: #FFF;
}

.video-thumbnail {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  max-width: 100%;
  width: 100%;
}

.video-thumbnail > img, .video-thumbnail iframe{
  max-width: 100%;
  width: 100%;
  height: 265px;
  display: block;
  border-radius: 16px;
  object-fit: cover;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0,0,0,0.6);
  color: #fff;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.video-title {
  color: #000;
  font-family: var(--Roboto);
  font-size: 24px;
  font-weight: 500;
  line-height: 110%;
  margin-top: 57px;
}

.video-link {
  color: #005EB8;
  font-family: var(--RobotoCondensed);
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  text-transform: uppercase;
  margin-top: 10px;
}


.poster-img{
  max-width: 250px !important;
  width: 100% !important;
  height: 350px !important;
  object-fit: contain;
}

/* news page */

.news-section.plain{
  background-color: transparent;
  padding-top: 0;
}

.news-section.plain .news-meta{
  margin: 0;
}

.news-meta.blue .tag{
  border-radius: 7px;
  background: #E6EFF8;
  color: #005EB8;
  font-size: 12px;
  font-weight: 700;
}

.news-section.plain .news-content h3,.news-section.plain .news-content .news-excerpt{
  text-align: left;
}

.news-section.plain .news-card:not(.small-card) .news-content h3{
  margin: 0;
}

.news-section.plain .news-card.latest-card{
  padding: 32px 18px 20px 18px;
  border-radius: 26px;
  border: 1px solid #D9D9D9;
  background: #FFF;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.news-section.plain .news-content .read-more{
  display: block;
  text-align: left;
}

.news-grid.large{
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.news-section.plain .pagination-wrapper{
  margin-top: 36px;
}


.podcast-social-links {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 14px;
}

.social-box {
    width: 40px;
    height: 40px;
    background: #ffffff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: 1px solid #D9D9D9;
    transition: all 0.25s ease;
}


.social-box img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}


.podcast-iframe iframe{
  border-radius: 16px;
  max-width: 100%;
  width: 100%;
  height: 265px;
}

.news-content{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.other-podcasts .podcast-list-item{
  display: flex;
  padding: 16px;
  justify-content: center;
  align-items: center;
  gap: 24px;
  align-self: stretch;
  border-radius: 16px;
  border: 1px solid #D9D9D9;
  background: #FFF;
}

.podcast-list-item-left {
  max-width: 300px;
  width: 100%;
}

.other-podcasts{
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.thumb-wrapper{
  height: 185px;
}

.other-podcasts .thumb-wrapper iframe{
  border-radius: 16px;
  width: 301px;
  height: 185px;
}

.other-podcasts .content-wrapper{
  margin: 0;
}

.other-podcasts .podcast-list-item-right{
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.other-podcasts .podcast-list-item-right h3{
  color: #000;
  font-family: var(--RobotoSlab);
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
}

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

.title-date-wrap .date{
  color: #575757;
  font-family: var(--RobotoSlab);
  font-size: 18px;
  font-weight: 700;
  line-height: 22px; /* 122.222% */
}

.other-podcasts .podcast-list-item-right p{
  color: #575757;
  text-align: justify;
  font-family: var(--Roboto);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px; /* 150% */
}


.pagination-box a{
  display: flex;
  align-items: center;
}


.contact-map {
  max-width: 630px;
  height: 616px;
  width: 100%;
}

.contact-map iframe{
  border-radius: 26px;
  max-width: 100%;
  width: 100%;
  height: 100%;
}

.direction-section{
 padding-bottom: 76px; 
}

.directions-list{
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 12px;
}

.directions-list .direction-icon{
  padding: 7.242px 10.242px 7px 14px;
}

.directions-list .direction-icon img{
  width: 23px;
  height: 33px;
  object-fit: contain;
}

.direction-info{
  color: #000;
  font-family: var(--Roboto);
  font-size: 20px;
  font-weight: 400;
  line-height: 24px; 
}

.direction {
  display: flex;
  align-items: center;
  gap: 10px;
}

.feedback-form {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.resource-content {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

.resource-box{
  display: flex;
  align-items: center;
  max-width: 200px;
  width: 100%;
  padding: 16px;
  flex-direction: column;
  gap: 24px;
  border-radius: 16px;
  border: 1px solid #D9D9D9;
}

.resource-title{
  color: var(--Primary1);
  text-align: center;
  font-family: var(--RobotoSlab);
  font-size: 24px;
  font-weight: 500;
  line-height: 28.8px;
}

.resource-icon{
  width: 60px;
  height: 60px;
}

.resource-section{
  margin-bottom: 16px;
}

.form-container .sub-label{
  color: #242426 !important;
  font-family: var(--Roboto);
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
}

.two-col {
  display: flex;
  align-items: center;
  gap: 12px;
}

.two-col > div{
  width: 100%;
}

.retire-image{
  border-radius: 16px;
  max-width: 628px !important;
  width: 100%;
  aspect-ratio: 628/611;
  object-fit: cover;
}

.news-content{
  margin-bottom: 24px;
}

body.search .wp-block-post-featured-image{
  aspect-ratio: unset !important;
}

body.search main .wp-block-group.is-layout-flow.wp-block-group-is-layout-flow{
  padding-top: 0 !important;
}

.theme-park-ticket-section{
  padding-bottom: 48px;
}

.featured-discounts[data-section-theme="dark"], .theme-park-ticket-section[data-section-theme="dark"],.timeline[data-section-theme="dark"], .direction-section[data-section-theme="dark"],
.insurance-single[data-section-theme="dark"], .districts-single[data-section-theme="dark"]{
  background: var(--gradientColor);
}

.inner-h3[data-section-theme="dark"], .featured-title[data-section-theme="dark"], .subtitle[data-section-theme="dark"]{
  color: #fff;
}

.content-block[data-section-theme="dark"] h3,.content-block[data-section-theme="dark"]{
  color: white !important;
}

.left-content .content-block[data-section-theme="dark"]{
  background: transparent !important;
}

.custom-accordion[data-section-theme="dark"] .accordion-header{
  color: #fff;
}

.custom-accordion[data-section-theme="dark"] .accordion-header svg path{
  stroke: #fff;
}

.custom-accordion[data-section-theme="dark"] .accordion-body{
  background: transparent;
}

.insurance-single[data-section-theme="dark"] .acf-wysiwyg *, .insurance-single[data-section-theme="dark"] .acf-wysiwyg ul li .blue-text{
  color: white;
}

.insurance-single[data-section-theme="dark"] .acf-wysiwyg .blue-text{
  color: white !important;
}

.insurance-single[data-section-theme="dark"] h2, .districts-single[data-section-theme="dark"] h2:not(.officer-name){
  color: var(--LightSteelBlue);
}

.direction-section[data-section-theme="dark"] .inner-h3,.direction-section[data-section-theme="dark"] .direction-info{
  color: white;
}

.direction-section[data-section-theme="dark"] .directions-list .direction-icon img{
  filter: brightness(0) invert(1);
}

.content-block[data-section-theme="dark"] .form-container label{
  color: #242426 !important;
}


.news-content iframe {
  max-width: 100%;
  width: 100%;
  height: 350px;
  display: block;
  /* border-radius: 20px; */
}

.districts-single[data-section-theme="dark"] .acf-wysiwyg *, .districts-single[data-section-theme="dark"] .officer-category > h3,.districts-single[data-section-theme="dark"] .events-section h3 ,.districts-single[data-section-theme="dark"] .related-news > h3{
  color:  white;
}

.resource-section[data-section-theme="dark"] *{
  color: white;
}

.scholarship-header img{
  max-width: 250px;
  width: 100%;
}

.scholarship-table-section .scholarship-header {
  padding: 40px 0 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.scholarship-table-section .scholarship-info{
  background-color: #f5faff;
  padding: 20px;
}

.important-dates {
  margin-top: 40px;
}

.scholarship-table-section .responsive-table tbody tr td a {
  display: inline-block;
  word-break: break-word;
  overflow-wrap: break-word;
  white-space: normal;
  color: var(--Primary1);
}


.video-wrapper.thumb-wrapper{
  margin-top: 0;
}


.scholarship-table-section[data-section-theme="dark"] .scholarship-info{
  background-color: var(--bg-color);
}

.scholarship-table-section[data-section-theme="dark"] .responsive-table *{
  color: #000 !important;
}


.scholarship-table-section[data-section-theme="dark"] .responsive-table th, .content-block[data-section-theme="dark"] .inner-list-link li a, .content-block[data-section-theme="dark"] .inner li{
  color: white !important;
}

.wpcf7-not-valid-tip{
  color: #dc3232 !important;
  font-size: 12px;
}

.wpcf7 form .wpcf7-response-output{
  margin-top: 0;
}

.content-block[data-section-theme="dark"] .inner-heading-5, .content-block[data-section-theme="dark"] .inner-paragraph span.blue-text, .content-sidebar-section[data-section-theme="dark"] .inner-heading .blue-text{
  color: var(--WarningDark) !important;
}

.coreValues-section[data-section-theme="dark"] .coreValues-box img, .resource-section[data-section-theme="dark"] .resource-icon img{
  filter: brightness(0) saturate(100%) invert(74%) sepia(89%) saturate(1470%) hue-rotate(1deg) brightness(107%) contrast(106%)
}

.Staff-card-wrapper[data-section-theme="dark"] .Staff-card img, body[data-theme='dark']  .insurance-single .acf-wysiwyg img.side-image{
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) hue-rotate(180deg) contrast(100%) opacity(0.5);
}


.content-sidebar-section[data-section-theme="dark"] .inner-paragraph:has(img:not(.retire-image)){
  background-color: white !important;
}

body[data-theme='dark'] .yellow-btn:hover{
  color: white !important;
  border-color: white !important;
}

body[data-theme='dark'] .main-heading{
  color: white !important;
}

body[data-theme='dark'] .mec-wrap .mec-totalcal-box label, body[data-theme='dark'] .mec-fes-form label, body[data-theme='dark'] .mec-fes-form span.mec-label, body[data-theme='dark'] .mec-fes-form .mec-meta-box-fields h4, body[data-theme='dark'] .mec-fes-form .mec-meta-box-fields h4 label{
  color: white !important;
}

body[data-theme='dark'] .mec-wrap .mec-search-form .mec-dropdown-wrap .mec-dropdown-search select,body[data-theme='dark'] .mec-wrap .mec-totalcal-box i, body[data-theme='dark'] .mec-wrap .mec-totalcal-box input[type=search]{
  border-color: white;
}

body[data-theme='dark'] .mec-wrap .mec-search-form .mec-dropdown-wrap .mec-dropdown-search select{
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath fill='none' stroke='%23fff' stroke-width='2' d='M1 1l4 4 4-4'/%3E%3C/svg%3E") no-repeat right 10px center;
}

.mec-modal-result{
  display: none !important;
}

body[data-theme='dark'] .no-results{
  color: white;
}

body[data-theme='dark'] .timeline-item svg path{
  fill: white;
}


body[data-theme='dark'] .timeline-item::before, body[data-theme='dark'] .timeline-item::after{
  background: white;
}

body[data-theme='dark'] .inner-list-link{
  color: white !important;
}

body[data-theme='dark'] .blue-text{
  color: white !important;
}

body[data-theme='dark'] span {
  text-decoration-color: inherit !important;
}

body[data-theme='dark'] .breadcrumb-section{
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

body[data-theme='dark'] .responsive-table th, body[data-theme='dark'] .responsive-table td, body[data-theme='dark'] .empac-award th, body[data-theme='dark'] .empac-award td, body[data-theme='dark'] .acf-wysiwyg th, body[data-theme='dark'] .acf-wysiwyg td{
  color: black !important;
}


body[data-theme='dark'] .responsive-table th, body[data-theme='dark'] .empac-award th, body[data-theme='dark'] .acf-wysiwyg th{
  color: white !important;
}

body[data-theme='dark'] .insurance-single .inner-paragraph img{
  background-color: white;
}