/*============================
=            grey            =
============================*/
/*=====  End of grey  ======*/
/*============================
=            blue            =
============================*/
/*=====  End of blue  ======*/
/*=============================
=            green            =
=============================*/
/*=====  End of green  ======*/
/*==============================
=            Button            =
==============================*/
.d_btn {
  width: 220px;
  height: 40px;
  text-align: center;
  background-color: #ebebeb;
  border: 1px solid #ebebeb;
  display: inline-block;
  max-width: 100%;
  color: #1e273d;
  border-radius: 20px;
  position: relative;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out 0s;
  font-size: 0.75rem;
  font-weight: 600;
}
body.yellow:not(.reader-mode) .d_btn {
  color: var(--black);
  background-color: var(--yellow);
}
.d_btn.btn_50 {
  height: 50px;
  border-radius: 25px;
  font-size: 0.8125rem;
  font-weight: 700;
  border-width: 2px;
}
.d_btn.dark {
  background-color: #1e273d;
  border-color: #1e273d;
  color: #fdf8e8;
}
body.yellow:not(.reader-mode) .d_btn.dark {
  background-color: var(--black);
  color: var(--yellow);
  border-color: var(--yellow);
}
.d_btn.dark_green {
  background-color: #06832F;
  border-color: #06832F;
  color: #fdf8e8;
}
body.yellow:not(.reader-mode) .d_btn.dark_green {
  background-color: var(--black);
  color: var(--yellow);
  border-color: var(--yellow);
}
.d_btn.green {
  background-color: #8ECC09;
  border-color: #8ECC09;
  color: #fdf8e8;
}
body.yellow:not(.reader-mode) .d_btn.green {
  background-color: var(--black);
  color: var(--yellow);
  border-color: var(--yellow);
}
.d_btn span {
  display: inline-block;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
.d_btn .arrow {
  position: absolute;
  width: 12px;
  left: calc(100% + 20px);
  top: 0;
  bottom: 0;
  margin: auto;
}
.d_btn.border {
  background-color: transparent;
  border-color: #fdf8e8;
  color: #8ECC09;
  font-size: 0.8125rem;
  font-weight: 600;
}
@media screen and (min-width: 1025px) {
  .d_btn.border:hover {
    background-color: #fdf8e8;
  }
}
@media screen and (min-width: 1025px) {
  .d_btn:hover.dark {
    background-color: transparent;
    color: #1e273d;
  }
  body.yellow:not(.reader-mode) .d_btn:hover.dark {
    background-color: var(--black);
    color: var(--yellow);
    border-color: var(--yellow);
  }
  .d_btn:hover.green {
    background-color: transparent;
  }
  body.yellow:not(.reader-mode) .d_btn:hover.green {
    background-color: var(--black);
    color: var(--yellow);
    border-color: var(--yellow);
  }
  .d_btn:hover.dark_green {
    background-color: transparent;
    color: #06832F;
  }
  body.yellow:not(.reader-mode) .d_btn:hover.dark_green {
    background-color: var(--black);
    color: var(--yellow);
    border-color: var(--yellow);
  }
  body.yellow:not(.reader-mode) .d_btn:hover {
    background-color: var(--black);
    color: var(--yellow);
    border-color: var(--yellow);
  }
}
body.yellow:not(.reader-mode) .d_btn svg polygon,
body.yellow:not(.reader-mode) .d_btn svg path {
  fill: var(--black);
}

/*=====  End of Button  ======*/
/*===================================
=            Text format            =
===================================*/
.title_2line {
  font-size: 3rem;
  line-height: 1.0208333333;
  font-family: "saira_extra_condensed", Helvetica, Arial, sans-serif;
  color: #1e273d;
}
.title_2line span {
  display: block;
}
.title_2line .t1 {
  font-weight: 400;
}
body.yellow:not(.reader-mode) .title_2line .t1 {
  color: var(--yellow);
}
.title_2line .t2 {
  font-weight: 700;
  padding-left: 73px;
}
body.yellow:not(.reader-mode) .title_2line .t2 {
  color: var(--yellow);
}
.title_2line.center {
  text-align: center;
}
.title_2line.center .t2 {
  padding-left: 0;
}
.title_2line.add_line {
  overflow: hidden;
}
.title_2line.add_line .t1 {
  display: inline-block;
  padding-right: 38px;
  position: relative;
}
.title_2line.add_line .t1::after {
  content: "";
  width: 100vw;
  height: 1px;
  position: absolute;
  left: 100%;
  top: 50%;
  background-color: #EBEBEB;
}
body.yellow:not(.reader-mode) .title_2line.add_line .t1::after {
  background-color: var(--yellow);
}
.title_2line.add_line.center .t1 {
  min-width: 420px;
  padding-left: 38px;
}
.title_2line.add_line.center .t1::before {
  content: "";
  width: 100vw;
  height: 1px;
  position: absolute;
  right: 100%;
  top: 50%;
  background-color: #EBEBEB;
}
body.yellow:not(.reader-mode) .title_2line.add_line.center .t1::before {
  background-color: var(--yellow);
}

.text_format {
  color: #434343;
  font-weight: 300;
}
body.yellow:not(.reader-mode) .text_format {
  color: var(--yellow);
}
.text_format strong {
  font-weight: 400;
}
.text_format h1,
.text_format h2,
.text_format h3,
.text_format h4,
.text_format h5,
.text_format h6 {
  color: #1e273d;
  font-weight: 700;
  margin: 1em 0;
}
body.yellow:not(.reader-mode) .text_format h1,
body.yellow:not(.reader-mode) .text_format h2,
body.yellow:not(.reader-mode) .text_format h3,
body.yellow:not(.reader-mode) .text_format h4,
body.yellow:not(.reader-mode) .text_format h5,
body.yellow:not(.reader-mode) .text_format h6 {
  color: var(--yellow) !important;
}
.text_format h1 {
  font-size: 2.5rem;
  font-family: "saira_extra_condensed", Helvetica, Arial, sans-serif;
}
.text_format h2 {
  margin-bottom: 15px;
  font-size: 1.875rem;
  font-family: "saira_extra_condensed", Helvetica, Arial, sans-serif;
}
.text_format h3 {
  font-size: 1.25rem;
  font-family: "saira_extra_condensed", Helvetica, Arial, sans-serif;
}
.text_format h4 {
  font-size: 1.125rem;
}
.text_format ul {
  padding-left: 0;
  list-style: none;
  line-height: 2;
}
.text_format ul li {
  padding-left: 12px;
  position: relative;
}
.text_format ul li::before {
  content: "";
  width: 6px;
  height: 1px;
  left: 0;
  top: 15px;
  position: absolute;
  background-color: #8ECC09;
}
body.yellow:not(.reader-mode) .text_format ul li::before {
  background-color: var(--yellow);
}
.text_format img {
  max-width: 100%;
  margin: 15px 0;
  height: auto;
}
.text_format.ul_50 ul li {
  display: inline-block;
  width: calc(50% - 5px);
  vertical-align: top;
  padding-right: 10px;
}
.text_format a {
  font-weight: 500;
  color: #06832F;
  transition: 0.3s;
}
@media screen and (min-width: 1025px) {
  .text_format a:hover {
    color: #8ECC09;
  }
  body.yellow:not(.reader-mode) .text_format a:hover {
    color: var(--yellow);
  }
}
.text_format em > del {
  font-size: 1.125rem;
  color: #87c808;
  font-weight: 500;
  text-decoration: none;
  font-style: normal;
}
body.yellow:not(.reader-mode) .text_format em > del {
  color: var(--yellow);
}
.text_format span > em > del {
  color: inherit;
}

@media screen and (max-width: 1024px) {
  .title_2line {
    font-size: 2.25rem;
  }
  .title_2line .t2 {
    padding-left: 63px;
  }
  .title_2line.add_line .t1 {
    padding-right: 28px;
  }
  .title_2line.add_line.center .t1 {
    min-width: 150px;
    padding-left: 28px;
  }
  .text_format {
    font-size: 0.875rem;
  }
  .text_format h1 {
    font-size: 1.375rem;
  }
  .text_format h2 {
    font-size: 1.25rem;
  }
  .text_format h3 {
    font-size: 1.125rem;
  }
  .text_format h4 {
    font-size: 1rem;
  }
  .text_format ul {
    line-height: 1.2;
  }
  .text_format ul li {
    padding: 4px 0 4px 12px;
  }
  .text_format ul li::before {
    top: 12px;
  }
}
@media screen and (max-width: 767px) {
  .title_2line {
    font-size: 1.625rem;
  }
  .title_2line .t2 {
    padding-left: 45px;
  }
  .title_2line.add_line .t1 {
    padding-right: 20px;
  }
  .title_2line.add_line.center .t1 {
    min-width: 0;
    padding-left: 20px;
  }
  .text_format h1 {
    font-size: 1.1875rem;
  }
  .text_format h2 {
    font-size: 1.0625rem;
  }
  .text_format h3 {
    font-size: 1rem;
  }
  .text_format h4 {
    font-size: 0.9375rem;
  }
  .text_format.ul_50 ul li {
    width: 100%;
    padding-right: 0;
  }
}
/*=====  End of Text format  ======*/
/*======================================
=            Section oferta            =
======================================*/
.section_of {
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -moz-flex;
  display: flex;
  position: relative;
}

.section_of_el {
  width: 50%;
  height: 150px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.section_of_el .content {
  padding: 0 100px;
  height: 100%;
  color: #fff;
  position: relative;
  z-index: 3;
  transition: all 0.3s ease-in-out 0s;
}
body.yellow:not(.reader-mode) .section_of_el .content {
  color: var(--yellow);
}
.section_of_el .title {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
.section_of_el .title .t1 {
  font-size: 2.5rem;
  line-height: 1;
  transition: all 0.3s ease-in-out 0.3s;
  opacity: 1;
  transform: translateY(0px);
}
.section_of_el .title .t2 {
  font-size: 3.125rem;
  font-weight: 700;
  line-height: 0.92;
  transition: all 0.3s ease-in-out 0.2s;
  opacity: 1;
  transform: translateY(0px);
}
.section_of_el .link_wrap {
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -moz-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  box-lines: multiple;
  flex-wrap: wrap;
  width: calc(100% - 80px);
  left: 80px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
body.yellow:not(.reader-mode) .section_of_el .link_wrap a {
  color: var(--yellow);
}
.section_of_el .link {
  text-align: center;
  width: 90px;
  height: 90px;
  font-size: 0.6875rem;
  font-weight: 400;
  text-transform: uppercase;
  margin: 4px;
  position: relative;
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.3s ease-in-out 0s;
}
.section_of_el .link::before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
  background-color: #1e273d;
  transition: opacity 0.4s ease-in-out 0s;
  opacity: 0;
  top: 0;
  left: 0;
  z-index: -1;
}
body.yellow:not(.reader-mode) .section_of_el .link::before {
  border: 1px solid var(--yellow);
}
body.yellow:not(.reader-mode) .section_of_el .link::before {
  background-color: var(--black);
}
.section_of_el .link a {
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -moz-flex;
  display: flex;
  box-pack: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  box-align: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -ms-flex-align: center;
  box-orient: vertical;
  box-direction: normal;
  -moz-flex-direction: column;
  flex-direction: column;
  height: 100%;
  padding-bottom: 5px;
}
.section_of_el .link svg,
.section_of_el .link img {
  width: 33px;
  height: 33px;
  fill: #fff;
}
body.yellow:not(.reader-mode) .section_of_el .link svg,
body.yellow:not(.reader-mode) .section_of_el .link img {
  fill: var(--yellow);
}
@media screen and (min-width: 1025px) {
  .section_of_el .link:hover::before {
    opacity: 1;
  }
}
.section_of_el .arrow_lg {
  width: 12px;
  height: 5px;
  position: absolute;
  right: -12px;
  top: 0;
  bottom: 0;
  margin: auto;
  opacity: 1;
  transition: all 0.3s ease-in-out 0s;
}
.section_of_el .arrow_lg svg polygon {
  fill: var(--yellow);
}
.section_of_el.right .link::before {
  background-color: #3ba020;
}
@media screen and (min-width: 1025px) {
  .section_of_el:hover .title .t1 {
    transition: all 0.3s ease-in-out 0s;
    opacity: 0;
    transform: translateY(-15px);
  }
  .section_of_el:hover .title .t2 {
    transition: all 0.3s ease-in-out 0.1s;
    opacity: 0;
    transform: translateY(-15px);
  }
  .section_of_el:hover .arrow_lg {
    opacity: 0;
  }
  .section_of_el:hover .link {
    opacity: 1;
    transform: translateY(0px);
  }
  .section_of_el:hover .link:nth-child(1) {
    transition: all 0.3s ease-in-out 0.2s;
  }
  .section_of_el:hover .link:nth-child(2) {
    transition: all 0.3s ease-in-out 0.3s;
  }
  .section_of_el:hover .link:nth-child(3) {
    transition: all 0.3s ease-in-out 0.4s;
  }
  .section_of_el:hover .link:nth-child(4) {
    transition: all 0.3s ease-in-out 0.5s;
  }
  .section_of_el:hover .link:nth-child(5) {
    transition: all 0.3s ease-in-out 0.6s;
  }
  .section_of_el:hover .link:nth-child(6) {
    transition: all 0.3s ease-in-out 0.7s;
  }
  .section_of_el:hover .link:nth-child(7) {
    transition: all 0.3s ease-in-out 0.8s;
  }
  .section_of_el:hover .link:nth-child(8) {
    transition: all 0.3s ease-in-out 0.9s;
  }
  .section_of_el:hover .link:nth-child(9) {
    transition: all 0.3s ease-in-out 1s;
  }
  .section_of_el:hover .link:nth-child(10) {
    transition: all 0.3s ease-in-out 1.1s;
  }
}
.section_of_el .slick-list {
  padding: 30px 0;
}
body.yellow:not(.reader-mode) .section_of_el {
  background: var(--black) !important;
  color: var(--yellow);
}
body.yellow:not(.reader-mode) .section_of_el svg polygon {
  fill: var(--yellow);
}

@media screen and (max-width: 1800px) {
  .section_of_el .link_wrap {
    width: calc(100% - 60px);
    left: 60px;
  }
}
@media screen and (max-width: 1600px) {
  .section_of_el .content {
    padding: 0 50px;
  }
  .section_of_el .link_wrap {
    width: calc(100% - 15px);
    left: 15px;
  }
}
@media screen and (max-width: 1199px) {
  .section_of_el .content {
    padding: 0 30px;
  }
  .section_of {
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    box-lines: multiple;
    flex-wrap: wrap;
  }
  .section_of_el {
    width: 100%;
  }
  .section_of_el .link_wrap {
    width: calc(100% - 30px);
    left: 30px;
  }
}
@media screen and (max-width: 1024px) {
  .section_of_el {
    height: 130px;
  }
  .section_of_el .content {
    padding: 0 50px;
  }
  .section_of_el .title {
    position: relative;
  }
  .section_of_el .title .t1 {
    font-size: 2.25rem;
  }
  .section_of_el .d_btn {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    font-family: libre_franklin, Helvetica, Arial, sans-serif;
    width: 140px;
    height: 30px;
    font-size: 0.625rem;
    background-color: transparent;
    border-color: #fff;
    color: #fff;
    cursor: pointer;
  }
  body.yellow:not(.reader-mode) .section_of_el .d_btn {
    color: var(--yellow);
    border-color: var(--yellow);
  }
  .section_of_el .link_wrap {
    pointer-events: none;
    width: calc(100% - 50px);
    left: 50px;
  }
  .section_of_el .link {
    font-size: 0.8125rem;
    width: 102px;
    height: 102px;
    margin: 2px;
  }
  .section_of_el .link::before {
    opacity: 1;
    background-color: rgba(30, 39, 61, 0.15);
    border: 1px solid rgba(30, 39, 61, 0.25);
  }
  .section_of_el .link svg {
    width: 35px;
    height: 35px;
  }
  .section_of_el.right .link::before {
    background-color: rgba(59, 160, 32, 0.15);
    border: 1px solid rgba(59, 160, 32, 0.25);
  }
  .section_of_el.show_el .title .t1 {
    transition: all 0.3s ease-in-out 0s;
    opacity: 0;
    transform: translateY(-15px);
  }
  .section_of_el.show_el .title .t2 {
    transition: all 0.3s ease-in-out 0.1s;
    opacity: 0;
    transform: translateY(-15px);
  }
  .section_of_el.show_el .d_btn {
    opacity: 0;
    transform: translateY(-15px);
  }
  .section_of_el.show_el .link_wrap {
    pointer-events: auto;
  }
  .section_of_el.show_el .link {
    opacity: 1;
    transform: translateY(0px);
  }
  .section_of_el.show_el .link:nth-child(1) {
    transition: all 0.3s ease-in-out 0.2s;
  }
  .section_of_el.show_el .link:nth-child(2) {
    transition: all 0.3s ease-in-out 0.3s;
  }
  .section_of_el.show_el .link:nth-child(3) {
    transition: all 0.3s ease-in-out 0.4s;
  }
  .section_of_el.show_el .link:nth-child(4) {
    transition: all 0.3s ease-in-out 0.5s;
  }
  .section_of_el.show_el .link:nth-child(5) {
    transition: all 0.3s ease-in-out 0.6s;
  }
  .section_of_el.show_el .link:nth-child(6) {
    transition: all 0.3s ease-in-out 0.7s;
  }
  .section_of_el.show_el .link:nth-child(7) {
    transition: all 0.3s ease-in-out 0.8s;
  }
  .section_of_el.show_el .link:nth-child(8) {
    transition: all 0.3s ease-in-out 0.9s;
  }
  .section_of_el.show_el .link:nth-child(9) {
    transition: all 0.3s ease-in-out 1s;
  }
  .section_of_el.show_el .link:nth-child(10) {
    transition: all 0.3s ease-in-out 1.1s;
  }
}
@media screen and (max-width: 767px) {
  .section_of_el {
    height: 100px;
  }
  .section_of_el .content {
    padding: 0 20px;
  }
  .section_of_el .title {
    position: relative;
  }
  .section_of_el .title .t1 {
    font-size: 1.625rem;
  }
  .section_of_el .title .t2 {
    font-size: 2.25rem;
  }
  .section_of_el .d_btn {
    width: 110px;
    padding-right: 28px;
  }
  .section_of_el .link_wrap {
    width: calc(100% - 20px);
    left: 20px;
  }
  .section_of_el .link {
    width: 80px;
    height: 80px;
    font-size: 0.625rem;
    margin: 4px;
  }
  .section_of_el .link::before {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    transform: translate(0);
  }
  .section_of_el .link svg {
    width: 29px;
    height: 29px;
  }
}
/*=====  End of Section oferta  ======*/
/*=============================
=            Pliki            =
=============================*/
.pliki_page .banner_small_text .bg {
  background-color: #06832F;
}
.pliki_page .news_top .desc {
  width: 900px;
  max-width: 100%;
}
body.yellow:not(.reader-mode) .pliki_page .news_top {
  background-color: var(--black);
  color: var(--yellow);
}

.pliki_page_block {
  float: right;
  width: 50%;
  height: 150px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -moz-flex;
  display: flex;
  box-align: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -ms-flex-align: center;
  box-pack: justify;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: justify;
  padding: 15px 5%;
  margin-top: 15px;
}
.pliki_page_block.v2 {
  display: none;
}
.pliki_page_block .title {
  font-size: 2.1875rem;
  line-height: 1.0285714286;
  color: #fff;
}
.pliki_page_block .t1 {
  font-weight: 300;
}
.pliki_page_block .t2 {
  font-weight: 500;
}

@media screen and (max-width: 1800px) {
  .pliki_page_block {
    padding: 15px 3%;
  }
}
@media screen and (max-width: 1400px) {
  .pliki_page_block {
    width: 100%;
    padding: 15px 5%;
    margin-top: 30px;
  }
  .pliki_page_block.v1 {
    display: none;
  }
  .pliki_page_block.v2 {
    display: -webkit-box;
    display: -moz-box;
    display: box;
    display: -moz-flex;
    display: flex;
  }
}
@media screen and (max-width: 1024px) {
  .pliki_page_block .d_btn {
    width: 220px;
  }
  .pliki_page_block .d_btn.btn_50 {
    height: 40px;
  }
}
@media screen and (max-width: 767px) {
  .pliki_page .banner_small_text {
    width: 190px;
  }
  .pliki_page_block {
    width: calc(100% + 40px);
    margin-left: -20px;
    padding: 15px 20px;
    height: 100px;
    float: left;
  }
  .pliki_page_block .title {
    font-size: 1.25rem;
    line-height: 31px;
    color: #fff;
  }
  .pliki_page_block .t1 {
    font-weight: 400;
  }
  .pliki_page_block .t2 {
    font-size: 1.5rem;
  }
  .pliki_page_block .d_btn {
    width: 110px;
    font-size: 0.625rem;
  }
  .pliki_page_block .d_btn.btn_50 {
    height: 30px;
  }
}
/*=====  End of Pliki  ======*/
/*=================================
=            Animation            =
=================================*/
.menu_anim {
  opacity: 0;
  transform: translateX(-100%);
  transition: all 0.6s ease-in-out 0s;
}
.menu_anim.start_anim {
  opacity: 1;
  transform: translateX(0px);
}

.element_anim,
.element_anim_1 {
  opacity: 0;
  transform: translateY(35px);
  transition: all 0.4s ease-in-out 0s;
}
.element_anim.start_anim,
.element_anim_1.start_anim {
  opacity: 1;
  transform: translateY(0px);
}

.element_anim_2 {
  opacity: 0;
  transform: translateY(35px);
  transition: all 0.4s ease-in-out 0.1s;
}
.element_anim_2.start_anim {
  opacity: 1;
  transform: translateY(0px);
}

.element_anim_3 {
  opacity: 0;
  transform: translateY(35px);
  transition: all 0.4s ease-in-out 0.2s;
}
.element_anim_3.start_anim {
  opacity: 1;
  transform: translateY(0px);
}

.element_anim_4 {
  opacity: 0;
  transform: translateY(35px);
  transition: all 0.4s ease-in-out 0.3s;
}
.element_anim_4.start_anim {
  opacity: 1;
  transform: translateY(0px);
}

.element_anim_5 {
  opacity: 0;
  transform: translateY(35px);
  transition: all 0.4s ease-in-out 0.4s;
}
.element_anim_5.start_anim {
  opacity: 1;
  transform: translateY(0px);
}

.fade_anim_1 {
  opacity: 0;
  transition: all 0.4s ease-in-out 0s;
}
.fade_anim_1.start_anim {
  opacity: 1;
}

.fade_anim_2 {
  opacity: 0;
  transition: all 0.4s ease-in-out 0.1s;
}
.fade_anim_2.start_anim {
  opacity: 1;
}

.fade_anim_3 {
  opacity: 0;
  transition: all 0.4s ease-in-out 0.2s;
}
.fade_anim_3.start_anim {
  opacity: 1;
}

@media screen and (max-width: 1024px) {
  .menu_anim {
    transform: translateY(-100%);
  }
  .menu_anim.start_anim {
    transform: translateY(0px);
  }
}
/*=====  End of Animation  ======*//*# sourceMappingURL=page.css.map */