header {
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  position: fixed;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.0509803922);
  background: #fff;
}
header .btn-menu {
  display: none;
}
header .header-top {
  padding-top: 1.8rem;
  padding-bottom: 1.8rem;
  border-bottom: 1px solid #e0e0e0;
}
header .header-top .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .header-top .header-data {
  display: flex;
  align-items: center;
}
header .header-top .header-data .btn-1 {
  margin: 0 2.8rem;
}
header .header-top .site-control {
  display: flex;
  align-items: flex-end;
}
header .header-top .site-control button {
  margin: 0;
  padding: 0;
  border: none;
  margin-left: 0.6rem;
  background: none;
}
header .header-top .site-control button img {
  display: block;
}
header .header-top .site-control button:first-child {
  margin-left: 0;
}
header .header-top .site-control .wcag-font-size-1 img {
  height: 1.1rem;
}
header .header-top .site-control .wcag-font-size-2 img {
  height: 1.3rem;
}
header .header-top .site-control .wcag-font-size-3 img {
  height: 1.5rem;
}
header .header-top .site-control .wcag-contrast-mode {
  margin: 0 0 -0.2rem 1.7rem;
}
header .header-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .header-bottom .main-menu > ul {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}
header .header-bottom .main-menu > ul li {
  margin-right: 2.8rem;
}
header .header-bottom .main-menu > ul li a {
  display: flex;
  padding-top: 0.1rem;
  height: 6.4rem;
  font-size: 1.5rem;
  line-height: 1.3;
  align-items: center;
  border-bottom: 2px solid transparent;
  color: #000000;
  font-weight: 600;
}
header .header-bottom .main-menu > ul li.active a {
  border-color: #00296f;
  color: #00296f;
}
header .header-bottom .main-menu > ul li a:hover {
  border-color: #00296f;
}
header .header-bottom .main-menu > ul li:hover > a {
  color: #00296f;
}
header .header-bottom .main-menu ul ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
header .header-bottom .search-box {
  position: relative;
}
header .header-bottom .search-box .search-content {
  position: absolute;
  top: 100%;
  right: 0;
  width: 300px;
  border: 1px solid #e0e0e0;
}
header .header-bottom .search-box .search-content input {
  display: block;
  border: none;
  width: 100%;
  font-size: 1.4rem;
  padding: 0.9rem 1.5rem 0.5rem 1.5rem;
}
header .header-bottom .search-box .search-content button {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: #fff;
  width: 50px;
}
header .header-bottom .btn-search {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 6.4rem;
  background: none;
  border: none;
  border-left: 1px solid #e0e0e0;
  border-right: 1px solid #e0e0e0;
  width: 6.9rem;
}
header .header-bottom .btn-search svg {
  display: none;
  color: #000;
  height: 2rem;
}
header .header-bottom .btn-search {
  /*&:hover {
      background: $blue-color;
      img {
          filter: brightness(0) invert(1);
      }
  }*/
}
header .header-bottom .btn-search.active svg {
  display: block;
}
header .header-bottom .btn-search.active img {
  display: none;
}
header .wcag-font.active img {
  filter: brightness(0);
}
header .search-content {
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
header .search-content.active {
  opacity: 1;
  visibility: visible;
}

.btn-menu {
  border: none;
  background: none;
}

.btn-menu span {
  display: block;
  width: 24px;
  height: 2px;
  background: #000;
  margin: 5px 0;
  transition: all 0.3s ease;
}

header .header-top .logo img {
  max-height: 4.2rem;
}

/* animacja do X */
.btn-menu.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.btn-menu.active span:nth-child(2) {
  opacity: 0;
}

.btn-menu.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 1199px) {
  header .header-bottom .main-menu > ul li {
    margin-right: 2.2rem;
  }
}
header .header-bottom .main-menu ul ul {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

header .header-bottom .main-menu ul li:hover ul {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

header .main-menu li:focus-within ul,
header .main-menu li:hover ul {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

@media (min-width: 992px) {
  header .header-bottom .main-menu ul li {
    position: relative;
  }
  header .header-bottom .main-menu ul ul {
    padding: 3rem 2rem;
    position: absolute;
    top: 100%;
    background: #fff;
    left: 0;
    z-index: 3;
    margin: 0;
    box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.2509803922);
    width: 26.5rem;
    list-style: none;
    margin-top: -0.7rem;
  }
  header .header-bottom .main-menu ul ul li {
    margin: 0;
    margin-bottom: 1.6rem;
  }
  header .header-bottom .main-menu ul ul li:last-child {
    margin-bottom: 0;
  }
  header .header-bottom .main-menu ul ul li a {
    padding: 0;
    height: auto;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 1%;
    line-height: 110%;
    border: none;
  }
  header .header-bottom .main-menu ul ul li a:hover {
    color: #00296f;
  }
}
@media (max-width: 992px) {
  header .header-bottom .main-menu ul ul {
    display: none;
    opacity: 1;
    visibility: inherit;
  }
  header .header-bottom .main-menu ul li:hover ul {
    display: block;
  }
  header .header-bottom .main-menu ul ul li:last-child {
    border-bottom: none;
  }
  header .header-bottom .main-menu ul ul li a {
    background: #e0e0e0;
  }
  header .header-bottom .main-menu ul ul {
    border-top: 1px solid #e0e0e0;
  }
  header .btn-menu {
    display: block;
  }
  .main-menu {
    border-top: 1px solid #e0e0e0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  .main-menu.active {
    opacity: 1;
    visibility: visible;
  }
  .site-control {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
  }
  header .header-top .site-control .wcag-contrast-mode {
    margin: 0;
  }
  header .header-top .site-control {
    align-items: center;
  }
  header .header-top .site-control button {
    height: 35px;
    width: 35px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid #e0e0e0;
  }
  header .header-top .site-control .wcag-contrast-mode {
    border-right: 1px solid #e0e0e0;
  }
  header .header-top .site-control {
    border-top: 1px solid #e0e0e0;
    justify-content: center;
  }
  header .header-top {
    padding-top: 0;
    padding-bottom: 0;
    height: 60px;
    display: flex;
    padding-bottom: 1px;
    align-items: center;
  }
  header .header-bottom .main-menu {
    position: fixed;
    top: 100px;
    background: #fff;
    height: calc(100vh - 100px);
    overflow: auto;
    left: 0;
    width: 100%;
  }
  header .header-bottom .main-menu ul {
    display: block;
  }
  header .header-bottom .main-menu ul li {
    margin: 0;
    border-bottom: 1px solid #e0e0e0;
  }
  header .header-bottom .main-menu ul li a {
    display: block;
    height: auto;
    padding: 1.4rem 0 1.2rem 0;
    text-align: center;
    border: none;
  }
  header .header-bottom .main-menu ul li a:hover {
    background: #00296f;
    color: #fff;
  }
  header .header-bottom .main-menu ul li .active a {
    background: #00296f;
    color: #fff;
  }
  header .btn-1 {
    white-space: nowrap;
    font-size: 1.2rem;
    padding: 1.08rem 1.6rem 0.84rem 1.6rem;
  }
  header .header-top .header-data .btn-1 {
    margin: 0 2rem;
  }
  .logos-links {
    position: absolute;
    top: 65px;
    left: 50%;
    margin-left: -344px;
  }
  .logos-links img {
    max-height: 25px !important;
  }
  header .header-bottom .btn-search {
    height: 40px;
    width: 40px;
  }
  header .header-bottom .container {
    justify-content: flex-end;
  }
  .btn-menu {
    margin-right: 2px;
  }
  header .header-bottom .search-box .search-content {
    width: 250px;
  }
  .main-menu {
    z-index: 10;
  }
  .header-bottom {
    position: relative;
    z-index: 11;
  }
}
@media (max-width: 767px) {
  .logos-links {
    margin-left: -255px;
  }
}
@media (max-width: 576px) {
  .logos-links {
    position: absolute;
    top: 65px;
    left: 1.5rem;
    margin-left: 0;
  }
}
.skip-links {
  position: fixed;
  top: 0;
  list-style: none;
  padding: 0;
  z-index: 100;
  margin: 2px;
}

.skip-links a,
.skip-links a:visited {
  position: absolute;
  top: 0;
  left: -9000em;
  display: block;
  text-align: center;
  width: 200px;
  text-decoration: none;
  background: #000;
  color: #fff;
  font-size: 15px;
  padding: 5px 10px 5px 10px;
  z-index: 10;
  outline: 2px solid #000;
}

.skip-links a:hover,
.skip-links a:focus,
.skip-links a:active,
.skip-links a:visited:hover,
.skip-links a:visited:focus,
.skip-links a:visited:active {
  background: #000;
  color: #fff;
  font-size: 15px;
  padding: 5px 10px 4px 10px;
  z-index: 10;
  left: 0;
  opacity: 1;
  outline: 2px solid #000;
}

.skip-links a:hover {
  text-decoration: none;
  opacity: 0.9;
}

header .wcag-font:hover img {
  filter: brightness(0);
}

.logos-link:hover {
  opacity: 0.8;
}

.logos-links {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logos-links img {
  max-height: 40px;
  width: auto;
}

.btn-search:hover {
  background: #e0e0e0 !important;
}

header .header-top .site-control .wcag-contrast-mode:hover {
  opacity: 0.5;
}

header .header-bottom .search-box .search-content button:hover {
  background: #e0e0e0 !important;
}

@media (min-width: 992px) {
  header .header-top .header-data:not(:has(.btn-1)) .logos-links {
    margin-left: 2.8rem;
  }
} /*# sourceMappingURL=header.css.map */
