body {
  font-family: 'Red Hat Display', sans-serif;
  background-color: #FBFBFB; }

body, html {
  overflow-x: hidden; }

.page {
  margin: 0; }

h1 {
  font-size: 50px;
  line-height: 75px;
  font-weight: 500; }

h2, p, ol li, h3 {
  color: #30393F; }

h2 {
  font-size: 38px;
  line-height: 57px;
  font-weight: normal;
  margin-bottom: 22px; }
  h2 b {
    font-weight: 600; }

p {
  font-weight: 300;
  font-size: 16px;
  line-height: 24px; }

a {
  text-decoration: none; }

.btn {
  padding: 10px 32px;
  border-radius: 30px;
  font-size: 16px;
  line-height: 24px;
  transition: .3s;
  will-change: transform; }
  .btn--primary {
    border: 1px solid #1C1C39;
    background-color: #1C1C39;
    color: #FFFFFF; }
    .btn--primary:visited, .btn--primary:hover {
      color: #FFFFFF; }
  .btn--secondary {
    border: 1px solid #EC6429;
    background-color: #EC6429;
    color: #FFFFFF; }
    .btn--secondary:visited, .btn--secondary:hover {
      color: #FFFFFF; }
  .btn.btn-ghost-primary {
    background-color: transparent;
    color: #1C1C39;
    border: 1px solid #1C1C39; }
  .btn.btn-ghost-secondary {
    background-color: transparent;
    color: #EC6429;
    border: 1px solid #EC6429; }
  .btn:hover {
    transform: translateY(-3px);
    transition: .3s;
    box-shadow: 0px 9px 26px -9px rgba(0, 0, 0, 0.25); }

.btn-section {
  display: flex;
  margin-top: 32px; }
  .btn-section a:nth-of-type(2) {
    margin-left: 22px; }

.site-header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  padding: 40px 0 20px;
  z-index: 5;
  transition: .3s; }
  .site-header__nav {
    display: flex;
    align-items: center;
    justify-content: space-between; }
  .site-header .site-branding svg {
    width: 120px; }
  .site-header .main-navigation ul {
    align-items: center; }
  .site-header .main-navigation li a {
    font-size: 14px;
    line-height: 21px;
    color: #FFFFFF;
    margin: 0 18px;
    position: relative;
    font-weight: 500; }
    .site-header .main-navigation li a::before {
      position: absolute;
      bottom: -3px;
      left: 0;
      width: 100%;
      height: 2px;
      background-color: #EC6429;
      content: '';
      opacity: 0;
      transition: .3s;
      will-change: transform; }
    .site-header .main-navigation li a:hover::before {
      opacity: 1;
      transform: translateY(-3px);
      transition: .3s; }
  .site-header .main-navigation li:last-of-type a {
    color: #EC6429;
    padding: 12px 32px;
    border: 1px solid #EC6429;
    border-radius: 30px;
    margin: 0 10px;
    transition: .3s; }
    .site-header .main-navigation li:last-of-type a::before {
      content: none; }
    .site-header .main-navigation li:last-of-type a:hover {
      background-color: #EC6429;
      color: #FFFFFF;
      transition: .3s; }
  .site-header.scrolled {
    padding-top: 20px;
    box-shadow: 0px -1px 26px -9px rgba(0, 0, 0, 0.25); }
  .site-header.scrolled, .site-header.show-search-form, .site-header.toggled {
    transition: .3s;
    background-color: #FFFFFF; }
    .site-header.scrolled .main-navigation li a, .site-header.show-search-form .main-navigation li a, .site-header.toggled .main-navigation li a {
      color: #30393F;
      transition: .3s; }
    .site-header.scrolled .main-navigation li:last-of-type a, .site-header.show-search-form .main-navigation li:last-of-type a, .site-header.toggled .main-navigation li:last-of-type a {
      color: #EC6429; }
      .site-header.scrolled .main-navigation li:last-of-type a:hover, .site-header.show-search-form .main-navigation li:last-of-type a:hover, .site-header.toggled .main-navigation li:last-of-type a:hover {
        color: #FFFFFF; }
    .site-header.scrolled .site-branding svg path, .site-header.show-search-form .site-branding svg path, .site-header.toggled .site-branding svg path {
      fill: #1C1C39;
      transition: .3s; }
    .site-header.scrolled .search-form svg path, .site-header.show-search-form .search-form svg path, .site-header.toggled .search-form svg path {
      stroke: #1C1C39; }
    .site-header.scrolled .search-bar svg path, .site-header.show-search-form .search-bar svg path, .site-header.toggled .search-bar svg path {
      stroke: #1C1C39; }

.search-bar {
  background-color: transparent;
  border: none; }
  .search-bar svg path {
    transition: stroke .3s; }
  .search-bar:hover svg path {
    stroke: #EC6429;
    transition: stroke .3s; }

.search-form {
  position: absolute;
  background: #FFFFFF;
  visibility: hidden;
  transform: translate(-50%, 73px);
  opacity: 0;
  transition: .3s;
  z-index: -1;
  width: 38%;
  left: 50%;
  padding-bottom: 16px; }
  .search-form::before, .search-form::after {
    position: absolute;
    background-color: #FFFFFF;
    content: '';
    width: 10000%;
    height: 100%;
    top: 0; }
  .search-form::before {
    left: 99%; }
  .search-form::after {
    right: 99%; }
  .search-form.open {
    visibility: visible;
    transition: .3s;
    opacity: 1; }
  .search-form .searchform {
    position: relative; }
  .search-form .searchbtn {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%); }
    .search-form .searchbtn input {
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      width: 100%;
      height: 100%;
      background: transparent;
      border: none;
      padding: 0; }
  .search-form .close {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
    cursor: pointer; }
  .search-form .search-field {
    border: none;
    border-bottom: 2px solid #EAEBF2;
    padding: 11px 11px 11px 56px;
    font-weight: 300;
    font-size: 14px;
    line-height: 19px;
    color: #30393F;
    width: 100%;
    transition: border-bottom-color .3s;
    border-radius: 0; }
    .search-form .search-field:focus {
      outline: none;
      border-color: #1C1C39;
      transition: border-bottom-color .3s; }
    .search-form .search-field::placeholder {
      color: #C4C4C4; }

.menu-wrapper .toggle-menu {
  display: flex;
  align-items: center; }

.menu-wrapper .search-form {
  margin-left: 20px; }

.hero {
  position: relative;
  height: 90vh; }
  .hero h1, .hero p {
    color: #FFFFFF; }
  .hero img {
    width: 100%;
    height: 100%;
    object-fit: cover; }
  .hero .hero-wave {
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: auto;
    object-fit: unset; }
  .hero__overlay {
    background: rgba(28, 28, 57, 0.75);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }
  .hero__content {
    position: absolute;
    width: 100%;
    left: 0;
    top: 50%;
    transform: translateY(-50%); }
    .hero__content__title, .hero__content__text {
      margin-bottom: 38px; }

section {
  background-color: #FBFBFB; }

.offer {
  padding: 40px 0 90px;
  position: relative; }
  .offer .offer-decor {
    position: absolute;
    right: 0;
    top: 20%; }
  .offer h2 {
    text-align: center;
    margin-bottom: 48px; }
  .offer__item {
    background: #FFFFFF;
    box-shadow: 0px 9px 54px -27px rgba(0, 0, 0, 0.25);
    border-radius: 26px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 32px 24px;
    height: 100%;
    justify-content: center;
    text-decoration: none;
    transition: .3s;
    position: relative; }
    .offer__item svg path {
      fill: #1C1C39;
      transition: .3s; }
    .offer__item svg {
      width: 68px;
      height: 62px; }
    .offer__item h3 {
      font-size: 16px;
      line-height: 24px;
      text-align: center;
      color: #30393F;
      margin: 16px 0 0; }
    .offer__item:hover {
      transition: .3s;
      transform: translateY(-6px);
      box-shadow: 0px 9px 26px -9px rgba(0, 0, 0, 0.25); }
      .offer__item:hover svg path {
        fill: #EC6429;
        transition: .3s; }

.bns {
  padding: 90px 0; }
  .bns__logo {
    margin-bottom: 32px; }
  .bns__module {
    margin-top: 20px; }
    .bns__module p strong {
      font-weight: 500; }
  .bns .screens {
    position: relative; }
    .bns .screens .bns__screen2 {
      position: absolute;
      right: 106px;
      top: 69px; }

.b2b-platform {
  padding: 90px 0 150px; }
  .b2b-platform__image-section {
    position: relative;
    margin-top: 80px;
    display: flex;
    align-items: center;
    justify-content: center; }
  .b2b-platform__screen2 {
    position: absolute;
    top: 131px;
    left: 32%;
    transform: translateX(-50%); }
  .b2b-platform__content {
    margin-bottom: 32px; }

.bz24-shop, .sz-shop {
  padding: 90px 0;
  position: relative; }

.bz24-shop .shop-decor {
  position: absolute;
  left: 0;
  top: 100px;
  z-index: 1;
  pointer-events: none; }

.bz24-shop__image-section {
  position: relative; }
  .bz24-shop__image-section .dots {
    position: absolute;
    right: 31px;
    bottom: -7px; }

.niszczenie {
  padding: 90px 0 140px;
  position: relative; }
  .niszczenie__img {
    position: relative; }
    .niszczenie__img::before {
      position: absolute;
      left: 8px;
      top: 5px;
      background-color: #EBEBEB;
      content: '';
      width: 85%;
      height: 85%;
      border-radius: 12px;
      z-index: -1;
      opacity: 0.7; }
  .niszczenie .wave-img {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%; }
  .niszczenie .container {
    position: relative; }

.site-footer__top {
  padding: 60px 0 40px;
  background-color: #FBFBFB; }

.site-footer__social-media a {
  margin-right: 8px; }

.site-footer__logo {
  margin-bottom: 32px; }
  .site-footer__logo svg {
    width: 120px; }
    .site-footer__logo svg path {
      fill: #1C1C39; }
  .site-footer__logo span {
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    margin-top: 20px;
    display: block; }

.site-footer__title {
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  color: #30393F;
  margin-bottom: 20px;
  display: block; }

.site-footer p, .site-footer a {
  font-weight: 300;
  font-size: 13px;
  line-height: 18px;
  color: #30393F; }

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none; }
  .site-footer ul li {
    margin-bottom: 4px; }

.site-footer__bottom {
  background-color: #1C1C39;
  padding: 16px 0; }
  .site-footer__bottom p {
    text-align: center;
    margin: 0;
    color: #FFFFFF;
    font-size: 12px;
    line-height: 18px; }

.contact-info .address, .contact-info .tel, .contact-info .email {
  display: flex; }
  .contact-info .address p, .contact-info .tel p, .contact-info .email p {
    margin-left: 12px; }
  .contact-info .address svg, .contact-info .tel svg, .contact-info .email svg {
    position: relative;
    top: -2px; }

.contact-info .other {
  margin-left: 32px; }

.hero-page {
  position: relative;
  height: 550px;
  min-height: 45vh; }
  .hero-page h1 {
    color: #FFFFFF; }
  .hero-page img {
    width: 100%;
    height: 100%;
    object-fit: cover; }
  .hero-page .hero-wave {
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: auto;
    object-fit: unset; }
  .hero-page__overlay {
    background: rgba(28, 28, 57, 0.75);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }
  .hero-page__content {
    position: absolute;
    width: 100%;
    left: 0;
    top: 50%;
    transform: translateY(-50%); }
    .hero-page__content__title {
      margin-bottom: 38px; }
  .hero-page.error-404 {
    height: 80vh; }
    .hero-page.error-404 h3 {
      color: #FFFFFF;
      margin-bottom: 52px; }

.about-firm-section-1 {
  padding: 40px 0; }
  .about-firm-section-1 h2 {
    font-size: 30px;
    line-height: 44px; }
  .about-firm-section-1__content {
    padding-bottom: 80px; }
  .about-firm-section-1__img {
    width: 100%; }

.about-firm-section-2 {
  padding: 40px 0; }
  .about-firm-section-2 p {
    font-weight: 500;
    font-size: 22px;
    line-height: 33px;
    text-align: center; }
  .about-firm-section-2 .counter {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding-top: 40px; }
  .about-firm-section-2 .count__container {
    margin: 0 12px; }
  .about-firm-section-2 .count__number {
    font-weight: bold;
    font-size: 66px;
    line-height: 86px;
    text-align: center;
    color: #EC6429; }
  .about-firm-section-2 .count__label p {
    font-size: 18px; }

.team {
  padding: 90px 0; }
  .team__img {
    margin: 0 auto;
    display: block;
    padding-top: 20px; }

.certificates {
  padding: 90px 0; }
  .certificates h2 {
    text-align: center;
    margin-bottom: 42px; }
  .certificates .swiper {
    overflow: hidden; }
    .certificates .swiper .swiper-slide img {
      display: block;
      margin: 0 auto; }

.contact {
  padding-top: 40px; }
  .contact h2 {
    margin-bottom: 60px; }
  .contact .contact-info a {
    color: #30393F; }
  .contact form input, .contact form label, .contact form textarea {
    width: 100%; }
  .contact form label {
    position: relative;
    margin-bottom: 12px; }
    .contact form label .label {
      position: absolute;
      padding: 2px 6px;
      top: 16px;
      z-index: 3;
      left: 18px;
      font-weight: bold;
      font-size: 12px;
      line-height: 100%;
      color: #414141; }
      .contact form label .label::before {
        position: absolute;
        content: '';
        width: 100%;
        height: 3px;
        top: 7px;
        background: #FBFBFB;
        z-index: -1;
        left: 0; }
  .contact form input[type="text"], .contact form input[type="email"], .contact form input[type="tel"], .contact form textarea {
    border: 2px solid #DCDADA;
    border-radius: 8px;
    background-color: #FFFFFF;
    font-size: 14px;
    line-height: 21px;
    color: #30393F;
    padding: 14px 22px;
    transition: border-color .3s;
    outline: none; }
    .contact form input[type="text"]:focus, .contact form input[type="email"]:focus, .contact form input[type="tel"]:focus, .contact form textarea:focus {
      border-color: #EC6429;
      transition: border-color .3s;
      color: #30393F; }
    .contact form input[type="text"]::placeholder, .contact form input[type="email"]::placeholder, .contact form input[type="tel"]::placeholder, .contact form textarea::placeholder {
      color: #939393; }
  .contact form input[type="submit"] {
    font-weight: bold;
    font-size: 14px;
    line-height: 21px;
    color: #FFFFFF;
    background-color: #EC6429;
    border-radius: 23px;
    border: 2px solid #EC6429;
    transition: .3s;
    padding: 11px 15px; }
    .contact form input[type="submit"]:disabled:hover {
      border: 2px solid #C8C8C8;
      background-color: #C8C8C8;
      color: #FBFBFB; }
    .contact form input[type="submit"]:hover {
      transition: .3s;
      background-color: transparent;
      color: #EC6429; }
  .contact form textarea {
    height: 150px; }
  .contact form .wpcf7-acceptance .wpcf7-list-item {
    margin: 0 0 10px 0; }
    .contact form .wpcf7-acceptance .wpcf7-list-item .wpcf7-list-item-label {
      position: relative;
      padding-left: 32px;
      display: block;
      font-size: 12px;
      font-weight: 300; }
    .contact form .wpcf7-acceptance .wpcf7-list-item input[type=checkbox] {
      margin: 0 !important;
      width: 0 !important;
      opacity: 0 !important;
      overflow: hidden !important;
      position: absolute; }
    .contact form .wpcf7-acceptance .wpcf7-list-item input[type=checkbox] + label:hover,
    .contact form .wpcf7-acceptance .wpcf7-list-item input[type=checkbox] + span:hover {
      cursor: pointer; }
    .contact form .wpcf7-acceptance .wpcf7-list-item input[type=checkbox] + label:before,
    .contact form .wpcf7-acceptance .wpcf7-list-item input[type=checkbox] + span:before {
      width: 16px;
      height: 16px;
      display: block;
      background: transparent;
      border: 2px solid #787878;
      margin-right: 8px;
      margin-top: 3px;
      position: absolute;
      left: 0;
      top: 0;
      border-radius: 2px; }
    .contact form .wpcf7-acceptance .wpcf7-list-item input[type=checkbox]:checked + label:before,
    .contact form .wpcf7-acceptance .wpcf7-list-item input[type=checkbox]:checked + span:before {
      background: url(./../images/checkbox.svg);
      background-size: cover;
      border: none; }
  .contact form .wpcf7-not-valid-tip {
    margin-top: 4px;
    font-size: 11px; }
  .contact form .wpcf7-response-output {
    margin: 0;
    border-radius: 8px;
    font-size: 14px; }

.dzialy {
  padding: 90px 0; }
  .dzialy h2 {
    margin-bottom: 44px; }
  .dzialy .accordion_slide {
    background: #FFFFFF;
    border: 1px solid #DCDADA;
    border-radius: 8px;
    margin-bottom: 20px; }
  .dzialy .accordion_content {
    padding: 8px 32px; }
    .dzialy .accordion_content a {
      color: #30393F; }
  .dzialy .accordion_header {
    margin-bottom: 0; }
    .dzialy .accordion_header button {
      border: none;
      background-color: transparent;
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      padding: 16px 32px;
      font-weight: 500;
      font-size: 18px;
      line-height: 27px; }
    .dzialy .accordion_header.current svg {
      transform: rotate(180deg); }

.offer-page .offer__item svg path {
  fill: none;
  stroke: #1C1C39; }

.offer-page .offer__item:hover svg path {
  stroke: #EC6429;
  fill: none; }

.online-shops .offer__item svg path {
  fill: #1C1C39;
  stroke: none; }

.online-shops .offer__item:hover svg path {
  fill: #EC6429;
  stroke: none; }

.catalog {
  padding: 40px 0 90px; }
  .catalog .catalog-image {
    display: flex;
    align-items: center;
    justify-content: center; }
  .catalog__dzialy {
    padding-top: 90px; }
    .catalog__dzialy ol {
      margin: 0;
      padding: 0;
      list-style: none;
      counter-reset: item; }
      .catalog__dzialy ol li {
        margin-bottom: 32px;
        counter-increment: item;
        position: relative;
        padding-left: 74px;
        font-weight: 300;
        font-size: 16px;
        line-height: 24px; }
        .catalog__dzialy ol li strong {
          font-weight: 500; }
        .catalog__dzialy ol li::before {
          content: counter(item);
          position: absolute;
          left: 0;
          top: 0;
          font-weight: bold;
          font-size: 41px;
          line-height: 44px;
          color: #EC6429;
          width: 50px;
          text-align: right; }
  .catalog h3 {
    font-weight: 500;
    font-size: 18px;
    line-height: 27px; }

.niszczenie__content {
  padding: 30px 0; }
  .niszczenie__content__item {
    margin-top: 55px; }
    .niszczenie__content__item a {
      color: #30393F;
      position: relative;
      padding-left: 26px; }
      .niszczenie__content__item a::before {
        background: url(./../images/mail-secondary.svg);
        content: '';
        position: absolute;
        left: 0;
        top: 2px;
        width: 20px;
        height: 20px; }

.bns-page {
  padding: 40px 0 90px; }
  .bns-page .bns-logo {
    margin: 12px 0 50px; }
  .bns-page__box {
    background: #F1F1F1;
    border-radius: 16px;
    padding: 25px 9%;
    margin: 20px 0 60px; }
    .bns-page__box p {
      text-align: center;
      font-weight: 500;
      font-size: 22px;
      line-height: 33px;
      margin: 0; }
  .bns-page__content h3 {
    margin: 75px 0 50px; }
  .bns-page__products p strong {
    color: #EC6429;
    font-weight: 500; }

.search-results {
  padding-top: 160px; }
  .search-results .page-title {
    margin-bottom: 32px; }
    .search-results .page-title span {
      color: #EC6429;
      font-weight: bold; }
  .search-results main {
    min-height: calc(100vh - 384px); }
  .search-results h2 {
    font-size: 26px;
    line-height: 40px;
    margin-bottom: 16px;
    font-weight: 500; }
    .search-results h2 a {
      color: #30393F;
      transition: .3s; }
      .search-results h2 a:hover {
        color: #EC6429;
        transition: .3s; }
  .search-results .entry-summary {
    margin-top: 16px; }
  .search-results article {
    padding: 0 0 20px; }

.no-results {
  padding-top: 160px;
  min-height: calc(100vh - 384px); }
  .no-results .searchbtn {
    position: relative; }
    .no-results .searchbtn input {
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      width: 100%;
      height: 100%;
      background: transparent;
      border: none;
      padding: 0; }
    .no-results .searchbtn svg path {
      stroke: #1C1C39; }
  .no-results .close {
    display: none; }
  .no-results form {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    width: 420px;
    max-width: 100%; }
  .no-results .search-field {
    background-color: transparent;
    border: none;
    border-bottom: 2px solid #EAEBF2;
    padding: 12px;
    font-weight: 300;
    font-size: 16px;
    line-height: 19px;
    color: #30393F;
    width: 100%;
    transition: border-bottom-color .3s;
    border-radius: 0; }
    .no-results .search-field:focus {
      outline: none;
      border-color: #1C1C39;
      transition: border-bottom-color .3s; }
    .no-results .search-field::placeholder {
      color: #C4C4C4; }

.search-no-results .main-navigation li a, .search-results .main-navigation li a {
  color: #30393F;
  transition: .3s; }

.search-no-results .main-navigation li:last-of-type a, .search-results .main-navigation li:last-of-type a {
  color: #EC6429; }
  .search-no-results .main-navigation li:last-of-type a:hover, .search-results .main-navigation li:last-of-type a:hover {
    color: #FFFFFF; }

.search-no-results .site-branding svg path, .search-results .site-branding svg path {
  fill: #1C1C39;
  transition: .3s; }

.search-no-results .search-form svg path, .search-results .search-form svg path {
  stroke: #1C1C39; }

.search-no-results .search-bar svg path, .search-results .search-bar svg path {
  stroke: #1C1C39; }

.shop-page {
  padding: 30px 0 60px; }
  .shop-page__content {
    padding-top: 30px; }
    .shop-page__content li {
      font-weight: 300;
      font-size: 16px;
      line-height: 24px; }
    .shop-page__content a {
      padding: 10px 32px;
      border-radius: 30px;
      font-size: 16px;
      line-height: 24px;
      transition: .3s;
      will-change: transform;
      border: 1px solid #1C1C39;
      background-color: #1C1C39;
      color: #FFFFFF; }
      .shop-page__content a:visited, .shop-page__content a:hover {
        color: #FFFFFF; }
      .shop-page__content a:hover {
        transform: translateY(-3px);
        transition: .3s;
        box-shadow: 0px 9px 26px -9px rgba(0, 0, 0, 0.25); }

.b2b-page {
  padding: 30px 0 70px; }
  .b2b-page__content2, .b2b-page__content4 {
    margin-top: 50px;
    margin-bottom: 50px; }
  .b2b-page__content5 h5 a {
    color: #EC6429; }

.content-container {
  padding: 50px 0 70px; }
  .content-container ol, .content-container ul {
    margin-left: 0; }
    .content-container ol li, .content-container ul li {
      font-weight: 300;
      font-size: 16px;
      line-height: 24px; }
  .content-container a {
    color: #30393F; }
    .content-container a:visited {
      color: #30393F; }

@media screen and (max-height: 800px) {
  .hero {
    height: 700px; } }

@media screen and (max-width: 991px) {
  .menu-toggle {
    display: block;
    border: none;
    background: transparent; }
  .menu-wrapper .toggle-menu {
    flex-direction: column; }
  .main-navigation ul {
    display: flex;
    flex-direction: column; }
    .main-navigation ul li {
      margin-right: 0; }
  .main-navigation .menu-menu-1-container {
    width: 100%; }
  .main-navigation .menu-toggle span {
    display: block;
    width: 30px;
    height: 3px;
    background: #EC6429;
    transition: .3s; }
    .main-navigation .menu-toggle span:nth-of-type(2) {
      margin: 5px 0; }
  .main-navigation.toggled .menu-toggle span {
    transition: .3s; }
    .main-navigation.toggled .menu-toggle span:nth-of-type(2) {
      opacity: 0; }
    .main-navigation.toggled .menu-toggle span:nth-of-type(1) {
      transform: translateY(7px) rotate(45deg); }
    .main-navigation.toggled .menu-toggle span:nth-of-type(3) {
      transform: translateY(-9px) rotate(-45deg); }
  .toggle-menu {
    opacity: 0;
    position: absolute;
    left: 0;
    top: 100px;
    width: 100%;
    background-color: #FFFFFF;
    transition: .3s;
    box-shadow: 0px 14px 29px -9px rgba(0, 0, 0, 0.11);
    visibility: hidden; }
    .toggle-menu.toggled {
      opacity: 1;
      transition: .3s;
      visibility: visible; }
      .toggle-menu.toggled .search-form {
        visibility: visible; }
  .site-header.scrolled .toggle-menu {
    top: 80px;
    transition: .3s; }
  .site-header .main-navigation li a {
    color: #30393F;
    padding: 10px;
    font-size: 16px;
    text-align: center;
    margin: 0; }
    .site-header .main-navigation li a::before {
      content: none; }
    .site-header .main-navigation li a:hover {
      color: #EC6429; }
  .site-header .main-navigation li:last-of-type {
    margin-top: 12px; }
  .site-header .toggle-menu {
    padding: 12px 0; }
  .search-bar {
    display: none; }
  .search-form {
    position: static;
    z-index: 2;
    transform: unset;
    opacity: 1;
    width: 90%;
    margin: 30px auto 0; }
  h1 {
    font-size: 32px;
    line-height: 50px; }
  h2 {
    font-size: 26px;
    line-height: 44px; }
  .btn-section {
    flex-direction: column; }
    .btn-section a:nth-of-type(2) {
      margin: 16px 0 0 0; }
  .hero__content__title, .hero__content__text {
    margin-bottom: 22px; }
  .offer {
    padding: 20px 0 30px; }
    .offer h2 {
      margin-bottom: 0; }
    .offer .col-12 {
      margin-bottom: 24px; }
    .offer__item {
      padding: 20px; }
      .offer__item svg {
        width: 40px;
        height: 40px; }
  .bns {
    padding: 30px 0 40px; }
  .b2b-platform {
    padding: 20px 0 40px; }
    .b2b-platform__screen2 {
      width: 34%;
      top: 108px; }
    .b2b-platform__image-section {
      margin-top: 48px; }
  .bz24-shop {
    padding: 30px 0; }
    .bz24-shop__image-section {
      margin-bottom: 20px; }
      .bz24-shop__image-section .dots {
        display: none; }
  .sz-shop {
    padding: 30px 0; }
    .sz-shop img {
      margin-top: 20px; }
  .niszczenie {
    padding: 30px 0; }
  .team, .certificates {
    padding: 30px 0; }
  .team__img {
    padding-top: 0; }
  .about-firm-section-1 h2 {
    font-size: 22px;
    line-height: 34px; }
  .dzialy {
    padding: 30px 0; } }

@media screen and (max-width: 767px) {
  .hero-page {
    height: 300px; }
    .hero-page__content__title {
      margin-bottom: 0; }
  .bns {
    padding: 30px 0 20px; }
    .bns__content {
      margin-bottom: 40px; }
    .bns .screens .bns__screen2 {
      width: 40%; }
  .bns-page {
    padding: 30px 0 40px; }
    .bns-page__content h3 {
      font-size: 16px;
      line-height: 26px;
      margin: 30px 0 20px; }
    .bns-page__box {
      padding: 16px;
      margin: 0 0 30px; }
      .bns-page__box p {
        font-size: 16px;
        line-height: 26px; }
  .oferta-template-offer-bns h1 {
    font-size: 24px;
    line-height: 38px; }
  .site-footer__logo {
    margin-bottom: 16px; }
    .site-footer__logo span {
      margin-top: 10px; }
    .site-footer__logo svg {
      width: 90px; }
  .site-footer__social-media {
    margin-bottom: 16px; }
  .site-footer__title {
    font-size: 18px;
    line-height: 24px;
    margin: 22px 0 12px; }
  .niszczenie__content {
    padding: 0; }
    .niszczenie__content__item {
      margin-top: 26px; }
  .niszczenie__img img {
    display: block;
    margin: 0 auto; }
  .niszczenie .wave-img {
    display: none; }
  .about-firm-section-1 {
    padding: 30px 0; }
    .about-firm-section-1__content {
      padding-bottom: 32px; }
    .about-firm-section-1__img {
      height: 200px;
      object-fit: cover; }
  .about-firm-section-2 {
    padding: 30px 0; }
    .about-firm-section-2 p {
      font-size: 18px;
      line-height: 30px; }
    .about-firm-section-2 .counter {
      flex-direction: column;
      padding-top: 10px; }
    .about-firm-section-2 .count__number {
      font-size: 32px;
      line-height: 44px; }
    .about-firm-section-2 .count__label p {
      font-size: 16px; }
  .contact h2 {
    margin-bottom: 32px; }
  .dzialy h2 {
    margin-bottom: 28px; }
  .dzialy .accordion_header button {
    font-size: 16px;
    padding: 12px 18px; }
  .dzialy .accordion_header span {
    text-align: left; }
    .dzialy .accordion_header span svg {
      margin-left: 12px; }
  .dzialy .accordion_content {
    padding: 8px 18px; }
    .dzialy .accordion_content p {
      font-size: 14px; }
  .site-footer__top {
    padding-top: 40px; }
  .offer-page h2 {
    font-size: 22px;
    line-height: 36px; }
  .shop-page {
    padding-bottom: 30px; }
    .shop-page__content {
      padding-top: 0; }
  .b2b-page {
    padding-bottom: 30px; }
    .b2b-page h3 {
      font-size: 18px;
      line-height: 30px;
      margin-bottom: 12px; }
    .b2b-page__content2, .b2b-page__content4 {
      margin-top: 20px;
      margin-bottom: 20px; }
    .b2b-page__content5 h5 {
      font-size: 16px;
      line-height: 22px; }
  .no-results, .search-results {
    padding-top: 100px; }
  .search-results .page-title {
    margin-bottom: 16px; }
  .search-results article {
    padding-bottom: 10px; }
  .search-results h2 {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 12px; }
  .content-container {
    padding: 40px 0 30px; } }

@media screen and (max-width: 590px) {
  .site-header {
    padding-top: 20px; }
    .site-header .site-branding svg {
      width: 100px; }
  .toggle-menu {
    top: 80px; }
  .catalog {
    padding: 40px 0 30px; }
    .catalog h3 {
      font-size: 16px; }
    .catalog__dzialy {
      padding-top: 40px; }
      .catalog__dzialy ol li {
        padding-left: 50px; }
        .catalog__dzialy ol li::before {
          width: 35px;
          font-size: 30px;
          line-height: 26px; } }

@media screen and (max-width: 420px) {
  .certificates .swiper img {
    display: block;
    margin: 0 auto; } }
