:root {
  --green: #008a3d;
  --green-dark: #006b2f;
  --green-soft: #e8f7ef;
  --red: #e53935;
  --text: #1f2a37;
  --muted: #6b7280;
  --line: #e5e7eb;
  --card: #ffffff;
  --shadow: 0 14px 38px rgba(15, 23, 42, 0.10);
  --soft-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
  --radius: 8px;
  --container: 1080px;
}

* {
  box-sizing: border-box;
}

body.cevt-new-front-page-body {
  margin: 0;
  font-family: "Tiro Bangla", serif;
  color: var(--text);
  background: #f5f5f5;
}

.cevt-new-front-page-body a {
  text-decoration: none;
  color: inherit;
}

.site-shell {
  width: min(var(--container), calc(100% - 24px));
  margin: 0 auto;
  background: #fff;
  box-shadow: var(--shadow);
  min-height: 100vh;
}

.top-access {
  background: var(--green-dark);
  color: #fff;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 18px;
  min-height: 34px;
}

.top-links,
.quick-tools {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-wrap: wrap;
}

.top-links a {
  padding: 9px 12px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.top-links a:first-child {
  border-left: 0;
  font-weight: 700;
}

.urgent-btn {
  background: var(--red);
  padding: 6px 12px;
  border-radius: 2px;
  font-weight: 700;
  margin-left: 4px;
}

.search-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border-radius: 999px;
  padding: 5px 10px 5px 14px;
  color: #667085;
  min-width: 180px;
  justify-content: space-between;
  font-size: 12px;
}

.language {
  display: flex;
  gap: 6px;
  align-items: center;
  font-size: 12px;
}

.hero {
  position: relative;
  min-height: 212px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(4, 38, 72, 0.82) 0%, rgba(5, 66, 113, 0.58) 38%, rgba(0, 0, 0, 0.28) 100%),
    url("../images/hero-bg.jpg") center center / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.12));
  opacity: 1;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 54px 34px 42px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 18px;
}

.gov-seal {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #fff url("../../themes/responsive_npf/img/logo/logo.png") center center / cover no-repeat;
  border: 3px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.28);
  flex: 0 0 auto;
}

.hero-title h1 {
  margin: 0 0 6px;
  font-size: clamp(26px, 4.2vw, 40px);
  letter-spacing: -0.5px;
  font-weight: 800;
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.hero-title p {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  opacity: 0.96;
}

.cevt-new-front-page .main-nav {
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  min-height: 48px;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.05) inset;
}

.cevt-new-front-page .main-nav,
.cevt-new-front-page .main-nav ul,
.cevt-new-front-page .main-nav li {
  color: #fff !important;
}

.cevt-new-front-page .nav-menu-wrap {
  display: flex;
  align-items: stretch;
  width: 100%;
}

.cevt-new-front-page .nav-menu,
.cevt-new-front-page .nav-menu > li,
.cevt-new-front-page .nav-menu > li > a {
  background: transparent !important;
}

.nav-menu {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cevt-new-front-page .nav-menu-home {
  flex: 0 0 auto;
}

.cevt-new-front-page .nav-menu:not(.nav-menu-home) {
  flex: 1 1 auto;
}

.cevt-new-front-page .nav-menu > li > a {
  display: block;
  padding: 15px 13px;
  font-size: 14px;
  font-weight: 700;
  border-right: 1px solid rgba(255, 255, 255, 0.16) !important;
  color: #fff !important;
}

.cevt-new-front-page .nav-menu > li > a:hover,
.cevt-new-front-page .nav-menu > li:hover > a,
.cevt-new-front-page .nav-menu > li:focus-within > a {
  background: rgba(255, 255, 255, 0.12);
  color: #fff !important;
}

.cevt-new-front-page .nav-menu > li {
  position: relative;
}

.cevt-new-front-page .nav-menu > li.menu-item-has-children > a::after {
  content: " ▾";
  font-size: 11px;
}

.cevt-new-front-page .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 30;
  min-width: 220px;
  display: block;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  margin: 0;
  padding: 6px 0;
  list-style: none;
  background: #ffffff !important;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.18);
  border: 1px solid #d9e2ec;
  transform: translateY(10px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

.cevt-new-front-page .sub-menu li {
  position: relative;
  display: block;
  margin: 0;
  border-bottom: 1px solid #edf2f7;
}

.cevt-new-front-page .sub-menu li:last-child {
  border-bottom: 0;
}

.cevt-new-front-page .sub-menu a {
  display: block;
  padding: 10px 14px;
  border-right: 0 !important;
  color: #1f2a37 !important;
  background: #ffffff !important;
  white-space: normal;
  line-height: 1.45;
}

.cevt-new-front-page .sub-menu,
.cevt-new-front-page .sub-menu li,
.cevt-new-front-page .sub-menu a {
  color: #1f2a37 !important;
}

.cevt-new-front-page .sub-menu a:hover,
.cevt-new-front-page .sub-menu li:hover > a,
.cevt-new-front-page .sub-menu li:focus-within > a {
  background: #eef7f1 !important;
  color: var(--green-dark) !important;
}

.cevt-new-front-page .nav-menu > li:hover > .sub-menu,
.cevt-new-front-page .nav-menu > li:focus-within > .sub-menu,
.cevt-new-front-page .sub-menu > li:hover > .sub-menu,
.cevt-new-front-page .sub-menu > li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.cevt-new-front-page .sub-menu .sub-menu {
  top: 0;
  left: 100%;
  transform: translate(10px, 0);
}

.cevt-new-front-page .nav-menu > li.current-menu-item > a,
.cevt-new-front-page .nav-menu > li.current_page_item > a,
.cevt-new-front-page .nav-menu > li.current-menu-ancestor > a,
.cevt-new-front-page .nav-menu > li.current_page_ancestor > a {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.home-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.16);
  margin-right: 8px;
}

.content-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 250px;
  gap: 18px;
  padding: 20px 18px 0;
}

.page-title {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 18px;
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 16px;
  box-shadow: var(--soft-shadow);
}

.notice-board {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
  overflow: hidden;
  margin-bottom: 20px;
}

.section-heading {
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 19px;
  font-weight: 800;
  border-bottom: 1px solid var(--line);
}

.section-heading .icon {
  color: var(--green);
  font-size: 24px;
}

.notice-list {
  list-style: none;
  margin: 0;
  padding: 0 16px 10px;
}

.notice-list li {
  display: grid;
  grid-template-columns: 14px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid #eef0f2;
  font-size: 14px;
  line-height: 1.5;
}

.notice-list li:last-child {
  border-bottom: 0;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #12b76a;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  color: #fff;
  background: var(--red);
  margin: 0 6px;
}

.pill-muted {
  background: #f4f4f5;
  color: #52525b;
  border: 1px solid #e4e4e7;
}

.notice-action {
  display: flex;
  justify-content: center;
  padding: 4px 0 16px;
}

.green-btn {
  background: var(--green);
  color: #fff;
  border: 0;
  border-radius: 5px;
  padding: 9px 18px;
  font-family: inherit;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 5px 12px rgba(0, 138, 61, 0.22);
}

.green-btn:visited,
.green-btn:hover,
.green-btn:focus {
  color: #fff !important;
}

.alert-strip {
  margin: 0 16px 16px;
  border-radius: 6px;
  background: #fff0f0;
  color: #7f1d1d;
  padding: 10px 12px;
  font-size: 13px;
  border: 1px solid #ffd2d2;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.alert-strip-label {
  flex: 0 0 auto;
  white-space: nowrap;
}

.alert-strip-ticker {
  position: relative;
  flex: 1 1 auto;
  overflow: hidden;
  min-width: 0;
}

.alert-strip-track {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}

.alert-strip-item {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  transform: translateY(110%);
  transition: transform 0.45s ease, opacity 0.45s ease;
  pointer-events: none;
}

.alert-strip-item.is-active {
  position: relative;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.alert-strip-item.is-prev {
  opacity: 0;
  transform: translateY(-110%);
}

.alert-strip-item.is-next {
  opacity: 0;
  transform: translateY(110%);
}

.alert-strip-item a,
.alert-strip-item span {
  color: inherit;
  display: block;
  line-height: 1.45;
}

.alert-strip-more {
  background: #16a34a;
  color: #fff;
  border: 0;
  border-radius: 4px;
  padding: 5px 12px;
  font-weight: 800;
  font-family: inherit;
  white-space: nowrap;
}

.alert-strip-more:visited,
.alert-strip-more:hover,
.alert-strip-more:focus {
  color: #fff !important;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}

.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--soft-shadow);
  min-height: 160px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(15, 23, 42, 0.12);
  border-color: rgba(0, 138, 61, 0.34);
}

.card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.card-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--green-soft), #fff);
  border: 1px solid #ccebd9;
  color: var(--green);
  border-radius: 9px;
  font-size: 20px;
  flex: 0 0 auto;
}

.card-icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.service-card h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 800;
}

.service-card ul {
  margin: 0;
  padding: 0 0 0 4px;
  list-style: none;
}

.service-card li {
  display: flex;
  gap: 8px;
  line-height: 1.45;
  font-size: 13px;
  color: #344054;
  padding: 4px 0;
}

.service-card li a,
.service-card li span {
  color: inherit;
}

.service-card li a:hover {
  color: var(--green-dark);
}

.service-card li::before {
  content: "";
  width: 7px;
  height: 7px;
  background: #64748b;
  border-radius: 50%;
  margin-top: 8px;
  flex: 0 0 auto;
}

.services-action {
  text-align: center;
  margin: 0 0 16px;
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dynamic-sidebar .block,
.dynamic-sidebar .side-widget {
  background: #fff;
  border: 1px solid #d7e7dd;
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  position: relative;
}

.side-widget {
  background: #fff;
  border: 1px solid #d7e7dd;
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.widget-title {
  background: #008a3d;
  color: #fff;
  padding: 12px 14px;
  font-weight: 800;
  font-size: 15px;
  line-height: 1.35;
}

.widget-body {
  padding: 14px;
  font-size: 13px;
  line-height: 1.7;
  color: #344054;
}

.dynamic-sidebar .block > *:not(.title),
.dynamic-sidebar .widget-body {
  padding-left: 14px;
  padding-right: 14px;
}

.dynamic-sidebar .block > *:last-child {
  padding-bottom: 14px;
}

.dynamic-sidebar .title,
.dynamic-sidebar .widget-title {
  background: #008a3d;
  color: #fff;
  padding: 12px 14px;
  font-weight: 800;
  font-size: 15px;
  line-height: 1.35;
  margin: 0 0 14px;
  display: block;
  position: relative;
}

.dynamic-sidebar .title::after,
.dynamic-sidebar .widget-title::after {
  content: "";
  position: absolute;
  inset: auto 14px 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.28);
}

.dynamic-sidebar .block img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

.dynamic-sidebar .block ul {
  list-style: none;
  margin: 0;
  padding: 0 14px 14px;
}

.dynamic-sidebar .block li {
  border-bottom: 1px solid #e8edf1;
  padding: 11px 0;
  font-size: 13px;
  line-height: 1.55;
}

.dynamic-sidebar .block li:last-child {
  border-bottom: 0;
}

.dynamic-sidebar .block a,
.dynamic-sidebar .block p a,
.dynamic-sidebar .block .textwidget a {
  color: #344054;
  transition: color 0.18s ease;
}

.dynamic-sidebar .block a:hover,
.dynamic-sidebar .block p a:hover,
.dynamic-sidebar .block .textwidget a:hover {
  color: var(--green-dark);
}

.dynamic-sidebar .block > p,
.dynamic-sidebar .block > div,
.dynamic-sidebar .block > form,
.dynamic-sidebar .block > figure,
.dynamic-sidebar .block > nav,
.dynamic-sidebar .block > iframe,
.dynamic-sidebar .block > img,
.dynamic-sidebar .block > .textwidget,
.dynamic-sidebar .block > .menu,
.dynamic-sidebar .block > .gallery,
.dynamic-sidebar .block > .wp-block-group,
.dynamic-sidebar .block > .wp-block-image,
.dynamic-sidebar .block > .wp-block-media-text {
  margin: 0 14px 14px;
}

.dynamic-sidebar .block > p,
.dynamic-sidebar .block > div,
.dynamic-sidebar .block > .textwidget,
.dynamic-sidebar .block caption,
.dynamic-sidebar .block label {
  font-size: 13px;
  line-height: 1.7;
  color: #344054;
}

.dynamic-sidebar .block .menu,
.dynamic-sidebar .block .wp-block-page-list,
.dynamic-sidebar .block .wp-block-categories-list {
  list-style: none;
  margin: 0 14px 14px;
  padding: 0;
}

.dynamic-sidebar .block .menu li,
.dynamic-sidebar .block .wp-block-page-list li,
.dynamic-sidebar .block .wp-block-categories-list li {
  list-style: none;
  margin: 0;
}

.dynamic-sidebar .block .menu a,
.dynamic-sidebar .block .wp-block-page-list a,
.dynamic-sidebar .block .wp-block-categories-list a {
  display: block;
  position: relative;
  padding: 11px 0 11px 18px;
}

.dynamic-sidebar .block .menu a::before,
.dynamic-sidebar .block .wp-block-page-list a::before,
.dynamic-sidebar .block .wp-block-categories-list a::before {
  content: "›";
  position: absolute;
  left: 0;
  top: 11px;
  color: #008a3d;
  font-size: 16px;
  font-weight: 800;
}

.dynamic-sidebar .block input[type="text"],
.dynamic-sidebar .block input[type="search"],
.dynamic-sidebar .block input[type="email"],
.dynamic-sidebar .block select,
.dynamic-sidebar .block textarea {
  width: 100%;
  border: 1px solid #d0d5dd;
  border-radius: 8px;
  padding: 10px 12px;
  font-family: inherit;
  font-size: 13px;
  color: #1f2937;
  background: #fff;
}

.dynamic-sidebar .block button,
.dynamic-sidebar .block input[type="submit"] {
  border: 0;
  border-radius: 8px;
  background: #008a3d;
  color: #fff;
  padding: 10px 14px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.dynamic-sidebar .block iframe {
  width: calc(100% - 28px);
  border: 0;
  border-radius: 8px;
}

.ird-sidebar {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ird-widget {
  background: #fff;
  border: 1px solid #d6e8dc;
  border-radius: 6px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  overflow: hidden;
}

.ird-widget-title {
  margin: 0;
  padding: 9px 12px;
  background: #008a3d;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.ird-widget-body {
  padding: 10px;
}

.ird-profile-card .ird-widget-body {
  text-align: center;
}

.ird-profile-photo,
.ird-banner-stack img,
.ird-hotline-banner,
.ird-mail-banner {
  width: 100%;
  display: block;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
}

.ird-profile-name {
  margin: 10px 0 8px;
  font-size: 13px;
  line-height: 1.5;
  color: #111827;
  font-weight: 700;
}

.ird-profile-name span,
.ird-profile-name sub {
  font-weight: 600;
}

.ird-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  padding: 6px 14px;
  border: 1px solid #d5dbe1;
  border-radius: 3px;
  background: #f8fafc;
  color: #344054;
  font-size: 12px;
  font-weight: 700;
}

.ird-more-btn:hover {
  color: #008a3d;
  border-color: #98d2ae;
}

.ird-cta-link {
  display: block;
  padding: 10px 14px;
  background: #008a3d;
  color: #fff !important;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(0, 138, 61, 0.18);
}

.ird-link-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ird-link-list li {
  border-bottom: 1px solid #ebeff3;
}

.ird-link-list li:last-child {
  border-bottom: 0;
}

.ird-link-list a {
  display: block;
  position: relative;
  padding: 10px 0 10px 18px;
  color: #344054;
  font-size: 13px;
  line-height: 1.5;
}

.ird-link-list a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 17px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #56b94e;
}

.ird-link-list a:hover,
.ird-inline-link:hover {
  color: #008a3d;
}

.ird-banner-stack .ird-widget-body {
  display: grid;
  gap: 8px;
}

.ird-inline-link {
  color: #1568b2;
  font-size: 13px;
  line-height: 1.6;
  font-weight: 700;
}

.ird-counter-list {
  display: grid;
  gap: 8px;
}

.ird-counter-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 10px;
  border: 1px solid #e6ece8;
  border-radius: 4px;
  background: #f9fbfa;
  font-size: 12px;
  line-height: 1.45;
}

.ird-counter-row strong {
  color: #dc2626;
  font-size: 18px;
  font-weight: 800;
}

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

.portrait {
  height: 168px;
  border-radius: 3px;
  margin-bottom: 9px;
  background:
    radial-gradient(circle at 50% 28%, #f1c8a0 0 18%, transparent 19%),
    linear-gradient(155deg, #0f766e 0 48%, #e5e7eb 49% 51%, #1f2937 52% 100%);
  border: 1px solid #d1d5db;
  position: relative;
  overflow: hidden;
}

.portrait.alt {
  background:
    radial-gradient(circle at 50% 28%, #e9c8ae 0 18%, transparent 19%),
    linear-gradient(155deg, #374151 0 48%, #f3f4f6 49% 51%, #b91c1c 52% 100%);
}

.person-card strong {
  display: block;
  font-size: 13px;
  margin-bottom: 4px;
}

.person-card small {
  color: var(--muted);
  display: block;
  line-height: 1.5;
}

.details-link {
  display: inline-block;
  margin-top: 9px;
  border: 1px solid #cfd4dc;
  border-radius: 3px;
  padding: 5px 20px;
  color: #344054;
  background: #f8fafc;
  font-weight: 700;
  font-size: 12px;
}

.side-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.side-list li {
  border-bottom: 1px solid #eef0f2;
}

.side-list li:last-child {
  border-bottom: 0;
}

.side-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 9px 10px;
  font-size: 13px;
  color: #344054;
}

.side-list a::before {
  content: "●";
  color: #21b35b;
  font-size: 12px;
  margin-right: 4px;
}

.side-list span {
  margin-left: auto;
  color: #9ca3af;
}

.banner-box {
  border: 1px solid #b7ebc7;
  background: linear-gradient(135deg, #e8fff2, #fff);
  color: var(--green-dark);
  min-height: 48px;
  display: grid;
  place-items: center;
  text-align: center;
  font-weight: 800;
  border-radius: 4px;
}

.hotline {
  border: 3px solid #22c55e;
  background: #f5fff8;
  color: #6d28d9;
  font-size: 20px;
  font-weight: 900;
  text-align: center;
  padding: 10px;
  line-height: 1.35;
}

.number-grid {
  display: grid;
  gap: 7px;
}

.number-row {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 9px;
  background: #f9fafb;
  border-radius: 4px;
}

.number-row strong {
  color: #ef4444;
  font-size: 18px;
}

.widget-body audio {
  width: 100%;
}

.footer-graphic {
  margin-top: 160px;
  height: 62px;
  background:
    linear-gradient(to top, #767676 0 10px, transparent 10px),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1080' height='70' viewBox='0 0 1080 70'%3E%3Cg fill='%23727272'%3E%3Crect x='20' y='48' width='28' height='10'/%3E%3Crect x='55' y='38' width='18' height='20'/%3E%3Crect x='84' y='30' width='12' height='28'/%3E%3Crect x='812' y='43' width='18' height='15'/%3E%3Crect x='836' y='35' width='18' height='23'/%3E%3Crect x='860' y='25' width='20' height='33'/%3E%3Crect x='886' y='17' width='19' height='41'/%3E%3Crect x='912' y='25' width='17' height='33'/%3E%3Crect x='937' y='35' width='19' height='23'/%3E%3Crect x='964' y='44' width='22' height='14'/%3E%3C/g%3E%3C/svg%3E") center bottom / contain no-repeat;
}

.site-footer {
  background: #e5e5e5;
  border-top: 4px solid #7b7b7b;
  padding: 16px 18px 20px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font-size: 12px;
  color: #374151;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 10px;
  font-weight: 700;
}

.footer-badges {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-badge {
  width: 44px;
  height: 28px;
  border-radius: 5px;
  background: #fff;
  border: 1px solid #cbd5e1;
  display: grid;
  place-items: center;
  color: var(--green);
  font-weight: 900;
  font-size: 11px;
}

.mobile-menu-btn {
  display: none;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 5px;
  padding: 8px 12px;
  font-family: inherit;
  font-weight: 800;
}

@media (max-width: 920px) {
  .top-access {
    align-items: flex-start;
    flex-direction: column;
    padding: 8px 12px;
  }

  .content-wrap {
    grid-template-columns: 1fr;
  }

  .sidebar {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .site-shell {
    width: 100%;
  }

  .hero-content {
    padding: 42px 18px 34px;
  }

  .main-nav {
    padding: 8px 12px;
    align-items: flex-start;
    flex-direction: column;
  }

  .cevt-new-front-page .nav-menu-wrap {
    display: block;
    width: 100%;
  }

  .mobile-menu-btn {
    display: block;
    width: 100%;
    text-align: left;
  }

  .nav-menu {
    display: none;
    width: 100%;
    margin-top: 8px;
  }

  .nav-menu-home {
    display: block;
  }

  .nav-menu-wrap.is-open .nav-menu {
    display: block;
  }

  .cevt-new-front-page .sub-menu {
    position: static;
    min-width: 100%;
    box-shadow: none;
    padding: 0 0 0 14px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    transition: none;
  }

  .nav-menu li a {
    border-right: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .service-grid,
  .sidebar {
    grid-template-columns: 1fr;
  }

  .notice-list li {
    grid-template-columns: 14px 1fr;
  }

  .notice-list li .arrow {
    display: none;
  }

  .site-footer {
    flex-direction: column;
  }

  .footer-badges {
    justify-content: flex-start;
  }
}
