@charset "UTF-8";
.brand-btn, .has-brand-btn a, .black-btn, .has-black-btn a, .border-btn, .has-border-btn a, .white-btn, .has-white-btn a {
  text-decoration: none;
  height: 40px;
  display: inline-flex !important;
  justify-content: center;
  align-items: center;
  text-align: center;
  border: 0;
  transition: all 500ms;
  cursor: pointer;
  border-radius: 30px !important;
  font-weight: 500 !important;
  padding: 0 30px;
  white-space: nowrap;
  font-size: 14px !important;
}
@media (min-width: 992px) {
  .brand-btn, .has-brand-btn a, .black-btn, .has-black-btn a, .border-btn, .has-border-btn a, .white-btn, .has-white-btn a {
    padding: 0 25px;
  }
}
.brand-btn, .has-brand-btn a {
  background: #ff8400 !important;
  color: #fff !important;
  border: 1px solid #ff8400;
}
.brand-btn:hover, .has-brand-btn a:hover {
  border: 1px solid #E56B00;
  background: #E56B00 !important;
}

.black-btn, .has-black-btn a {
  background: #1F1F1F !important;
  color: #fff !important;
}
.black-btn:hover, .has-black-btn a:hover {
  background: #0E0E0E !important;
  color: #fff !important;
}

.white-btn, .has-white-btn a {
  background: #fff !important;
  color: #0E0E0E !important;
}
.white-btn:hover, .has-white-btn a:hover {
  background: #0E0E0E !important;
  color: #fff !important;
}

.border-btn, .has-border-btn a {
  background: transparent !important;
  color: #ff8400 !important;
  border: 1px solid #ff8400;
}
.border-btn:hover, .has-border-btn a:hover {
  background: #ff8400 !important;
  color: #fff !important;
}

.input-stdv .required {
  color: #ff8400 !important;
  padding-left: 4px;
}
.input-stdv br {
  display: none;
}
.input-stdv label {
  font-weight: bold;
  display: block;
  margin-bottom: 7px;
}
.input-stdv label.req:after {
  content: "*";
  color: #ff8400;
  margin-left: 4px;
}
.input-stdv label.check {
  display: flex;
  align-items: center;
}
.input-stdv label.check input {
  margin-right: 8px;
}
.input-stdv textarea {
  border: 1px solid #ccc;
  border-radius: 20px;
  padding: 8px;
  width: 100%;
  background: #fff !important;
  color: #0E0E0E;
}
.input-stdv textarea::placeholder {
  color: #0E0E0E;
  opacity: 0.5;
}
.input-stdv input:not([type=radio]):not([type=checkbox]):not([type=file]):not([type=submit]) {
  border: 1px solid #ccc;
  width: 100%;
  border-radius: 30px;
  height: 40px;
  padding: 0 12px !important;
  color: #0E0E0E;
  background-color: #fff !important;
}
.input-stdv input:not([type=radio]):not([type=checkbox]):not([type=file]):not([type=submit])::placeholder {
  color: #0E0E0E;
  opacity: 0.5;
}
.input-stdv select {
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none;
  height: 42px;
  padding: 0 30px 0 12px;
  cursor: pointer;
  border: 1px solid #ccc;
  background-color: #fff;
  color: #0E0E0E;
  border-radius: 30px;
  background-image: url("../images/filter.svg");
  background-repeat: no-repeat;
  background-size: 13px 13px;
  background-position: right 13px top 14px;
  width: 100%;
}

input[type=checkbox] {
  background: url("../images/checkbox.svg");
  width: 20px;
  min-width: 20px;
  max-width: 20px;
  height: 21px;
  min-height: 21px;
  max-height: 21px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  display: inline-flex !important;
}
input[type=checkbox]:checked {
  background: url("../images/checkbox-checked.svg");
}

input[type=radio] {
  background: url("../images/radio.svg");
  width: 20px;
  min-width: 20px;
  max-width: 20px;
  min-height: 20px;
  max-height: 20px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  display: inline-flex !important;
}
input[type=radio]:checked {
  background: url("../images/radio-checked.svg");
}

.border-head {
  text-align: center;
  position: relative;
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
}
@media (min-width: 992px) {
  .border-head.left {
    text-align: left;
  }
  .border-head.left a {
    font-size: 14px;
    color: #ff8400;
    margin-left: auto;
    font-weight: 800;
    font-family: "Inter", sans-serif;
  }
}
.border-head:after {
  content: "";
  width: 100%;
  height: 1px;
  background: #ccc;
  bottom: -10px;
  position: absolute;
  left: 0;
  z-index: 0;
}
.border-head span {
  position: relative;
  text-transform: uppercase;
}
.border-head span:after {
  content: "";
  width: 100%;
  height: 3px;
  background: #ff8400;
  bottom: -11px;
  position: absolute;
  left: 0;
  z-index: 1;
}

.hide-on-mobile {
  display: none;
}
@media (min-width: 992px) {
  .hide-on-mobile {
    display: block;
  }
}

.hide-on-desktop {
  display: block;
}
@media (min-width: 992px) {
  .hide-on-desktop {
    display: none;
  }
}

.cd-table {
  width: 100%;
}
.cd-table .cd-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
@media (min-width: 992px) {
  .cd-table .cd-row {
    flex-wrap: nowrap;
  }
}
.cd-table .cd-row.cd-head {
  background: #0E0E0E;
  display: none;
  text-transform: uppercase;
  letter-spacing: 1px;
}
@media (min-width: 1200px) {
  .cd-table .cd-row.cd-head {
    display: flex;
    color: #fff;
    font-weight: bold;
    letter-spacing: 1px;
  }
}
.cd-table .cd-row > div {
  width: 100%;
  padding: 8px;
}
@media (min-width: 992px) {
  .cd-table .cd-row > div {
    flex: 1;
    width: unset;
  }
}
.cd-table .cd-body .cd-row:nth-child(even) {
  background: #FCEFEF;
}
.cd-table .cd-body .cd-row .mobile-head {
  font-weight: bold;
}
@media (min-width: 1200px) {
  .cd-table .cd-body .cd-row .mobile-head {
    display: none;
  }
}
.cd-table .cd-foot .cd-row .mobile-head {
  font-weight: bold;
}
@media (min-width: 1200px) {
  .cd-table .cd-foot .cd-row .mobile-head {
    display: none;
  }
}
.cd-table .cd-legend {
  margin-top: 30px;
}
.cd-table .cd-legend p {
  margin-bottom: 15px;
}
.cd-table .cd-legend p:last-of-type {
  margin-bottom: 0;
}
.cd-table .cd-legend p a {
  color: #ff8400;
}

.wpcf7-form {
  transition: all 500ms;
}
.wpcf7-form .wpcf7-response-output {
  border: 0 !important;
  padding: 15px 0 !important;
  margin: 0 !important;
}
.wpcf7-form.submitting {
  filter: blur(5px);
}
.wpcf7-form.invalid .wpcf7-response-output {
  color: red !important;
}
.wpcf7-form.sent .wpcf7-response-output {
  color: #ff8400 !important;
}

@media all and (max-width: 767px) {
  .mobile-hidden {
    display: none !important;
  }
}

.wcag-trigger img {
  width: 35px;
}

.gok-header {
  padding: 20px;
  display: flex;
  align-items: center;
}
.gok-header .logo {
  margin-right: 30px;
}
.gok-header .logo img {
  width: 100px;
}
.gok-header .menu-wcag {
  margin: 0 30px;
}
.gok-header .menu-wcag:hover > ul {
  display: block;
}
.gok-header .menu-wcag ul {
  display: none;
  position: absolute;
  background: #fff;
  border: 3px solid #000;
  width: 220px;
}
.gok-header .menu-wcag ul li {
  display: block;
  width: 100%;
}
.gok-header .menu-wcag ul > li:hover ul {
  display: block;
}
.gok-header .menu-wcag ul ul {
  top: 0;
  left: 100% !important;
  display: none;
}
.gok-header .top-menu-page {
  display: flex;
  align-items: center;
  margin: 0 30px;
  font-size: 18px;
  font-weight: bold;
  color: #000;
  line-height: 18px;
  padding-top: 10px;
  position: relative;
}
.gok-header .top-menu-page .show-menu {
  color: #000;
  position: relative;
  cursor: pointer;
}
.gok-header .top-menu-page .show-menu:hover .gok-menu {
  display: block;
}
.gok-header .top-menu-page .show-menu svg {
  width: 35px;
  min-width: 35px;
  max-width: 35px;
  min-height: 35px;
  max-height: 35px;
  margin-top: -5px;
}
.gok-header .top-menu-page .gok-menu {
  position: absolute;
  top: 100%;
  min-width: 400px;
  display: none;
}
.gok-header .top-menu-page .gok-menu > ul {
  border: 1px solid #ff8400;
  padding: 20px !important;
}
.gok-header .top-menu-page .gok-menu > ul > li {
  padding: 10px 0;
  border-bottom: 1px solid #dedede;
}
.gok-header .top-menu-page .gok-menu > ul > li:last-child {
  border-bottom: 0;
}
.gok-header .top-menu-page .gok-menu > ul > li > a {
  font-weight: normal;
}
.gok-header .top-menu-page .gok-menu ul {
  background: #fff;
  list-style-type: none;
  padding: 0;
}
.gok-header .top-menu-page .gok-menu ul a {
  display: flex;
  align-items: center;
}
.gok-header .top-menu-page .gok-menu ul li.menu-item-has-children > a:after {
  content: "►";
  margin-left: auto;
  font-size: 8px;
  transition: all 500ms;
}
.gok-header .top-menu-page .gok-menu ul li.menu-item-has-children.active > a:after {
  transform: rotate(450deg);
}
.gok-header .top-menu-page .gok-menu ul ul {
  padding: 10px 20px;
  display: none;
}
.gok-header .top-menu-page .gok-menu ul ul li {
  padding: 8px 0;
}
.gok-header .top-menu-page .gok-menu ul ul li a {
  font-weight: normal;
  font-size: 14px;
}
.gok-header .menu-szybkie {
  margin: 0 30px 0 auto;
}
.gok-header .bip {
  margin-left: 30px;
}

body .slicknav_menu:first-child .slicknav_icon {
  display: flex;
  align-items: center;
}
body .slicknav_menu:first-child .slicknav_icon:before {
  content: "";
  background-image: url(../assets/gok/wcag_white.svg);
  width: 20px;
  min-width: 20px;
  max-width: 20px;
  min-height: 20px;
  max-height: 20px;
}
body .slicknav_menu:first-child .slicknav_icon span {
  display: none;
}

.footer-content {
  margin-top: 40px;
}
.footer-content .logos {
  margin: 0 -15px;
  padding: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: center;
}
@media (min-width: 768px) {
  .footer-content .logos {
    gap: 30px;
  }
}
.footer-content .logos > div, .footer-content .logos > a {
  width: calc(50% - 20px * 1 / 2);
}
@media (min-width: 768px) {
  .footer-content .logos > div, .footer-content .logos > a {
    width: calc(33.3333333333% - 30px * 2 / 3);
  }
}
@media (min-width: 992px) {
  .footer-content .logos > div, .footer-content .logos > a {
    width: calc(25% - 30px * 3 / 4);
  }
}
@media (min-width: 1200px) {
  .footer-content .logos > div, .footer-content .logos > a {
    width: calc(12.5% - 30px * 7 / 8);
  }
}
.footer-content .logos .item {
  height: 100%;
}
.footer-content .logos .item > a {
  display: flex !important;
  justify-content: center;
  align-items: center;
  min-height: 100px;
}
.footer-content .logos .item > a img {
  transition: all 500ms;
  width: 100%;
  height: auto;
  max-width: 120px;
  filter: grayscale(1);
}
.footer-content .logos .item > a img:hover {
  filter: unset;
}
.footer-content .logos .item .desc {
  margin-top: 20px;
  text-align: center;
  font-size: 12px;
}

.bottom-footer .stopka1-row {
  margin-top: -20px;
}
.bottom-footer .newsletter {
  padding: 10px 0 20px;
}
.bottom-footer .footer-bottom-menu {
  background: #dedede;
  margin: 0 -15px;
  padding: 20px;
  margin-bottom: 30px;
}
.bottom-footer .footer-bottom-menu ul {
  list-style-type: none;
  display: flex;
  padding: 0;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
}
.bottom-footer .footer-bottom-menu ul li {
  padding: 0 10px;
  text-align: center;
}
@media all and (max-width: 767px) {
  .bottom-footer .footer-bottom-menu ul li {
    padding-bottom: 10px;
  }
  .bottom-footer .footer-bottom-menu ul li:last-child {
    padding-bottom: 0;
  }
}
.bottom-footer .footer-bottom-menu ul li a {
  font-size: 14px;
  text-align: center;
}

.brand-btn, .has-brand-btn a, .black-btn, .has-black-btn a, .border-btn, .has-border-btn a, .white-btn, .has-white-btn a {
  text-decoration: none;
  height: 40px;
  display: inline-flex !important;
  justify-content: center;
  align-items: center;
  text-align: center;
  border: 0;
  transition: all 500ms;
  cursor: pointer;
  border-radius: 30px !important;
  font-weight: 500 !important;
  padding: 0 30px;
  white-space: nowrap;
  font-size: 14px !important;
}
@media (min-width: 992px) {
  .brand-btn, .has-brand-btn a, .black-btn, .has-black-btn a, .border-btn, .has-border-btn a, .white-btn, .has-white-btn a {
    padding: 0 25px;
  }
}
.brand-btn, .has-brand-btn a {
  background: #ff8400 !important;
  color: #fff !important;
  border: 1px solid #ff8400;
}
.brand-btn:hover, .has-brand-btn a:hover {
  border: 1px solid #E56B00;
  background: #E56B00 !important;
}

.black-btn, .has-black-btn a {
  background: #1F1F1F !important;
  color: #fff !important;
}
.black-btn:hover, .has-black-btn a:hover {
  background: #0E0E0E !important;
  color: #fff !important;
}

.white-btn, .has-white-btn a {
  background: #fff !important;
  color: #0E0E0E !important;
}
.white-btn:hover, .has-white-btn a:hover {
  background: #0E0E0E !important;
  color: #fff !important;
}

.border-btn, .has-border-btn a {
  background: transparent !important;
  color: #ff8400 !important;
  border: 1px solid #ff8400;
}
.border-btn:hover, .has-border-btn a:hover {
  background: #ff8400 !important;
  color: #fff !important;
}

.input-stdv .required {
  color: #ff8400 !important;
  padding-left: 4px;
}
.input-stdv br {
  display: none;
}
.input-stdv label {
  font-weight: bold;
  display: block;
  margin-bottom: 7px;
}
.input-stdv label.req:after {
  content: "*";
  color: #ff8400;
  margin-left: 4px;
}
.input-stdv label.check {
  display: flex;
  align-items: center;
}
.input-stdv label.check input {
  margin-right: 8px;
}
.input-stdv textarea {
  border: 1px solid #ccc;
  border-radius: 20px;
  padding: 8px;
  width: 100%;
  background: #fff !important;
  color: #0E0E0E;
}
.input-stdv textarea::placeholder {
  color: #0E0E0E;
  opacity: 0.5;
}
.input-stdv input:not([type=radio]):not([type=checkbox]):not([type=file]):not([type=submit]) {
  border: 1px solid #ccc;
  width: 100%;
  border-radius: 30px;
  height: 40px;
  padding: 0 12px !important;
  color: #0E0E0E;
  background-color: #fff !important;
}
.input-stdv input:not([type=radio]):not([type=checkbox]):not([type=file]):not([type=submit])::placeholder {
  color: #0E0E0E;
  opacity: 0.5;
}
.input-stdv select {
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none;
  height: 42px;
  padding: 0 30px 0 12px;
  cursor: pointer;
  border: 1px solid #ccc;
  background-color: #fff;
  color: #0E0E0E;
  border-radius: 30px;
  background-image: url("../images/filter.svg");
  background-repeat: no-repeat;
  background-size: 13px 13px;
  background-position: right 13px top 14px;
  width: 100%;
}

input[type=checkbox] {
  background: url("../images/checkbox.svg");
  width: 20px;
  min-width: 20px;
  max-width: 20px;
  height: 21px;
  min-height: 21px;
  max-height: 21px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  display: inline-flex !important;
}
input[type=checkbox]:checked {
  background: url("../images/checkbox-checked.svg");
}

input[type=radio] {
  background: url("../images/radio.svg");
  width: 20px;
  min-width: 20px;
  max-width: 20px;
  min-height: 20px;
  max-height: 20px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  display: inline-flex !important;
}
input[type=radio]:checked {
  background: url("../images/radio-checked.svg");
}

.border-head {
  text-align: center;
  position: relative;
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
}
@media (min-width: 992px) {
  .border-head.left {
    text-align: left;
  }
  .border-head.left a {
    font-size: 14px;
    color: #ff8400;
    margin-left: auto;
    font-weight: 800;
    font-family: "Inter", sans-serif;
  }
}
.border-head:after {
  content: "";
  width: 100%;
  height: 1px;
  background: #ccc;
  bottom: -10px;
  position: absolute;
  left: 0;
  z-index: 0;
}
.border-head span {
  position: relative;
  text-transform: uppercase;
}
.border-head span:after {
  content: "";
  width: 100%;
  height: 3px;
  background: #ff8400;
  bottom: -11px;
  position: absolute;
  left: 0;
  z-index: 1;
}

.hide-on-mobile {
  display: none;
}
@media (min-width: 992px) {
  .hide-on-mobile {
    display: block;
  }
}

.hide-on-desktop {
  display: block;
}
@media (min-width: 992px) {
  .hide-on-desktop {
    display: none;
  }
}

.cd-table {
  width: 100%;
}
.cd-table .cd-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
@media (min-width: 992px) {
  .cd-table .cd-row {
    flex-wrap: nowrap;
  }
}
.cd-table .cd-row.cd-head {
  background: #0E0E0E;
  display: none;
  text-transform: uppercase;
  letter-spacing: 1px;
}
@media (min-width: 1200px) {
  .cd-table .cd-row.cd-head {
    display: flex;
    color: #fff;
    font-weight: bold;
    letter-spacing: 1px;
  }
}
.cd-table .cd-row > div {
  width: 100%;
  padding: 8px;
}
@media (min-width: 992px) {
  .cd-table .cd-row > div {
    flex: 1;
    width: unset;
  }
}
.cd-table .cd-body .cd-row:nth-child(even) {
  background: #FCEFEF;
}
.cd-table .cd-body .cd-row .mobile-head {
  font-weight: bold;
}
@media (min-width: 1200px) {
  .cd-table .cd-body .cd-row .mobile-head {
    display: none;
  }
}
.cd-table .cd-foot .cd-row .mobile-head {
  font-weight: bold;
}
@media (min-width: 1200px) {
  .cd-table .cd-foot .cd-row .mobile-head {
    display: none;
  }
}
.cd-table .cd-legend {
  margin-top: 30px;
}
.cd-table .cd-legend p {
  margin-bottom: 15px;
}
.cd-table .cd-legend p:last-of-type {
  margin-bottom: 0;
}
.cd-table .cd-legend p a {
  color: #ff8400;
}

.wpcf7-form {
  transition: all 500ms;
}
.wpcf7-form .wpcf7-response-output {
  border: 0 !important;
  padding: 15px 0 !important;
  margin: 0 !important;
}
.wpcf7-form.submitting {
  filter: blur(5px);
}
.wpcf7-form.invalid .wpcf7-response-output {
  color: red !important;
}
.wpcf7-form.sent .wpcf7-response-output {
  color: #ff8400 !important;
}

@media all and (max-width: 767px) {
  .mobile-hidden {
    display: none !important;
  }
}

.aktualnosci .aktualnosciglownakont .aktualnosciglowna .aktualnosciglownafoto img {
  height: 300px;
  object-fit: cover;
}
.aktualnosci .aktualnosciglownakont .aktualnosciglowna .aktualnosciglownaopis {
  margin-bottom: 0;
}