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

html {
  font-size: 16px; }

body {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #333;
  background-color: #f5f5f5;
  transition: all 0.3s ease 0.3s ease; }
  body.text-small {
    font-size: 0.875rem !important; }
    body.text-small h1, body.text-small h2, body.text-small h3, body.text-small h4, body.text-small h5, body.text-small h6 {
      font-size: 0.95em !important; }
  body.text-large {
    font-size: 1.125rem !important; }
    body.text-large h1, body.text-large h2, body.text-large h3, body.text-large h4, body.text-large h5, body.text-large h6 {
      font-size: 1.15em !important; }
  body.black-white {
    filter: grayscale(100%) !important; }
    body.black-white img, body.black-white video {
      filter: grayscale(100%) !important; }
  body.inverted {
    filter: invert(100%) hue-rotate(180deg) !important;
    background-color: #000 !important;
    color: #fff !important; }
    body.inverted img, body.inverted video {
      filter: invert(100%) hue-rotate(180deg) !important; }
    body.inverted .header, body.inverted .main-nav, body.inverted .simple-table-section, body.inverted .info-note {
      background-color: #1a1a1a !important;
      color: #fff !important; }
    body.inverted .info-table th {
      background-color: #333333 !important;
      color: #fff !important; }
    body.inverted .info-table td {
      color: #fff !important; }
    body.inverted .nav-link {
      color: #fff !important; }
      body.inverted .nav-link:hover {
        color: #ffcc00 !important; }
    body.inverted .mega-menu {
      background-color: #1a1a1a !important; }
      body.inverted .mega-menu a {
        color: #fff !important; }
        body.inverted .mega-menu a:hover {
          color: #ffcc00 !important; }
      body.inverted .mega-menu h4 {
        color: #ffcc00 !important; }
  body.spacing-wide {
    letter-spacing: 0.05em !important;
    word-spacing: 0.1em !important;
    line-height: 1.8 !important; }
  body.images-hidden img {
    opacity: 0.3 !important; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px; }
  @media (max-width: 767px) {
    .container {
      padding: 0 10px; } }

.accessibility-panel {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #0056a6;
  color: #fff;
  z-index: 9999;
  padding: 15px 0;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.4s ease opacity 0.3s ease ease; }
  .accessibility-panel.active {
    transform: translateY(0);
    opacity: 1; }
  .accessibility-panel .accessibility-content {
    position: relative; }

.accessibility-close {
  position: absolute;
  top: -10px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 5px;
  transition: all 0.3s ease; }
  .accessibility-close:hover {
    color: #ffcc00;
    transform: rotate(90deg); }

.accessibility-controls {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 15px; }
  @media (max-width: 767px) {
    .accessibility-controls {
      grid-template-columns: 1fr;
      gap: 15px; } }
  .accessibility-controls .control-group h4 {
    margin-bottom: 10px;
    font-size: 0.9rem;
    opacity: 0.9; }

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px; }
  .btn-group button {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem; }
    .btn-group button:hover {
      background-color: rgba(255, 255, 255, 0.2); }
    .btn-group button.active {
      background-color: #ffcc00;
      color: #0056a6;
      border-color: #ffcc00; }
    .btn-group button.text-size-btn {
      font-size: 1.2rem;
      padding: 8px 15px;
      min-width: 50px; }
      .btn-group button.text-size-btn[data-size="small"] {
        font-size: 1rem; }
      .btn-group button.text-size-btn[data-size="large"] {
        font-size: 1.4rem; }
    .btn-group button i {
      margin-right: 5px; }

.header {
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); }
  .header-top {
    background-color: #0056a6;
    padding: 10px 0;
    position: relative; }
    .header-top-content {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      flex-wrap: wrap;
      position: relative;
      min-height: 100px; }

.logo-block {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%; }
  .logo-block .logo {
    display: flex;
    align-items: flex-start;
    text-decoration: none;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%; }
  .logo-block .logo-img {
    height: 80px;
    width: auto;
    transition: all 0.3s ease; }
  .logo-block .logD {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 15px;
    flex-grow: 1; }
  .logo-block .moblogo, .logo-block .logtlt {
    height: 80px;
    width: auto;
    transition: all 0.3s ease; }

@media (min-width: 1600px) {
  .logo-block .logo {
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap; }
  .logo-block .logD {
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
    gap: 20px;
    width: auto; }
  .logo-block .mlogo {
    display: block !important; }
  .logo-block .logo-build {
    display: block !important;
    height: 80px;
    width: auto; }
  .logo-block .logo-80 {
    display: block !important; }
  .logo-block .logo-favt, .logo-block .logo-min {
    display: block !important; }
  .logo-block .logD-top-row {
    display: contents; } }
@media (max-width: 1599px) and (min-width: 768px) {
  .logo-block .logo {
    flex-direction: row;
    align-items: center; }
  .logo-block .logo-img.logo-favt,
  .logo-block .logo-img.logo-min {
    display: block;
    height: 70px;
    align-self: center;
    flex-shrink: 0; }
  .logo-block .logD {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    width: auto;
    flex-grow: 1;
    margin-left: 20px;
    position: relative;
    min-height: 110px;
    justify-content: center; }
  .logo-block .logD-top-row {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%; }
  .logo-block .mlogo {
    display: block;
    height: 70px;
    flex-shrink: 0;
    max-width: 300px; }
  .logo-block .logo-build {
    display: block;
    width: 100%;
    max-width: 500px;
    height: auto; }
  .logo-block .logo-80 {
    display: block;
    height: 70px;
    flex-shrink: 0; } }
@media (max-width: 799px) {
  .logo-block .logo {
    flex-direction: row;
    align-items: center;
    gap: 10px; }
  .logo-block .logo-img.logo-favt,
  .logo-block .logo-img.logo-min {
    display: block;
    height: 60px;
    align-self: center;
    flex-shrink: 0; }
  .logo-block .logD {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    width: auto;
    flex-grow: 1;
    margin-left: 15px;
    min-height: 100px;
    justify-content: center; }
  .logo-block .logD-top-row {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%; }
  .logo-block .mlogo {
    display: block;
    height: 60px;
    flex-shrink: 0;
    max-width: 250px; }
  .logo-block .logo-build {
    display: block;
    width: 100%;
    max-width: 400px;
    height: auto; }
  .logo-block .logo-80 {
    display: block;
    height: 60px;
    flex-shrink: 0; } }
@media (max-width: 767px) and (min-width: 425px) {
  .logo-block .logo {
    flex-direction: row;
    align-items: flex-start;
    gap: 10px; }
  .logo-block .logo-img.logo-favt,
  .logo-block .logo-img.logo-min {
    display: none !important; }
  .logo-block .logD {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
    margin-left: 0;
    min-height: auto; }
  .logo-block .logD-top-row {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%; }
  .logo-block .mlogo {
    display: block;
    height: 60px;
    flex-shrink: 0;
    max-width: 250px; }
  .logo-block .logo-build {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto; }
  .logo-block .logo-80 {
    display: block;
    height: 60px;
    flex-shrink: 0;
    margin-left: 0 !important; } }
@media (max-width: 424px) and (min-width: 425px) {
  .logo-block .logo {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px; }
  .logo-block .logo-img.logo-favt,
  .logo-block .logo-img.logo-min {
    display: none !important; }
  .logo-block .logtlt.logo-80 {
    display: none !important; }
  .logo-block .logD {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    width: 100%;
    margin-left: 0;
    min-height: auto; }
  .logo-block .logD-top-row {
    display: flex;
    align-items: center;
    width: 100%; }
  .logo-block .mlogo {
    display: block;
    height: 50px;
    width: 100%;
    max-width: 300px; }
  .logo-block .logo-build {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto; } }
@media (max-width: 424px) {
  .logo-block .mlogo {
    height: 45px;
    max-width: 250px; }
  .logo-block .logo-build {
    max-width: 100%; } }
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 10px;
  transition: all 0.3s ease;
  z-index: 1001;
  position: absolute; }
  @media (max-width: 767px) {
    .mobile-menu-btn {
      display: block;
      top: 0;
      right: 15px; } }
  .mobile-menu-btn:hover {
    color: #ffcc00;
    transform: scale(1.1); }
  @media (max-width: 424px) {
    .mobile-menu-btn {
      top: 0;
      right: 10px;
      padding: 8px;
      font-size: 1.3rem; } }

@media (max-width: 767px) {
  .header-top-content {
    min-height: 110px;
    align-items: flex-start;
    padding-top: 10px; }

  .logo-block .logo {
    padding-right: 50px; }
  .logo-block .logD-top-row {
    align-items: flex-start; } }
.main-nav {
  background-color: #fff;
  border-top: 1px solid #ddd;
  position: relative;
  z-index: 1000; }
  .main-nav .container {
    position: static; }

.top-nav-block {
  width: 100%; }

.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0; }
  @media (max-width: 767px) {
    .nav-list {
      flex-direction: column;
      display: none; }
      .nav-list.active {
        display: flex; } }
  .nav-list > li {
    position: relative; }
    .nav-list > li:not(:last-child) {
      border-right: 1px solid rgba(221, 221, 221, 0.5); }
      @media (max-width: 767px) {
        .nav-list > li:not(:last-child) {
          border-right: none;
          border-bottom: 1px solid rgba(221, 221, 221, 0.5); } }
    .nav-list > li > .nav-link {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 15px 20px;
      color: #333;
      text-decoration: none;
      font-weight: 500;
      transition: all 0.3s ease;
      white-space: nowrap;
      position: relative;
      overflow: hidden; }
      @media (max-width: 992px) {
        .nav-list > li > .nav-link {
          padding: 12px 15px; } }
      .nav-list > li > .nav-link:before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 3px;
        background-color: #0056a6;
        transition: all 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55) 0.3s ease;
        transform: translateX(-50%); }
      .nav-list > li > .nav-link:hover {
        background-color: rgba(0, 86, 166, 0.05);
        color: #0056a6; }
        .nav-list > li > .nav-link:hover:before {
          width: 80%; }
        .nav-list > li > .nav-link:hover .dropdown-icon {
          transform: rotate(180deg);
          color: #0056a6; }
      .nav-list > li > .nav-link .dropdown-icon {
        margin-left: 8px;
        font-size: 0.8rem;
        transition: transform 0.3s ease 0.3s ease; }
    .nav-list > li.open > .nav-link .dropdown-icon {
      transform: rotate(180deg); }

.mega-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 800px;
  max-width: calc(100vw - 30px);
  background-color: #fff;
  z-index: 1000;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  border-radius: 0 0 8px 8px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55) 0.3s ease; }
  @media (max-width: 992px) {
    .mega-menu {
      width: 600px; } }
  @media (max-width: 767px) {
    .mega-menu {
      position: static;
      width: 100%;
      box-shadow: none;
      border-radius: 0;
      opacity: 1;
      transform: none;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease 0.3s ease; } }
  .mega-menu.open {
    display: block;
    opacity: 1;
    transform: translateY(0); }
    @media (max-width: 767px) {
      .mega-menu.open {
        max-height: 2000px;
        transform: none; } }

.mega-menu-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 30px; }
  @media (max-width: 992px) {
    .mega-menu-content {
      gap: 20px;
      padding: 20px; } }
  @media (max-width: 767px) {
    .mega-menu-content {
      grid-template-columns: 1fr;
      gap: 15px;
      padding: 15px; } }

.mega-menu-section h4 {
  color: #0056a6;
  margin-bottom: 15px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(0, 86, 166, 0.2);
  font-size: 1rem;
  display: flex;
  align-items: center; }
  .mega-menu-section h4 i {
    margin-right: 10px;
    color: #ffcc00; }
.mega-menu-section ul {
  list-style: none; }
  .mega-menu-section ul li {
    margin-bottom: 10px; }
    .mega-menu-section ul li:last-child {
      margin-bottom: 0; }
    .mega-menu-section ul li a {
      display: flex;
      align-items: center;
      padding: 8px 0;
      color: #666;
      text-decoration: none;
      transition: all 0.3s ease;
      border-radius: 4px; }
      .mega-menu-section ul li a:hover {
        color: #0056a6;
        background-color: rgba(0, 86, 166, 0.05);
        padding-left: 10px; }
        .mega-menu-section ul li a:hover i {
          transform: scale(1.2); }
      .mega-menu-section ul li a i {
        margin-right: 10px;
        color: #0056a6;
        width: 20px;
        text-align: center;
        transition: all 0.3s ease;
        font-size: 0.9rem; }

.main-content {
  padding: 40px 0;
  min-height: 60vh; }
  @media (max-width: 767px) {
    .main-content {
      padding: 30px 0; } }
  .main-content .container {
    display: flex; }
    @media (max-width: 767px) {
      .main-content .container {
        flex-direction: column; } }

.content-wrapper {
  flex: 1; }

.section-title {
  font-size: 1.8rem;
  color: #0056a6;
  margin-bottom: 25px;
  padding-bottom: 10px;
  border-bottom: 2px solid #ffcc00; }
  @media (max-width: 767px) {
    .section-title {
      font-size: 1.5rem;
      margin-bottom: 20px; } }

.simple-table-section {
  background-color: #fff;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); }
  @media (max-width: 767px) {
    .simple-table-section {
      padding: 20px; } }
  @media (max-width: 424px) {
    .simple-table-section {
      padding: 15px; } }

.table-responsive {
  overflow-x: auto;
  margin-bottom: 25px;
  border-radius: 4px;
  border: 1px solid #f5f5f5; }
  @media (max-width: 767px) {
    .table-responsive {
      margin-bottom: 20px; } }

.info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  min-width: 600px; }
  @media (max-width: 767px) {
    .info-table {
      font-size: 0.85rem; } }
  .info-table th, .info-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #f5f5f5; }
    @media (max-width: 767px) {
      .info-table th, .info-table td {
        padding: 8px 10px; } }
  .info-table th {
    background-color: #0056a6;
    color: #fff;
    font-weight: 500;
    white-space: nowrap; }
  .info-table tbody tr {
    transition: all 0.3s ease; }
    .info-table tbody tr:hover {
      background-color: rgba(0, 86, 166, 0.05);
      transform: translateY(-1px); }
    .info-table tbody tr:nth-child(even) {
      background-color: rgba(245, 245, 245, 0.5); }
      .info-table tbody tr:nth-child(even):hover {
        background-color: rgba(0, 86, 166, 0.05); }
  .info-table tfoot tr {
    background-color: rgba(0, 86, 166, 0.1); }
  .info-table tfoot .total-label {
    font-weight: 700;
    text-align: right;
    color: #0056a6;
    padding-right: 20px; }
  .info-table tfoot .total-value {
    font-weight: 700;
    color: #e30613;
    font-size: 1.1rem; }

.info-note {
  background-color: rgba(255, 204, 0, 0.1);
  border-left: 4px solid #ffcc00;
  padding: 15px 20px;
  border-radius: 0 4px 4px 0; }
  @media (max-width: 767px) {
    .info-note {
      padding: 12px 15px; } }
  .info-note h3 {
    color: #0056a6;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem; }
    @media (max-width: 767px) {
      .info-note h3 {
        font-size: 1.1rem; } }
  .info-note p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0; }
    .info-note p a {
      color: #e30613;
      text-decoration: none;
      transition: all 0.3s ease;
      font-weight: 500; }
      .info-note p a:hover {
        text-decoration: underline;
        color: #b1050f; }

.footer {
  background-color: #0056a6;
  color: #fff;
  padding: 40px 0 20px; }
  @media (max-width: 767px) {
    .footer {
      padding: 30px 0 15px; } }
  .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px; }
    @media (max-width: 767px) {
      .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 25px; } }
  .footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #ffcc00; }
    @media (max-width: 767px) {
      .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 12px; } }
  .footer-section p {
    margin-bottom: 10px;
    opacity: 0.9;
    font-size: 0.9rem;
    line-height: 1.5; }
    .footer-section p:last-child {
      margin-bottom: 0; }
    .footer-section p i {
      margin-right: 8px;
      color: #ffcc00;
      width: 16px;
      text-align: center; }
  .footer-section ul {
    list-style: none; }
    .footer-section ul li {
      margin-bottom: 8px; }
      .footer-section ul li:last-child {
        margin-bottom: 0; }
      .footer-section ul li a {
        display: flex;
        align-items: center;
        color: #fff;
        text-decoration: none;
        opacity: 0.9;
        transition: all 0.3s ease;
        font-size: 0.9rem;
        padding: 3px 0; }
        .footer-section ul li a:hover {
          opacity: 1;
          padding-left: 5px;
          color: #ffcc00; }
        .footer-section ul li a i {
          margin-right: 8px;
          width: 20px;
          text-align: center;
          font-size: 0.9rem; }

.social-links {
  display: flex;
  gap: 15px;
  margin-bottom: 20px; }
  @media (max-width: 767px) {
    .social-links {
      margin-bottom: 15px; } }
  .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease; }
    .social-links a:hover {
      background-color: #ffcc00;
      color: #0056a6;
      transform: translateY(-3px); }
    @media (max-width: 767px) {
      .social-links a {
        width: 36px;
        height: 36px;
        font-size: 1.1rem; } }

.copyright {
  font-size: 0.8rem;
  opacity: 0.7;
  margin-top: 20px;
  text-align: center;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
  grid-column: 1 / -1; }
  @media (max-width: 767px) {
    .copyright {
      margin-top: 15px;
      padding-top: 15px; } }

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px); }
  to {
    opacity: 1;
    transform: translateY(0); } }
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px); }
  to {
    opacity: 1;
    transform: translateY(0); } }
.fade-in {
  animation: fadeIn 0.5s ease forwards; }

@media (min-width: 768px) {
  .parent:hover > .mega-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
    animation: slideDown 0.3s ease forwards; } }
@media print {
  .accessibility-panel,
  .mobile-menu-btn,
  .accessibility-link,
  .social-links {
    display: none !important; }

  .header-top {
    background-color: #fff !important;
    color: #000 !important; }

  .logo-img {
    filter: grayscale(100%) !important; }

  .main-nav {
    display: none; }

  .simple-table-section {
    box-shadow: none !important;
    border: 1px solid #ddd; }

  .footer {
    background-color: #fff !important;
    color: #000 !important;
    border-top: 2px solid #ddd; }
    .footer a {
      color: #000 !important; } }
@media (max-width: 992px) and (min-width: 768px) {
  .logo-block .logo-img.logo-favt,
  .logo-block .logo-img.logo-min {
    height: 65px; }
  .logo-block .mlogo {
    height: 65px;
    max-width: 280px; }
  .logo-block .logo-80 {
    height: 65px; }
  .logo-block .logo-build {
    max-width: 450px; } }
@media (max-width: 1199px) and (min-width: 993px) {
  .logo-block .logo {
    gap: 15px; }
  .logo-block .logD {
    gap: 12px; }
  .logo-block .logo-img,
  .logo-block .moblogo,
  .logo-block .logtlt {
    height: 75px; }
  .logo-block .logo-build {
    max-width: 550px; } }
@media (max-width: 374px) {
  .logo-block .mlogo {
    height: 40px;
    max-width: 200px; }
  .logo-block .logo-build {
    max-width: 100%; }

  .simple-table-section {
    padding: 10px !important; }

  .info-table {
    min-width: 350px; }
    .info-table th, .info-table td {
      padding: 5px 6px;
      font-size: 0.75rem; }

  .section-title {
    font-size: 1.2rem !important; } }
@media (min-width: 1600px) {
  .logo-block .logo-build {
    height: 80px !important;
    width: auto !important; } }

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