@charset "UTF-8";
html {
  font-size: 16px;
}

/*
@media (min-width: 768px) {
  html {
    font-size: calc(14px + 2 * ((100vw - 768px) / 223));
  }
}

@media (min-width: 992px) {
  html {
    font-size: calc(15.11px + 0.89 * ((100vw - 992px) / 448));
  }
}

@media (min-width: 1440px) {
  html {
    font-size: calc(16px + 0.58 * ((100vw - 1440px) / 480));
  }
}

@media screen and (min-width: 1920px) {
  html {
    font-size: 16px;
  }
}*/
/* roboto-regular - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  src: url("../../fonts/roboto-v50-latin-regular.woff2") format("woff2"), url("../../fonts/roboto-v50-latin-regular.ttf") format("truetype");
  /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}
/* roboto-500 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  src: url("../../fonts/roboto-v50-latin-500.woff2") format("woff2"), url("../../fonts/roboto-v50-latin-500.ttf") format("truetype");
  /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}
/* roboto-700 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  src: url("../../fonts/roboto-v50-latin-700.woff2") format("woff2"), url("../../fonts/roboto-v50-latin-700.ttf") format("truetype");
  /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}
/* roboto-900 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Roboto";
  font-style: normal;
  font-weight: 900;
  src: url("../../fonts/roboto-v50-latin-900.woff2") format("woff2"), url("../../fonts/roboto-v50-latin-900.ttf") format("truetype");
  /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}
:root {
  /* Menu Background Colors */
  --color-red: #EE3C24;
  --color-orange: #F06835;
  --color-yellow: #FDC801;
  --color-blue: #4068B1;
  --color-green: #0C9B42;
  --color-green-light: #85C71F;
  --color-purple: #701C6A;
  --hover-color-blue: #1a3a7a;
  --color-gray: #5A5A5A;
  --bg-light: #f8f9fa;
  --bg-gray: #F6F6F6;
  --transition-speed: 0.3s;
  /* Text Color */
  --color-menu-text: #ffffff;
  --color-text: #000;
  --color-text-muted: #6c757d;
  --heading-font-family-primary: "Roboto", sans-serif;
  --text-font-family: "Roboto", sans-serif;
  /* FLUID heading sizes */
  --h1-size: clamp(2.3rem, 4vw, 2.5rem);
  --h1-weight: 400;
  --h1-line-height: 1.15;
  --h2-size: clamp(2rem, 3.5vw, 2rem);
  --h2-weight: 500;
  --h2-line-height: 1.2;
  --h3-size: clamp(1.5rem, 3vw, 1.75rem);
  --h3-weight: 500;
  --h3-line-height: 1.25;
  --h4-size: clamp(1.125rem, 2.5vw, 1.5rem);
  --h4-weight: 400;
  --h4-line-height: 1.3;
  --h5-size: clamp(1.125rem, 2vw, 1.25rem);
  --h5-weight: 400;
  --h5-line-height: 1.3;
  --h6-size: clamp(0.875rem, 1.5vw, 1rem);
  --h6-weight: 400;
  --h6-line-height: 1.3;
  --container-max-width-xs: 100%;
  --container-max-width-ssm: 370px;
  --container-max-width-sm: 540px;
  --container-max-width-md: 720px;
  --container-max-width-lg: 1040px;
  --container-max-width-xl: 1260px;
  --section-devider-height: 26px;
  /* Fluid body text */
  --text-size: clamp(1rem, 1.2vw, 1.125rem);
  /* 16px → 18px */
  --text-small-size: clamp(0.875rem, 1vw, 1rem);
  /* 14px → 16px */
  --text-large-size: clamp(1.125rem, 1.5vw, 1.25rem);
  /* 18px → 20px */
  --text-line-height: 1.6;
  --text-weight: 400;
}

@media (min-width: 350px) {
  :root {
    --container: var(--container-max-width-ssm);
  }
}
@media (min-width: 576px) {
  :root {
    --container: var(--container-max-width-sm);
  }
}
@media (min-width: 768px) {
  :root {
    --container: var(--container-max-width-md);
  }
}
@media (min-width: 992px) {
  :root {
    --container: var(--container-max-width-lg);
  }
}
@media (min-width: 1040px) {
  :root {
    --container: var(--container-max-width-xl);
  }
}
.container-v2 {
  max-width: var(--container-max-width-xl) !important;
  margin: 0 auto;
}

@media (min-width: 576px) {
  .container-v2 {
    max-width: var(--container-max-width-sm) !important;
    margin: 0 auto;
    padding: 0 1rem;
  }
}
@media (min-width: 768px) {
  .container-v2 {
    max-width: var(--container-max-width-md) !important;
    margin: 0 auto;
    padding: 0 1rem;
  }
}
@media (min-width: 992px) {
  .container-v2 {
    max-width: var(--container-max-width-lg) !important;
    margin: 0 auto;
    padding: 0 1rem;
  }
}
@media (min-width: 1040px) {
  .container-v2 {
    max-width: var(--container-max-width-xl) !important;
    margin: 0 auto;
    padding: 0;
  }
}
.container-v2 {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  position: relative;
}
.container-v2 .wp-block-group__inner-container {
  position: relative;
}

* {
  font-family: var(--text-font-family);
  margin: 0;
  padding: 0;
  color: var(--color-text);
  font-size: var(--text-size);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem;
}

p strong {
  color: var(--color-text);
  font-size: var(--text-size);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem;
}

.small {
  font-size: var(--text-small-size);
}
.small * {
  font-size: var(--text-small-size);
}

.text-lg {
  font-size: var(--text-large-size);
}
.text-lg * {
  font-size: var(--text-large-size);
}

h1, h2, h3, h4 {
  font-family: var(--heading-font-family-primary);
  margin: 0;
  padding: 0;
  font-weight: 400;
}
h1 strong, h2 strong, h3 strong, h4 strong {
  font-family: var(--heading-font-family-primary);
  margin: 0;
  padding: 0;
  font-weight: 600;
}

h1 {
  font-size: var(--h1-size);
  font-weight: var(--h1-weight);
  line-height: var(--h1-line-height);
}
h1 a, h1 strong, h1 span {
  font-size: var(--h1-size);
  font-weight: var(--h1-weight);
  line-height: var(--h1-line-height);
}

h2 {
  font-size: var(--h2-size);
  font-weight: var(--h2-weight);
  line-height: var(--h2-line-height);
}
h2 a, h2 strong {
  font-size: var(--h2-size);
  font-weight: var(--h2-weight);
  line-height: var(--h2-line-height);
}

h3 {
  font-size: var(--h3-size);
  font-weight: var(--h3-weight);
  line-height: var(--h3-line-height);
}
h3 strong, h3 a {
  font-size: var(--h3-size);
  font-weight: var(--h3-weight);
  line-height: var(--h3-line-height);
}

h4 {
  font-size: var(--h4-size);
  font-weight: var(--h4-weight);
  line-height: var(--h4-line-height);
}
h4 strong, h4 a {
  font-size: var(--h4-size);
  font-weight: var(--h4-weight);
  line-height: var(--h4-line-height);
}

h5 {
  font-size: var(--h5-size);
  font-weight: var(--h5-weight);
  line-height: var(--h5-line-height);
}
h5 strong, h5 a {
  font-size: var(--h5-size);
  font-weight: var(--h5-weight);
  line-height: var(--h5-line-height);
}

a {
  text-decoration: none;
}

.text-muted * {
  color: var(--bs-secondary-color) !important;
}

body {
  padding: 0;
  margin: 0;
}

a {
  color: var(--color-gray);
}

html {
  margin-top: 0 !important;
  scroll-behavior: smooth;
}

.wp-block-image, .wp-block-columns, .wp-swiper > .wp-swiper__wrapper, .wp-block-video {
  margin: 0;
  padding: 0;
}

.navbar {
  display: flex;
  justify-content: center;
  position: absolute;
  width: 100%;
  bottom: 0;
  z-index: 9;
  /* 1. Ensure all menu items sit flush against the bottom */
  /* 2. Menu item layout */
}
.navbar .navbar-nav {
  align-items: flex-end;
  width: 100%;
}
.navbar .menu-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 0;
  flex: 1;
  /* Main link */
  /* Submenu */
  /* Hover trigger */
}
.navbar .menu-item > .nav-link {
  text-align: center;
  width: 100%;
  transition: transform 0.2s ease;
  background: rgba(54, 54, 54, 0.6) !important;
}
.navbar .menu-item .submenu {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 100%;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease, margin-top 0.4s ease;
}
.navbar .menu-item .submenu a {
  color: #fff !important;
  text-decoration: none;
  padding: 8px 10px;
  text-align: center;
  font-weight: 500;
  transition: background-color 0.2s ease, color 0.2s ease;
  font-size: var(--h6-size);
}
.navbar .menu-item .submenu a:hover {
  text-decoration: underline;
}
@media (max-width: 991px) {
  .navbar .menu-item .submenu a {
    font-size: var(--h5-size);
  }
}
.navbar .menu-item:hover {
  /*>.nav-link{
    padding-bottom: 32px !important;
  }*/
}
.navbar .menu-item:hover .submenu {
  max-height: 400px;
  opacity: 1;
}
.navbar .menu-item:hover .submenu a:last-of-type {
  padding-bottom: 40px;
}

/*HOMEPAGE V2 */
.section-heading-v2 {
  max-height: calc(100vh - var(--section-devider-height));
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.section-heading-v2 > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.section-heading-v2 .navbar-home-page-v2 {
  z-index: 10 !important;
}
.section-heading-v2 .navbar-home-page-v2 .navbar-nav > li.nav-item {
  border-top: 1px solid #6c757d;
  border-right: 1px solid #6c757d;
  padding: 0;
  background: rgba(54, 54, 54, 0.6) !important;
}
.section-heading-v2 .navbar-home-page-v2 .navbar-nav > li.nav-item a:after {
  display: none;
}
.section-heading-v2 .navbar-home-page-v2 .navbar-nav > li.nav-item a.nav-link {
  color: #fff !important;
  font-size: var(--h5-size);
  height: 170px;
  justify-content: center;
  align-items: center;
  display: flex;
  font-weight: 500;
}
.section-heading-v2 .navbar-home-page-v2 .navbar-nav > li.nav-item .submenu {
  width: 100%;
  background: rgba(54, 54, 54, 0.6) !important;
  margin-top: 0;
}
.section-heading-v2 .navbar-home-page-v2 .navbar-nav > li.nav-item:hover {
  background: #363636 !important;
}
.section-heading-v2 .section-heading-v2__intro {
  max-width: 960px;
  background: linear-gradient(162.32deg, #000000 46.05%, rgba(0, 0, 0, 0) 106.8%);
  padding: 40px 60px;
  margin-top: max(120px, 25vh);
  z-index: 9;
  position: absolute;
  left: 0;
}
.section-heading-v2 .section-heading-v2__intro h1 {
  color: #fff;
  margin-bottom: 1rem;
}
.section-heading-v2 .section-heading-v2__intro h1 strong {
  color: #fff;
  font-weight: 600;
}
.section-heading-v2 .section-heading-v2__intro p {
  color: #fff;
  font-size: var(--h5-size);
  line-height: var(--h5-line-height);
}
.section-heading-v2 .swiper:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
  background: rgba(0, 0, 0, 0.5) !important;
}
@media (max-width: 991px) {
  .section-heading-v2 .section-heading-v2__intro {
    max-width: 960px;
    background: linear-gradient(162.32deg, #000000 46.05%, rgba(0, 0, 0, 0) 106.8%);
    padding: 24px 32px;
    margin-top: max(120px, 15vh);
    z-index: 9;
    position: absolute;
  }
}

.header-v2 {
  position: absolute;
  z-index: 999;
  padding: 0;
}
.header-v2 .header-v2-wrapper .mia-logo {
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding-left: 2rem;
}
.header-v2 .header-top {
  margin: 0 auto;
  padding: 0;
  background: none;
  border-bottom: none;
}
.header-v2 .header-top .right-side {
  justify-content: center;
  align-items: center;
}
.header-v2 .header-top .right-side .login-section {
  height: 100%;
  background: linear-gradient(268.63deg, #0C9B42 1.18%, #85C71F 98.85%);
  display: flex;
  align-items: center;
  padding: 1rem;
}
.header-v2 .header-top .right-side .login-section.bg-transparent {
  background: transparent !important;
}
.header-v2 .header-top .right-side .login-section a {
  color: #fff;
}
.header-v2 .header-top .right-side .login-section .dropdown button {
  background: transparent !important;
  border: none;
  color: #fff;
}
.header-v2 .header-top .right-side .login-section .dropdown button i {
  color: #fff;
  background: transparent;
}
.header-v2 .header-top .right-side .login-section .dropdown .dropdown-menu > div {
  text-align: right;
  padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
}
.header-v2 .header-top .right-side .login-section .dropdown .dropdown-menu a {
  color: #000;
  text-align: right;
}
.header-v2 .header-top .search-container form.search-form-header {
  /* Chrome, Safari */
  /* Firefox */
  /* IE */
}
.header-v2 .header-top .search-container form.search-form-header input {
  padding: 2px 5px;
  background: transparent;
  color: #fff;
  border-radius: 0;
  font-size: 12px;
  width: 85%;
  border: none;
  border-bottom: 1px solid #fff;
  border-bottom: 1px solid #fff;
  box-shadow: none;
}
.header-v2 .header-top .search-container form.search-form-header input::placeholder {
  color: #fff;
}
.header-v2 .header-top .search-container form.search-form-header input::-webkit-input-placeholder {
  color: #fff;
}
.header-v2 .header-top .search-container form.search-form-header input::-moz-placeholder {
  color: #fff;
}
.header-v2 .header-top .search-container form.search-form-header input:-ms-input-placeholder {
  color: #fff;
}
.header-v2 .header-top .search-container form.search-form-header input:-moz-placeholder {
  color: #fff;
}
.header-v2 .header-top .search-container form.search-form-header button {
  border: none !important;
  background: none;
}
.header-v2 .header-top .search-container form.search-form-header i {
  color: #fff;
}
.header-v2 .lang-switch-header .wpml-ls-legacy-list-horizontal {
  position: relative;
  display: inline-block;
  min-width: 80px;
  height: 38px;
}
.header-v2 .lang-switch-header .wpml-ls-legacy-list-horizontal ul {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  z-index: 100;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}
.header-v2 .lang-switch-header .wpml-ls-legacy-list-horizontal ul li {
  display: none;
  margin: 0;
  order: 2;
}
.header-v2 .lang-switch-header .wpml-ls-legacy-list-horizontal ul li.wpml-ls-current-language {
  display: block;
  order: 1;
}
.header-v2 .lang-switch-header .wpml-ls-legacy-list-horizontal ul li.wpml-ls-current-language a {
  font-weight: 600;
}
.header-v2 .lang-switch-header .wpml-ls-legacy-list-horizontal ul li.wpml-ls-current-language a::after {
  content: "▼";
  font-size: 9px;
  margin-left: 8px;
  vertical-align: middle;
}
.header-v2 .lang-switch-header .wpml-ls-legacy-list-horizontal ul li a {
  display: block;
  padding: 8px 8px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: background-color 0.2s ease;
}
.header-v2 .lang-switch-header .wpml-ls-legacy-list-horizontal ul li a > span {
  color: #fff;
}
.header-v2 .lang-switch-header .wpml-ls-legacy-list-horizontal ul li a:hover {
  background-color: #f4f6f8;
}
.header-v2 .lang-switch-header .wpml-ls-legacy-list-horizontal ul li a:hover > span {
  color: #333;
}
.header-v2 .lang-switch-header .wpml-ls-legacy-list-horizontal:hover ul {
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
}
.header-v2 .lang-switch-header .wpml-ls-legacy-list-horizontal:hover ul li {
  display: block;
  border-top: 1px solid #eee;
}
.header-v2 .lang-switch-header .wpml-ls-legacy-list-horizontal:hover ul li.wpml-ls-current-language {
  border-top: none;
}
.header-v2 .top-menu-home-mobile-v2 {
  display: none;
}
.header-v2 .top-menu-v2 .submenu a {
  font-size: 14px;
}
@media (max-width: 991px) {
  .header-v2 .header-v2-wrapper .mia-logo {
    display: none;
  }
  .header-v2 .header-top .right-side {
    margin-left: 1rem !important;
  }
  .header-v2 .header-top .right-side .search-container {
    display: none !important;
  }
  .header-v2 .header-top .pov-logo img {
    max-width: 5.5rem;
  }
  .header-v2 .search-container .search-form-header {
    display: flex;
    justify-content: center;
    position: relative;
  }
  .header-v2 .search-container .search-form-header button {
    top: -1px;
    right: 1rem;
    position: absolute;
    z-index: 1001;
    padding: 4px;
    border: none;
    background: transparent;
  }
  .header-v2 .search-container .search-form-header button i {
    color: #000 !important;
  }
  .header-v2 .top-menu-home-mobile-v2 {
    display: block;
  }
}

.section-devider-ogp-v2 figure {
  margin-bottom: 0;
}
.section-devider-ogp-v2 figure img {
  width: 100%;
  height: 27px;
}

.section-v2 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

/*section counters*/
/*end section counters*/
/*section news*/
.section-v2-news .card-hover-effect {
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}
.section-v2-news .card-hover-effect:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}
.section-v2-news h1 {
  margin-bottom: 1rem;
}
.section-v2-news h1 a {
  color: #000;
  text-decoration: none;
}
.section-v2-news h2 {
  margin-bottom: 1rem;
}
.section-v2-news h2 a {
  color: #000;
  text-decoration: none;
}
.section-v2-news img.card-img-left {
  max-width: 350px;
  width: 100% !important;
  height: 259px !important;
}

/*end section news*/
/*section documents*/
.section-v2-documents, .section-v2-best-practices {
  background: var(--bg-gray);
  /* The Animated Line */
  /* Animation: Line grows and changes color */
  /* Screen reader only utility */
}
.section-v2-documents h2, .section-v2-best-practices h2 {
  margin-bottom: 1rem;
  color: var(--color-blue);
}
.section-v2-documents h2 a, .section-v2-best-practices h2 a {
  color: var(--color-blue);
  text-decoration: none;
}
.section-v2-documents .doc-item, .section-v2-best-practices .doc-item {
  position: relative;
  height: 100%;
  transition: background-color 0.2s ease;
  border-radius: 0 4px 4px 0;
}
.section-v2-documents .doc-item::before, .section-v2-best-practices .doc-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15%;
  height: 70%;
  width: 4px;
  background-color: var(--color-blue);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.section-v2-documents .doc-link, .section-v2-best-practices .doc-link {
  display: block;
  padding: 1rem 1.5rem;
  text-decoration: none !important;
  color: inherit;
}
.section-v2-documents .doc-item:hover, .section-v2-best-practices .doc-item:hover {
  background-color: #f8f9fa;
}
.section-v2-documents .doc-item:hover::before, .section-v2-best-practices .doc-item:hover::before {
  top: 0;
  height: 100%;
  width: 6px;
  background-color: var(--hover-color-blue);
}
.section-v2-documents .doc-title, .section-v2-best-practices .doc-title {
  display: block;
  margin-bottom: 0.25rem;
}
.section-v2-documents .doc-meta, .section-v2-best-practices .doc-meta {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}
.section-v2-documents .visually-hidden, .section-v2-best-practices .visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.section-v2-best-practices {
  background: transparent;
}
.section-v2-best-practices h2 {
  color: var(--color-purple);
}
.section-v2-best-practices h2 a {
  color: var(--color-purple);
  text-decoration: none;
}
.section-v2-best-practices .doc-item::before {
  background-color: var(--color-purple);
}
.section-v2-best-practices .doc-item:hover::before {
  top: 0;
  background-color: var(--color-purple);
}

/*end section documents*/
/*counter section*/
.section-v2-counters {
  background: var(--bg-gray);
}
.section-v2-counters .counter-value {
  font-size: 4.5rem;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 10px;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.section-v2-counters .counter-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.section-v2-counters .item-green .counter-value {
  background-image: linear-gradient(180.75deg, #0C9B42 34.71%, #000000 99.35%);
}
.section-v2-counters .item-green .counter-label {
  color: #0C9B42;
  text-decoration: none;
  text-decoration-color: #0088cc;
  text-decoration-thickness: 2px;
}
.section-v2-counters .item-blue .counter-value {
  background-image: linear-gradient(180deg, #2B4678 43.89%, #000000 100%);
}
.section-v2-counters .item-blue .counter-label {
  color: #2B4678;
}
.section-v2-counters .item-purple .counter-value {
  background-image: linear-gradient(180deg, #701C6A 46.28%, #000000 100%);
}
.section-v2-counters .item-purple .counter-label {
  color: #701C6A;
}
.section-v2-counters .skeleton-effect {
  animation: pulse-skeleton 1.2s infinite alternate ease-in-out;
}

@keyframes pulse-skeleton {
  0% {
    filter: brightness(1) opacity(1);
  }
  100% {
    filter: brightness(1.3) opacity(0.6);
  }
}
/*end counter section*/
@media (max-width: 991px) {
  .site-v2 .regular-menu {
    display: block;
    width: 100%;
    position: absolute !important;
    top: 0;
    right: 0;
    bottom: auto;
    z-index: 1005 !important;
    background: transparent !important;
    /* Remove the default Bootstrap border from the button for a cleaner look (optional) */
    /* 1. INITIAL LOAD / CLOSED STATE (aria-expanded="false") */
    /* Hide the X */
    /* Show the bars */
    /* 2. OPEN STATE (aria-expanded="true") */
    /* Hide the bars */
    /* Show the X */
  }
  .site-v2 .regular-menu button {
    top: 28px;
    right: 1rem;
    position: absolute;
    z-index: 1001;
  }
  .site-v2 .regular-menu button i {
    color: #fff;
  }
  .site-v2 .regular-menu a {
    font-size: var(--h4-size);
    line-height: var(--h4-line-height);
    color: #fff;
  }
  .site-v2 .regular-menu li.menu-item {
    width: 100%;
  }
  .site-v2 .regular-menu li.menu-item .nav-link {
    padding: 30px;
    background: #000 !important;
    color: #fff !important;
  }
  .site-v2 .regular-menu #mainMenu {
    padding-top: 4rem;
    background: #000 !important;
  }
  .site-v2 .regular-menu .navbar-collapse.collapse.show {
    background: #000 !important;
    height: 100vh;
    padding-top: 4rem;
  }
  .site-v2 .regular-menu .navbar-toggler {
    border: none;
    outline: none;
  }
  .site-v2 .regular-menu .navbar-toggler:focus {
    box-shadow: none;
    /* Removes the blue focus ring, replace with your own styling if needed */
  }
  .site-v2 .regular-menu .navbar-toggler[aria-expanded=false] .icon-close {
    display: none !important;
  }
  .site-v2 .regular-menu .navbar-toggler[aria-expanded=false] .icon-bar {
    display: inline-block !important;
  }
  .site-v2 .regular-menu .navbar-toggler[aria-expanded=true] .icon-bar {
    display: none !important;
  }
  .site-v2 .regular-menu .navbar-toggler[aria-expanded=true] .icon-close {
    display: inline-block !important;
  }
}

/*top menu inner pages*/
header.header-v2-inner-pages {
  padding: 0;
  position: relative;
  background: url(../../img/header-v2-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
header.header-v2-inner-pages .navbar {
  background: transparent !important;
  position: relative;
  z-index: 999;
}
header.header-v2-inner-pages .navbar ul li a:after {
  border-right: 1px solid #6c757d;
  height: 100%;
  border-top: 1px solid #6c757d;
  width: 100%;
}
header.header-v2-inner-pages .navbar ul li:last-of-type a:after {
  border-right: none !important;
}
header.header-v2-inner-pages .navbar .menu-item > .nav-link {
  padding: 1rem;
  color: #fff !important;
  background: rgba(0, 0, 0, 0.65) !important;
  font-weight: normal;
}
header.header-v2-inner-pages .navbar .container-fluid {
  padding: 0;
}
header.header-v2-inner-pages .navbar .submenu {
  position: absolute;
  top: 48px;
  background: #000;
}
header.header-v2-inner-pages .navbar .submenu a:after {
  display: none !important;
}
header.header-v2-inner-pages .navbar .navbar-nav > li.nav-item:hover {
  background: #000;
}
header.header-v2-inner-pages .search-container {
  display: none;
}
header.header-v2-inner-pages .mia-logo {
  z-index: 99;
}
header.header-v2-inner-pages .mia-logo img {
  max-width: 250px;
  width: 100%;
}
header.header-v2-inner-pages .header-v2-wrapper:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}
header.header-v2-inner-pages .header-top {
  z-index: 1002;
}
header.header-v2-inner-pages .header-top .right-side .search-container {
  display: block;
}
header.header-v2-inner-pages .header-v2-inner-pages-divider {
  height: 1.625rem;
  position: relative;
}

/*end top menu inner pages*/
/*NAP monitoring*/
.nap-container #filters button {
  border: 1px solid #3482ab;
  color: #3482ab;
  font-size: 12px;
}
.nap-container #filters button.active {
  background: #3482ab !important;
  color: #fff;
}
.nap-container #filters button:hover {
  background: #3482ab;
  color: #fff;
}
.nap-container #masonry-grid .hover-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  background: #4068b1;
  border-radius: 10px;
  color: #fff;
  text-align: center;
  padding-top: 1rem;
}
.nap-container #masonry-grid .hover-card p {
  color: #fff;
}
.nap-container #masonry-grid .hover-card img {
  max-width: 11.5rem;
  margin: 0 auto;
}
.nap-container #masonry-grid .hover-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2) !important;
}
.nap-container #masonry-grid #filters .btn {
  transition: all 0.2s ease;
}

/*end NAP monitoring*/
/*nap monitoring v2*/
.nap-monitoring-v2 {
  /* Progress Dots Styling */
  /* Accordion Adjustments */
  /* Smooth hover for the action buttons */
  /* Custom Pagination Styling (WordPress Structure) */
}
.nap-monitoring-v2 .progress-container {
  flex: 1 1 15%;
}
.nap-monitoring-v2 .gaol-title-container {
  flex: 1 1 80%;
}
.nap-monitoring-v2 .goal-number-container {
  flex: 1 1 5%;
}
.nap-monitoring-v2 .progress-dots .dot {
  height: 8px;
  width: 100%;
  background-color: #198754;
  /* bs-success */
  border-radius: 4px;
  opacity: 0.8;
  transition: background-color 0.3s ease;
}
.nap-monitoring-v2 .progress-dots .dot.incomplete {
  background-color: #dee2e6;
  /* bs-gray-300 */
}
.nap-monitoring-v2 .accordion-button::after {
  margin-left: 0;
}
.nap-monitoring-v2 .accordion-button {
  gap: 1rem;
}
.nap-monitoring-v2 .btn-action {
  transition: all 0.2s ease-in-out;
}
.nap-monitoring-v2 .btn-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.nap-monitoring-v2 ul.page-numbers {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.nap-monitoring-v2 a.page-numbers,
.nap-monitoring-v2 span.page-numbers {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #495057;
  padding: 0px 4px;
  border-radius: 50px;
  /* Pill shape */
  font-weight: 500;
  transition: all 0.2s ease;
}
.nap-monitoring-v2 a.page-numbers:hover {
  background-color: #e9ecef;
  color: #212529;
}
.nap-monitoring-v2 span.page-numbers.current {
  background-color: #212529;
  /* Dark theme to match buttons */
  color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.nap-monitoring-v2 span.page-numbers.dots {
  background-color: transparent;
  color: #adb5bd;
  padding: 8px 12px;
}
.nap-monitoring-v2 .pagination-container a, .nap-monitoring-v2 .pagination-container span {
  background: transparent;
  color: #000;
}
.nap-monitoring-v2 span.page-numbers.current span {
  color: #fff;
}
@media (max-width: 991px) {
  .nap-monitoring-v2 .progress-container {
    width: 100% !important;
  }
}
.nap-monitoring-v2 .bg-color-orange {
  color: var(--color-orange) !important;
}
.nap-monitoring-v2 .bg-color-orange .progress-bar {
  background: var(--color-orange) !important;
}
.nap-monitoring-v2 .bg-color-orange > span {
  color: var(--color-orange) !important;
}
.nap-monitoring-v2 .bg-color-orange .progress-dots .dot.active {
  background-color: var(--color-orange) !important;
}
.nap-monitoring-v2 .bg-color-orange .tracking-wide {
  color: var(--color-orange) !important;
}
.nap-monitoring-v2 .bg-color-orange a.btn {
  justify-content: center !important;
  color: #fff;
}
.nap-monitoring-v2 .bg-color-orange a.btn span {
  color: #fff;
}
.nap-monitoring-v2 .bg-color-green {
  color: var(--color-green-light) !important;
}
.nap-monitoring-v2 .bg-color-green .progress-bar {
  background: var(--color-green-light) !important;
}
.nap-monitoring-v2 .bg-color-green > span {
  color: var(--color-green-lightw) !important;
}
.nap-monitoring-v2 .bg-color-green .progress-dots .dot.active {
  background-color: var(--color-green-light) !important;
}
.nap-monitoring-v2 .bg-color-green .tracking-wide {
  color: var(--color-green-light) !important;
}
.nap-monitoring-v2 .bg-color-green a.btn {
  justify-content: center !important;
  color: #fff;
}
.nap-monitoring-v2 .bg-color-green a.btn span {
  color: #fff;
}
.nap-monitoring-v2 .bg-color-yellow {
  color: var(--color-yellow) !important;
}
.nap-monitoring-v2 .bg-color-yellow .progress-bar {
  background: var(--color-yellow) !important;
}
.nap-monitoring-v2 .bg-color-yellow > span {
  color: var(--color-yellow) !important;
}
.nap-monitoring-v2 .bg-color-yellow .progress-dots .dot.active {
  background-color: var(--color-yellow) !important;
}
.nap-monitoring-v2 .bg-color-yellow .tracking-wide {
  color: var(--color-yellow) !important;
}
.nap-monitoring-v2 .bg-color-yellow a.btn {
  justify-content: center !important;
  color: #fff;
}
.nap-monitoring-v2 .bg-color-yellow a.btn span {
  color: #fff;
}

/*end nap monitoring v2*/
.section-title-v2 {
  text-decoration: none;
}

footer.footer {
  background: linear-gradient(94.45deg, #000000 0.92%, #3482AB 99.99%);
}
footer.footer .usaid-container .textwidget p {
  font-size: 14px !important;
  color: #fff;
  text-align: left;
}
footer.footer .usaid-container .usaid-logo {
  margin: 0;
}
footer.footer .footer-links li {
  text-align: left;
}
footer.footer .footer-links li a {
  text-transform: capitalize !important;
  font-weight: 500 !important;
  font-size: 1rem;
  text-decoration: none;
}
footer.footer .navbar-social-media-form .social-media-icons {
  font-size: 16px !important;
}
footer.footer .contact-information p {
  color: #fff;
  font-size: 14px;
}
footer.footer .contact-information p i {
  color: #fff;
}
footer.footer .contact-information p a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}
footer.footer .contact-information p:nth-of-type(2) {
  margin-bottom: 0;
}
@media (max-width: 991px) {
  footer.footer .footer-links {
    margin-top: 0 !important;
  }
  footer.footer .footer-links li {
    text-align: center;
  }
}
footer.footer a:hover {
  background: transparent !important;
  pacity: 0.8;
}
footer.footer a:hover.social-media-buttons i {
  opacity: 0.8;
}

/*GALLERY V2*/
.gallery-list-container .gallery {
  margin: 5px;
  border: 1px solid #ccc;
  float: left;
  width: 100%;
  height: 100%;
}
.gallery-list-container .gallery img {
  width: 100%;
  height: auto !important;
}

.gallery-card {
  transition: transform 0.3s ease;
}
.gallery-card:hover .gallery-img {
  transform: scale(1.05);
}
.gallery-card .gallery-img {
  width: 100%;
  height: auto;
  /* natural ratio preserved */
  display: block;
}

/*END GALLERY V2*/
/*BLOG*/
.blog-categories-thumbnails h5 a {
  color: var(--color-gray);
}
.blog-categories-thumbnails h5 a:hover {
  text-decoration: none;
}

/*END BLOG*/
/*OVP DOCUMENTS*/
.ovp-documents {
  background: transparent;
  padding: 20px 0;
}
.ovp-documents a {
  color: var(--color-gray);
}
.ovp-documents a:hover {
  text-decoration: none;
}
.ovp-documents span {
  color: var(--color-gray);
}

/*END OVP DOCUMENTS*/
/*nap-phases-timeline*/
.nap-phases-timeline h5 a {
  color: var(--color-gray);
}
.nap-phases-timeline h5 a:hover {
  text-decoration: none;
}
.nap-phases-timeline .phase p a {
  color: var(--color-gray) !important;
}
.nap-phases-timeline .inner-wrapper a {
  color: var(--color-gray) !important;
}
.nap-phases-timeline .timeline-flex-content .report .inner-wrapper a {
  color: #fff !important;
}

/*end nap-phases-timeline*/
.list-all-nap-proposals-container a {
  color: var(--color-gray) !important;
}
.list-all-nap-proposals-container .visualize-nap-comments {
  color: var(--color-gray) !important;
}

/*login form*/
#modal-login .modal-header, #modal-register .modal-header {
  background: transparent !important;
  color: #000;
}
#modal-login .modal-header h5, #modal-register .modal-header h5 {
  color: #000;
}
#modal-login #login-form button, #modal-login #registration-form button, #modal-register #login-form button, #modal-register #registration-form button {
  background: linear-gradient(268.63deg, #0C9B42 1.18%, #85C71F 98.85%);
  width: 100%;
  color: #fff;
}
#modal-login #login-form input, #modal-login #registration-form input, #modal-register #login-form input, #modal-register #registration-form input {
  padding: 0 14px !important;
  border-radius: var(--bs-border-radius) !important;
  padding-top: 16px !important;
  color: #000;
}
#modal-login #login-form .login-info, #modal-login #registration-form .login-info, #modal-register #login-form .login-info, #modal-register #registration-form .login-info {
  padding: 0;
}
#modal-login #login-form label#user_login-error, #modal-login #login-form login#user_pass-error, #modal-login #login-form label#email-error, #modal-login #login-form label#confirm_password-error, #modal-login #login-form label#password-error, #modal-login #login-form label#last_name-error, #modal-login #login-form label#first_name-error, #modal-login #registration-form label#user_login-error, #modal-login #registration-form login#user_pass-error, #modal-login #registration-form label#email-error, #modal-login #registration-form label#confirm_password-error, #modal-login #registration-form label#password-error, #modal-login #registration-form label#last_name-error, #modal-login #registration-form label#first_name-error, #modal-register #login-form label#user_login-error, #modal-register #login-form login#user_pass-error, #modal-register #login-form label#email-error, #modal-register #login-form label#confirm_password-error, #modal-register #login-form label#password-error, #modal-register #login-form label#last_name-error, #modal-register #login-form label#first_name-error, #modal-register #registration-form label#user_login-error, #modal-register #registration-form login#user_pass-error, #modal-register #registration-form label#email-error, #modal-register #registration-form label#confirm_password-error, #modal-register #registration-form label#password-error, #modal-register #registration-form label#last_name-error, #modal-register #registration-form label#first_name-error {
  display: block;
  transform: none;
  position: relative;
  padding: 0;
  color: red;
}
#modal-login #login-form .login-options div, #modal-login #login-form .login-options a, #modal-login #registration-form .login-options div, #modal-login #registration-form .login-options a, #modal-register #login-form .login-options div, #modal-register #login-form .login-options a, #modal-register #registration-form .login-options div, #modal-register #registration-form .login-options a {
  width: auto;
  color: #000;
  font-size: 14px;
  font-weight: normal;
}
#modal-login #login-form .login-options a:hover, #modal-login #registration-form .login-options a:hover, #modal-register #login-form .login-options a:hover, #modal-register #registration-form .login-options a:hover {
  background: none;
  opacity: 0.8;
}

/*end login form*/
.cld-like-dislike-wrap {
  display: flex;
  gap: 1rem;
}
.cld-like-dislike-wrap a i {
  font-size: 28px;
  color: var(--color-blue);
}

/*table */
.table-card {
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  /* header */
  /* body */
  /* striped rows using same color palette */
}
.table-card thead {
  color: #fff;
}
.table-card thead tr {
  background-color: rgba(64, 104, 177, 0.5);
  position: sticky;
  top: 0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.table-card thead th {
  font-weight: 600;
  background: none;
  padding: 16px 16px 16px 32px;
  color: #000;
}
.table-card tbody td {
  padding: 16px;
  border: none;
  background: none;
}
.table-card tbody tr {
  background: #fff;
}
.table-card tbody tr:nth-child(odd) {
  background: #fff;
}
.table-card tbody tr:nth-child(even) {
  background: #ecf0f7;
}
.table-card tbody tr .org-primary .member-avatar {
  width: 80px;
  height: auto;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

/*.modern-card {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(5px);
  border-radius: 2.5rem;
  box-shadow: 0 30px 45px -20px rgba(10,40,70,0.3), inset 0 1px 2px rgba(255,255,255,0.8);
  padding: 2.2rem 1.8rem;
  width: 100%;
  max-width: 1400px;
  transition: all 0.2s;
}

.table-modern-cyr {
  border-collapse: separate;
  border-spacing: 0 12px;
  width: 100%;

  thead {
    th {
      background: transparent;
      border: none;
      font-weight: 600;
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: #3d5a73;
      padding: 0.5rem 1rem 0.8rem 1rem;
      border-bottom: 2px solid rgba(13,110,253,0.1);
    }
  }

  tbody {
    tr {
      background: white;
      border-radius: 12px;
      box-shadow: 0 10px 24px -12px rgba(20,50,80,0.2), 0 3px 8px rgba(0,0,0,0.02);
      transition: 0.2s ease;
      cursor: default;

      &:hover {
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
        transform: translateY(-2px);
        background: #ffffff;
      }
    }
  }

  td {
    border: none;
    padding: 1.4rem 1rem;
    vertical-align: middle;
    font-size: 1rem;
    color: #1f3a48;

    &:first-child {
      border-top-left-radius: 12px;
      border-bottom-left-radius: 12px;
      padding-left: 2rem;
    }

    &:last-child {
      border-top-right-radius: 12px;
      border-bottom-right-radius: 12px;
      padding-right: 2rem;
      max-width: 75%;
      width: 100%;
    }
  }
}

.member-avatar {
  width: 50px;
  height: auto;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
}

.member-info {
  display: flex;
  align-items: center;
  gap: 14px;
}

.member-details {
  line-height: 1.4;
}

.member-name {
  font-weight: 700;
  color: #0b293b;
  font-size: 1.08rem;
}

.member-email {
  font-size: 0.9rem;
  color: #4b6f88;
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;

  i {
    font-size: 0.8rem;
    color: #5f7d99;
    width: 16px;
  }
}

.org-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.org-primary {
  font-weight: 600;
  color: #103247;
  line-height: 1.4;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  display: inline-block;
  max-width: 90%;
}*/

/*# sourceMappingURL=main.css.map */
