@charset "UTF-8";
@font-face {
  font-family: "Museo";
  src: url("/_fonts/museo/Museo300-Regular.otf") format("otf"), url("/_fonts/museo/Museo300-Regular.woff") format("woff"), url("/_fonts/museo/Museo300-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Museo";
  src: url("/_fonts/museo/Museo300-Regular.otf") format("otf"), url("/_fonts/museo/Museo700-Regular.woff") format("woff"), url("/_fonts/museo/Museo700-Regular.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body,
html {
  background: #fff;
  padding: 0;
  margin: 0;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.5;
  font-family: Hind, sans-serif;
  font-weight: 300;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: "Museo";
  font-weight: 700;
}

.lock-scroll {
  overflow-y: hidden;
}

img {
  max-width: 100%;
}

a {
  color: #2c3053;
  transition: color 0.1s ease-in, background-color 0.2s ease-in;
}
a:hover {
  text-decoration: none;
  color: #ffc63d;
}

button {
  transition: color 0.1s ease-in, background-color 0.2s ease-in;
}

.swiper-container {
  width: 100%;
}

.page-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.header {
  background-color: #f7f7f7;
}
.header__image-wrapper {
  position: relative;
  height: 25.5rem;
}
.header__image {
  height: 100%;
  display: block;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.header__image--pattern {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 100%;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  gap: 20px;
}

.language-menu,
.social-media {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0 0 0 30px;
}
.language-menu__link,
.social-media__link {
  display: flex;
  padding: 10px;
}
.language-menu__icon,
.social-media__icon {
  width: 1.3rem;
  height: 1.3rem;
}

.topbar_wcag {
  display: flex;
  align-items: center;
  gap: 10px;
}
.topbar_wcag .my_font_large {
  font-size: 2.2rem;
  font-weight: 500;
}
.topbar_wcag .my_contrast::before {
  content: url(/_img/ico_contrast3.png);
  display: block;
  width: 24px;
  height: 24px;
}

.language-menu {
  color: #2c3053;
  margin: 0;
}
.language-menu__item:not(:last-of-type) {
  display: flex;
  align-items: center;
}
.language-menu__item:not(:last-of-type)::after {
  content: "/";
  position: relative;
}
.language-menu__link {
  color: #2c3053;
  text-decoration: none;
}

.logo-wrapper {
  width: 23.5rem;
  flex: 0 0 23.5rem;
}
.logo-wrapper__h1 {
  margin: 0;
}
.logo-wrapper__link {
  display: block;
}
.logo-wrapper .logo {
  max-width: 235px;
  max-height: 150px;
}
.logo-wrapper .logo path {
  fill: #2c3053;
}

.menu-wrapper {
  display: flex;
  width: 100%;
  flex-wrap: nowrap;
  justify-content: space-between;
}

.menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 10px 20px;
  position: relative;
  z-index: 9999;
  background-color: #f7f7f7;
}
.menu--fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  justify-content: space-between;
}
.menu--fixed .menu__logo {
  display: block;
}
.menu__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0;
  top: 100%;
  flex-direction: column;
  background: #f7f7f7;
  width: 100vw;
  height: calc(100vh - 150px);
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.3s ease-in;
}
.menu__list--active {
  transform: translateX(0);
}
.menu__link {
  color: #2c3053;
  padding: 20px;
  display: inline-block;
  font-weight: 500;
  font-size: 1.8rem;
  text-decoration: none;
}
.menu__logo {
  display: none;
  max-width: 262px;
  margin-right: auto;
  max-height: 60px;
}
.menu__logo path {
  fill: #2c3053;
}

.burger {
  padding: 10px;
  cursor: pointer;
  background-color: transparent;
  border: 0;
  height: 40px;
  will-change: position;
}
.burger__box {
  width: 27px;
  height: 20px;
  display: inline-block;
  position: relative;
}
.burger__inner {
  width: 100%;
  height: 3px;
  position: absolute;
  background-color: #2c3053;
  left: 0;
  top: 50%;
  transition: background-color 0.2s ease-in-out;
}
.burger__inner::before, .burger__inner::after {
  width: 100%;
  height: 3px;
  position: absolute;
  background-color: #2c3053;
  content: "";
  left: 0;
  transition: transform 0.2s ease-in-out;
}
.burger__inner::before {
  top: -8px;
}
.burger__inner::after {
  top: 8px;
}
.burger--active .burger__inner {
  background-color: transparent;
}
.burger--active .burger__inner::before {
  transform: translateY(8px) rotate(45deg);
}
.burger--active .burger__inner::after {
  transform: translateY(-8px) rotate(-45deg);
}

.main {
  padding: 20px;
  margin-bottom: 50px;
}

.partners-slider {
  margin: 30px 0 50px 0;
}
.partners-slider__swiper-slide {
  width: auto;
}

.footer {
  background-color: #2c3053;
  color: #fff;
  padding: 20px 10px;
  margin-top: auto;
}
.footer .social-media {
  margin-left: 0;
}
.footer__social-media-wrapper {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
}
.footer__logo, .footer__address {
  margin-bottom: 30px;
}
.footer__logo {
  width: 14.5rem;
}
.footer a {
  color: #fff;
}
.footer a:hover {
  color: #ffc63d;
}
.footer__logos {
  width: 100%;
  margin-top: 2rem;
}
.footer__logos > .row {
  max-width: 100%;
}
.footer__logos .footer-logo {
  max-height: 10rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 50%;
  margin: 0 auto 2rem;
}
.footer__logos .footer-logo a {
  display: flex;
  max-height: 100%;
  height: 100%;
}
.footer__logos .footer-logo a img {
  max-height: 100%;
  display: flex;
  margin: auto;
}

.footer-menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-menu__item {
  margin-bottom: 5px;
}
.footer-menu__link {
  color: #fff;
  padding: 5px 0;
}

.search-filters {
  margin-bottom: 50px;
}
.search-filters__title {
  margin-bottom: 2rem;
}
.search-filters__form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.search-filters__label {
  margin-bottom: 3px;
  font-size: 1.4rem;
  opacity: 0.7;
}
.search-filters__field {
  border: 1px solid #cfcfcf;
  border-radius: 5px;
  padding: 5px 10px;
  font: inherit;
  height: 3.6rem;
}
.search-filters__button {
  margin-top: auto;
  display: flex;
}

.h2 {
  margin-bottom: 3rem;
  font-size: 3rem;
}

.h3 {
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}

p {
  line-height: 1.7;
}

.service-box,
.partner-box {
  border: 1px solid #2c3053;
  border-radius: 5px;
  padding: 20px;
  margin-bottom: 30px;
}
.service-box__link,
.partner-box__link {
  text-decoration: none;
}
.service-box__link:hover,
.partner-box__link:hover {
  color: inherit;
}
.service-box__title,
.partner-box__title {
  font-size: 1.8rem;
}

.service-box__area {
  margin-bottom: 0;
}
.service-box__more {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-left: 20px;
  margin-top: 20px;
}

.partner-box {
  display: flex;
  flex-direction: column;
}
.partner-box__logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 0px;
  margin-bottom: 20px;
  order: 1;
}
.partner-box__info {
  order: 2;
}

.button {
  background-color: #2c3053;
  padding: 1.2rem 2rem;
  color: #fff;
  border-radius: 5px;
  font-weight: 400;
  border: none;
  line-height: 1;
  cursor: pointer;
  text-decoration: none;
  font: inherit;
  font-size: 1.6rem;
}
.button:hover {
  background-color: #ffc63d;
  color: #2c3053;
}

.service__link {
  display: flex;
  margin-bottom: 10px;
}
.service__link-icon {
  margin-right: 1.5rem;
}

.service-item {
  margin-bottom: 20px;
}

.description {
  margin-bottom: 50px;
}

.contact-box {
  margin-bottom: 50px;
}
.contact-box__title {
  font-size: 1.8rem;
}

.slider {
  padding-bottom: 23px;
}
.slider .item {
  width: 100%;
  background: #2c3053;
  color: #fff;
}
.slider .item .rectangle {
  padding: 2rem;
}
.slider .item__img {
  width: 100%;
  height: auto;
}
.slider .carousel-indicators {
  margin: 0px;
  bottom: 0;
  background-color: #2c3053;
  padding: 10px;
  width: 100%;
  left: 0;
}
.slider .carousel-indicators li {
  width: 10px;
  height: 10px;
  border-radius: 100%;
}
.slider .slide-date {
  font-weight: 300;
  margin-bottom: 2rem;
}
.slider h1 {
  font-size: 3rem;
  font-family: "Museo", sans-serif;
  margin-bottom: 2rem;
}

.section {
  padding: 100px 0 0;
}
.section__pattern {
  display: none;
}

/* centrowanie logotypów */
.partners-slider__swiper-slide {
  height: 100px;
}

.partners-slider__logo {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.footer-v2 {
  background-color: #2c3053;
  font-weight: 400;
  font-size: 2.1rem;
  color: white;
  padding: 20px 10px;
  margin-top: auto;
}
.footer-v2__row {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 40px;
}
.footer-v2__header {
  display: flex;
  align-items: center;
  gap: 5px 20px;
  flex-wrap: wrap;
  margin: 20px 0 25px 0;
}
.footer-v2__header_title {
  font-weight: 900;
  font-size: 5rem;
  line-height: 1.2;
  width: 100%;
}
.footer-v2__header_sss, .footer-v2__header_ksse {
  width: 100px;
  height: auto;
  padding-bottom: 1px;
}
.footer-v2__header_sss img,
.footer-v2__header_sss svg, .footer-v2__header_ksse img,
.footer-v2__header_ksse svg {
  max-width: 100%;
  height: auto;
}
.footer-v2__header_sss img path, .footer-v2__header_sss img polygon, .footer-v2__header_sss img circle,
.footer-v2__header_sss svg path,
.footer-v2__header_sss svg polygon,
.footer-v2__header_sss svg circle, .footer-v2__header_ksse img path, .footer-v2__header_ksse img polygon, .footer-v2__header_ksse img circle,
.footer-v2__header_ksse svg path,
.footer-v2__header_ksse svg polygon,
.footer-v2__header_ksse svg circle {
  fill: white;
}
.footer-v2__header_sss {
  width: 130px;
}
.footer-v2__address p {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}
.footer-v2__address a {
  color: white;
  text-decoration: none;
}
.footer-v2__edih {
  max-width: 280px;
  min-width: 280px;
  margin: 30px 0;
}
.footer-v2__menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-v2__menu li {
  margin-bottom: 10px;
}
.footer-v2__menu li a {
  color: white;
  text-decoration: none;
}
.footer-v2__menu li a:hover {
  text-decoration: underline;
}
.footer-v2__social-media .social-media__icon {
  width: 18px;
  height: auto;
  margin: 0 6px;
}
.footer-v2__partners {
  margin-top: 30px;
}
.footer-v2__partners_logos {
  display: flex;
  align-items: start;
  flex-wrap: wrap;
}
.footer-v2__shape {
  margin: 50px 0 10px 20px;
}

.footer-v3 {
  background-color: #2c3053;
  font-weight: 400;
  font-size: 2.1rem;
  color: white;
  padding: 20px 10px;
  margin-top: auto;
}
.footer-v3__row {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 40px;
}
.footer-v3__col1 {
  flex: 0 0 auto;
  max-width: 320px;
}
.footer-v3__header {
  display: flex;
  align-items: center;
  gap: 5px 20px;
  flex-wrap: wrap;
  margin: 20px 0 25px 0;
}
.footer-v3__header_title {
  font-family: "Segoe UI", "Hind", "Open Sans", system-ui;
  font-weight: bold;
  font-size: 5rem;
  line-height: 1.2;
  width: 100%;
}
.footer-v3__logo_image {
  display: block;
  max-width: 320px;
  margin-top: 25px;
}
.footer-v3__logo_image img {
  max-width: 100%;
  height: auto;
}
.footer-v3__logo_sss {
  display: block;
  width: 160px;
  height: auto;
  margin: 20px auto 0 auto;
}
.footer-v3__logo_sss img,
.footer-v3__logo_sss svg {
  max-width: 100%;
  height: auto;
}
.footer-v3__logo_sss img path, .footer-v3__logo_sss img polygon, .footer-v3__logo_sss img circle,
.footer-v3__logo_sss svg path,
.footer-v3__logo_sss svg polygon,
.footer-v3__logo_sss svg circle {
  fill: white;
}
.footer-v3__address p {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}
.footer-v3__address a {
  color: white;
  text-decoration: none;
}
.footer-v3__edih {
  max-width: 310px;
  margin: 30px 0;
}
.footer-v3__menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-v3__menu li {
  margin-bottom: 10px;
}
.footer-v3__menu li a {
  color: white;
  text-decoration: none;
}
.footer-v3__menu li a:hover {
  text-decoration: underline;
}
.footer-v3__social-media .social-media__icon {
  width: 18px;
  height: auto;
  margin: 0 6px;
}
.footer-v3__partners {
  margin-top: 30px;
}
.footer-v3__partners_logos {
  display: flex;
  align-items: start;
  flex-wrap: wrap;
}
.footer-v3__shape {
  margin: 50px 0 10px 20px;
}

@media (min-width: 500px) {
  .service-box {
    display: flex;
    justify-content: space-between;
  }
  .service-box__more {
    justify-content: center;
    margin-top: 0;
  }
}
@media (min-width: 768px) {
  .top-bar {
    justify-content: flex-end;
  }
  .language-menu {
    margin: 0 0 0 50px;
  }
  .partner-box {
    flex-direction: row;
    display: flex;
    justify-content: space-between;
  }
  .partner-box__logo-wrapper {
    justify-content: flex-end;
    order: 2;
    flex: 0 0 25%;
    margin-left: 30px;
  }
  .footer {
    background-image: url(/_img/_templates6/_templates/wzor_stopka.svg);
    background-repeat: no-repeat;
    background-position: top right;
    background-size: auto 385px;
  }
  .footer__social-media-wrapper {
    justify-content: flex-end;
  }
  .footer__tel {
    margin-left: 5rem;
  }
  .footer a {
    text-decoration: none;
  }
  .section__pattern {
    display: block;
  }
  .footer-v2 {
    padding: 30px 50px 30px 30px;
  }
  .footer-v2__row {
    flex-direction: row;
  }
  .footer-v3 {
    padding: 30px 15px;
  }
  .footer-v3__row {
    flex-direction: row;
  }
  .footer-v3__col2 {
    flex: 1 1 400px;
    padding: 0 25px;
  }
  .footer-v3__address, .footer-v3__menu {
    font-size: 2.4rem;
    line-height: 1.3;
  }
}
@media (min-width: 992px) {
  .top-bar {
    padding: 20px 50px;
  }
  .header__image-wrapper {
    height: 45.5rem;
  }
  .burger {
    display: none;
  }
  .menu-wrapper {
    padding: 1.5rem 3rem;
  }
  .menu {
    padding: 15px 50px;
    width: 100%;
  }
  .menu__list {
    position: relative;
    flex-direction: row;
    right: unset;
    top: unset;
    transform: none;
    height: unset;
    justify-content: flex-end;
    width: -moz-fit-content;
    width: fit-content;
    margin-top: auto;
  }
  .menu__link {
    padding: 10px 20px;
  }
  .menu--fixed {
    max-width: 1440px;
    left: 50%;
    transform: translateX(-50%);
  }
  .footer {
    padding: 50px;
  }
  .footer__logos .footer-logo {
    max-width: 100%;
  }
  .footer-v2__header_title {
    font-size: 6.8rem;
  }
  .footer-v3__header_title {
    font-size: 6.8rem;
  }
  .search-filters__form-group {
    margin-bottom: 0;
  }
  #slider {
    height: 645px;
  }
  .slider,
  .slider .carousel-inner {
    max-height: 645px;
    height: 645px;
  }
  .slider .item {
    height: 645px;
    display: flex;
    align-items: stretch;
  }
  .slider .item .rectangle {
    flex: 0 0 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .slider .item .rectangle h1,
  .slider .item .rectangle a {
    padding-left: 10%;
  }
  .slider .item .rectangle a {
    margin-top: 30px;
  }
  .slider .slide-date {
    margin-bottom: 50px;
  }
  .slider .carousel-indicators {
    background-color: transparent;
    width: 40%;
    bottom: 20px;
  }
}
@media (min-width: 1200px) {
  .footer-v2__header_title {
    width: auto;
  }
}
@media (min-width: 1460px) {
  .main {
    padding: 50px 0px;
  }
}
.html_fonts__up_2 {
  font-size: 80%;
}
.html_fonts__up_1 {
  font-size: 70%;
}
.html_fonts__down_1 {
  font-size: 50%;
}
.html_fonts__down_2 {
  font-size: 40%;
}

.html_contrast {
  background-color: #000000 !important;
}
.html_contrast * {
  color: #ffff00 !important;
  border-color: #ffff00 !important;
}
.html_contrast body {
  background: #000000 !important;
}
.html_contrast .header,
.html_contrast .footer,
.html_contrast .menu,
.html_contrast .menu__list {
  background: #000000 !important;
}
.html_contrast .menu-wrapper .logo,
.html_contrast .menu-wrapper .menu__logo {
  fill: #ffffff !important;
}
.html_contrast .menu-wrapper .logo path,
.html_contrast .menu-wrapper .logo .shp0,
.html_contrast .menu-wrapper .menu__logo path,
.html_contrast .menu-wrapper .menu__logo .shp0 {
  fill: #ffffff !important;
}
.html_contrast .topbar_wcag .my_contrast::before {
  content: url(/_img/ico_contrast2.png);
}
.html_contrast .burger__inner,
.html_contrast .burger__inner::before,
.html_contrast .burger__inner::after {
  background-color: #ffffff;
}
.html_contrast .burger--active .burger__inner {
  background-color: transparent;
}