@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
html.dark body .wrapper header.header .upper-header nav.upper-nav .right .theme-toggle i::before {
  opacity: 0;
  transform: scale(0.8);
}
html.dark body .wrapper header.header .upper-header nav.upper-nav .right .theme-toggle i::after {
  opacity: 1;
  transform: scale(1);
}
html.dark body .wrapper header.header .lower-header nav.lower-nav .main-menu .main-menu-li:hover .main-menu-main-links {
  color: hsl(from var(--primary-color) h s calc(l + 30));
}
html.dark body .wrapper header.header .lower-header nav.lower-nav .main-menu .main-menu-li:hover .main-menu-main-links .right-arrow {
  rotate: 90deg;
  color: hsl(from var(--primary-color) h s calc(l + 30));
}
html.accessible body .wrapper header.header .accessibility-header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(1rem, 2vw, 2.5rem);
  font-weight: 700;
  height: auto;
  padding: 0.75rem clamp(2rem, 4vw, 8rem);
  flex-wrap: nowrap;
  background-color: var(--primary-bg);
}
html.accessible body .wrapper header.header .accessibility-header .column {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.25rem, 0.8vw, 0.5rem);
}
html.accessible body .wrapper header.header .accessibility-header .column h3 {
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  line-height: 1.4em;
  white-space: nowrap;
}
html.accessible body .wrapper header.header .accessibility-header .column button {
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  width: clamp(2rem, 2.5vw, 2.25rem);
  height: clamp(1.875rem, 2.25vw, 2rem);
  font-weight: 600;
  border: 1px solid #c6c6c6;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
html.accessible body .wrapper header.header .accessibility-header .column button svg {
  width: clamp(1rem, 1.2vw, 1.25rem);
  height: clamp(1rem, 1.2vw, 1.25rem);
  fill: currentColor;
}
html.accessible body .wrapper header.header .accessibility-header .column button.accessibility-toggle {
  width: 100%;
  height: clamp(1.875rem, 2.5vw, 2rem);
  padding: clamp(0.25rem, 0.5vw, 0.375rem) clamp(0.375rem, 0.7vw, 0.5rem);
}
html.accessible body .wrapper header.header .accessibility-header .column .buttons {
  display: inline-flex;
  gap: clamp(0.2rem, 0.5vw, 0.4rem);
}
html.accessible body .wrapper header.header .accessibility-header .column .buttons button {
  white-space: nowrap;
}
html.accessible body .wrapper header.header .accessibility-header .column .buttons button#font-size-1rem {
  font-size: clamp(0.875rem, 1vw, 1rem);
}
html.accessible body .wrapper header.header .accessibility-header .column .buttons button#font-size-1-25rem {
  font-size: clamp(1rem, 1.1vw, 1.125rem);
}
html.accessible body .wrapper header.header .accessibility-header .column .buttons button#font-size-1-5rem {
  font-size: clamp(1.125rem, 1.2vw, 1.25rem);
}
@media (max-width: 1200px) {
  html.accessible body .wrapper header.header .accessibility-header {
    flex-wrap: wrap;
    padding: 0.5rem;
    gap: clamp(0.5rem, 1vw, 1rem);
  }
  html.accessible body .wrapper header.header .accessibility-header .column {
    gap: clamp(0.25rem, 0.5vw, 0.4rem);
  }
}
html.accessible body .wrapper header.header .upper-header {
  background-color: var(--primary-color);
}
html.accessible body .wrapper header.header .upper-header nav.upper-nav .right .accessibility-toggle {
  display: none;
}
html.accessible body .wrapper header.header .upper-header nav.upper-nav .right .languages .dropdown {
  --primary-bg: var(--primary-color);
  box-shadow: 0 2px 6px rgba(255, 255, 255, 0.35);
}
html.accessible body .wrapper header.header .upper-header nav.upper-nav .right .theme-toggle {
  display: none;
}
html.accessible body .wrapper header.header .lower-header nav.lower-nav a {
  font-size: 0.8rem;
}
html body .wrapper header.header {
  grid-row: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 999;
  box-shadow: 0px 4px 8px 0px rgba(142, 141, 208, 0.16);
}
html body .wrapper header.header .accessibility-header {
  display: none;
  position: relative;
  z-index: 999;
  background-color: var(--primary-bg);
  width: 100%;
  transition: font-size 0.3s ease-in-out, padding 0.3s ease-in-out;
}
html body .wrapper header.header #sidebar {
  position: absolute;
  top: 100%;
  right: 0;
  width: 100%;
  height: 30rem;
  z-index: 69;
  background-color: var(--primary-color);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  max-height: 100vh;
  overflow-y: auto;
}
html body .wrapper header.header #sidebar .main-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1000;
}
html body .wrapper header.header #sidebar .main-menu .main-menu-li {
  position: relative;
}
html body .wrapper header.header #sidebar .main-menu .main-menu-li input[type=checkbox] {
  display: none;
  padding-left: 2rem;
}
html body .wrapper header.header #sidebar .main-menu .main-menu-li input[type=checkbox]:checked ~ .dropdown-mega-menu, html body .wrapper header.header #sidebar .main-menu .main-menu-li input[type=checkbox]:checked ~ .nested-dropdown-menu {
  max-height: 1000px;
}
html body .wrapper header.header #sidebar .main-menu .main-menu-li input[type=checkbox]:checked ~ .main-menu-main-links .right-arrow {
  transform: rotate(90deg);
}
html body .wrapper header.header #sidebar .main-menu .main-menu-li .nested-dropdown-menu {
  max-height: 0;
  overflow: hidden;
  padding-left: 2rem;
  transition: max-height 0.3s ease-in-out;
}
html body .wrapper header.header #sidebar .main-menu .main-menu-li .main-menu-main-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.33rem;
  text-decoration: none;
  color: #fff;
}
html body .wrapper header.header #sidebar .main-menu .main-menu-li .main-menu-main-links:hover {
  background-color: var(--primary-color-hover);
}
html body .wrapper header.header #sidebar .main-menu .main-menu-li .main-menu-main-links .right-arrow {
  font-size: 1rem;
  transition: transform 0.15s ease;
  color: #fff;
}
html body .wrapper header.header #sidebar .main-menu .main-menu-li .dropdown-mega-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.15s ease-in-out;
}
html body .wrapper header.header #sidebar .main-menu .main-menu-li .dropdown-mega-menu .dropdown-row {
  display: flex;
  flex-wrap: wrap;
  padding-left: 2rem;
}
html body .wrapper header.header #sidebar .main-menu .main-menu-li .dropdown-mega-menu .dropdown-row .dropdown-col {
  flex: 1 1 100%;
}
html body .wrapper header.header #sidebar .main-menu .main-menu-li .dropdown-mega-menu .dropdown-row .dropdown-col .list a {
  display: block;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  font-size: 1rem;
  color: #fff;
}
html body .wrapper header.header #sidebar .main-menu .main-menu-li .dropdown-mega-menu .dropdown-row .dropdown-col .list a:hover {
  background-color: var(--primary-color-hover);
}
html body .wrapper header.header #sidebar.open {
  opacity: 1;
  visibility: visible;
}
@media (min-width: 1200px) {
  html body .wrapper header.header #sidebar {
    display: none;
  }
}
html body .wrapper header.header .upper-header {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: var(--upper-nav-height);
  background-color: var(--primary-bg);
  color: var(--primary-text);
  position: relative;
  z-index: 800;
  padding: 1rem 0;
}
html body .wrapper header.header .upper-header nav.upper-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0 2.5rem;
}
html body .wrapper header.header .upper-header nav.upper-nav .logo {
  display: flex;
  align-items: center;
  height: 100%;
}
html body .wrapper header.header .upper-header nav.upper-nav .logo a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.3rem;
  text-decoration: none;
  color: var(--primary-text);
  max-width: fit-content;
  min-width: max-content;
  position: relative;
  height: 100%;
}
html body .wrapper header.header .upper-header nav.upper-nav .logo a img {
  height: 100%;
  width: auto;
  max-height: 100%;
  flex-shrink: 0;
}
html body .wrapper header.header .upper-header nav.upper-nav .logo a #logo-text {
  font-size: 1rem;
}
@media (max-width: 1200px) {
  html body .wrapper header.header .upper-header nav.upper-nav .logo a #logo-text {
    font-size: 0.9rem;
  }
}
@media (max-width: 899px) {
  html body .wrapper header.header .upper-header nav.upper-nav .logo a #logo-text {
    display: none;
  }
}
html body .wrapper header.header .upper-header nav.upper-nav .right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 2rem;
}
html body .wrapper header.header .upper-header nav.upper-nav .right .theme-toggle,
html body .wrapper header.header .upper-header nav.upper-nav .right .search,
html body .wrapper header.header .upper-header nav.upper-nav .right .languages,
html body .wrapper header.header .upper-header nav.upper-nav .right .accessibility-toggle {
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
@media (min-width: 1200px) {
  html body .wrapper header.header .upper-header nav.upper-nav .right .theme-toggle,
  html body .wrapper header.header .upper-header nav.upper-nav .right .search,
  html body .wrapper header.header .upper-header nav.upper-nav .right .languages,
  html body .wrapper header.header .upper-header nav.upper-nav .right .accessibility-toggle {
    visibility: visible;
    opacity: 1;
  }
}
html body .wrapper header.header .upper-header nav.upper-nav .right .theme-toggle.open,
html body .wrapper header.header .upper-header nav.upper-nav .right .search.open,
html body .wrapper header.header .upper-header nav.upper-nav .right .languages.open,
html body .wrapper header.header .upper-header nav.upper-nav .right .accessibility-toggle.open {
  visibility: visible;
  opacity: 1;
}
html body .wrapper header.header .upper-header nav.upper-nav .right .accessibility-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
}
html body .wrapper header.header .upper-header nav.upper-nav .right .languages {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1015;
}
html body .wrapper header.header .upper-header nav.upper-nav .right .languages .language {
  display: flex;
  align-items: center;
  text-transform: uppercase;
  gap: 0.5rem;
  padding: 0.4rem 0.66rem;
  font-size: 0.75rem;
  cursor: pointer;
  width: 100%;
  color: var(--primary-text);
  border: none;
  background: transparent;
}
html body .wrapper header.header .upper-header nav.upper-nav .right .languages .language img {
  max-height: 1.33rem;
  min-height: 100%;
}
html body .wrapper header.header .upper-header nav.upper-nav .right .languages .current-language {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: bold;
}
html body .wrapper header.header .upper-header nav.upper-nav .right .languages .current-language img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}
html body .wrapper header.header .upper-header nav.upper-nav .right .languages .current-language:hover + .dropdown,
html body .wrapper header.header .upper-header nav.upper-nav .right .languages .current-language .dropdown:hover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
html body .wrapper header.header .upper-header nav.upper-nav .right .languages .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: var(--primary-bg);
  color: var(--primary-text);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
html body .wrapper header.header .upper-header nav.upper-nav .right .languages .dropdown:hover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
html body .wrapper header.header .upper-header nav.upper-nav .right .languages .dropdown .language:hover {
  background-color: var(--language-bg-color);
  --primary-text: #000;
}
html body .wrapper header.header .upper-header nav.upper-nav .right .languages .dropdown .language:disabled {
  display: none;
}
html body .wrapper header.header .upper-header nav.upper-nav .right .search {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
html body .wrapper header.header .upper-header nav.upper-nav .right .search form {
  display: inline-block;
  overflow: hidden;
  padding: 0;
  margin: 0;
  width: auto;
  transition: all 0.3s ease;
}
html body .wrapper header.header .upper-header nav.upper-nav .right .search form .search-box {
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 0;
  width: 100%;
  height: 100%;
  border-radius: 0.25rem;
  border: 1.5px solid transparent;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}
@media (min-width: 900px) {
  html body .wrapper header.header .upper-header nav.upper-nav .right .search form .search-box:hover, html body .wrapper header.header .upper-header nav.upper-nav .right .search form .search-box:focus-within {
    background: var(--search-bg, #eee);
    border-color: #dadada;
  }
  html body .wrapper header.header .upper-header nav.upper-nav .right .search form .search-box:hover .search-box-input, html body .wrapper header.header .upper-header nav.upper-nav .right .search form .search-box:focus-within .search-box-input {
    width: 13.5rem;
    opacity: 1;
    padding: 0.5rem 0.75rem;
    color: var(--date-color, #424242);
  }
  html body .wrapper header.header .upper-header nav.upper-nav .right .search form .search-box:hover .search-box-btn, html body .wrapper header.header .upper-header nav.upper-nav .right .search form .search-box:focus-within .search-box-btn {
    --primary-text: #000;
  }
  html body .wrapper header.header .upper-header nav.upper-nav .right .search form .search-box:focus-within {
    border-color: var(--primary-color);
  }
}
html body .wrapper header.header .upper-header nav.upper-nav .right .search form .search-box .search-box-input {
  width: 0;
  opacity: 0;
  border: none;
  padding: 0;
  margin: 0;
  font-size: 1rem;
  line-height: 1rem;
  vertical-align: middle;
  outline: none;
  background: transparent;
  color: #333;
  box-sizing: border-box;
  transition: all 0.3s ease;
}
html body .wrapper header.header .upper-header nav.upper-nav .right .search form .search-box .search-box-input:focus {
  width: 13.5rem;
  opacity: 1;
  padding: 0.5rem 0.75rem;
}
html body .wrapper header.header .upper-header nav.upper-nav .right .search form .search-box .search-box-btn {
  background: none;
  border: none;
  outline: none;
  padding: 0.5rem;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--primary-text);
  position: relative;
  transition: color 0.3s ease-in-out;
}
html body .wrapper header.header .upper-header nav.upper-nav .right .search form .search-box .search-box-btn i {
  transition: transform 0.3s ease;
}
html body .wrapper header.header .upper-header nav.upper-nav .right .theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  height: 2.25rem;
  width: 2.25rem;
  background-color: var(--primary-color);
  border-radius: 50%;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}
html body .wrapper header.header .upper-header nav.upper-nav .right .theme-toggle i {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}
html body .wrapper header.header .upper-header nav.upper-nav .right .theme-toggle i::before, html body .wrapper header.header .upper-header nav.upper-nav .right .theme-toggle i::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Font Awesome 5 Pro";
  font-weight: bold;
  font-style: normal;
  font-size: 1rem;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
html body .wrapper header.header .upper-header nav.upper-nav .right .theme-toggle i::before {
  content: "\f186";
  opacity: 1;
  transform: scale(1);
}
html body .wrapper header.header .upper-header nav.upper-nav .right .theme-toggle i::after {
  content: "\e28f";
  opacity: 0;
  transform: scale(0.8);
}
html body .wrapper header.header .upper-header nav.upper-nav .right .menu__mobile {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media (min-width: 1200px) {
  html body .wrapper header.header .upper-header nav.upper-nav .right .menu__mobile_button {
    display: none;
  }
}
html body .wrapper header.header .upper-header nav.upper-nav .right .menu__mobile_button {
  position: relative;
  height: 20px;
  width: 30px;
  cursor: pointer;
  background-color: transparent;
}
html body .wrapper header.header .upper-header nav.upper-nav .right .menu__mobile_button.active span {
  opacity: 0;
}
html body .wrapper header.header .upper-header nav.upper-nav .right .menu__mobile_button.active:before, html body .wrapper header.header .upper-header nav.upper-nav .right .menu__mobile_button.active:after {
  top: 40%;
}
html body .wrapper header.header .upper-header nav.upper-nav .right .menu__mobile_button.active:before {
  transform: rotate(45deg);
}
html body .wrapper header.header .upper-header nav.upper-nav .right .menu__mobile_button.active:after {
  transform: rotate(-45deg);
}
html body .wrapper header.header .upper-header nav.upper-nav .right .menu__mobile_button span, html body .wrapper header.header .upper-header nav.upper-nav .right .menu__mobile_button:before, html body .wrapper header.header .upper-header nav.upper-nav .right .menu__mobile_button:after {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background-color: var(--primary-text);
  border-radius: 2px;
  opacity: 1;
}
html body .wrapper header.header .upper-header nav.upper-nav .right .menu__mobile_button:before, html body .wrapper header.header .upper-header nav.upper-nav .right .menu__mobile_button:after {
  content: "";
  transition: top 0.35s cubic-bezier(0.23, 1, 0.32, 1), transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}
html body .wrapper header.header .upper-header nav.upper-nav .right .menu__mobile_button span {
  top: 50%;
  transform: translateY(-50%);
}
html body .wrapper header.header .upper-header nav.upper-nav .right .menu__mobile_button:before {
  top: 0;
}
html body .wrapper header.header .upper-header nav.upper-nav .right .menu__mobile_button:after {
  top: calc(100% - 2px);
}
@media (min-width: 1200px) {
  html body .wrapper header.header .upper-header nav.upper-nav {
    padding: 0 clamp(1rem, 5vw, 6.6rem);
  }
}
@media (max-width: 1200px) {
  html body .wrapper header.header .upper-header nav.upper-nav {
    padding: 0 clamp(1rem, 5vw, 2rem);
  }
  html body .wrapper header.header .upper-header nav.upper-nav .logo a #logo-text.open {
    display: none;
  }
}
@media (max-width: 899px) {
  html body .wrapper header.header .upper-header nav.upper-nav {
    padding: 0 1.5rem;
  }
  html body .wrapper header.header .upper-header nav.upper-nav .logo a #logo-text {
    font-size: 0.8rem !important;
    line-height: 1.4rem;
  }
}
@media (max-width: 599px) {
  html body .wrapper header.header .upper-header nav.upper-nav {
    padding: 0 1rem;
  }
  html body .wrapper header.header .upper-header nav.upper-nav .logo a img {
    max-width: 100%;
  }
  html body .wrapper header.header .upper-header nav.upper-nav .logo a #logo-text {
    display: none;
  }
  html body .wrapper header.header .upper-header nav.upper-nav .right {
    gap: 0.5rem;
  }
  html body .wrapper header.header .upper-header nav.upper-nav .right .menu__mobile_button {
    margin-left: 0.5rem;
  }
  html body .wrapper header.header .upper-header nav.upper-nav .right .languages .language {
    padding: 0.33rem 0.5rem;
  }
}
@media (min-width: 600px) and (max-width: 899px) {
  html body .wrapper header.header .upper-header nav.upper-nav .logo a #logo-text {
    font-size: 0.9rem;
  }
}
html body .wrapper header.header .lower-header {
  color: var(--primary-text);
  width: 100%;
  height: var(--lower-nav-height);
  padding: 0;
  background-color: var(--primary-bg);
  display: none;
  justify-content: center;
  align-items: center;
  gap: 0;
  border-top: 1px solid rgba(142, 141, 208, 0.1);
}
@media (min-width: 1200px) {
  html body .wrapper header.header .lower-header {
    display: flex;
  }
}
html body .wrapper header.header .lower-header nav.lower-nav {
  float: right;
  padding: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0.9rem;
}
html body .wrapper header.header .lower-header nav.lower-nav ul {
  list-style: none;
}
html body .wrapper header.header .lower-header nav.lower-nav ul.main-menu {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding: 0 6.6rem;
  gap: 2.6rem;
}
html body .wrapper header.header .lower-header nav.lower-nav ul.main-menu .main-menu-li {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 100%;
  cursor: pointer;
}
html body .wrapper header.header .lower-header nav.lower-nav ul.main-menu .main-menu-li:hover .dropdown-mega-menu {
  z-index: -1;
  transition-delay: 0s !important;
  opacity: 1;
  visibility: visible;
}
html body .wrapper header.header .lower-header nav.lower-nav ul.main-menu .main-menu-li:hover .main-menu-main-links {
  color: var(--primary-color);
}
html body .wrapper header.header .lower-header nav.lower-nav ul.main-menu .main-menu-li:hover .main-menu-main-links .right-arrow {
  rotate: 90deg;
  color: var(--primary-color);
}
html body .wrapper header.header .lower-header nav.lower-nav ul.main-menu .main-menu-li.instant-transition .dropdown-mega-menu {
  transition-delay: 0;
}
html body .wrapper header.header .lower-header nav.lower-nav ul.main-menu .main-menu-li .main-menu-main-links {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  text-decoration: none;
  color: var(--primary-text);
  line-height: 1.25rem;
  font-weight: 300;
  font-size: 0.75rem;
}
html body .wrapper header.header .lower-header nav.lower-nav ul.main-menu .main-menu-li .main-menu-main-links .right-arrow {
  font-size: 1rem;
  margin-left: 0.33rem;
  transition: rotate 0.3s ease-in-out;
}
@media (min-width: 1200px) {
  html body .wrapper header.header .lower-header nav.lower-nav ul.main-menu .main-menu-li .main-menu-main-links {
    font-size: 0.9rem;
  }
}
html body .wrapper header.header .lower-header nav.lower-nav ul.main-menu .main-menu-li .dropdown-mega-menu {
  min-height: 15rem;
  width: 80%;
  margin: 0;
  background-color: var(--primary-color);
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s ease-in-out;
  transition-delay: 0.3s;
  visibility: hidden;
  opacity: 0;
  z-index: -1000;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 2.5rem 4rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
  cursor: default;
}
html body .wrapper header.header .lower-header nav.lower-nav ul.main-menu .main-menu-li .dropdown-mega-menu .dropdown-row {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}
html body .wrapper header.header .lower-header nav.lower-nav ul.main-menu .main-menu-li .dropdown-mega-menu .dropdown-row:has(.dropdown-col:only-child) .dropdown-col {
  grid-column: 2;
}
html body .wrapper header.header .lower-header nav.lower-nav ul.main-menu .main-menu-li .dropdown-mega-menu .dropdown-row:has(.dropdown-col:nth-child(2):last-child) {
  grid-template-columns: repeat(4, 1fr);
  padding: 0 8rem;
}
html body .wrapper header.header .lower-header nav.lower-nav ul.main-menu .main-menu-li .dropdown-mega-menu .dropdown-row:has(.dropdown-col:nth-child(2):last-child) .dropdown-col {
  grid-column: span 2;
}
html body .wrapper header.header .lower-header nav.lower-nav ul.main-menu .main-menu-li .dropdown-mega-menu .dropdown-row .dropdown-col {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  row-gap: 1.33rem;
}
html body .wrapper header.header .lower-header nav.lower-nav ul.main-menu .main-menu-li .dropdown-mega-menu .dropdown-row .dropdown-col .list {
  --primary-text: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
}
html body .wrapper header.header .lower-header nav.lower-nav ul.main-menu .main-menu-li .dropdown-mega-menu .dropdown-row .dropdown-col .list h3 {
  margin-bottom: 1rem;
  margin-left: 14px;
  text-align: left;
  color: var(--primary-text);
  font-size: 1.2rem;
  line-height: 1.6rem;
  border-bottom: 1px solid var(--primary-text);
  padding-bottom: 3px;
}
html body .wrapper header.header .lower-header nav.lower-nav ul.main-menu .main-menu-li .dropdown-mega-menu .dropdown-row .dropdown-col .list a {
  color: var(--primary-text);
  text-decoration: none;
  width: 100%;
  line-height: 1.6rem;
  position: relative;
  border-radius: 12px;
  padding: 0.25rem 12% 0.25rem 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
  display: inline-block;
  font-size: 1.1rem;
}
html body .wrapper header.header .lower-header nav.lower-nav ul.main-menu .main-menu-li .dropdown-mega-menu .dropdown-row .dropdown-col .list a:hover {
  background-color: var(--primary-color-hover);
  color: #fff;
}
html body .wrapper header.header .lower-header nav.lower-nav ul.main-menu .main-menu-li .dropdown-mega-menu .dropdown-row .dropdown-col .list a:hover i {
  left: 94%;
  opacity: 1;
}
html body .wrapper header.header .lower-header nav.lower-nav ul.main-menu .main-menu-li .dropdown-mega-menu .dropdown-row .dropdown-col .list a i {
  margin-left: -5px;
  position: absolute;
  top: 50%;
  left: 90%;
  transform: translateY(-50%);
  transition: all 0.5s ease-in-out;
  opacity: 0;
  color: #fff;
  width: 1.2rem;
  height: 1.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
html body .wrapper header.header .lower-header nav.lower-nav ul.main-menu .main-menu-li .dropdown-mega-menu .dropdown-row .dropdown-col .list a i img {
  width: 100%;
  height: 100%;
}
html body .wrapper header.header .lower-header nav.lower-nav .logo {
  height: 100%;
  display: flex;
  align-items: center;
}
html body .wrapper header.header .lower-header nav.lower-nav .logo img {
  height: auto;
  max-height: 100%;
}

html.accessible footer.footer .footer-container p,
html.accessible footer.footer .footer-container a,
html.accessible footer.footer .footer-container address {
  font-size: 1.25rem;
  line-height: 2rem;
}
html.accessible footer.footer .footer-container .right .social-icons a {
  transform: scale(1.5);
}
html body .wrapper footer.footer {
  grid-row: 3;
  --primary-text: #fff;
  background-color: hsla(from var(--primary-color) h s l/0.8);
  background-image: url("/static/images/clouds_bg.e23170a76fd6.jpg");
  background-blend-mode: overlay;
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
  color: var(--primary-text);
  padding: 6rem;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
}
html body .wrapper footer.footer a {
  color: var(--primary-text);
}
html body .wrapper footer.footer .footer-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  justify-items: center;
  height: 100%;
  line-height: 1.4rem;
  gap: 3rem;
}
html body .wrapper footer.footer .footer-container ul {
  list-style: none;
  line-height: 1.5rem;
}
html body .wrapper footer.footer .footer-container .left {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
  width: 100%;
}
html body .wrapper footer.footer .footer-container .left .logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}
html body .wrapper footer.footer .footer-container .left .info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  line-height: 160%;
  font-size: 1rem;
  height: auto;
}
html body .wrapper footer.footer .footer-container .left .info a:not(:has(span)) {
  text-decoration: underline;
  text-underline-offset: 3px;
}
html body .wrapper footer.footer .footer-container .left .info a span {
  text-decoration: underline;
  text-underline-offset: 3px;
}
html body .wrapper footer.footer .footer-container .left .info .address a {
  text-decoration: none;
}
html body .wrapper footer.footer .footer-container .left .info .phone a {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 0.5rem;
}
html body .wrapper footer.footer .footer-container .left .info .phone a i {
  display: flex;
  align-items: center;
}
html body .wrapper footer.footer .footer-container .middle {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  gap: 1.5rem;
}
html body .wrapper footer.footer .footer-container .middle ul {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
}
html body .wrapper footer.footer .footer-container .right {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 1rem;
  width: 100%;
}
html body .wrapper footer.footer .footer-container .right .social-icons {
  display: flex;
  gap: 1.375rem;
  align-items: center;
}
html body .wrapper footer.footer .footer-container .right .rights {
  margin-top: auto;
}
@media (max-width: 899px) {
  html body .wrapper footer.footer {
    padding: 5rem;
  }
  html body .wrapper footer.footer .footer-container {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 3rem;
  }
  html body .wrapper footer.footer .footer-container .left {
    grid-row: 2;
    grid-column: 1;
  }
  html body .wrapper footer.footer .footer-container .middle {
    grid-row: 1;
    grid-column: span 2;
  }
  html body .wrapper footer.footer .footer-container .middle ul {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr 1fr;
    list-style: none;
    padding: 0;
    column-gap: 3rem;
  }
  html body .wrapper footer.footer .footer-container .right {
    grid-row: 2;
    grid-column: 2;
  }
}
@media (max-width: 599px) {
  html body .wrapper footer.footer {
    padding: 2rem;
  }
  html body .wrapper footer.footer .footer-container {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 3rem;
  }
  html body .wrapper footer.footer .footer-container .left {
    grid-row: 2;
    grid-column: 1;
  }
  html body .wrapper footer.footer .footer-container .left .logo {
    display: none;
  }
  html body .wrapper footer.footer .footer-container .left .info {
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
  }
  html body .wrapper footer.footer .footer-container .middle {
    grid-row: 1;
    grid-column: 1;
  }
  html body .wrapper footer.footer .footer-container .middle ul {
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
  html body .wrapper footer.footer .footer-container .right {
    grid-row: 3;
    grid-column: 1;
    justify-content: center;
    align-items: center;
  }
}

.temporary-alert {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ff4d4d;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 1rem;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: none;
  width: 100%;
  animation: fade-in 0.3s ease-in;
  animation: fade-out 0.3s ease-out;
}

button {
  cursor: pointer;
}

.card {
  padding: 0.6rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transition: box-shadow 0.3s ease-in-out;
  background-color: var(--primary-bg);
  position: relative;
  z-index: 1;
}
.card:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.35);
}
.card,
.card * {
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
}
.card .content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.card .content a {
  position: absolute;
  inset: 0;
}
.card .content a::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 999;
}
.card .content .image {
  padding-top: 56.25%;
  z-index: 1;
}
.card .content .text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 1rem;
  width: 100%;
  position: relative;
  padding: 0.75rem;
}
.card .content .text * {
  color: var(--primary-text);
}
.card .content .text:has(.description:empty) {
  gap: 0;
}
.card .content .text .date {
  font-size: 0.75rem;
  font-weight: 400;
  padding: 4px 8px;
  color: var(--date-color);
  background-color: var(--search-bg);
}
.card .content .text .title {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.card .content .text .description {
  line-height: 1.375rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

#stt {
  position: fixed;
  bottom: 5rem;
  right: 2rem;
  padding: 1rem;
  border-radius: 50%;
  background-color: var(--primary-color);
  border: none;
  z-index: 9999;
  display: none;
}
#stt i {
  color: #fff;
  font-size: 1.2rem;
}

#contact-form-button {
  position: fixed;
  bottom: 5rem;
  left: 2rem;
  padding: 1.2rem;
  border-radius: 50%;
  background-color: var(--primary-color);
  border: none;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #000;
}
#contact-form-button i {
  color: #fff;
  font-size: 2rem;
}

:root {
  --primary-color: #393184;
  --primary-color-hover: #7167c9;
  --primary-text: #292929;
  --text-dark: #1f1f1f;
  --primary-bg: #fff;
  --upper-nav-height: 6rem;
  --lower-nav-height: 5rem;
  --language-bg-color: #e1e9ff;
  --date-color: #424242;
  --search-bg: #eeeeee;
  --link-color: #2b6de9;
  --side-padding: 14rem;
  --main-carousel-aspect-ratio: 4.2/1;
}
@media (max-width: 1200px) {
  :root {
    --side-padding: 6rem;
  }
}
@media (max-width: 899px) {
  :root {
    --side-padding: 3rem;
  }
}
@media (max-width: 599px) {
  :root {
    --side-padding: 1rem;
  }
}

* {
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out;
}

html {
  font-family: "Geologica", sans-serif;
  font-size: 93.75%;
  line-height: 160%;
  color: var(--primary-text);
}
html * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html a,
html a {
  text-decoration: none;
}
html i {
  display: inline-block;
  height: 100%;
  color: var(--primary-text);
}
html i svg {
  width: 100%;
  height: 100%;
}
html.accessible {
  --primary-color: #000;
  --primary-color-hover: hsl(from var(--primary-color) h s calc(l + 20));
  font-size: 1rem;
  transition: font-size 0.3s ease-in-out;
}
html.accessible.font-size-1-25rem {
  font-size: 1.25rem;
}
html.accessible.font-size-1-5rem {
  font-size: 1.5rem;
}
html.accessible .upper-header,
html.accessible .footer,
html.accessible button.btn {
  --primary-text: #fff;
  --primary-color: #000;
}
html.accessible.white-black,
html.accessible .white-black {
  --primary-text: #000;
  --primary-bg: #fff;
  color: var(--primary-text);
  background-color: var(--primary-bg);
}
html.accessible.black-white,
html.accessible .black-white {
  --primary-text: #fff;
  --primary-bg: #1c1c1c;
  color: var(--primary-text);
  background-color: var(--primary-bg);
}
html.accessible.blue-black,
html.accessible .blue-black {
  --primary-text: #000;
  --primary-bg: #9dd1ff;
  color: var(--primary-text);
  background-color: var(--primary-bg);
}
html.accessible.yellow-black,
html.accessible .yellow-black {
  --primary-text: #000;
  --primary-bg: #f7f3d6;
  color: var(--primary-text);
  background-color: var(--primary-bg);
}
html.accessible.brown-green,
html.accessible .brown-green {
  --primary-text: #a9e44d;
  --primary-bg: #3b2716;
  color: var(--primary-text);
  background-color: var(--primary-bg);
}
html.accessible body .wrapper main.main button {
  background-color: var(--primary-color);
}
html.accessible body .wrapper main.main .child-banner {
  background-color: var(--text-dark);
}
html.accessible body .wrapper main.main .section .content span,
html.accessible body .wrapper main.main .section .content p {
  font-size: 1.5rem;
}
html.accessible body .wrapper main.main .news .carousel {
  height: 36rem;
}
html.accessible body .wrapper main.main .news .carousel .owl-carousel .item {
  height: 26.25rem;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}
html.accessible body .wrapper main.main .announcements .content .announcements-list {
  gap: 1.5625rem;
}
html.accessible body .wrapper main.main .announcements .content .announcements-list .item p,
html.accessible body .wrapper main.main .announcements .content .announcements-list span {
  line-height: 2.25rem;
}
html.dark {
  --primary-text: #fff;
  --primary-bg: #2c2c2c;
  --link-color: #9ee4ff;
}
html body .wrapper {
  display: grid;
  grid-template-rows: auto 1fr auto;
  background-color: var(--primary-bg);
  width: 0;
  min-width: 100%;
  height: 100%;
  position: relative;
  margin: 0 auto;
  min-height: 100dvh;
}
html body .wrapper .table {
  display: block;
  overflow-x: auto;
  margin: 1.6rem 0;
  background: transparent;
  border-radius: 0.75rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  width: 100%;
  max-width: 100%;
}
html body .wrapper .table table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 0.75rem;
}
html body .wrapper .table table p {
  text-wrap: nowrap;
}
html body .wrapper .table table thead tr th {
  background: #e1e9ff;
  color: #000;
  padding: 0.5rem;
  text-align: left;
}
html body .wrapper .table table tbody tr:nth-child(even) {
  background: hsl(from var(--primary-bg) h s calc(l - 3));
}
html body .wrapper .table table tbody tr:hover {
  background: hsl(from var(--primary-bg) h s calc(l - 6));
}
html body .wrapper .table table tbody tr td {
  text-align: left;
  padding: 10px;
  font-size: 0.9rem;
  color: var(--primary-text);
  vertical-align: middle;
}
html body .wrapper .table table a {
  color: #007bff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  font-size: 0.9rem;
}
html body .wrapper .table table a:hover {
  text-decoration: underline;
}
html body .wrapper main.main {
  grid-row: 2;
  overflow: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
html body .wrapper main.main .child-banner {
  order: 0;
  width: 100%;
  height: 10rem;
  position: relative;
}
html body .wrapper main.main .child-banner img {
  height: 100%;
  object-fit: cover;
  object-position: center center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  filter: brightness(0.65);
}
html body .wrapper main.main .child-banner h1 {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2rem;
  text-align: center;
  z-index: 2;
  width: 80%;
}
@media (max-width: 899px) {
  html body .wrapper main.main .child-banner h1 {
    width: 90%;
    font-size: 1.2rem;
  }
}
@media (max-width: 599px) {
  html body .wrapper main.main .child-banner h1 {
    font-size: 1rem;
  }
}
html body .wrapper main.main .breadcrumbs {
  position: relative;
  width: 100%;
  padding: 2.25rem 0;
  order: 1;
}
html body .wrapper main.main .breadcrumbs .overlay {
  position: relative;
  z-index: 1;
}
html body .wrapper main.main .breadcrumbs .breadcrumbs-container {
  width: 100%;
}
html body .wrapper main.main .breadcrumbs .breadcrumbs-container .bread-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  padding: 0 3rem;
  gap: 0.6rem;
}
html body .wrapper main.main .breadcrumbs .breadcrumbs-container .bread-inner .bread-list {
  text-align: left;
  display: flex;
  justify-content: start;
  list-style: none;
  padding: 0;
  margin: 0;
}
html body .wrapper main.main .breadcrumbs .breadcrumbs-container .bread-inner .bread-list li {
  color: var(--primary-text);
  font-size: 1rem;
  font-style: normal;
  font-weight: 300;
  line-height: 160%;
  margin: 0 5px;
  text-transform: capitalize;
  display: inline-flex;
  align-items: center;
  justify-content: start;
  flex-wrap: wrap;
}
html body .wrapper main.main .breadcrumbs .breadcrumbs-container .bread-inner .bread-list li.active {
  font-weight: 500;
}
html body .wrapper main.main .breadcrumbs .breadcrumbs-container .bread-inner .bread-list li a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}
html body .wrapper main.main .breadcrumbs .breadcrumbs-container .bread-inner .bread-list li a:hover {
  color: var(--link-color);
}
@media (max-width: 899px) {
  html body .wrapper main.main .breadcrumbs .breadcrumbs-container .bread-inner .bread-list {
    gap: 0.5rem;
  }
  html body .wrapper main.main .breadcrumbs .breadcrumbs-container .bread-inner .bread-list li {
    font-size: clamp(0.75rem, 2vw, 1rem);
  }
}
@media (max-width: 599px) {
  html body .wrapper main.main .breadcrumbs {
    display: none;
  }
}
html body .wrapper main.main .container {
  order: 2;
  padding: 0 var(--side-padding);
  padding-bottom: 5rem;
}
html body .wrapper main.main .slide-video {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  object-fit: cover;
  position: relative;
}
html body .wrapper main.main .slide-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
html body .wrapper main.main .image {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
html body .wrapper main.main .image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 599px) {
  html body .wrapper main.main .container {
    padding: 1.5rem var(--side-padding);
  }
}

html.dark body .wrapper main.main .section:nth-child(odd) {
  background-color: hsl(from var(--primary-bg) h s calc(l + 3));
}
html.accessible body .wrapper main.main .card .content .text .date {
  font-size: 0.9rem;
}
html body .wrapper main.main .title {
  font-weight: 600;
  text-decoration: none;
  color: var(--primary-text);
  font-size: 2.5rem;
}
html body .wrapper main.main .section {
  padding: 3rem var(--side-padding);
  display: flex;
  flex-direction: column;
  gap: 80px;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin: 0 auto;
  background-color: var(--primary-bg);
}
html body .wrapper main.main .section:nth-child(odd) {
  background-color: hsl(from var(--primary-bg) h s calc(l - 3));
}
html body .wrapper main.main .read-more {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}
html body .wrapper main.main .read-more a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  color: var(--primary-text);
  border: 1px solid var(--primary-text);
  padding: 0.8rem 1.6rem;
  border-radius: 5px;
  background-color: transparent;
  transition: all 0.3s ease-in-out;
}
html body .wrapper main.main .read-more a:hover {
  background-color: var(--primary-color);
}
html body .wrapper main.main .read-more a:hover span,
html body .wrapper main.main .read-more a:hover i {
  color: white;
}
html body .wrapper main.main .read-more a span {
  font-size: 1.2rem;
  font-weight: bold;
}
html body .wrapper main.main .read-more a i {
  width: 1rem;
  height: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 899px) {
  html body .wrapper main.main .read-more {
    justify-content: center;
  }
  html body .wrapper main.main .read-more a {
    padding: 0.6rem 1.2rem;
  }
  html body .wrapper main.main .read-more a span {
    font-size: 1rem;
  }
}
@media (max-width: 899px) {
  html body .wrapper main.main .read-more a {
    padding: 0.5rem 1rem;
  }
  html body .wrapper main.main .read-more a span {
    font-size: 0.9rem;
  }
}
html body .wrapper main.main .carousel {
  display: flex;
  height: auto;
  width: 100%;
  aspect-ratio: var(--main-carousel-aspect-ratio);
}
html body .wrapper main.main .carousel #main-carousel {
  --primary-text: #fff;
  position: relative;
}
html body .wrapper main.main .carousel #main-carousel .owl-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  z-index: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 80px;
  pointer-events: none;
  margin: 0;
}
html body .wrapper main.main .carousel #main-carousel .owl-nav .owl-prev,
html body .wrapper main.main .carousel #main-carousel .owl-nav .owl-next {
  position: relative;
  z-index: 999;
  pointer-events: auto;
  width: 3rem;
  height: 3rem;
  border: 2px solid var(--primary-color);
  border-radius: 4px;
  background-color: transparent;
}
html body .wrapper main.main .carousel #main-carousel .owl-nav .owl-prev *,
html body .wrapper main.main .carousel #main-carousel .owl-nav .owl-next * {
  transition: all 0.2s ease-in-out;
}
html body .wrapper main.main .carousel #main-carousel .owl-nav .owl-prev:hover,
html body .wrapper main.main .carousel #main-carousel .owl-nav .owl-next:hover {
  background-color: var(--primary-color) !important;
}
html body .wrapper main.main .carousel #main-carousel .owl-nav .owl-prev:hover i,
html body .wrapper main.main .carousel #main-carousel .owl-nav .owl-next:hover i {
  color: #fff;
}
html body .wrapper main.main .carousel #main-carousel .owl-nav .owl-prev i,
html body .wrapper main.main .carousel #main-carousel .owl-nav .owl-next i {
  width: 100%;
  height: 100%;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--primary-color);
}
@media (min-width: 900px) and (max-width: 1199px) {
  html body .wrapper main.main .carousel #main-carousel .owl-nav {
    padding: 0 30px;
  }
}
@media (max-width: 899px) {
  html body .wrapper main.main .carousel #main-carousel .owl-nav {
    padding: 0 20px;
  }
  html body .wrapper main.main .carousel #main-carousel .owl-nav .owl-prev,
  html body .wrapper main.main .carousel #main-carousel .owl-nav .owl-next {
    width: 2rem;
    height: 2rem;
  }
}
@media (max-width: 599px) {
  html body .wrapper main.main .carousel #main-carousel .owl-nav {
    padding: 0 10px;
  }
}
html body .wrapper main.main .carousel #main-carousel .owl-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}
html body .wrapper main.main .carousel #main-carousel .owl-dots .owl-dot {
  background-color: transparent;
}
html body .wrapper main.main .carousel #main-carousel .owl-dots .owl-dot:hover,
html body .wrapper main.main .carousel #main-carousel .owl-dots .owl-dot:hover span {
  filter: brightness(1.2);
}
html body .wrapper main.main .carousel #main-carousel .owl-dots .owl-dot.active,
html body .wrapper main.main .carousel #main-carousel .owl-dots .owl-dot.active span {
  background-color: transparent;
}
html body .wrapper main.main .carousel #main-carousel .owl-dots .owl-dot button,
html body .wrapper main.main .carousel #main-carousel .owl-dots .owl-dot span {
  width: 1rem;
  height: 1rem;
  border-radius: 4px;
  border: 1px solid var(--primary-color);
  background-color: var(--primary-color);
  transition: all 0.2s ease-in-out;
  opacity: 1;
}
@media (min-width: 900px) and (max-width: 1199px) {
  html body .wrapper main.main .carousel #main-carousel .owl-dots {
    bottom: 20px;
  }
}
@media (max-width: 899px) {
  html body .wrapper main.main .carousel #main-carousel .owl-dots {
    bottom: 10px;
  }
}
html body .wrapper main.main .carousel #main-carousel .item {
  height: 100%;
  width: 100%;
  aspect-ratio: var(--main-carousel-aspect-ratio);
}
html body .wrapper main.main .carousel #main-carousel .item .content {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0;
  overflow: hidden;
}
html body .wrapper main.main .carousel #main-carousel .item .content .image {
  height: 100%;
  width: 100%;
  background: no-repeat top center/cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
html body .wrapper main.main .carousel #main-carousel .item .content .text {
  position: absolute;
  z-index: 1014;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
html body .wrapper main.main .carousel #main-carousel .item .content .text h1 {
  font-size: 2rem;
  font-weight: 500;
  line-height: 2.5rem;
  max-width: 45%;
  text-align: left;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
html body .wrapper main.main .carousel #main-carousel .item .content .text .btn {
  display: inline-block;
  border: 1px solid inherit;
  border-radius: 10px;
  padding: 0.5rem 1.5rem;
  font-size: 0.8rem;
  word-wrap: break-word;
  line-clamp: 2;
  overflow: hidden;
  text-wrap: wrap;
  max-width: 16rem;
  line-height: 140%;
}
html body .wrapper main.main .carousel #main-carousel .item .content .text .btn.texted {
  background-color: transparent !important;
  text-decoration-thickness: 2px;
  text-underline-offset: 15px;
  padding: 0;
  max-width: none;
  text-align: center;
}
@media (max-width: 1400px) {
  html body .wrapper main.main .carousel #main-carousel .item .content .text .btn.texted {
    font-size: 25px !important;
  }
}
@media (max-width: 767px) {
  html body .wrapper main.main .carousel #main-carousel .item .content .text .btn.texted {
    font-size: 20px !important;
  }
}
html body .wrapper main.main .carousel #main-carousel .item .content .text .btn.texted p {
  text-shadow: -1px -1px 0 black, 1px -1px 0 black, -1px 1px 0 black, 1px 1px 0 black;
}
@media (max-width: 1200px) {
  html body .wrapper main.main .carousel {
    --main-carousel-aspect-ratio: 3.16/1;
  }
  html body .wrapper main.main .carousel #main-carousel .item .content .text h1 {
    font-size: 1.5rem;
  }
}
@media (min-width: 900px) and (max-width: 1199px) {
  html body .wrapper main.main .carousel .content .text h1 {
    font-size: 1.6rem;
  }
}
@media (max-width: 599px) {
  html body .wrapper main.main .carousel {
    --main-carousel-aspect-ratio: 2.11/1;
  }
  html body .wrapper main.main .carousel #main-carousel .item .content .text h1 {
    font-size: 1.2rem;
    line-height: 1.6rem;
  }
  html body .wrapper main.main .carousel #main-carousel .item .content .text .btn {
    padding: 0.3rem 1.2rem;
    font-size: 0.7rem;
  }
}
html body .wrapper main.main .inner-header {
  width: 100%;
  height: auto;
  padding: 3rem 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  align-items: flex-start;
}
html body .wrapper main.main .inner-header .button {
  flex: 1 1 120px;
  max-width: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  text-decoration: none;
  color: var(--primary-text);
  background: var(--primary-bg);
  transition: color 0.2s ease-in-out;
  font-size: 0.9rem;
  text-align: center;
  box-sizing: border-box;
  transition: transform 0.3s ease-in-out;
}
html body .wrapper main.main .inner-header .button:hover {
  transform: scale(1.1);
}
html body .wrapper main.main .news {
  gap: 2rem;
}
html body .wrapper main.main .news .grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}
@media (min-width: 600px) and (max-width: 899px) {
  html body .wrapper main.main .news .grid {
    grid-template-columns: auto auto;
    grid-template-rows: 2fr 1fr 1fr;
  }
  html body .wrapper main.main .news .grid .card:first-child {
    grid-row: 1 !important;
    grid-column: span 2 !important;
  }
}
@media (max-width: 599px) {
  html body .wrapper main.main .news .grid {
    grid-template-columns: 1fr;
  }
}
html body .wrapper main.main .news .grid .card:first-child {
  grid-column: 1;
  grid-row: span 2;
  justify-content: flex-start;
}
html body .wrapper main.main .news .grid .card:first-child .content {
  background-color: transparent;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  height: 100%;
}
html body .wrapper main.main .news .grid .card:first-child .content .image {
  height: auto;
  flex: 1;
}
html body .wrapper main.main .news .grid .card:first-child .content .image img {
  border-radius: 0;
}
html body .wrapper main.main .news .grid .card:first-child .content .text {
  text-overflow: unset;
  overflow: visible;
}
html body .wrapper main.main .news .grid .card:first-child .content .text .title {
  font-size: 1.125rem;
}
html body .wrapper main.main .news .grid .card:nth-child(n+2):nth-child(-n+5) {
  grid-column: span 1;
  grid-row: auto;
}
html body .wrapper main.main .announcements {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
html body .wrapper main.main .announcements .row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 3rem;
}
@media (max-width: 899px) {
  html body .wrapper main.main .announcements .row {
    gap: 0.5rem;
    flex-direction: column;
  }
}
html body .wrapper main.main .announcements .row .card {
  flex: 1;
  width: 100%;
  min-width: 200px;
}
html body .wrapper main.main .announcements .row .card .content {
  gap: 1rem;
}
html body .wrapper main.main .announcements .row .card .content .text .title {
  font-size: 1.125rem;
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
html body .wrapper main.main .announcements .row .card .content .text .description {
  font-size: 1rem;
  font-weight: 400;
}
html body .wrapper main.main .announcements .read-more {
  margin-top: -40px;
}
html body .wrapper main.main .mission {
  --primary-text: #1c1c1c;
  position: relative;
  width: 100%;
  height: 600px;
}
html body .wrapper main.main .mission .content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 8rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 2rem;
  max-width: 50%;
  color: var(--primary-text);
}
html body .wrapper main.main .mission .content .title {
  font-size: 1.5rem;
  line-height: 2.5rem;
}
html body .wrapper main.main .mission .content p {
  font-size: 1.5rem;
  line-height: 2rem;
}
html body .wrapper main.main .mission .content .read-more {
  justify-content: start;
}
@media (max-width: 899px) {
  html body .wrapper main.main .mission {
    height: 30rem;
  }
  html body .wrapper main.main .mission .content {
    left: 3rem;
    max-width: 60%;
  }
  html body .wrapper main.main .mission .content .title,
  html body .wrapper main.main .mission .content p {
    font-size: 1.2rem;
  }
}
@media (max-width: 599px) {
  html body .wrapper main.main .mission .content {
    left: 1.5rem;
    max-width: 72%;
  }
  html body .wrapper main.main .mission .content .title,
  html body .wrapper main.main .mission .content p {
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    line-height: 1.6rem;
  }
}
html body .wrapper main.main .corruption {
  --primary-text: #fff;
  width: 100%;
  height: auto;
  background-color: #e53b35;
  color: var(--primary-text);
  margin: 0;
}
@media (max-width: 899px) {
  html body .wrapper main.main .corruption .content {
    padding: 0 2rem;
  }
}
html body .wrapper main.main .corruption .content {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  gap: 3rem;
  padding: 5rem;
}
@media (max-width: 1200px) {
  html body .wrapper main.main .corruption .content {
    flex-direction: column;
    gap: 1rem;
    padding: clamp(1rem, 5vw, 2rem);
  }
  html body .wrapper main.main .corruption .content h1 {
    font-size: clamp(1.5rem, 4vw, 2rem);
  }
  html body .wrapper main.main .corruption .content .phone .icon {
    width: 2rem;
    height: 2rem;
  }
  html body .wrapper main.main .corruption .content .phone .numbers .number {
    font-size: clamp(1rem, 3vw, 1.2rem);
  }
}
html body .wrapper main.main .corruption .content h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  flex: 1;
  text-wrap: nowrap;
}
html body .wrapper main.main .corruption .content .phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex: 1;
}
html body .wrapper main.main .corruption .content .phone .icon {
  width: 3em;
  height: 3rem;
}
html body .wrapper main.main .corruption .content .phone .numbers {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  flex: 1;
  gap: 0.5rem;
}
html body .wrapper main.main .corruption .content .phone .numbers .number {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-style: normal;
  font-weight: 500;
  line-height: 2.5rem;
}
html body .wrapper main.main .corruption .content .read-more {
  flex: 1;
  justify-content: center;
}
html body .wrapper main.main .partners {
  background-color: hsl(from var(--primary-bg) h s calc(l + 3));
  width: 100%;
}
html body .wrapper main.main .partners .content {
  width: 100%;
}
html body .wrapper main.main .partners .content .owl-carousel .partner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  height: 5rem;
  overflow: hidden;
}
html body .wrapper main.main .partners .content .owl-carousel .partner img {
  max-height: 100%;
  height: auto;
  width: 100%;
  object-fit: contain;
  user-select: none;
  -moz-user-select: none;
  font-size: 0.6rem;
}
html body .wrapper main.main .map {
  width: 100%;
  padding-top: 100px;
}
html body .wrapper main.main .map h1 {
  margin-left: var(--side-padding);
  margin-bottom: 80px;
}
html body .wrapper main.main .map .map-container {
  width: 100%;
  height: 25rem;
  max-width: 100%;
  overflow: hidden;
  position: relative;
}
html body .wrapper main.main .map .map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/*# sourceMappingURL=index.css.5d1b6f8e60b8.map */
