/*============================
=            grey            =
============================*/
/*=====  End of grey  ======*/
/*============================
=            blue            =
============================*/
/*=====  End of blue  ======*/
/*=============================
=            green            =
=============================*/
/*=====  End of green  ======*/
/*=====================================
=            Banner slider            =
=====================================*/
.banner_slider {
  position: relative;
}

.banner_slider_progres {
  position: absolute;
  left: 0;
  top: 0;
  height: 3px;
  background-color: #8ECC09;
  width: 0%;
  z-index: 5;
}
.banner_slider_progres.go {
  animation: progres_bar 8s linear infinite;
}
@keyframes progres_bar {
  0% {
    width: 0;
  }
  80% {
    width: 100%;
  }
  100% {
    width: 100%;
  }
}
.banner_slider_single {
  height: 700px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 140px;
}
.banner_slider_single .title1 {
  font-size: 3.5rem;
  line-height: 1;
  color: #8ECC09;
  font-weight: 900;
}
body.yellow:not(.reader-mode) .banner_slider_single .title1 {
  color: var(--yellow);
  background-color: var(--black);
  padding: 15px;
}
.banner_slider_single .title2 {
  font-size: 5rem;
  line-height: 0.9;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  padding-left: 21px;
}
body.yellow:not(.reader-mode) .banner_slider_single .title2 {
  color: var(--yellow);
  background-color: var(--black);
}
.banner_slider_single .title2 span {
  text-transform: lowercase;
}
.banner_slider_single .desc {
  color: #fff;
  font-size: 1.5625rem;
  line-height: 1.32;
  padding: 45px 0 53px;
}
body.yellow:not(.reader-mode) .banner_slider_single .desc {
  color: var(--yellow);
  background-color: var(--black);
}
.banner_slider_single .desc_small {
  color: #fff;
  position: absolute;
  right: 25px;
  bottom: 35px;
  font-size: 0.75rem;
  text-shadow: 0 3px 35px rgba(0, 0, 0, 0.5);
}
.banner_slider_single .d_btn {
  height: 50px;
  border-radius: 25px;
  background-color: #8ECC09;
  border-color: #8ECC09;
  color: #fff;
  cursor: pointer;
}
body.yellow:not(.reader-mode) .banner_slider_single .d_btn {
  background-color: var(--black);
  color: var(--yellow);
  border-color: var(--yellow);
}
@media screen and (min-width: 1025px) {
  .banner_slider_single .d_btn:hover {
    background-color: #fff;
    border-color: #fff;
    color: #8ECC09;
  }
}

.banner_slider_single_text {
  text-shadow: 0 3px 35px rgba(0, 0, 0, 0.5);
}

.banner_slider_dots {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}
.banner_slider_dots .slick-dots {
  list-style: none;
  margin: 0;
  padding-left: 0;
}
.banner_slider_dots .slick-dots li {
  display: inline-block;
}
.banner_slider_dots .slick-dots button {
  background: none;
  border: none;
  color: #fdf8e8;
  font-size: 1rem;
  padding: 10px 7px 16px;
  cursor: pointer;
  position: relative;
  transform: translateY(0px);
  transition: all 0.3s ease-in-out 0s;
}
.banner_slider_dots .slick-dots button::before {
  content: "";
  width: 1px;
  height: 15px;
  background-color: #fdf8e8;
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
.banner_slider_dots .slick-dots .slick-active button {
  transform: translateY(-10px);
}

@media screen and (max-width: 1024px) {
  .banner_slider_single {
    font-size: 3.5rem;
    height: 550px;
  }
  .banner_slider_single .title1 {
    font-size: 2.875rem;
  }
  .banner_slider_single .title2 {
    font-size: 4.375rem;
  }
  .banner_slider_single .desc {
    font-size: 1.25rem;
    padding: 25px 0 41px;
  }
}
@media screen and (max-width: 767px) {
  .banner_slider_single {
    height: 390px;
    padding-top: 0px;
    position: relative;
  }
  .banner_slider_single::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: rgba(30, 39, 61, 0.7);
  }
  .banner_slider_single .container {
    position: relative;
    z-index: 5;
    height: 100%;
  }
  .banner_slider_single .row {
    height: 100%;
  }
  .banner_slider_single .title1 {
    font-size: 2rem;
  }
  .banner_slider_single .title2 {
    font-size: 2.8125rem;
  }
  .banner_slider_single .desc {
    font-size: 1rem;
    padding: 19px 0;
  }
  .banner_slider_single .desc_small {
    font-size: 0.625rem;
  }
  .banner_slider_single .d_btn {
    width: 170px;
    height: 40px;
    display: block;
  }
  .banner_slider_single_text {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    padding-bottom: 30px;
  }
}
/*=====  End of Banner slider  ======*/
/*==================================
=            Breadcrumb            =
==================================*/
.breadcrumb {
  font-size: 0.75rem;
  color: #000;
  padding: 16px 0;
}
.breadcrumb a {
  font-weight: 400;
  vertical-align: middle;
  transition: all 0.3s ease-in-out 0s;
}
@media screen and (min-width: 1025px) {
  .breadcrumb a:hover {
    color: #8ECC09;
  }
  body.yellow:not(.reader-mode) .breadcrumb a:hover {
    color: var(--yellow);
  }
}
.breadcrumb span {
  font-weight: 300;
  vertical-align: middle;
}
body.yellow:not(.reader-mode) .breadcrumb span {
  color: var(--yellow);
}
.breadcrumb img,
.breadcrumb svg {
  width: 18px;
  vertical-align: middle;
  margin: 0 3px 0 8px;
  opacity: 0.3;
}
body.yellow:not(.reader-mode) .breadcrumb img,
body.yellow:not(.reader-mode) .breadcrumb svg {
  opacity: 1;
  fill: var(--yellow);
}
body.yellow:not(.reader-mode) .breadcrumb img .polygon,
body.yellow:not(.reader-mode) .breadcrumb svg .polygon {
  fill: var(--yellow);
}
/*=====  End of Breadcrumb  ======*/
/*=====================================
=            Page top part            =
=====================================*/
.page_top_part {
  position: relative;
  padding-bottom: 65px;
  margin-bottom: -20px;
}
body.yellow:not(.reader-mode) .page_top_part {
  background-color: var(--black);
  color: var(--yellow);
}
.page_top_part .bg {
  background-image: url("../img/klient_top.png");
  background-position: center bottom;
  background-size: 100%;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  height: calc(100% + 180px);
  top: 0px;
  width: 100%;
  z-index: -1;
}
.page_top_part .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;
  padding-top: 83px;
}
.page_top_part .wrap_c1 {
  width: 100%;
}
.page_top_part .wrap_c2 {
  width: 55%;
  padding-top: 18px;
}
.page_top_part.karty .bg {
  background-image: url("../img/klient_top_2.png");
}
body.yellow:not(.reader-mode) .page_top_part {
  background-color: var(--black);
}

@media screen and (max-width: 1024px) {
  .page_top_part {
    padding-bottom: 57px;
  }
  .page_top_part .bg {
    height: calc(100% + 55px);
    background-size: 100% 100%;
  }
  .page_top_part .wrap {
    padding-top: 36px;
  }
  .page_top_part .wrap_c1 {
    width: 100%;
  }
  .page_top_part .wrap_c2 {
    padding-top: 29px;
    font-size: 0.875rem;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .page_top_part .wrap {
    padding-top: 18px;
  }
}
/*=====  End of Page top part  ======*/
/*==============================
=            Oferta            =
==============================*/
.oferta_wrap_dots .slick-list {
  padding: 20px 0 30px !important;
}
body.yellow:not(.reader-mode) .oferta_wrap_dots .slick-list {
  background-color: var(--black);
}
.oferta_wrap_dots .slick-arrow {
  background: none;
  border: none;
  height: calc(100% - 50px);
  position: absolute;
  top: 20px;
  width: 100px;
  z-index: 5;
  cursor: pointer;
}
.oferta_wrap_dots .slick-arrow svg {
  width: 18px;
  height: 7px;
  fill: #8ECC09;
}
body.yellow:not(.reader-mode) .oferta_wrap_dots .slick-arrow svg {
  fill: var(--yellow);
}
.oferta_wrap_dots .slick-prev {
  left: 0;
  background: linear-gradient(90deg, #1e273d 0, rgba(30, 39, 61, 0.6) 75%, rgba(30, 39, 61, 0.1) 100%);
}
.oferta_wrap_dots .slick-prev svg {
  transform: rotate(180deg);
}
body.yellow:not(.reader-mode) .oferta_wrap_dots .slick-prev {
  background: none !important;
}
.oferta_wrap_dots .slick-next {
  background: linear-gradient(-90deg, #1e273d 0, rgba(30, 39, 61, 0.6) 75%, rgba(30, 39, 61, 0.1) 100%);
  right: 0;
}
body.yellow:not(.reader-mode) .oferta_wrap_dots .slick-next {
  background: none !important;
}
.oferta_wrap_dots.karty .slick-arrow {
  display: none !important;
}

.oferta_dots_single {
  width: 270px;
  height: 270px;
  position: relative;
  color: #fff;
  margin-right: 1px;
  overflow: hidden;
  cursor: pointer;
  outline: none;
}
.oferta_dots_single .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(1);
  transition: all 0.3s ease-in-out 0s;
}
body.yellow:not(.reader-mode) .oferta_dots_single .bg {
  border: 1px solid var(--yellow);
}
.oferta_dots_single .bg::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  transition: all 0.3s ease-in-out 0s;
  background-color: #1e273d;
  mix-blend-mode: hard-light;
  opacity: 1;
}
body.yellow:not(.reader-mode) .oferta_dots_single .bg::after {
  opacity: 0;
}
.oferta_dots_single .bg::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 6;
  border: 5px solid #1e273d;
  border-bottom: none;
  opacity: 0;
  transition: all 0.3s ease-in-out 0s;
}
body.yellow:not(.reader-mode) .oferta_dots_single .bg::before {
  border-color: var(--yellow);
}
.oferta_dots_single .border_bot {
  position: absolute;
  left: 0px;
  bottom: -7px;
  width: 100%;
  z-index: 9;
  opacity: 0;
  transition: all 0.3s ease-in-out 0s;
}
body.yellow:not(.reader-mode) .oferta_dots_single .border_bot {
  display: none;
}
.oferta_dots_single .img {
  width: 100%;
  height: 100%;
  filter: grayscale(100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.7;
  transition: all 0.3s ease-in-out 0s;
}
body.yellow:not(.reader-mode) .oferta_dots_single .img {
  background: none !important;
}
.oferta_dots_single .wrap {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  font-size: 2.1875rem;
  line-height: 1;
  font-weight: 400;
  padding: 0 33px;
  text-align: left;
  transition: all 0.3s ease-in-out 0s;
}
body.yellow:not(.reader-mode) .oferta_dots_single .wrap .title {
  color: var(--yellow);
}
.oferta_dots_single svg {
  position: absolute;
  max-width: 70px;
  max-height: 100px;
  margin: auto;
  transition: all 0.3s ease-in-out 0s;
}
.oferta_dots_single svg path {
  transition: all 0.3s ease-in-out 0s;
}
.oferta_dots_single .icon1 {
  fill: #8ECC09;
  right: 0;
  top: 0;
  bottom: 0;
  opacity: 0.3;
  transform: translateX(25%);
  transition: all 0.3s ease-in-out 0s;
}
body.yellow:not(.reader-mode) .oferta_dots_single .icon1 {
  fill: var(--yellow);
}
.oferta_dots_single .icon1 path {
  fill: #8ECC09;
}
body.yellow:not(.reader-mode) .oferta_dots_single .icon1 path {
  fill: var(--yellow);
}
.oferta_dots_single .icon2 {
  fill: #fff;
  left: 0;
  right: 0;
  top: calc(100% + 25px);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease-in-out 0.2s;
}
body.yellow:not(.reader-mode) .oferta_dots_single .icon2 {
  fill: var(--yellow);
}
.oferta_dots_single .icon2 path {
  fill: #fff;
}
body.yellow:not(.reader-mode) .oferta_dots_single .icon2 path {
  fill: var(--yellow);
}
.oferta_dots_single.karty {
  width: 335px;
  height: 210px;
  margin: 0 3px;
}
.oferta_dots_single.karty .bg {
  border-radius: 16px;
  overflow: hidden;
}
.oferta_dots_single.karty .bg::before {
  left: -1px;
  top: -1px;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  border: 5px solid #fff;
  border-radius: 16px;
}
body.yellow:not(.reader-mode) .oferta_dots_single.karty .bg::before {
  border-color: var(--yellow);
}
.oferta_dots_single.karty .img {
  filter: grayscale(0%);
}
.oferta_dots_single .title_v2 {
  font-size: 1.875rem;
  line-height: 1.2333333333;
  text-align: center;
  font-weight: 300;
  opacity: 1;
  transition: all 0.3s ease-in-out 0s;
}
.oferta_dots_single .title_v2 .t2 {
  font-weight: 500;
}
body.yellow:not(.reader-mode) .oferta_dots_single .title_v2 .t1,
body.yellow:not(.reader-mode) .oferta_dots_single .title_v2 .t2 {
  background-color: var(--black);
  color: var(--yellow);
}
@media screen and (min-width: 1025px) {
  .oferta_dots_single:hover .bg::after {
    opacity: 0.7;
  }
}
.oferta_dots_single.slick-center.slick-active {
  z-index: 5;
  overflow: visible;
}
.oferta_dots_single.slick-center.slick-active .bg {
  transform: scale(1.15);
}
body.yellow:not(.reader-mode) .oferta_dots_single.slick-center.slick-active .bg {
  background-color: var(--black);
}
.oferta_dots_single.slick-center.slick-active .bg::after {
  background-color: #8ECC09;
}
body.yellow:not(.reader-mode) .oferta_dots_single.slick-center.slick-active .bg::after {
  background-color: var(--black);
  color: var(--black);
}
.oferta_dots_single.slick-center.slick-active .bg::before {
  opacity: 1;
}
.oferta_dots_single.slick-center.slick-active .border_bot {
  opacity: 1;
}
.oferta_dots_single.slick-center.slick-active .img {
  opacity: 0.3;
}
.oferta_dots_single.slick-center.slick-active .wrap {
  text-align: center;
  top: 28%;
}
.oferta_dots_single.slick-center.slick-active .icon1 {
  opacity: 0;
}
.oferta_dots_single.slick-center.slick-active .icon2 {
  opacity: 1;
  transform: translateY(0px);
}
.oferta_dots_single.slick-center.slick-active .title_v2 {
  opacity: 0;
}
body.yellow:not(.reader-mode) .oferta_dots_single.slick-center.slick-active .title_v2 {
  opacity: 1;
}
body.yellow:not(.reader-mode) .oferta_dots_single.slick-center.slick-active .title_v2 .t1,
body.yellow:not(.reader-mode) .oferta_dots_single.slick-center.slick-active .title_v2 .t2 {
  background-color: var(--black);
  color: var(--yellow);
}
.oferta_dots_single.slick-center.slick-active.karty .bg {
  transform: scale(1.15);
  box-shadow: 0px 1px 5px #7A7A7A;
}
body.yellow:not(.reader-mode) .oferta_dots_single.slick-center.slick-active.karty .bg {
  background-color: var(--black);
}
.oferta_dots_single.slick-center.slick-active.karty .bg::after {
  opacity: 0;
  background-color: #1e273d;
}
@media screen and (min-width: 1025px) {
  .oferta_dots_single.slick-center.slick-active.karty:hover .bg::after {
    opacity: 0;
  }
}
.oferta_dots_single.slick-center.slick-active.karty .img {
  opacity: 1;
}
.oferta_dots_single.slick-center.slick-active.karty .border_bot {
  opacity: 0;
}
@media screen and (min-width: 1025px) {
  .oferta_dots_single.slick-center.slick-active:hover .bg::after {
    opacity: 1;
  }
}

.oferta_slider_single {
  padding: 40px 0 0;
  outline: none;
}
body.yellow:not(.reader-mode) .oferta_slider_single {
  background-color: var(--black);
  color: var(--yellow);
}
.oferta_slider_single .row {
  margin: 0 -45px;
  padding: 13px 0 40px;
}
.oferta_slider_single .title_block {
  text-align: center;
  color: #1e273d;
  line-height: 23px;
  border-bottom: 1px solid #8ECC09;
  padding: 0 0px 10px;
}
body.yellow:not(.reader-mode) .oferta_slider_single .title_block {
  color: var(--yellow);
  border-color: var(--yellow);
}
.oferta_slider_single .title_block strong {
  font-weight: 700;
  font-size: 1.5625rem;
}
.oferta_slider_single .title_block span {
  font-size: 1.125rem;
  font-weight: 500;
}
.oferta_slider_single .column {
  padding: 0 45px;
}
.oferta_slider_single .column_single {
  width: 850px;
  max-width: 100%;
  margin: 0 auto;
}
.oferta_slider_single .download_all {
  background-image: url("../img/bg_pap.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 25px 8% 20px;
  position: relative;
  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;
}
body.yellow:not(.reader-mode) .oferta_slider_single .download_all {
  background: none;
  background-color: var(--black);
}
.oferta_slider_single .download_all::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(237, 253, 255, 0.9);
  z-index: 2;
}
body.yellow:not(.reader-mode) .oferta_slider_single .download_all::before {
  background-color: var(--black);
  border: 1px solid var(--yellow);
}
.oferta_slider_single .download_all::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  border: 1px solid #fff;
}
body.yellow:not(.reader-mode) .oferta_slider_single .download_all::after {
  border-color: var(--yellow);
}
.oferta_slider_single .down_title {
  position: relative;
  z-index: 5;
  color: #1e273d;
  font-size: 1.9375rem;
  line-height: 1.064516129;
  width: 165px;
}
body.yellow:not(.reader-mode) .oferta_slider_single .down_title {
  color: var(--yellow);
}
.oferta_slider_single .down_title .t1 {
  font-weight: 300;
}
body.yellow:not(.reader-mode) .oferta_slider_single .down_title .t1 {
  color: var(--yellow);
}
.oferta_slider_single .down_title .t2 {
  font-weight: 500;
}
body.yellow:not(.reader-mode) .oferta_slider_single .down_title .t2 {
  color: var(--yellow);
}
.oferta_slider_single .down_wrap {
  position: relative;
  z-index: 5;
  width: calc(100% - 165px);
  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;
}
.oferta_slider_single .down_wrap_el {
  width: 180px;
  max-width: 50%;
  text-align: center;
  padding: 15px;
}
.oferta_slider_single .down_wrap_el .circle {
  width: 63px;
  height: 63px;
  background-color: #1e273d;
  border-radius: 50%;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.5625rem;
  color: #fff;
  padding-top: 13px;
  display: inline-block;
  transition: all 0.3s ease-in-out 0s;
}
body.yellow:not(.reader-mode) .oferta_slider_single .down_wrap_el .circle {
  color: var(--yellow);
  border: 1px solid var(--yellow);
  background-color: var(--black);
}
.oferta_slider_single .down_wrap_el img {
  display: inline-block;
  width: 23px;
}
.oferta_slider_single .down_wrap_el .t {
  padding-top: 4px;
}
@media screen and (min-width: 1025px) {
  .oferta_slider_single .down_wrap_el:hover .circle {
    background-color: #8ECC09;
  }
  body.yellow:not(.reader-mode) .oferta_slider_single .down_wrap_el:hover .circle {
    background-color: var(--black);
  }
}
.oferta_slider_single .dw_desc {
  font-size: 0.875rem;
  line-height: 1.2142857143;
  color: #484848;
  text-align: center;
  padding-top: 15px;
  margin: auto;
}
body.yellow:not(.reader-mode) .oferta_slider_single .dw_desc {
  color: var(--yellow);
}
.oferta_slider_single .iframe_wrap {
  padding-bottom: 20px;
  padding-top: 20px;
}
.oferta_slider_single iframe {
  width: 100%;
  border: none;
}

@media screen and (max-width: 1024px) {
  .oferta_dots_single {
    width: 215px;
    height: 215px;
  }
  .oferta_dots_single .wrap {
    font-size: 1.6875rem;
  }
  .oferta_dots_single svg {
    max-height: 80px;
  }
  .oferta_dots_single.slick-center.slick-active .wrap {
    line-height: 1;
  }
  .oferta_dots_single.slick-center.slick-active .bg {
    transform: scale(1.1);
  }
  .oferta_wrap_dots .slick-next {
    right: -15px;
  }
  .oferta_wrap_dots .slick-prev {
    left: -15px;
  }
  .oferta_slider_single {
    padding: 28px 0 0px;
  }
  .oferta_slider_single .row {
    padding-bottom: 10px;
  }
  .oferta_slider_single .title_block {
    font-size: 1rem;
  }
  .oferta_slider_single .title_block strong {
    font-size: 1.4375rem;
  }
  .oferta_slider_single .download_all {
    margin-top: 45px;
  }
}
@media screen and (max-width: 767px) {
  .oferta_dots_single .wrap {
    font-size: 1.5625rem;
  }
  .oferta_slider_single .download_all {
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    box-lines: multiple;
    flex-wrap: wrap;
    padding-top: 39px;
  }
  .oferta_slider_single .down_title {
    font-size: 1.625rem;
    width: 100%;
    text-align: center;
  }
  .oferta_slider_single .down_title .t1,
  .oferta_slider_single .down_title .t2 {
    display: inline;
  }
  .oferta_slider_single .down_wrap {
    width: 100%;
    padding-top: 17px;
  }
  .oferta_slider_single .dw_desc {
    font-size: 0.8125rem;
    padding-top: 9px;
  }
}
/*=====  End of Oferta  ======*/
/*==================================
=            Oferta bot            =
==================================*/
.ofert_bot {
  position: relative;
  padding: 73px 0 78px;
  margin-top: 55px;
}
body.yellow:not(.reader-mode) .ofert_bot {
  margin-top: 0;
}
.ofert_bot .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  opacity: 0.3;
}
body.yellow:not(.reader-mode) .ofert_bot .bg {
  background: var(--black) !important;
  opacity: 1;
}
.ofert_bot .row {
  margin: 0;
}

.ofert_bot_top {
  width: 755px;
  max-width: 100%;
  margin: auto;
  text-align: center;
}
.ofert_bot_top .title {
  font-size: 3rem;
  line-height: 1.0208333333;
  color: #1e273d;
  padding-bottom: 37px;
}
body.yellow:not(.reader-mode) .ofert_bot_top .title {
  color: var(--yellow);
}
.ofert_bot_top .title .t2 {
  font-weight: 700;
}
.ofert_bot_top .desc {
  color: #434343;
  font-weight: 400;
}
body.yellow:not(.reader-mode) .ofert_bot_top .desc {
  color: var(--yellow);
}

.ofert_bot_cont {
  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;
  padding-top: 70px;
}
.ofert_bot_cont .single {
  width: 50%;
  min-height: 190px;
  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;
  overflow: hidden;
  padding: 30px;
  position: relative;
  color: #fff;
}
body.yellow:not(.reader-mode) .ofert_bot_cont .single {
  border: 1px solid var(--yellow);
}
.ofert_bot_cont .single::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  background: linear-gradient(90deg, #3ba020 0, #3ba020 10%, rgba(59, 160, 32, 0.9) 25%, rgba(59, 160, 32, 0) 70%, rgba(59, 160, 32, 0) 100%);
}
body.yellow:not(.reader-mode) .ofert_bot_cont .single::after {
  background: none !important;
}
.ofert_bot_cont .single::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #3ba020;
  opacity: 0;
  z-index: 3;
  mix-blend-mode: multiply;
  transition: all 0.3s ease-in-out 0s;
}
body.yellow:not(.reader-mode) .ofert_bot_cont .single::before {
  background: none !important;
}
.ofert_bot_cont .single:nth-child(2)::after {
  background: linear-gradient(90deg, #66aaec 0, #66aaec 10%, rgba(102, 170, 236, 0.9) 25%, rgba(102, 170, 236, 0) 70%, rgba(59, 160, 32, 0) 100%);
}
.ofert_bot_cont .single:nth-child(2)::before {
  background-color: #66aaec;
}
.ofert_bot_cont .single:nth-child(3)::after {
  background: linear-gradient(90deg, #1e273d 0, #1e273d 10%, rgba(30, 39, 61, 0.9) 25%, rgba(30, 39, 61, 0) 70%, rgba(59, 160, 32, 0) 100%);
}
.ofert_bot_cont .single:nth-child(3)::before {
  background-color: #1e273d;
}
.ofert_bot_cont .single:nth-child(4) {
  color: #000;
}
.ofert_bot_cont .single:nth-child(4)::after {
  background: linear-gradient(90deg, #c9d1d8 0, #c9d1d8 10%, rgba(201, 209, 216, 0.9) 25%, rgba(201, 209, 216, 0) 70%, rgba(59, 160, 32, 0) 100%);
}
.ofert_bot_cont .single:nth-child(4)::before {
  background-color: #c9d1d8;
}
.ofert_bot_cont .single:nth-child(5) {
  color: #000;
}
.ofert_bot_cont .single:nth-child(5)::after {
  background: linear-gradient(90deg, #dedede 0, #dedede 10%, rgba(222, 222, 222, 0.9) 25%, rgba(222, 222, 222, 0) 70%, rgba(59, 160, 32, 0) 100%);
}
.ofert_bot_cont .single:nth-child(5)::before {
  background-color: #dedede;
}
@media screen and (min-width: 1025px) {
  .ofert_bot_cont .single:hover .bg_el {
    transform: translateX(20px);
  }
  .ofert_bot_cont .single:hover::before,
  .ofert_bot_cont .single:hover .hover_button {
    opacity: 1;
  }
  .ofert_bot_cont .single:hover .icon_wrap::after {
    opacity: 1;
  }
  .ofert_bot_cont .single:hover .icon_wrap .icon1 {
    opacity: 0;
  }
  body.yellow:not(.reader-mode) .ofert_bot_cont .single:hover .bg_el {
    transform: translateX(0);
  }
  body.yellow:not(.reader-mode) .ofert_bot_cont .single:hover::before,
  body.yellow:not(.reader-mode) .ofert_bot_cont .single:hover .hover_button {
    opacity: 1;
  }
  body.yellow:not(.reader-mode) .ofert_bot_cont .single:hover .icon_wrap::after {
    opacity: 1;
  }
  body.yellow:not(.reader-mode) .ofert_bot_cont .single:hover .icon_wrap .icon1 {
    opacity: 1;
  }
}
body.yellow:not(.reader-mode) .ofert_bot_cont .single {
  background: none;
}
.ofert_bot_cont .bg_el {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: all 0.3s ease-in-out 0s;
  transform: translateX(0);
}
body.yellow:not(.reader-mode) .ofert_bot_cont .bg_el {
  background: none !important;
}
.ofert_bot_cont .hover_button {
  font-weight: 600;
  color: #fff;
  font-size: 0.8125rem;
  height: 25px;
  position: absolute;
  right: 95px;
  top: 0;
  bottom: 0;
  margin: auto;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out 0s;
  opacity: 0;
  z-index: 6;
}
body.yellow:not(.reader-mode) .ofert_bot_cont .hover_button {
  color: var(--yellow);
  border-color: var(--yellow);
}
.ofert_bot_cont .hover_button span {
  vertical-align: middle;
  padding-right: 30px;
}
.ofert_bot_cont .hover_button .arrow {
  vertical-align: middle;
  width: 18px;
  height: 9px;
}
.ofert_bot_cont .cont {
  position: relative;
  z-index: 5;
  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;
  width: 310px;
  max-width: 100%;
}
.ofert_bot_cont .icon_wrap {
  position: relative;
}
.ofert_bot_cont .icon_wrap::after {
  content: "";
  width: 15px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: all 0.3s ease-in-out 0s;
  opacity: 0;
}
.ofert_bot_cont .icon_wrap svg {
  width: 55px;
  height: 55px;
  fill: #fff;
}
.ofert_bot_cont .icon_wrap .icon1 {
  transition: all 0.3s ease-in-out 0s;
  opacity: 1;
}
.ofert_bot_cont .icon_wrap .icon2 {
  width: 105px;
  height: 105px;
  position: absolute;
  opacity: 0.1;
  left: 0px;
  bottom: 0px;
}
body.yellow:not(.reader-mode) .ofert_bot_cont .icon_wrap .icon2 svg path {
  fill: var(--yellow);
}
.ofert_bot_cont .title {
  font-weight: 500;
  font-size: 1.9375rem;
  line-height: 1.064516129;
  padding-left: 13px;
}
body.yellow:not(.reader-mode) .ofert_bot_cont .title {
  color: var(--yellow);
}
.ofert_bot_cont .kontakt {
  padding: 30px 60px;
  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;
}
.ofert_bot_cont .kontakt::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 20px;
  width: 265px;
  max-width: calc(100% - 40px);
  height: calc(100% - 40px);
  border-left: 5px solid #8ECC09;
  border-top: 5px solid #8ECC09;
  z-index: -1;
  background-color: transparent !important;
  mix-blend-mode: normal;
  opacity: 1;
}
body.yellow:not(.reader-mode) .ofert_bot_cont .kontakt::before {
  border-color: var(--yellow);
}
.ofert_bot_cont .kontakt::after {
  display: none;
}
.ofert_bot_cont .kontakt .d_btn {
  height: 50px;
  border-radius: 25px;
  background-color: #8ECC09;
  color: #fff;
  font-weight: 600;
  font-size: 0.8125rem;
  border: none;
}
@media screen and (min-width: 1025px) {
  .ofert_bot_cont .kontakt .d_btn:hover {
    background-color: #1e273d;
  }
}
body.yellow:not(.reader-mode) .ofert_bot_cont .kontakt .d_btn {
  background-color: var(--yellow);
  color: var(--black);
}
.ofert_bot_cont .k_title {
  font-size: 2.1875rem;
  color: #1e273d;
  font-weight: 300;
  line-height: 1.0285714286;
}
body.yellow:not(.reader-mode) .ofert_bot_cont .k_title {
  color: var(--yellow);
}
.ofert_bot_cont .k_title .e2 {
  font-weight: 600;
}
.ofert_bot_cont.change_col .single::after {
  background: linear-gradient(90deg, #66aaec 0, #66aaec 10%, rgba(102, 170, 236, 0.9) 25%, rgba(102, 170, 236, 0) 70%, rgba(59, 160, 32, 0) 100%);
}
.ofert_bot_cont.change_col .single::before {
  background-color: #66aaec;
}
.ofert_bot_cont.change_col .single:nth-child(2)::after {
  background: linear-gradient(90deg, #8ECC09 0, #8ecc09 10%, rgba(142, 204, 9, 0.9) 25%, rgba(142, 204, 9, 0) 70%, rgba(142, 204, 9, 0) 100%);
}
.ofert_bot_cont.change_col .single:nth-child(2)::before {
  background-color: #8ECC09;
}
body.yellow:not(.reader-mode) .ofert_bot_cont.change_col .single:nth-child(2)::before {
  background-color: var(--black);
}
.ofert_bot_cont.change_col .single:nth-child(3)::after {
  background: linear-gradient(90deg, #1e273d 0, #1e273d 10%, rgba(30, 39, 61, 0.9) 25%, rgba(30, 39, 61, 0) 70%, rgba(59, 160, 32, 0) 100%);
}
.ofert_bot_cont.change_col .single:nth-child(3)::before {
  background-color: #1e273d;
}
body.yellow:not(.reader-mode) .ofert_bot_cont.change_col .single:nth-child(3)::before {
  background-color: var(--black);
}
.ofert_bot_cont.change_col .single:nth-child(4) {
  color: #fff;
}
.ofert_bot_cont.change_col .single:nth-child(4)::after {
  background: linear-gradient(90deg, #06832F 0, #06832f 10%, rgba(6, 131, 47, 0.9) 25%, rgba(6, 131, 47, 0) 70%, rgba(6, 131, 47, 0) 100%);
}
.ofert_bot_cont.change_col .single:nth-child(4)::before {
  background-color: #06832F;
}
body.yellow:not(.reader-mode) .ofert_bot_cont.change_col .single:nth-child(4)::before {
  background-color: var(--black);
}
.ofert_bot_cont.change_col .single:nth-child(5)::after {
  background: linear-gradient(90deg, #dedede 0, #dedede 10%, rgba(222, 222, 222, 0.9) 25%, rgba(222, 222, 222, 0) 70%, rgba(59, 160, 32, 0) 100%);
}
.ofert_bot_cont.change_col .single:nth-child(5)::before {
  background-color: #dedede;
}
body.yellow:not(.reader-mode) .ofert_bot_cont.change_col .single:nth-child(5)::before {
  background-color: var(--black);
}
.ofert_bot_cont.change_col .kontakt::before {
  border-color: #1e273d;
  background-color: transparent;
}
.ofert_bot_cont.change_col .kontakt .d_btn {
  background-color: #1e273d;
}
@media screen and (min-width: 1025px) {
  .ofert_bot_cont.change_col .kontakt .d_btn:hover {
    background-color: #8ECC09;
  }
}

@media screen and (max-width: 1799px) {
  .ofert_bot_cont .hover_button {
    right: 65px;
  }
  .ofert_bot_cont .hover_button span {
    padding-right: 25px;
  }
}
@media screen and (max-width: 1599px) {
  .ofert_bot_cont .hover_button {
    right: 30px;
  }
  .ofert_bot_cont .hover_button span {
    padding-right: 15px;
  }
}
@media screen and (max-width: 1024px) {
  .ofert_bot {
    padding: 60px 0 78px;
  }
  .ofert_bot_top .title {
    font-size: 2.25rem;
    padding-bottom: 36px;
  }
  .ofert_bot_top .desc {
    font-size: 0.875rem;
  }
  .ofert_bot_cont .single {
    min-height: 170px;
    padding: 30px 40px 30px 30px;
    overflow: hidden;
  }
  .ofert_bot_cont .icon_wrap {
    margin-left: -15px;
  }
  .ofert_bot_cont .title {
    font-size: 1.5625rem;
  }
  .ofert_bot_cont .kontakt {
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    box-lines: multiple;
    flex-wrap: wrap;
    box-pack: end;
    -moz-justify-content: flex-end;
    -ms-justify-content: flex-end;
    -o-justify-content: flex-end;
    justify-content: flex-end;
    -ms-flex-pack: end;
    padding-bottom: 8px;
    padding-right: 10px;
  }
  .ofert_bot_cont .kontakt::before {
    left: 10px;
    top: 10px;
    width: 100%;
    max-width: calc(100% - 20px);
    height: calc(100% - 20px);
  }
  .ofert_bot_cont .kontakt .d_btn {
    width: 200px;
    height: 40px;
  }
  .ofert_bot_cont .k_title {
    font-size: 1.875rem;
    width: 100%;
    padding-bottom: 30px;
  }
  .ofert_bot_cont .hover_button {
    opacity: 1;
    right: 20px;
  }
  .ofert_bot_cont .hover_button .arrow {
    fill: #1e273d;
  }
}
@media screen and (max-width: 767px) {
  .ofert_bot {
    padding: 32px 0 27px;
  }
  .oferta_wrap_dots .slick-arrow {
    width: 20%;
  }
  .ofert_bot_top .title {
    font-size: 1.625rem;
    padding-bottom: 29px;
  }
  .ofert_bot_cont {
    padding-top: 33px;
  }
  .ofert_bot_cont .single {
    width: 100%;
    min-height: 120px;
  }
  .ofert_bot_cont .single::after {
    width: 130%;
  }
  .ofert_bot_cont .title {
    font-size: 1.5625rem;
  }
  .ofert_bot_cont .kontakt .d_btn {
    width: 170px;
    height: 35px;
  }
  .ofert_bot_cont .k_title {
    font-size: 1.5625rem;
    padding-bottom: 20px;
  }
}
/*=====  End of Oferta bot  ======*//*# sourceMappingURL=klienci.css.map */