<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&amp;display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&amp;display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&amp;display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bai+Jamjuree:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,700&amp;display=swap");
/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1; }
  .owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
    touch-action: manipulation;
    -moz-backface-visibility: hidden;
    /* fix firefox animation glitch */ }
  .owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0; }
  .owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    /* fix for flashing background */
    -webkit-transform: translate3d(0px, 0px, 0px); }
  .owl-carousel .owl-wrapper,
  .owl-carousel .owl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0); }
  .owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none; }
  .owl-carousel .owl-item img {
    display: block;
    width: 100%; }
  .owl-carousel .owl-nav.disabled,
  .owl-carousel .owl-dots.disabled {
    display: none; }
  .owl-carousel .owl-nav .owl-prev,
  .owl-carousel .owl-nav .owl-next,
  .owl-carousel .owl-dot {
    cursor: pointer;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .owl-carousel .owl-nav button.owl-prev,
  .owl-carousel .owl-nav button.owl-next,
  .owl-carousel button.owl-dot {
    background: none;
    color: inherit;
    border: none;
    padding: 0 !important;
    font: inherit; }
  .owl-carousel.owl-loaded {
    display: block; }
  .owl-carousel.owl-loading {
    opacity: 0;
    display: block; }
  .owl-carousel.owl-hidden {
    opacity: 0; }
  .owl-carousel.owl-refresh .owl-item {
    visibility: hidden; }
  .owl-carousel.owl-drag .owl-item {
    touch-action: pan-y;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .owl-carousel.owl-grab {
    cursor: move;
    cursor: grab; }
  .owl-carousel.owl-rtl {
    direction: rtl; }
  .owl-carousel.owl-rtl .owl-item {
    float: right; }

/* No Js */
.no-js .owl-carousel {
  display: block; }

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both; }
.owl-carousel .owl-animated-in {
  z-index: 0; }
.owl-carousel .owl-animated-out {
  z-index: 1; }
.owl-carousel .fadeOut {
  animation-name: fadeOut; }

@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }
/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out; }

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
  /**
  	This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
  	calculation of the height of the owl-item that breaks page layouts
   */ }
  .owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    transition: opacity 400ms ease; }
  .owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
    max-height: 0; }
  .owl-carousel .owl-item img.owl-lazy {
    transform-style: preserve-3d; }

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000; }
.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease; }
.owl-carousel .owl-video-play-icon:hover {
  transform: scale(1.3, 1.3); }
.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none; }
.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease; }
.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%; }

/*
 * 	Default theme - Owl Carousel CSS File
 */
.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent; }
  .owl-theme .owl-nav [class*='owl-'] {
    color: #FFF;
    font-size: 14px;
    margin: 5px;
    padding: 4px 7px;
    background: #D6D6D6;
    display: inline-block;
    cursor: pointer;
    border-radius: 3px; }
    .owl-theme .owl-nav [class*='owl-']:hover {
      background: #869791;
      color: #FFF;
      text-decoration: none; }
  .owl-theme .owl-nav .disabled {
    opacity: 0.5;
    cursor: default; }
.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px; }
.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent; }
  .owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
    *display: inline; }
    .owl-theme .owl-dots .owl-dot span {
      width: 10px;
      height: 10px;
      margin: 5px 7px;
      background: #D6D6D6;
      display: block;
      -webkit-backface-visibility: visible;
      transition: opacity 200ms ease;
      border-radius: 30px; }
    .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
      background: #869791; }

/*
 * 	Green theme - Owl Carousel CSS File
 */
.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent; }
  .owl-theme .owl-nav [class*='owl-'] {
    color: #FFF;
    font-size: 14px;
    margin: 5px;
    padding: 4px 7px;
    background: #D6D6D6;
    display: inline-block;
    cursor: pointer;
    border-radius: 3px; }
    .owl-theme .owl-nav [class*='owl-']:hover {
      background: #869791;
      color: #FFF;
      text-decoration: none; }
  .owl-theme .owl-nav .disabled {
    opacity: 0.5;
    cursor: default; }
.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px; }
.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent; }
  .owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
    *display: inline; }
    .owl-theme .owl-dots .owl-dot span {
      width: 10px;
      height: 10px;
      margin: 5px 7px;
      background: #D6D6D6;
      display: block;
      -webkit-backface-visibility: visible;
      transition: opacity 200ms ease;
      border-radius: 30px; }
    .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
      background: #869791; }

@keyframes preloader {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }
body {
  font-family: "Bai Jamjuree", sans-serif;
  max-width: 2560px;
  margin-left: auto;
  margin-right: auto;
  float: none;
  color: #b1b1b1;
  font-size: 16rem;
  line-height: 120%; }
  body.compensate-for-scrollbar {
    margin-right: auto !important; }
  body h1 {
    color: var(--primary-title);
    font-size: 40rem;
    margin-bottom: 20rem; }
  body h2 {
    color: var(--primary-title);
    font-size: 28rem;
    margin-top: 20px;
    margin-bottom: 10px; }
  body h3 {
    color: var(--primary-title);
    font-size: 25rem;
    margin-top: 15px;
    margin-bottom: 10px;
    font-weight: 600; }
  body h4 {
    color: var(--primary-title);
    font-size: 23rem;
    margin-top: 15px;
    margin-bottom: 5px; }
  body p {
    color: var(--primary-text);
    font-size: 18rem;
    margin-bottom: 10rem;
    line-height: 1.3; }
  body a {
    color: var(--element1-color);
    transition: 0.3s;
    -webkit-transition: 0.3s;
    font-size: 18rem;
    line-height: 1.3; }
    body a[href="#"] {
      cursor: default; }
    body a:hover {
      color: var(--anhor);
      text-decoration: none; }
  body main ul li {
    display: flex; }
    body main ul li:before {
      margin-top: 7px; }
  body ul {
    list-style: none;
    padding-left: 10rem; }
    body ul li {
      margin-bottom: 10px;
      color: var(--primary-text);
      font-size: 18rem;
      white-space: normal;
      line-height: 1.3; }
      body ul li strong, body ul li span {
        display: contents; }
      body ul li:before {
        content: " ";
        display: inline-block;
        min-width: 0;
        width: 8px;
        height: 8px;
        background-color: var(--element1-color);
        border-radius: 50%;
        margin-right: 15px; }
  body ol {
    padding-left: 30rem; }
    body ol li {
      line-height: 1.3;
      margin-bottom: 10px; }
  body figure {
    margin: 0;
    max-width: 100%;
    width: 100% !important; }
    body figure.image-style-align-center {
      display: flex;
      justify-content: center; }
    body figure.image-style-align-left {
      display: flex;
      justify-content: flex-start; }
    body figure.image-style-align-right {
      display: flex;
      justify-content: flex-end; }
  body input[type="number"], body input[type="text"], body input[type="tel"], body input[type="email"], body input[type="password"], body input[type="datetime-local"], body input[type="date"], body select.form-control, body textarea {
    border: none;
    width: 100%;
    margin: 0;
    background-color: #fff;
    font-size: 16rem;
    color: #b1b1b1;
    font-weight: 400;
    padding-left: 20px;
    border-bottom: 1px solid var(--dark-bg2);
    box-shadow: none !important; }
    body input[type="number"]:focus, body input[type="number"]:hover, body input[type="text"]:focus, body input[type="text"]:hover, body input[type="tel"]:focus, body input[type="tel"]:hover, body input[type="email"]:focus, body input[type="email"]:hover, body input[type="password"]:focus, body input[type="password"]:hover, body input[type="datetime-local"]:focus, body input[type="datetime-local"]:hover, body input[type="date"]:focus, body input[type="date"]:hover, body select.form-control:focus, body select.form-control:hover, body textarea:focus, body textarea:hover {
      color: var(--element2-color);
      border-color: var(--element2-color); }
  body .label-radio {
    width: calc(100% - 25px);
    cursor: pointer; }
  body input.form-radio {
    width: 25px;
    height: 25px;
    cursor: pointer; }
  body .label-file {
    width: 100%; }
  body input[type="file"] {
    height: auto;
    background-color: transparent;
    border: none;
    white-space: normal; }
  body textarea.form-control {
    height: 48px;
    border: none;
    width: 100%;
    margin: 0;
    background-color: #fff;
    font-size: 16rem;
    color: #b2b2b2;
    font-weight: 400;
    padding-left: 20px;
    padding-top: 5px;
    border-bottom: 1px solid var(--dark-bg2); }
    body textarea.form-control::placeholder {
      color: #b2b2b2; }
    body textarea.form-control:focus, body textarea.form-control:hover {
      border-color: var(--element2-color); }
      body textarea.form-control:focus::placeholder, body textarea.form-control:hover::placeholder {
        color: var(--element2-color); }
  body textarea {
    height: 300px; }

.pagination {
  display: flex;
  justify-content: center;
  align-items: center; }
  .pagination .button-nav {
    color: var(--primary-text);
    margin-left: 15px;
    margin-right: 15px; }
    .pagination .button-nav:hover {
      color: var(--primary-title); }
  .pagination .numbers {
    display: flex; }
    .pagination .numbers a {
      width: 30px;
      height: 38px;
      border: 1px solid var(--primary-text);
      display: flex;
      justify-content: center;
      align-items: center;
      margin-left: 4px;
      margin-right: 4px;
      color: var(--primary-text); }
      .pagination .numbers a.active {
        background-color: var(--bg-hover); }
      .pagination .numbers a:hover:not(.active) {
        border-color: var(--bg-hover);
        background-color: var(--bg-hover);
        color: var(--primary-text); }
    .pagination .numbers span {
      align-self: flex-end; }

.container-block {
  padding-top: 100px;
  padding-bottom: 100px;
  width: 760px;
  max-width: calc(100% - 70px); }
  .container-block .title {
    margin-bottom: 30px;
    display: flex;
    align-items: center; }
    .container-block .title h3 {
      font-size: 32rem;
      font-weight: bold;
      text-transform: lowercase;
      margin-top: 0;
      margin-bottom: 0; }
      .container-block .title h3 span {
        color: var(--element1-color); }
    .container-block .title .icon {
      min-width: 56px;
      width: 56px;
      height: 56px;
      margin-right: 15px; }
      .container-block .title .icon img {
        max-width: 100%;
        max-height: 100%; }
  .container-block.left {
    padding-right: 70px;
    margin-left: auto; }
  .container-block.right {
    padding-left: 70px; }

.reverse .container-block.left {
  margin-left: initial;
  padding-left: 70px;
  padding-right: 0; }
.reverse .container-block.right {
  margin-left: auto;
  padding-right: 70px;
  padding-left: 0; }

hr {
  margin-top: 10px;
  margin-bottom: 10px; }

html {
  font-size: 1px; }

nav ul {
  margin: 0;
  padding: 0;
  list-style: none; }

.image-style-align-right {
  width: 50%;
  max-width: 50%;
  padding-left: 30px;
  float: right; }

.image-style-align-left {
  width: 50%;
  max-width: 50%;
  padding-right: 30px;
  float: left; }

.hidden-element {
  display: none; }

.dropdown-menu {
  min-width: unset; }

.dropdown-item {
  margin-bottom: 0; }

.form-group {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 25px;
  flex-wrap: wrap; }
  .form-group label {
    width: 100%;
    margin-bottom: 5px;
    padding: 0 22px; }
    .form-group label .required {
      font-size: 120%;
      color: #dF0000; }

input.form-control, select.form-control {
  height: 48px;
  font-size: 16rem;
  border-radius: 0px;
  background-color: #f5f5f5;
  border: 1px solid #dfdfdf;
  color: var(--primary-text); }
  input.form-control::placeholder, select.form-control::placeholder {
    color: rgba(var(--primary-text), 0.5); }
  input.form-control:focus, select.form-control:focus {
    border-color: var(--element1-color); }
input.input-image, select.input-image {
  background-repeat: no-repeat;
  background-position: 15px center;
  background-size: 25px;
  padding-left: 50px; }

.checkbox-label {
  cursor: pointer;
  color: var(--primary-text);
  font-weight: 400;
  font-family: "Bai Jamjuree", sans-serif;
  letter-spacing: 0;
  text-transform: initial;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  width: 100%;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  padding: 0 !important; }
  .checkbox-label .required {
    display: none; }
  .checkbox-label input[type='checkbox'] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    width: 1px;
    height: 1px; }
  .checkbox-label .checkbox-styled {
    min-width: 15px;
    min-height: 15px;
    max-width: 15px;
    max-height: 15px;
    border: 1px solid var(--primary-text);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    border-radius: 50%; }
    .checkbox-label .checkbox-styled span {
      font-size: 14px;
      opacity: 0; }
    .checkbox-label .checkbox-styled.checked span {
      opacity: 1;
      color: var(--element2-color); }
  .checkbox-label:hover {
    color: var(--text-hover); }
  .checkbox-label .regulamin p {
    font-weight: 500;
    margin: 0;
    line-height: inherit;
    font-size: 15rem; }
    .checkbox-label .regulamin p a {
      font-weight: 500;
      font-size: 15rem;
      color: var(--element2-color); }

.overflow-y-hidden {
  overflow-y: hidden !important; }

.gradient-text {
  background: -webkit-linear-gradient(130deg, #755147 20%, #f1d3b3 39%, #b37f55 64%, #774f2f 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; }

.mybg-primary {
  background-color: var(--primary-bg); }

.mybg-secondary {
  background-color: var(--secondary-bg); }

.mybg-light {
  background-color: var(--light-bg); }

.mybg-dark {
  background-color: var(--dark-bg); }

.mybg-element1 {
  background-color: var(--element1-color); }

.mybg-element2 {
  background-color: var(--element2-color); }

.my-boxshadow {
  box-shadow: 0 0 10px 2px var(--transparent-color1); }

.bg-blur-dark {
  background-color: rgba(0, 0, 0, 0.6); }

.bg-blur-light {
  background-color: rgba(255, 255, 255, 0.6); }

.text ul {
  list-style: none;
  padding-left: 10rem; }
  .text ul li {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 10px;
    color: var(--primary-text);
    font-size: 18rem;
    white-space: normal;
    line-height: initial;
    position: relative;
    padding-left: 20px; }
    .text ul li ul {
      width: 100%;
      padding-top: 10px;
      margin-bottom: 0; }
    .text ul li strong, .text ul li span {
      display: contents; }
    .text ul li:before {
      content: " ";
      display: inline-block;
      content: " ";
      display: inline-block;
      min-width: 0;
      width: 8px;
      height: 8px;
      background-color: var(--element1-color);
      border-radius: 50%;
      margin-right: 15px;
      position: absolute;
      left: 0; }
    .text ul li a {
      display: contents; }

.buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 20px; }
  .buttons.buttons-left {
    justify-content: flex-start; }
    .buttons.buttons-left .btn {
      margin-left: 0;
      margin-right: 50px; }
      .buttons.buttons-left .btn:last-child {
        margin-right: 0; }
  .buttons.buttons-right {
    justify-content: flex-end; }
    .buttons.buttons-right .btn {
      margin-left: 0;
      margin-right: 50px; }
      .buttons.buttons-right .btn:last-child {
        margin-right: 0; }
  .buttons .btn {
    margin: 15px 25px 0px 25px; }

.btn, .elementor-button {
  letter-spacing: 3px;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  border-radius: 0px;
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 17rem;
  background-color: transparent;
  line-height: initial;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  padding: 14px 64px;
  font-weight: 600; }
  .btn:hover, .elementor-button:hover {
    transform: scale(0.95);
    -webkit-transform: scale(0.95); }

.btn-buy {
  border-radius: 0px;
  border: none;
  background-color: var(--element1-color);
  color: var(--secondary-text);
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: lowercase;
  padding: 14px 64px;
  font-weight: 500;
  font-size: 16px; }
  .btn-buy img {
    width: 25px;
    margin-right: 10px; }
  .btn-buy:hover {
    border-color: transparent !important;
    background-color: var(--element1-color) !important;
    color: var(--secondary-text) !important; }
  .btn-buy:active, .btn-buy:focus {
    border-color: transparent !important;
    background-color: var(--element1-color) !important;
    color: var(--secondary-text) !important; }

.btn-empty {
  border: 2px solid var(--element1-color);
  background-color: var(--primary-bg);
  color: var(--primary-text); }
  .btn-empty:hover {
    border: 2px solid var(--element1-color) !important;
    background-color: var(--primary-bg) !important;
    color: var(--primary-text) !important; }
  .btn-empty:active, .btn-empty:focus {
    border: 2px solid var(--element1-color) !important;
    background-color: var(--primary-bg) !important;
    color: var(--primary-text) !important; }

.btn-primary {
  border: 2px solid var(--element2-color);
  background-color: var(--element2-color);
  color: var(--secondary-text); }
  .btn-primary:hover {
    border: 2px solid var(--element2-color) !important;
    background-color: var(--element2-color) !important;
    color: var(--secondary-text) !important; }
  .btn-primary:active, .btn-primary:focus {
    border: 2px solid var(--element2-color) !important;
    background-color: var(--element2-color) !important;
    color: var(--secondary-text) !important; }

.btn-secondary {
  border: 2px solid var(--element1-color);
  background-color: var(--element1-color);
  color: var(--secondary-text); }
  .btn-secondary:hover {
    border-color: var(--element1-color) !important;
    background-color: var(--element1-color) !important;
    color: var(--secondary-text) !important; }
  .btn-secondary:active, .btn-secondary:focus {
    border-color: var(--element1-color) !important;
    background-color: var(--element1-color) !important;
    color: var(--secondary-text) !important; }

.btn.btn-save {
  border: 2px solid green !important;
  background-color: transparent !important;
  color: green !important;
  padding: 8px 10px;
  min-width: 100px;
  margin: 5px;
  transform: none !important; }
  .btn.btn-save span {
    color: green;
    transform: none !important;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    text-transform: initial !important; }
  .btn.btn-save:hover, .btn.btn-save:focus {
    border: 2px solid #00b300 !important;
    background-color: transparent !important;
    color: #00b300 !important;
    transform: none !important; }
    .btn.btn-save:hover span, .btn.btn-save:focus span {
      color: #00b300 !important; }
.btn.btn-accept {
  border: 2px solid green !important;
  background-color: green !important;
  color: white !important;
  padding: 8px 10px;
  min-width: 100px;
  margin: 5px;
  transform: none !important; }
  .btn.btn-accept span {
    color: white;
    transform: none !important;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    text-transform: initial !important; }
  .btn.btn-accept:hover, .btn.btn-accept:focus {
    border: 2px solid #00b300 !important;
    background-color: #00b300 !important;
    color: white !important;
    transform: none !important; }
    .btn.btn-accept:hover span, .btn.btn-accept:focus span {
      color: white !important; }
.btn.btn-reject {
  border: 2px solid #dF0000 !important;
  background-color: transparent !important;
  color: #dF0000 !important;
  padding: 8px 10px;
  min-width: 100px;
  margin: 5px;
  transform: none !important; }
  .btn.btn-reject span {
    color: #dF0000;
    transform: none !important;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    text-transform: initial !important; }
  .btn.btn-reject:hover, .btn.btn-reject:focus {
    border: 2px solid #ff4646 !important;
    background-color: transparent !important;
    color: #ff4646 !important;
    transform: none !important; }
    .btn.btn-reject:hover span, .btn.btn-reject:focus span {
      color: #ff4646 !important; }

button {
  transition: 0.3s;
  -webkit-transition: 0.3s; }

form {
  position: relative; }
  form .r-name {
    position: absolute;
    top: 0px;
    right: 0px;
    opacity: -1;
    z-index: -1; }

.table-responsive {
  margin-left: auto;
  margin-right: auto;
  width: 100%; }
  .table-responsive .table {
    width: 100%;
    margin-bottom: 50px; }
    .table-responsive .table thead {
      background-color: var(--primary-bg);
      color: var(--primary-text); }
      .table-responsive .table thead tr {
        background-color: var(--light-bg2); }
    .table-responsive .table thead, .table-responsive .table tbody {
      width: 100%; }
    .table-responsive .table tbody tr {
      background-color: rgba(var(--light-bg2), 0.4); }
    .table-responsive .table tr {
      width: 100%;
      padding: 0 25px; }
    .table-responsive .table th {
      padding: 10px 10px;
      font-size: 20rem;
      font-weight: 600;
      padding: 15px 20px; }
    .table-responsive .table td {
      color: var(--primary-text);
      font-size: 18rem;
      padding: 15px 20px; }

.my-tilt {
  transition: 0.3s;
  -webkit-transition: 0.3s; }
  .my-tilt:hover {
    transform: scale(0.95);
    -webkit-transform: scale(0.95); }

.max-linie-1 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical; }

.max-linie-2 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; }

.max-linie-3 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical; }

.max-linie-4 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical; }

.max-linie-5 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical; }

.animation-group {
  overflow: hidden;
  position: relative; }

.animation-buttons {
  z-index: 5;
  position: absolute;
  top: calc(50% - 25px);
  width: 100%;
  pointer-events: none;
  display: flex;
  justify-content: space-between;
  padding: 2px 30px; }
  .animation-buttons .btn-animate {
    width: 50px;
    height: 50px;
    border: 2px solid var(--dark-bg2);
    padding: 0;
    border-radius: 50%;
    pointer-events: auto;
    display: flex;
    flex-direction: column; }
    .animation-buttons .btn-animate .line {
      background-color: var(--dark-bg2);
      border-radius: 10px;
      position: relative;
      transition: 0.3s;
      -webkit-transition: 0.3s; }
      .animation-buttons .btn-animate .line.line1 {
        width: 15px;
        height: 4px;
        transform: rotate(-40deg);
        right: 7px;
        bottom: 0px; }
      .animation-buttons .btn-animate .line.line2 {
        width: 25px;
        height: 4px; }
      .animation-buttons .btn-animate .line.line3 {
        width: 15px;
        height: 4px;
        transform: rotate(40deg);
        right: 7px;
        top: 0px; }
    .animation-buttons .btn-animate.btn-next {
      transform: rotate(180deg); }
    .animation-buttons .btn-animate.disabled {
      border-color: var(--dark-bg2);
      cursor: default;
      pointer-events: none; }
      .animation-buttons .btn-animate.disabled .line {
        background-color: var(--dark-bg2); }
    .animation-buttons .btn-animate:hover, .animation-buttons .btn-animate:focus {
      border-color: var(--element1-color); }
      .animation-buttons .btn-animate:hover .line, .animation-buttons .btn-animate:focus .line {
        background-color: var(--element1-color); }

.navigation-buttons {
  z-index: 5;
  position: absolute;
  bottom: 100px;
  width: 100%;
  pointer-events: none;
  display: flex;
  justify-content: flex-start;
  padding: 2px 60px; }
  .navigation-buttons .btn {
    pointer-events: auto; }
    .navigation-buttons .btn.btn-stop-animation {
      border: none;
      padding: 0;
      width: 20px;
      height: 20px;
      margin: 0 5px;
      background-image: url(/img/owl-pause.svg);
      background-repeat: no-repeat;
      background-size: 14px;
      background-position: center;
      display: none; }
    .navigation-buttons .btn.btn-go-to-slide {
      border: 1px solid var(--primary-bg);
      background-color: transparent;
      padding: 0;
      width: 60px;
      height: 15px;
      margin: 0 5px;
      transform: skew(40deg, 0deg); }
      .navigation-buttons .btn.btn-go-to-slide.active {
        background-color: var(--primary-bg) !important;
        pointer-events: none; }
        .navigation-buttons .btn.btn-go-to-slide.active:hover, .navigation-buttons .btn.btn-go-to-slide.active:focus, .navigation-buttons .btn.btn-go-to-slide.active:active {
          border-color: var(--primary-bg) !important; }
      .navigation-buttons .btn.btn-go-to-slide.disabled {
        pointer-events: none; }
    .navigation-buttons .btn.btn-start-animation {
      border: none;
      padding: 0;
      width: 20px;
      height: 20px;
      margin: 0 5px;
      background-image: url(/img/owl-start.svg);
      background-repeat: no-repeat;
      background-size: 14px;
      background-position: center;
      display: none; }

.animation-element {
  position: relative; }
  .animation-element:not(.slide) {
    opacity: 0; }
  .animation-element[data-class="slide"] {
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    z-index: 1; }
    .animation-element[data-class="slide"].active {
      left: 0;
      /* Aktywny slajd znajduje się na środku ekranu */
      z-index: 3; }
    .animation-element[data-class="slide"].next-slide {
      z-index: 2; }

@media (max-width: 575.5px) {
  .container-block {
    max-width: 100%;
    padding-top: 30px;
    padding-bottom: 30px;
    width: 100%; }
    .container-block .title {
      margin-bottom: 20px; }
      .container-block .title h3 {
        font-size: 20rem; }
      .container-block .title .icon {
        min-width: 20px;
        width: 20px;
        height: 20px;
        margin-right: 10px; }
    .container-block.left {
      padding-right: 15px;
      padding-left: 15px; }
    .container-block.right {
      padding-left: 15px;
      padding-right: 15px; }

  .reverse .container-block.right {
    padding-right: 15px;
    padding-left: 15px; }
  .reverse .container-block.left {
    padding-left: 15px;
    padding-right: 15px; }

  .btn, .elementor-button {
    padding: 10px 15px;
    font-size: 16rem; }

  .buttons .btn {
    margin: 15px 7px 0px 7px; }
  .buttons.buttons-left {
    justify-content: center; }
    .buttons.buttons-left .btn {
      margin-right: 15px; }

  .pt-big {
    padding-top: 40px; }

  .pt-medium {
    padding-top: 20px; }

  .pb-big {
    padding-bottom: 40px; }

  .pb-medium {
    padding-bottom: 20px; }

  .pb-big + div .module-title {
    padding-top: 20px; }

  .table-responsive .table tr {
    padding: 0; }
  .table-responsive .table th {
    font-size: 20rem;
    padding: 15px 15px; }
  .table-responsive .table td {
    font-size: 18rem;
    padding: 15px 15px; } }
@media (min-width: 576px) and (max-width: 767.5px) {
  .container {
    max-width: 100%; }

  .container-block {
    max-width: 100%;
    padding-top: 30px;
    padding-bottom: 30px;
    width: 100%; }
    .container-block .title {
      margin-bottom: 20px; }
      .container-block .title h3 {
        font-size: 25rem; }
      .container-block .title .icon {
        min-width: 30px;
        width: 30px;
        height: 30px; }
    .container-block.left {
      padding-right: 20px;
      padding-left: 20px; }
    .container-block.right {
      padding-left: 20px;
      padding-right: 20px; }

  .reverse .container-block.right {
    padding-right: 20px;
    padding-left: 20px; }
  .reverse .container-block.left {
    padding-left: 20px;
    padding-right: 20px; }

  .btn, .elementor-button {
    padding: 10px 15px;
    font-size: 16rem; }

  .buttons .btn {
    margin: 15px 7px 0px 7px; }
  .buttons.buttons-left {
    justify-content: center; }
    .buttons.buttons-left .btn {
      margin-right: 15px; }

  .pt-big {
    padding-top: 50px; }

  .pt-medium {
    padding-top: 25px; }

  .pb-big {
    padding-bottom: 50px; }

  .pb-medium {
    padding-bottom: 25px; }

  .pb-big + div .module-title {
    padding-top: 25px; }

  .table-responsive .table tr {
    padding: 0; }
  .table-responsive .table th {
    font-size: 20rem;
    padding: 20px 20px; }
  .table-responsive .table td {
    font-size: 18rem;
    padding: 20px 20px; } }
@media (min-width: 768px) and (max-width: 991.5px) {
  .container-block {
    max-width: 690px;
    padding-top: 30px;
    padding-bottom: 30px;
    width: 100%; }
    .container-block .title {
      margin-bottom: 20px; }
      .container-block .title h3 {
        font-size: 25rem; }
      .container-block .title .icon {
        min-width: 30px;
        width: 30px;
        height: 30px; }
    .container-block.left {
      padding-right: 0px;
      margin: 0 auto; }
    .container-block.right {
      padding-left: 0px;
      margin: 0 auto; }

  .reverse .container-block.right {
    padding-right: 0px;
    margin: 0 auto; }
  .reverse .container-block.left {
    padding-left: 0px;
    margin: 0 auto; }

  .btn, .elementor-button {
    padding: 10px 15px;
    font-size: 16rem; }

  .buttons .btn {
    margin: 15px 7px 0px 7px; }
  .buttons.buttons-left {
    justify-content: center; }
    .buttons.buttons-left .btn {
      margin-right: 15px; }

  .pt-big {
    padding-top: 60px; }

  .pt-medium {
    padding-top: 30px; }

  .pb-big {
    padding-bottom: 60px; }

  .pb-medium {
    padding-bottom: 30px; }

  .pb-big + div .module-title {
    padding-top: 30px; }

  .table-responsive .table tr {
    padding: 0; }
  .table-responsive .table th {
    font-size: 20rem;
    padding: 20px 25px; }
  .table-responsive .table td {
    font-size: 18rem;
    padding: 20px 25px; } }
@media (min-width: 992px) and (max-width: 1199.5px) {
  .container-block {
    max-width: calc(100% - 20px);
    padding-top: 30px;
    padding-bottom: 30px;
    width: 496px; }
    .container-block .title h3 {
      font-size: 30rem; }
    .container-block .title .icon {
      min-width: 38px;
      width: 38px;
      height: 38px; }
    .container-block.left {
      padding-right: 20px; }
    .container-block.right {
      padding-left: 20px; }

  .reverse .container-block.right {
    padding-right: 20px; }
  .reverse .container-block.left {
    padding-left: 20px; }

  .btn, .elementor-button {
    padding: 15px 20px; }

  .buttons .btn {
    margin: 15px 15px 0px 15px; }
  .buttons.buttons-left .btn {
    margin-right: 30px; }

  .pt-big {
    padding-top: 80px; }

  .pt-medium {
    padding-top: 40px; }

  .pb-big {
    padding-bottom: 80px; }

  .pb-medium {
    padding-bottom: 40px; }

  .pb-big + div .module-title {
    padding-top: 40px; } }
@media (min-width: 1200px) and (max-width: 1579.5px) {
  .container-block {
    max-width: calc(100% - 40px);
    padding-top: 40px;
    padding-bottom: 40px;
    width: 600px; }
    .container-block .title h3 {
      font-size: 35rem; }
    .container-block .title .icon {
      min-width: 46px;
      width: 46px;
      height: 46px; }
    .container-block.left {
      padding-right: 40px; }
    .container-block.right {
      padding-left: 40px; }

  .reverse .container-block.right {
    padding-right: 50px; }
  .reverse .container-block.left {
    padding-left: 50px; }

  .btn, .elementor-button {
    padding: 15px 50px; }

  .buttons .btn {
    margin: 15px 15px 0px 15px; }
  .buttons.buttons-left .btn {
    margin-right: 30px; }

  .pt-big {
    padding-top: 100px; }

  .pt-medium {
    padding-top: 50px; }

  .pb-big {
    padding-bottom: 100px; }

  .pb-medium {
    padding-bottom: 50px; }

  .pb-big + div .module-title {
    padding-top: 50px; } }
header {
  padding-top: 0px;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  z-index: 8; }
  header.sticked {
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
    padding-top: 0px;
    transform: translateY(0); }
    header.sticked #main-nav {
      height: 80px;
      background-color: var(--primary-bg); }
      header.sticked #main-nav .inner .btn-menu span {
        background-color: var(--primary-text); }
      header.sticked #main-nav .inner #logo {
        padding: 20px 0;
        padding-left: 189px; }
      header.sticked #main-nav .socials a {
        filter: brightness(0); }
      header.sticked #main-nav .language-inner .language-select .one-lang span {
        color: var(--primary-text) !important; }
      header.sticked #main-nav .language-inner .caret {
        filter: brightness(0); }
      header.sticked #main-nav .language-inner:after {
        background-color: var(--primary-text) !important; }
      header.sticked #main-nav .language-inner .my-dropdown-toggle span {
        color: var(--primary-text) !important; }
    header.sticked #main-menu.big-menu .page-nav &gt; li &gt; a &gt; span {
      padding-top: 30px;
      padding-bottom: 30px; }
    header.sticked #main-menu.big-menu .page-nav &gt; li &gt; a:after {
      top: -30px; }
    header.sticked #main-menu.big-menu .my-dropdown .dropdown-menu {
      top: calc(100% - 4px);
      background-color: var(--primary-bg); }
      header.sticked #main-menu.big-menu .my-dropdown .dropdown-menu li a span {
        color: var(--primary-text); }
      header.sticked #main-menu.big-menu .my-dropdown .dropdown-menu li a:after {
        background-color: var(--primary-text); }
    header.sticked #main-menu .my-dropdown .my-dropdown-toggle .caret {
      filter: brightness(0); }
    header.sticked #main-menu .my-dropdown .my-dropdown-toggle:after {
      background-color: var(--primary-text); }
    header.sticked .page-nav li a {
      color: var(--primary-text); }
      header.sticked .page-nav li a:after {
        background-color: var(--primary-text); }
      header.sticked .page-nav li a span {
        /*                        padding-top: 20px;
                                padding-bottom: 20px;*/ }

.products-buy .one-product {
  display: flex; }
  .products-buy .one-product .photo {
    width: 200px;
    margin-right: 20px; }
    .products-buy .one-product .photo img {
      width: 100%;
      object-fit: cover; }
    .products-buy .one-product .photo .no-photo {
      padding: 0px 30px 30px 30px; }
  .products-buy .one-product .buttons-count {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: flex-start; }
    .products-buy .one-product .buttons-count .btn {
      width: 30px;
      min-width: 30px; }
  .products-buy .one-product .buttons-count-inner {
    display: flex; }
  .products-buy .one-product .feature-name {
    display: flex;
    margin-right: 10px; }
  .products-buy .one-product .product-text {
    margin: 0 5px; }
  .products-buy .one-product .shop-product-one-feature {
    display: flex;
    justify-content: space-between; }

.window-open {
  position: fixed;
  z-index: 99999;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #00000055; }
  .window-open .container {
    max-height: calc(100vh - 80px);
    display: flex;
    flex-direction: column; }
  .window-open .wrapper {
    position: relative;
    display: none;
    width: 1000px;
    max-width: calc(100% - 40px);
    background-color: #fff;
    border-radius: 6px;
    box-shadow: 0 -1px 10px 0 #acabab;
    padding-bottom: 15px; }
  .window-open .image img {
    max-width: 100%; }
  .window-open .btn-close {
    border: none;
    position: absolute;
    right: 10px;
    top: 10px;
    width: 30px;
    height: 30px;
    background-color: red;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    border-radius: 6px;
    cursor: pointer;
    z-index: 1; }
    .window-open .btn-close:hover {
      background-color: #ff6666; }
  .window-open .scroll-content {
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 100%; }
  .window-open .cookie-change {
    display: flex;
    justify-content: center; }
    .window-open .cookie-change input[type="checkbox"] {
      position: relative;
      width: 48px;
      height: 28px;
      margin: 0;
      background: white;
      -webkit-appearance: none;
      -webkit-transition: 0.3s;
      transition: 0.3s;
      border-radius: 50px;
      cursor: pointer;
      outline: 0;
      border: none;
      top: 0;
      border: 2px solid green; }
      .window-open .cookie-change input[type="checkbox"]:checked {
        background-color: green; }
        .window-open .cookie-change input[type="checkbox"]:checked:before {
          right: 2px;
          left: 20px; }
      .window-open .cookie-change input[type="checkbox"]:before {
        position: absolute;
        content: "";
        height: 20px;
        width: 20px;
        left: 2px;
        right: 20px;
        bottom: 2px;
        border-radius: 50%;
        background-color: white;
        -webkit-transition: 0.3s;
        transition: 0.3s;
        margin: 0;
        border: 2px solid green; }
  .window-open .cookies-wrapper {
    padding: 2px; }
  .window-open .one-cookie {
    cursor: pointer;
    margin-top: 10px;
    border-top: 1px solid var(--light-bg);
    border-radius: 0;
    font-weight: 400;
    display: block;
    padding: 0;
    text-transform: initial;
    text-align: left;
    width: 100%; }
    .window-open .one-cookie h3 {
      margin-top: 0;
      padding-top: 10px; }
    .window-open .one-cookie:hover {
      transform: none;
      background-color: var(--light-bg); }
  .window-open .one-cookie-more {
    background-color: var(--light-bg);
    padding: 10px; }
  .window-open .cookie-more {
    display: none; }
  .window-open .buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 10px;
    margin-top: 10px;
    border-top: 1px solid var(--light-bg); }

.buttons-buy {
  width: fit-content;
  width: -moz-fit-content;
  margin-left: auto;
  margin-right: auto; }
  .buttons-buy .buttons {
    justify-content: space-between; }
    .buttons-buy .buttons p {
      margin-bottom: 0; }
    .buttons-buy .buttons .summary-price {
      margin-right: 25px; }
  .buttons-buy .product-count {
    display: flex;
    align-items: center; }
    .buttons-buy .product-count .btn-count {
      border: 2px solid var(--element2-color);
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 10px;
      height: 40px;
      width: 30px;
      transition: 0.3s;
      -webkit-transition: 0.3s; }
      .buttons-buy .product-count .btn-count.prev {
        border-radius: 0;
        border-top-left-radius: 10px;
        border-bottom-left-radius: 10px;
        border-right: none;
        margin-right: 0;
        margin-top: 0; }
        .buttons-buy .product-count .btn-count.prev:hover {
          transform: none; }
      .buttons-buy .product-count .btn-count.next {
        border-radius: 0;
        border-top-right-radius: 10px;
        border-bottom-right-radius: 10px;
        border-left: none;
        margin-left: 0;
        margin-top: 0; }
        .buttons-buy .product-count .btn-count.next:hover {
          transform: none; }
      .buttons-buy .product-count .btn-count:hover {
        background-color: #dbdbdb; }
    .buttons-buy .product-count input[type='number'] {
      height: 40px;
      border-radius: 0;
      width: 60px;
      text-align: center;
      appearance: none;
      -moz-appearance: textfield;
      -webkit-appearance: none;
      padding-left: 0; }
    .buttons-buy .product-count input[type='number']::-webkit-outer-spin-button, .buttons-buy .product-count input[type='number']::-webkit-inner-spin-button {
      appearance: none;
      -webkit-appearance: none;
      margin: 0; }

.shop-go-to-summary .btn-go-to-cart {
  display: none; }

.shop-go-to-cart .btn-go-to-summary {
  display: none; }
.shop-go-to-cart #shop-delivery {
  display: none; }
.shop-go-to-cart #shop-discount {
  display: none; }

.shop-cart .shop-product {
  background-color: #f5f5f5;
  border: 1px solid #dfdfdf;
  margin-bottom: 10px;
  padding: 5px; }
  .shop-cart .shop-product .price {
    margin-left: 15px;
    white-space: nowrap; }
  .shop-cart .shop-product .product-count-buttons {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 5px; }
    .shop-cart .shop-product .product-count-buttons .btn-count {
      border-radius: 0px;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 10px;
      height: 30px;
      width: 30px;
      transition: 0.3s;
      -webkit-transition: 0.3s;
      background-color: var(--element2-color);
      color: var(--secondary-text); }
      .shop-cart .shop-product .product-count-buttons .btn-count.prev {
        margin-right: 5px; }
      .shop-cart .shop-product .product-count-buttons .btn-count:hover {
        background-color: var(--element1-color); }
  .shop-cart .shop-product p {
    margin-bottom: 0; }
.shop-cart .product-info {
  display: flex;
  justify-content: space-between;
  width: 100%; }
.shop-cart .shop-product-one-feature {
  display: flex;
  justify-content: space-between;
  width: 100%; }
  .shop-cart .shop-product-one-feature p {
    color: #808080; }
  .shop-cart .shop-product-one-feature .feature-name {
    display: flex;
    color: #808080; }
.shop-cart .summary-price {
  display: flex;
  justify-content: space-between; }
.shop-cart .packaging-price {
  display: flex;
  justify-content: space-between; }
.shop-cart .discount-price {
  display: flex;
  justify-content: space-between; }
.shop-cart .old-price {
  text-decoration: line-through; }
.shop-cart .delivery-price {
  display: flex;
  justify-content: space-between; }

main {
  position: relative;
  padding-top: 0; }

.preloader {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: white;
  z-index: 9999999; }
  .preloader img {
    transition: 3s;
    -webkit-transition: 3s;
    width: 5vw;
    animation-name: preloader;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear; }

#author-page .map-links ul {
  display: flex;
  flex-wrap: wrap;
  padding-left: 5px; }
  #author-page .map-links ul ul li {
    width: 100%; }
  #author-page .map-links ul li {
    width: 25%;
    height: fit-content;
    height: -moz-fit-content;
    padding-right: 10px; }

.newsy {
  margin-bottom: 140px;
  margin-top: 60px; }
  .newsy .one-news {
    padding: 0;
    display: flex;
    flex-direction: column; }
    .newsy .one-news .foto {
      width: 100%; }
      .newsy .one-news .foto figure.image {
        margin: 0;
        width: 100%; }
      .newsy .one-news .foto img {
        max-width: 100%;
        height: 300px;
        object-fit: cover;
        width: 100%; }
    .newsy .one-news .text {
      display: flex;
      height: 100%; }
      .newsy .one-news .text .text-inner {
        flex: 1 1 50%;
        padding: 25px 25px;
        padding-bottom: 45px;
        position: relative;
        overflow-x: hidden;
        height: 100%; }
        .newsy .one-news .text .text-inner:after {
          display: block;
          content: "więcej &gt;";
          font-size: 15rem;
          font-weight: 700;
          color: var(--element2-color);
          margin-bottom: 20px;
          position: absolute;
          bottom: 10px; }
        .newsy .one-news .text .text-inner:before {
          display: block;
          content: "";
          width: 310px;
          height: 18px;
          background-image: linear-gradient(82deg, rgba(31, 1, 165, 0.8196078431) 35%, rgba(31, 1, 165, 0.8138880657) 38%, rgba(31, 1, 165, 0.5098039216) 100%);
          transform: skew(-37deg, 0deg);
          position: absolute;
          bottom: 0;
          right: -8px; }
  .newsy h3 {
    color: var(--primary-title);
    font-size: 25rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    margin-top: 0; }
  .newsy h4 {
    margin-top: 0;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0; }
  .newsy .title {
    margin-bottom: 25px; }
  .newsy p {
    font-size: 15rem;
    color: var(--primary-text);
    text-align: left;
    margin-bottom: 35px; }
  .newsy .one-element {
    padding: 15px; }
  .newsy .one-news {
    border: 1px solid var(--dark-bg2);
    height: 100%; }
    .newsy .one-news:hover {
      box-shadow: 0 0 10px 2px var(--transparent-color1); }
  .newsy .owl-item {
    padding: 10px; }
  .newsy .buttons {
    margin-top: 0; }

.better-info {
  display: none;
  position: fixed;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 300;
  justify-content: center;
  align-items: center;
  padding: 30px; }
  .better-info .wrapper {
    max-width: 600px;
    font-weight: 500;
    position: relative;
    padding: 30px 45px 30px 145px;
    background-color: #fff;
    border-radius: 15px; }
    .better-info .wrapper.success {
      background-position: center left 45px;
      background-repeat: no-repeat;
      background-size: 65px;
      background-image: url("../img/send.svg"); }
    .better-info .wrapper.warning {
      background-position: center left 45px;
      background-repeat: no-repeat;
      background-size: 65px;
      background-image: url("../img/info-warning.svg"); }
    .better-info .wrapper.danger {
      background-position: center left 45px;
      background-repeat: no-repeat;
      background-size: 65px;
      background-image: url("../img/info-danger.svg"); }
    .better-info .wrapper.info {
      background-position: center left 45px;
      background-repeat: no-repeat;
      background-size: 65px;
      background-image: url("../img/info-info.svg"); }
    .better-info .wrapper .btn-close {
      color: black;
      position: absolute;
      right: 10px;
      top: 10px;
      font-size: 20px;
      font-weight: 600;
      padding: 0; }
    .better-info .wrapper a {
      color: #3499b5; }
      .better-info .wrapper a:hover {
        text-decoration: underline; }
    .better-info .wrapper h4 {
      text-transform: uppercase; }

.cookies-mini {
  font-size: 14px;
  width: 100px;
  height: 10px;
  box-shadow: 0 -1px 5px 0 #acabab;
  cursor: pointer;
  background-color: var(--light-bg);
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  z-index: 5000;
  left: 20px;
  bottom: 0px;
  background-repeat: no-repeat;
  background-size: 30px;
  background-position: center;
  transition: 0.3s;
  -webkit-transition: 0.3s; }
  .cookies-mini:hover {
    color: var(--element1-color); }

.cookies-settings, .cookie-item-tadam {
  position: fixed;
  z-index: 99999;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #00000055; }
  .cookies-settings .container, .cookie-item-tadam .container {
    max-height: calc(100vh - 80px);
    display: flex;
    flex-direction: column; }
  .cookies-settings .wrapper, .cookie-item-tadam .wrapper {
    position: relative;
    display: none;
    width: 1000px;
    max-width: calc(100% - 40px);
    background-color: #fff;
    border-radius: 6px;
    box-shadow: 0 -1px 10px 0 #acabab;
    padding-bottom: 15px; }
  .cookies-settings .btn-close, .cookie-item-tadam .btn-close {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 30px;
    height: 30px;
    background-color: red;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    border-radius: 6px;
    cursor: pointer;
    z-index: 1; }
    .cookies-settings .btn-close:hover, .cookie-item-tadam .btn-close:hover {
      background-color: #ff6666; }
  .cookies-settings .scroll-content, .cookie-item-tadam .scroll-content {
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 100%; }
    .cookies-settings .scroll-content a, .cookie-item-tadam .scroll-content a {
      word-break: break-all; }
  .cookies-settings .one-cookie-information, .cookie-item-tadam .one-cookie-information {
    margin-bottom: 20px; }
  .cookies-settings .cookie-tags, .cookie-item-tadam .cookie-tags {
    display: flex;
    flex-wrap: wrap; }
    .cookies-settings .cookie-tags .cookie-tag, .cookie-item-tadam .cookie-tags .cookie-tag {
      padding: 2px 5px;
      border: 2px solid #dbdbdb;
      margin-bottom: 5px;
      margin-right: 5px; }
      .cookies-settings .cookie-tags .cookie-tag p, .cookie-item-tadam .cookie-tags .cookie-tag p {
        margin-bottom: 0; }
  .cookies-settings .cookie-info, .cookie-item-tadam .cookie-info {
    padding: 5px;
    border: 2px solid #dbdbdb;
    margin-bottom: 15px; }
  .cookies-settings .cookie-change, .cookie-item-tadam .cookie-change {
    display: flex;
    justify-content: flex-end;
    padding-right: 30px; }
    .cookies-settings .cookie-change .cookie-information, .cookie-item-tadam .cookie-change .cookie-information {
      display: flex;
      align-items: center;
      justify-content: center;
      height: 28px;
      margin-right: 15px; }
      .cookies-settings .cookie-change .cookie-information img, .cookie-item-tadam .cookie-change .cookie-information img {
        width: 20px;
        border-radius: 50%;
        -webkit-transition: 0.3s;
        transition: 0.3s; }
      .cookies-settings .cookie-change .cookie-information:hover img, .cookie-item-tadam .cookie-change .cookie-information:hover img {
        background-color: green; }
    .cookies-settings .cookie-change input[type="checkbox"], .cookie-item-tadam .cookie-change input[type="checkbox"] {
      position: relative;
      width: 48px;
      height: 28px;
      margin: 0;
      background: white;
      -webkit-appearance: none;
      -webkit-transition: 0.3s;
      transition: 0.3s;
      border-radius: 50px;
      cursor: pointer;
      outline: 0;
      border: none;
      top: 0;
      border: 2px solid green; }
      .cookies-settings .cookie-change input[type="checkbox"]:checked, .cookie-item-tadam .cookie-change input[type="checkbox"]:checked {
        background-color: green; }
        .cookies-settings .cookie-change input[type="checkbox"]:checked:before, .cookie-item-tadam .cookie-change input[type="checkbox"]:checked:before {
          right: 2px;
          left: 20px; }
      .cookies-settings .cookie-change input[type="checkbox"]:before, .cookie-item-tadam .cookie-change input[type="checkbox"]:before {
        position: absolute;
        content: "";
        height: 20px;
        width: 20px;
        left: 2px;
        right: 20px;
        bottom: 2px;
        border-radius: 50%;
        background-color: white;
        -webkit-transition: 0.3s;
        transition: 0.3s;
        margin: 0;
        border: 2px solid green; }
  .cookies-settings .cookies-wrapper, .cookie-item-tadam .cookies-wrapper {
    padding: 2px; }
  .cookies-settings .one-cookie, .cookie-item-tadam .one-cookie {
    cursor: pointer;
    margin-top: 10px;
    border: 2px solid #dbdbdb;
    padding: 0;
    padding-left: 10px;
    border-radius: 0;
    font-weight: 400;
    display: block;
    text-transform: initial;
    text-align: left;
    width: 100%; }
    .cookies-settings .one-cookie h3, .cookie-item-tadam .one-cookie h3 {
      margin-top: 0;
      padding-top: 10px; }
    .cookies-settings .one-cookie:hover, .cookie-item-tadam .one-cookie:hover {
      transform: none;
      background-color: var(--light-bg); }
  .cookies-settings .one-cookie-more, .cookie-item-tadam .one-cookie-more {
    padding: 5px 0; }
    .cookies-settings .one-cookie-more p, .cookie-item-tadam .one-cookie-more p {
      margin-bottom: 0; }
    .cookies-settings .one-cookie-more:first-child, .cookie-item-tadam .one-cookie-more:first-child {
      border-top: 2px solid #dbdbdb;
      padding-top: 20px; }
  .cookies-settings .cookie-more, .cookie-item-tadam .cookie-more {
    display: none; }
  .cookies-settings .buttons, .cookie-item-tadam .buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 10px;
    margin-top: 10px;
    border-top: 1px solid var(--light-bg); }

.cookies-info {
  position: fixed;
  z-index: 999999;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  pointer-events: none; }
  .cookies-info .wrapper {
    width: 550px;
    max-height: calc(100% - 40px);
    max-width: calc(100% - 40px);
    background-color: #fff;
    overflow-y: auto;
    border-radius: 6px;
    box-shadow: 0 -1px 10px 0 #acabab;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    position: relative;
    left: 20px;
    bottom: 20px;
    right: auto;
    top: auto;
    pointer-events: auto;
    padding-bottom: 10px; }
  .cookies-info h2 {
    font-size: 24rem; }
  .cookies-info .more {
    display: none; }
  .cookies-info .buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; }

#top-bar {
  height: 65px;
  max-width: 100vw; }
  #top-bar .container-fluid {
    height: 100%; }
  #top-bar .wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    height: 100%; }
  #top-bar .address p {
    font-size: 18rem; }
    #top-bar .address p br {
      display: none; }
  #top-bar p {
    margin-bottom: 0; }
  #top-bar .right {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    padding-right: 40px; }
  #top-bar .links a {
    display: flex;
    align-items: flex-end; }
  #top-bar .links span {
    font-size: 17rem;
    font-weight: 700;
    margin-right: 7px; }
  #top-bar .links img {
    width: 71px; }
  #top-bar .telephone a {
    font-weight: 400;
    color: var(--primary-text);
    font-size: 23rem; }
    #top-bar .telephone a strong {
      color: var(--element1-color);
      font-weight: 600; }

.socials {
  display: flex;
  align-items: center;
  margin-left: 20px; }
  .socials a {
    border-radius: 50%;
    width: 33px;
    min-width: 33px;
    height: 33px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 5px; }
    .socials a:hover {
      transform: scale(0.9); }

#main-nav {
  opacity: 0;
  display: flex;
  align-items: center;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  height: 130px;
  position: relative; }
  #main-nav &gt; .my-dropdown:first-child &gt; .my-dropdown-toggle .caret {
    background-image: url("/img/caret-white.png"); }
  #main-nav .my-dropdown {
    position: relative; }
    #main-nav .my-dropdown .my-dropdown-toggle {
      display: flex;
      align-items: center; }
      #main-nav .my-dropdown .my-dropdown-toggle:hover:after {
        width: 100%; }
      #main-nav .my-dropdown .my-dropdown-toggle .caret {
        display: inline-block;
        content: "";
        width: 15px;
        height: 10px;
        background-image: url("/img/caret-pixel.png");
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        margin-left: 15px; }
      #main-nav .my-dropdown .my-dropdown-toggle:after {
        content: "";
        width: 0px;
        height: 2px;
        background-color: var(--secondary-text);
        transition: 0.3s;
        -webkit-transition: 0.3s;
        position: relative;
        top: -35px; }
    #main-nav .my-dropdown .dropdown-menu {
      border: none;
      border-radius: 0px;
      box-shadow: none;
      border-top: 3px solid var(--secondary-text);
      padding: 5px 0px;
      left: 0px;
      right: auto;
      top: calc(100% - 2px);
      box-shadow: 5px 5px 8px rgba(0, 0, 0, 0.5);
      background-color: rgba(49, 19, 173, 0.9);
      min-width: 100%; }
      #main-nav .my-dropdown .dropdown-menu .dropdown-menu {
        left: 100%;
        top: -8px; }
      #main-nav .my-dropdown .dropdown-menu li {
        width: 100%;
        margin-left: 0; }
        #main-nav .my-dropdown .dropdown-menu li a {
          width: 100%;
          color: var(--secondary-text); }
          #main-nav .my-dropdown .dropdown-menu li a:hover:after {
            width: 100%; }
          #main-nav .my-dropdown .dropdown-menu li a:after {
            content: "";
            width: 0px;
            height: 2px;
            background-color: var(--secondary-text);
            transition: 0.3s;
            -webkit-transition: 0.3s;
            position: relative;
            top: -5px; }
          #main-nav .my-dropdown .dropdown-menu li a .caret {
            filter: brightness(0); }
          #main-nav .my-dropdown .dropdown-menu li a span {
            padding: 15px 10px; }
  #main-nav .inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 0;
    padding-left: 460px; }
    #main-nav .inner #logo {
      position: absolute;
      top: -1px;
      background-color: var(--primary-bg);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 56px 0;
      width: 590px;
      padding-left: 189px;
      transform: skew(-37deg, 0deg);
      left: -139px;
      z-index: 2;
      transition: 0.3s;
      -webkit-transition: 0.3s; }
      #main-nav .inner #logo a {
        transform: skew(37deg, 0deg); }
  #main-nav .btn-menu {
    z-index: 1;
    margin-left: auto;
    display: none; }
    #main-nav .btn-menu span {
      display: block;
      height: 3px;
      width: 40px;
      background-color: var(--secondary-text);
      border-radius: 4px;
      margin-top: 7px;
      margin-bottom: 7px; }
    #main-nav .btn-menu.menu-small {
      display: block;
      padding: 5px 10px; }
  #main-nav.open {
    background-color: var(--primary-bg); }
    #main-nav.open .socials a {
      filter: brightness(0); }
    #main-nav.open .language-inner .caret {
      filter: brightness(0) !important; }
    #main-nav.open .language-inner:after {
      background-color: var(--primary-text) !important; }
    #main-nav.open .language-inner .my-dropdown-toggle span {
      color: var(--primary-text) !important; }
    #main-nav.open .btn-menu span {
      background-color: var(--primary-text); }

#main-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1;
  width: 100%;
  transition: 0.3s;
  -webkit-transition: 0.3s; }
  #main-menu .socials {
    margin-left: auto; }
  #main-menu.mini-menu {
    position: absolute;
    background-color: rgba(49, 19, 173, 0.9);
    z-index: -1;
    width: 100vw;
    height: 100vh;
    left: 0;
    transform: translateY(-100%);
    align-items: flex-start;
    max-height: calc(100vh);
    overflow-y: auto;
    opacity: 0;
    top: 50px;
    padding-bottom: 100px; }
    #main-menu.mini-menu #link-konto, #main-menu.mini-menu #link-koszyk {
      margin: 0;
      margin-right: 10px; }
      #main-menu.mini-menu #link-konto .my-dropdown-mini .line1, #main-menu.mini-menu #link-konto .my-dropdown-mini .line2, #main-menu.mini-menu #link-koszyk .my-dropdown-mini .line1, #main-menu.mini-menu #link-koszyk .my-dropdown-mini .line2 {
        padding: 0; }
      #main-menu.mini-menu #link-konto a span, #main-menu.mini-menu #link-koszyk a span {
        padding: 20px 15px; }
      #main-menu.mini-menu #link-konto img, #main-menu.mini-menu #link-koszyk img {
        max-height: 20px; }
    #main-menu.mini-menu .page-nav {
      margin: 0 auto;
      list-style: none;
      padding: 0;
      order: 2;
      margin-bottom: 20px;
      flex-direction: column;
      max-width: 500px; }
      #main-menu.mini-menu .page-nav li {
        border-top: 1px solid var(--secondary-text);
        margin-left: 0;
        width: 100%;
        border-radius: 0;
        position: relative;
        background-color: transparent; }
        #main-menu.mini-menu .page-nav li a {
          padding: 0;
          color: var(--secondary-text);
          width: 100%; }
          #main-menu.mini-menu .page-nav li a span {
            padding-top: 20px;
            padding-bottom: 20px; }
        #main-menu.mini-menu .page-nav li:before {
          display: block;
          content: "";
          position: absolute;
          bottom: -4px;
          left: 0;
          width: 7px;
          min-width: 7px;
          height: 7px;
          background-color: white; }
        #main-menu.mini-menu .page-nav li:after {
          display: block;
          content: "";
          position: absolute;
          bottom: -4px;
          right: 0;
          width: 7px;
          min-width: 7px;
          height: 7px;
          background-color: white;
          border-radius: 50%; }
        #main-menu.mini-menu .page-nav li:last-child {
          border-bottom: 1px solid var(--secondary-text); }
      #main-menu.mini-menu .page-nav .my-dropdown {
        background-color: transparent;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        position: relative; }
        #main-menu.mini-menu .page-nav .my-dropdown:hover {
          background-color: rgba(49, 19, 173, 0.5); }
      #main-menu.mini-menu .page-nav .my-dropdown-toggle {
        width: calc(100% - 65px);
        justify-content: flex-start;
        align-items: flex-start; }
        #main-menu.mini-menu .page-nav .my-dropdown-toggle .caret {
          opacity: 0; }
        #main-menu.mini-menu .page-nav .my-dropdown-toggle:after {
          color: var(--element2-color); }
      #main-menu.mini-menu .page-nav .my-dropdown-mini {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 35px;
        height: 35px;
        border: none;
        background-color: transparent !important;
        border-radius: 10px;
        margin-right: 15px;
        margin-left: 15px;
        position: relative; }
        #main-menu.mini-menu .page-nav .my-dropdown-mini .line1 {
          width: 3px;
          height: 20px;
          background-color: var(--secondary-text);
          border-radius: 5px;
          position: absolute;
          transition: 0.3s;
          -webkit-transition: 0.3s;
          transform: rotate(45deg);
          height: 11px;
          margin-left: 7px;
          border-radius: 5px;
          display: block;
          padding: 0; }
        #main-menu.mini-menu .page-nav .my-dropdown-mini .line2 {
          width: 3px;
          height: 20px;
          background-color: var(--secondary-text);
          border-radius: 5px;
          position: absolute;
          transition: 0.3s;
          -webkit-transition: 0.3s;
          transform: rotate(-45deg);
          height: 11px;
          margin-right: 7px;
          border-radius: 5px;
          display: block;
          padding: 0; }
        #main-menu.mini-menu .page-nav .my-dropdown-mini.open {
          background-color: var(--secondary-text); }
          #main-menu.mini-menu .page-nav .my-dropdown-mini.open .line1 {
            transform: rotate(135deg); }
          #main-menu.mini-menu .page-nav .my-dropdown-mini.open .line2 {
            transform: rotate(-135deg); }
      #main-menu.mini-menu .page-nav .dropdown-menu {
        width: 100%;
        position: relative;
        box-shadow: none;
        border-top: 2px solid var(--secondary-text);
        border-bottom: 1px solid var(--secondary-text);
        font-size: 90%;
        background-color: transparent;
        top: 0;
        padding-top: 0;
        padding-bottom: 0; }
        #main-menu.mini-menu .page-nav .dropdown-menu .my-dropdown {
          background-image: none;
          border-top: 1px solid #e5e5e5;
          display: flex;
          padding-left: 0; }
          #main-menu.mini-menu .page-nav .dropdown-menu .my-dropdown + .my-dropdown {
            border-top: 1px solid var(--element2-color); }
          #main-menu.mini-menu .page-nav .dropdown-menu .my-dropdown &gt; a {
            background-image: url("/img/right-arrow.svg?ver=0.4");
            background-repeat: no-repeat;
            background-position: 5px center;
            background-size: 15px;
            padding-left: 20px; }
        #main-menu.mini-menu .page-nav .dropdown-menu .dropdown-menu {
          border-bottom: none;
          left: 0;
          top: 0; }
          #main-menu.mini-menu .page-nav .dropdown-menu .dropdown-menu li {
            padding-left: 40px;
            background-position: 25px center; }
        #main-menu.mini-menu .page-nav .dropdown-menu li {
          background-image: url("/img/right-arrow.svg?ver=0.4");
          background-repeat: no-repeat;
          background-position: 5px center;
          background-size: 15px;
          padding-left: 20px; }
          #main-menu.mini-menu .page-nav .dropdown-menu li:first-child {
            margin-top: 0;
            border-top: none; }
          #main-menu.mini-menu .page-nav .dropdown-menu li:last-child {
            border-bottom: none; }
    #main-menu.mini-menu .phone {
      width: 100%;
      justify-content: center;
      margin-top: 30px; }
      #main-menu.mini-menu .phone a {
        padding-left: 30px;
        background-image: url("/img/mobile-phone.svg");
        background-size: 20px;
        background-repeat: no-repeat;
        background-position: left center;
        font-weight: 400;
        color: var(--secondary-text);
        font-size: 23rem; }
        #main-menu.mini-menu .phone a strong {
          color: var(--secondary-text);
          font-weight: 600; }
    #main-menu.mini-menu .socials {
      display: flex;
      align-items: center;
      width: 100%;
      justify-content: center;
      margin-top: 30px;
      order: 2; }
      #main-menu.mini-menu .socials a {
        background-color: var(--dark-bg2);
        border-radius: 50%;
        width: 40px;
        min-width: 40px;
        height: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 5px; }
        #main-menu.mini-menu .socials a:hover {
          background-color: var(--element1-color); }
    #main-menu.mini-menu.open {
      transform: translateY(0);
      opacity: 1; }
  #main-menu #link-konto {
    margin-left: auto; }
    #main-menu #link-konto img {
      margin-right: 15px; }
    #main-menu #link-konto span {
      display: flex;
      align-items: center; }
  #main-menu #link-koszyk span {
    display: flex;
    align-items: center;
    font-weight: 700; }
  #main-menu #link-koszyk img {
    margin-right: 15px; }
  #main-menu #link-koszyk strong {
    color: #10af57; }

.socials a {
  background-repeat: no-repeat;
  background-size: 19px;
  background-position: center; }
  .socials a.facebook {
    background-image: url("/img/fb.svg"); }
  .socials a.instagram {
    background-image: url("/img/ig.svg"); }
  .socials a.youtube {
    background-image: url("/img/yt.svg"); }
  .socials a.linkedin {
    background-image: url("/img/linkedin.svg"); }

.page-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 980px; }
  .page-nav .my-dropdown-mini {
    display: none; }
  .page-nav li {
    margin-bottom: 0px;
    margin-left: 10px;
    margin-right: 10px; }
    .page-nav li a {
      display: flex;
      padding: 0;
      flex-direction: column;
      font-size: 15rem;
      color: var(--secondary-text);
      white-space: nowrap;
      text-transform: uppercase;
      transition: 0s;
      font-weight: 700; }
      .page-nav li a:hover:after {
        width: 100%; }
      .page-nav li a.active {
        font-weight: 600; }
      .page-nav li a span {
        width: fit-content;
        width: -moz-fit-content;
        display: block;
        padding: 40px 5px;
        margin-left: 0;
        margin-right: 0px; }
      .page-nav li a:after {
        content: "";
        width: 0px;
        height: 2px;
        background-color: var(--secondary-text);
        transition: 0.3s;
        -webkit-transition: 0.3s;
        position: relative;
        top: -35px; }
    .page-nav li:before {
      display: none; }

.owl-carousel {
  position: relative; }
  .owl-carousel .owl-dots {
    display: flex;
    justify-content: center; }
    .owl-carousel .owl-dots .owl-dot {
      display: block;
      width: 20px;
      height: 20px;
      border-radius: 50%;
      border: 2px solid var(--primary-text);
      margin: 0 5px;
      background-color: var(--primary-bg); }
      .owl-carousel .owl-dots .owl-dot.active {
        background-color: var(--element1-color); }
  .owl-carousel .nav-wrapper {
    display: none;
    width: 100%;
    justify-content: center;
    margin-top: 20px; }
  .owl-carousel .nav-start {
    display: block;
    content: " ";
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid transparent;
    margin: 0 5px;
    background-image: url("/img/owl-start.svg");
    background-repeat: no-repeat;
    background-size: 14px;
    background-position: center;
    padding: 0; }
  .owl-carousel .nav-stop {
    display: block;
    content: " ";
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid transparent;
    margin: 0 5px;
    background-image: url("/img/owl-pause.svg");
    background-repeat: no-repeat;
    background-size: 14px;
    background-position: center;
    padding: 0; }
  .owl-carousel .owl-nav button {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    border-radius: 50%;
    opacity: 1;
    position: absolute;
    top: calc(50% - 25px); }
    .owl-carousel .owl-nav button img {
      width: 15px; }
    .owl-carousel .owl-nav button.owl-prev {
      left: -60px; }
    .owl-carousel .owl-nav button.owl-next {
      transform: rotate(180deg);
      right: -60px; }
    .owl-carousel .owl-nav button.disabled {
      opacity: 0.5; }
    .owl-carousel .owl-nav button:hover .owl-carousel .owl-nav button:not(.disabled) {
      opacity: 1; }
    .owl-carousel .owl-nav button:focus {
      outline: none; }
  .owl-carousel .one-news {
    color: var(--primary-title);
    display: block; }
    .owl-carousel .one-news img {
      height: 400px;
      width: 100%;
      object-fit: cover;
      object-position: center center; }
    .owl-carousel .one-news .wrapper {
      display: flex; }

#tadam-login .wrapper {
  width: 400px;
  max-width: 400px; }

.tadam {
  z-index: 999;
  top: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100vw;
  opacity: 0;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  position: fixed;
  background-color: rgba(0, 0, 0, 0.8); }
  .tadam .wrapper {
    position: relative;
    transform: scale(0);
    transform-origin: center;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    overflow: hidden;
    min-width: 280px;
    max-width: 80%;
    min-height: 200px;
    max-height: 90%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-bg); }
  .tadam .btn-close {
    position: absolute;
    top: 0px;
    right: 0px;
    background-color: red;
    z-index: 9999;
    box-shadow: none;
    border: none;
    color: #fff; }
  .tadam.open {
    opacity: 1; }
    .tadam.open .wrapper {
      transform: scale(1); }

#movie-tadam {
  z-index: -999;
  top: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100vw;
  opacity: 0;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  position: fixed;
  background-color: rgba(0, 0, 0, 0.8); }
  #movie-tadam .tadam-inner {
    position: relative;
    transform: scale(0);
    transform-origin: right;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    overflow: hidden;
    margin: 30px;
    width: 80%;
    height: 90%;
    display: flex;
    align-items: center;
    justify-content: center; }
    #movie-tadam .tadam-inner .close-tadam {
      position: absolute;
      top: 0px;
      right: 0px;
      background-color: #000;
      z-index: 9999;
      box-shadow: none;
      border: none;
      color: #fff; }
    #movie-tadam .tadam-inner .movie-container {
      max-height: 100%;
      max-width: 100%;
      position: absolute;
      display: flex;
      justify-content: center;
      align-items: center; }
      #movie-tadam .tadam-inner .movie-container .wideo {
        box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.4);
        height: fit-content;
        height: -moz-fit-content;
        width: auto;
        border-radius: 15px 0px 15px 15px;
        position: relative; }
  #movie-tadam.open {
    z-index: 999;
    opacity: 1; }
    #movie-tadam.open .tadam-inner {
      transform: scale(1); }

.article-dates {
  padding: 30px 0; }
  .article-dates .one-date {
    display: flex;
    justify-content: center; }

#footer {
  padding-top: 165px;
  position: relative; }
  #footer .special-element {
    position: absolute;
    bottom: 0;
    right: 0px;
    width: 562px;
    overflow-x: hidden; }

.footer-wrapper {
  background-image: url("/img/footer-bg.webp");
  background-repeat: no-repeat;
  background-size: 1920px;
  padding: 55px 0; }
  .footer-wrapper .logo {
    margin-bottom: 40px; }

.top-footer {
  padding-right: 500px;
  z-index: 3;
  position: relative; }
  .top-footer .contact-center p {
    padding-left: 15px; }
  .top-footer .contact-left, .top-footer .contact-center {
    max-width: 310px; }
  .top-footer .socials {
    margin-left: 0; }
  .top-footer a:hover {
    color: var(--element1-color); }
  .top-footer p, .top-footer a, .top-footer li {
    color: var(--secondary-text);
    font-size: 15rem; }
  .top-footer p {
    margin-bottom: 30px; }
  .top-footer .wrapper {
    display: flex;
    justify-content: space-between; }
  .top-footer .bottom-menu {
    list-style: none; }
    .top-footer .bottom-menu li {
      margin-bottom: 0; }
      .top-footer .bottom-menu li:before {
        display: none; }

.bottom-footer {
  padding-top: 60px;
  padding-right: 500px;
  z-index: 3;
  position: relative; }
  .bottom-footer .container-fluid {
    padding: 0 100px; }
  .bottom-footer .wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between; }
  .bottom-footer p {
    color: var(--transparent-color2);
    font-size: 16rem;
    margin-bottom: 0; }
  .bottom-footer a {
    color: var(--transparent-color2);
    font-size: 16rem; }
    .bottom-footer a:hover {
      color: var(--element1-color); }
  .bottom-footer .copyright {
    opacity: 0.4;
    text-align: center; }
  .bottom-footer .author {
    text-align: center; }
    .bottom-footer .author p {
      padding-left: 55px;
      position: relative;
      position: relative; }
      .bottom-footer .author p:before {
        content: "";
        background-image: url("/img/gi.png");
        background-size: 100% 100%;
        width: 40px;
        height: 23px;
        display: block;
        position: absolute;
        left: 0;
        bottom: 4px; }

.subsite figure.image {
  margin-top: 15px;
  margin-bottom: 15px;
  z-index: 7;
  position: relative; }
  .subsite figure.image img {
    max-width: 100%; }

.page-foto {
  padding: 3vw 0;
  padding-top: 170px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-image: url("/img/page-foto.webp");
  background-repeat: no-repeat;
  background-size: cover;
  position: relative; }
  .page-foto:after {
    content: "";
    width: 100%;
    height: 100%;
    background-color: #3113ad73;
    z-index: 1;
    top: 0;
    position: absolute;
    pointer-events: none; }
  .page-foto h1 {
    color: var(--secondary-text);
    margin-top: 0;
    margin-bottom: 0;
    position: relative;
    z-index: 2; }

.gallery-simple {
  column-count: 4;
  column-gap: 0;
  margin-top: 60px; }
  .gallery-simple a {
    display: block;
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    break-inside: avoid;
    padding: 10px; }
  .gallery-simple img {
    width: 100%;
    height: auto; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0; }

.breadcrumbs {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding-top: 45px;
  padding-left: 90px; }
  .breadcrumbs li {
    display: flex; }
    .breadcrumbs li a {
      font-size: 14px;
      color: var(--transparent-color2);
      white-space: nowrap; }
    .breadcrumbs li span.slash {
      padding: 0 15px;
      display: block;
      font-size: 14px;
      color: var(--transparent-color2); }
    .breadcrumbs li:last-child span.slash {
      display: none; }
    .breadcrumbs li:last-child a {
      color: var(--primary-text); }

.similar-products {
  padding-bottom: 60px; }

.product-page {
  padding-top: 25px;
  padding-bottom: 60px; }
  .product-page .product-count-info p {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 0;
    margin-top: 20px; }
  .product-page .product-reviews-list {
    margin-bottom: 50px; }
    .product-page .product-reviews-list .one-review {
      padding: 20px;
      border: 2px solid var(--element2-color);
      border-radius: 15px;
      margin-bottom: 20px; }
      .product-page .product-reviews-list .one-review .sign {
        margin-bottom: 0; }
  .product-page .product-versions {
    margin-top: 30px; }
    .product-page .product-versions .version-label {
      color: var(--transparent-color2);
      font-size: 14px;
      font-family: "Poppins", sans-serif;
      font-weight: 500; }
    .product-page .product-versions .version-change {
      font-size: 16rem;
      cursor: pointer; }
      .product-page .product-versions .version-change:hover {
        border-color: var(--element1-color); }
  .product-page .item-answears {
    padding-top: 70px;
    max-width: 1230px;
    margin: 0 auto; }
    .product-page .item-answears p, .product-page .item-answears ul li, .product-page .item-answears ol li {
      color: var(--transparent-color2); }
    .product-page .item-answears p, .product-page .item-answears ul, .product-page .item-answears ol {
      margin-bottom: 30px; }
    .product-page .item-answears h2 {
      font-size: 24rem;
      color: var(--element1-color);
      font-weight: 700;
      margin-top: 0;
      margin-bottom: 55px;
      text-transform: uppercase; }
    .product-page .item-answears h4 {
      font-size: 17rem;
      color: var(--transparent-color2);
      font-weight: 700;
      margin-top: 0;
      margin-bottom: 10px; }
    .product-page .item-answears .one-answear {
      display: none; }
      .product-page .item-answears .one-answear.active {
        display: block; }
  .product-page .item-questions {
    display: flex;
    padding-top: 90px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
    .product-page .item-questions .one-question.active .title {
      color: var(--element1-color); }
      .product-page .item-questions .one-question.active .title:after {
        width: 100%; }
    .product-page .item-questions .one-question:first-child .title {
      padding-right: 60px; }
    .product-page .item-questions .title {
      color: var(--transparent-color2);
      font-size: 14px;
      letter-spacing: 1px;
      font-weight: 700;
      text-transform: unset;
      padding: 20px 50px;
      padding-left: 5px;
      margin: 0;
      margin-right: 10px;
      position: relative; }
      .product-page .item-questions .title:after {
        display: block;
        content: "";
        width: 0%;
        background-clip: padding-box;
        transform: translate3d(0, 0, 0);
        height: 9px;
        border-top-left-radius: 5px;
        border-top-right-radius: 5px;
        background-color: var(--element1-color);
        position: absolute;
        bottom: 0;
        left: 0;
        transition: 0.3s;
        -webkit-transition: 0.3s; }
      .product-page .item-questions .title:hover {
        transform: unset;
        color: var(--anhor); }
        .product-page .item-questions .title:hover:after {
          width: 100%; }
      .product-page .item-questions .title:focus {
        outline: none !important;
        box-shadow: none !important; }
  .product-page .product-carousel .owl-nav button {
    width: 30px;
    height: 80px;
    top: 0;
    border: none !important;
    border-radius: 0;
    opacity: 1;
    transition: 0.3s;
    -webkit-transition: 0.3s; }
    .product-page .product-carousel .owl-nav button.disabled {
      opacity: 0;
      pointer-events: none; }
    .product-page .product-carousel .owl-nav button:hover img {
      filter: brightness(1); }
    .product-page .product-carousel .owl-nav button.owl-next {
      right: 0;
      background: linear-gradient(90deg, rgba(255, 255, 255, 0.6082808123) 0%, rgba(255, 255, 255, 0.681109944) 50%, rgba(255, 255, 255, 0.7987570028) 100%); }
      .product-page .product-carousel .owl-nav button.owl-next img {
        transform: rotate(-90deg); }
    .product-page .product-carousel .owl-nav button.owl-prev {
      left: 0;
      transform: none;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.6082808123) 0%, rgba(255, 255, 255, 0.681109944) 50%, rgba(255, 255, 255, 0.7987570028) 100%); }
      .product-page .product-carousel .owl-nav button.owl-prev img {
        transform: rotate(90deg); }
    .product-page .product-carousel .owl-nav button img {
      filter: brightness(0.5);
      transition: 0.3s;
      -webkit-transition: 0.3s; }
  .product-page .product-carousel .one-image img {
    height: 70px;
    width: 100%;
    object-fit: contain; }
  .product-page .product-carousel .one-image .image {
    margin: 0;
    display: flex;
    justify-content: center;
    padding: 5px;
    border-radius: 5px;
    border: 3px solid var(--element2-color);
    transition: 0.3s;
    -webkit-transition: 0.3s; }
  .product-page .product-carousel .one-image:hover {
    cursor: pointer; }
    .product-page .product-carousel .one-image:hover .image {
      border: 3px solid #83bce6; }
  .product-page .photos {
    padding-right: 160px;
    padding-top: 20px; }
  .product-page #main-photo {
    height: 500px;
    margin-bottom: 15px; }
    .product-page #main-photo img {
      max-height: 100%;
      max-width: 100%;
      object-fit: contain; }
    .product-page #main-photo .image {
      display: flex;
      justify-content: center;
      max-height: 100%; }
  .product-page .feature-value-price {
    padding-left: 15px;
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 0;
    font-family: "Poppins", sans-serif;
    color: var(--transparent-color2); }
  .product-page .feature-values {
    margin-top: 20px; }
    .product-page .feature-values .form-group {
      margin-bottom: 10px; }
    .product-page .feature-values input {
      margin-right: 15px;
      cursor: pointer; }
    .product-page .feature-values label {
      display: flex;
      justify-content: space-between;
      cursor: pointer;
      padding: 0;
      font-size: 14px; }
      .product-page .feature-values label:hover .feature-title, .product-page .feature-values label:hover .feature-value-price {
        color: var(--element1-color); }
      .product-page .feature-values label .feature-title {
        transition: 0.3s;
        -webkit-transition: 0.3s; }
  .product-page .input-group {
    flex-wrap: nowrap;
    align-items: center;
    width: auto; }
  .product-page input[type=radio] {
    height: 16px;
    width: 16px;
    flex: unset; }
  .product-page .feature-main-title {
    padding-top: 50px;
    color: var(--transparent-color2);
    font-size: 14px;
    margin: 0;
    font-family: "Poppins", sans-serif; }
  .product-page .title {
    font-size: 26rem;
    color: var(--primary-text);
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 15px; }
  .product-page .ref {
    font-size: 23rem;
    font-family: "Poppins", sans-serif; }
  .product-page .price {
    display: flex;
    align-items: flex-end;
    padding-bottom: 10px;
    padding-top: 20px; }
    .product-page .price .new-price {
      font-size: 30rem;
      letter-spacing: 1px;
      font-weight: 400;
      margin-right: 15px;
      margin-bottom: 0;
      font-family: "Poppins", sans-serif; }
    .product-page .price .old-before {
      letter-spacing: 0px;
      font-size: 22rem;
      color: var(--transparent-color2);
      margin-bottom: 0;
      font-family: "Poppins", sans-serif; }
      .product-page .price .old-before span {
        text-decoration: line-through; }
  .product-page .vat-delivery-information p {
    color: var(--transparent-color2);
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 0; }
    .product-page .vat-delivery-information p a {
      color: var(--transparent-color2);
      font-size: 14px;
      font-weight: 400;
      text-decoration: underline; }
      .product-page .vat-delivery-information p a:hover {
        color: var(--element1-color); }
  .product-page .sale-disabled {
    margin-top: 40px; }

#product .module-title {
  padding-top: 0; }

.language-inner {
  display: flex;
  flex-direction: column;
  margin-left: 55px; }
  .language-inner:hover:after {
    width: 100%; }
  .language-inner:after {
    content: "";
    width: 0px;
    height: 2px;
    background-color: var(--secondary-text);
    transition: 0.3s;
    -webkit-transition: 0.3s;
    position: relative;
    top: -15px; }
  .language-inner li {
    margin-bottom: 0; }
    .language-inner li a span {
      display: block; }
    .language-inner li:before {
      display: none; }
  .language-inner span {
    color: var(--secondary-text);
    font-size: 17rem;
    font-weight: 500;
    text-transform: uppercase;
    padding: 0; }
  .language-inner .language-select .one-lang {
    padding: 0; }
    .language-inner .language-select .one-lang span {
      padding: 5px 0 !important;
      color: var(--secondary-text); }
  .language-inner .my-dropdown-toggle {
    flex-direction: row !important; }
    .language-inner .my-dropdown-toggle:after {
      display: none !important; }
    .language-inner .my-dropdown-toggle img {
      width: 15px;
      height: 13px;
      object-fit: cover;
      margin-right: 10px;
      border: 1px solid var(--primary-text); }
    .language-inner .my-dropdown-toggle span {
      font-weight: 700;
      display: flex;
      align-items: center;
      color: var(--secondary-text) !important; }
    .language-inner .my-dropdown-toggle .caret {
      display: inline-block;
      content: "";
      width: 15px;
      height: 10px;
      background-image: url("/img/caret-pixel.png");
      background-size: contain;
      background-position: center;
      background-repeat: no-repeat;
      margin-left: 15px; }
  .language-inner .one-lang {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    padding: 17px 10px;
    height: auto;
    border-radius: 0; }
    .language-inner .one-lang:after {
      content: "";
      width: 0px;
      height: 2px;
      background-color: var(--secondary-text);
      transition: 0.3s;
      -webkit-transition: 0.3s;
      position: relative;
      top: -5px; }
    .language-inner .one-lang:hover {
      transform: scale(1); }
      .language-inner .one-lang:hover:after {
        width: 100%; }
    .language-inner .one-lang:focus {
      box-shadow: none; }
    .language-inner .one-lang img {
      width: 15px;
      height: 13px;
      object-fit: cover;
      margin-left: 5px;
      margin-right: 10px;
      border: 1px solid var(--primary-text); }
    .language-inner .one-lang span {
      color: var(--primary-text); }
  .language-inner .language-select {
    top: 100%;
    padding: 0;
    width: 100%; }

.special-element {
  pointer-events: none; }

@media (max-width: 575.5px) {
  html {
    font-size: 0.8px; }

  header.sticked {
    transform: translateY(0px); }
    header.sticked .page-nav li a span {
      padding-top: 15px;
      padding-bottom: 15px; }
    header.sticked #main-nav {
      height: 50px; }
      header.sticked #main-nav .inner #logo {
        padding: 20px 0;
        padding-left: 150px; }

  body h1 {
    font-size: 25rem; }
  body h2 {
    font-size: 22rem; }
  body h3 {
    font-size: 20rem; }
  body ul li:before {
    min-width: 10px;
    width: 10px;
    height: 10px;
    margin-right: 10px; }

  #author-page .map-links ul li {
    width: 100%;
    padding-right: 0; }

  #top-bar {
    height: 50px;
    display: none; }
    #top-bar .right {
      display: none; }
      #top-bar .right .socials {
        margin-left: 30px; }

  .language-inner {
    margin-left: 0; }

  #main-nav {
    height: 80px;
    background-color: var(--primary-bg); }
    #main-nav .inner {
      padding-left: 120px; }
      #main-nav .inner .language-inner .caret {
        filter: brightness(0) !important; }
      #main-nav .inner .language-inner:after {
        background-color: var(--primary-text) !important; }
      #main-nav .inner .language-inner .my-dropdown-toggle span {
        color: var(--primary-text) !important; }
      #main-nav .inner .btn-menu span {
        background-color: var(--primary-text); }
      #main-nav .inner #logo {
        padding: 20px 0;
        height: 100%;
        width: 265px;
        padding-left: 150px;
        transform: none; }
        #main-nav .inner #logo a {
          transform: none; }
        #main-nav .inner #logo .motto {
          font-size: 12rem; }
        #main-nav .inner #logo img {
          width: 115px; }

  .page-nav li a span {
    padding: 15px 10px;
    margin-left: 7px;
    margin-right: 7px; }

  main {
    padding-top: 80px; }

  .bottom-footer {
    padding-top: 25px; }
    .bottom-footer .container-fluid {
      padding: 0 75px; }
    .bottom-footer .wrapper {
      justify-content: center; }
    .bottom-footer .copyright {
      padding: 20px; }
    .bottom-footer .author {
      padding: 10px; }

  #main-menu.mini-menu {
    flex-direction: column;
    padding-top: 40px;
    justify-content: flex-start; }
    #main-menu.mini-menu .page-nav {
      order: 0; }
      #main-menu.mini-menu .page-nav li a span {
        white-space: normal; }
    #main-menu.mini-menu .page-nav {
      position: relative; }
      #main-menu.mini-menu .page-nav:before {
        display: block;
        content: "";
        position: absolute;
        top: -2px;
        left: 0;
        width: 7px;
        min-width: 7px;
        height: 7px;
        background-color: white;
        border-radius: 50%; }
      #main-menu.mini-menu .page-nav:after {
        display: block;
        content: "";
        position: absolute;
        top: -2px;
        right: 0;
        width: 7px;
        min-width: 7px;
        height: 7px;
        background-color: white;
        border-radius: 50%; }
    #main-menu.mini-menu .socials {
      display: flex;
      align-items: center;
      width: 100%;
      justify-content: center;
      margin-top: 20px; }
      #main-menu.mini-menu .socials a {
        background-color: var(--dark-bg2);
        border-radius: 50%;
        width: 40px;
        min-width: 40px;
        height: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 10px; }
        #main-menu.mini-menu .socials a:hover {
          background-color: var(--element1-color); }
      #main-menu.mini-menu .socials img {
        max-width: 19px;
        max-height: 19px; }

  .gallery-simple {
    column-count: 2;
    margin-top: 30px; }

  .newsy {
    margin-bottom: 60px; }
    .newsy .one-news .foto img {
      height: 60vw; }
    .newsy .one-news .text .text-inner:before {
      height: 14px;
      width: 195px; }
    .newsy h3 {
      font-size: 21rem;
      margin-bottom: 5px; }
    .newsy p {
      font-size: 17rem; }

  .product-page .title {
    font-size: 25rem; }
  .product-page .sale-disabled {
    margin-top: 30px; }
  .product-page .feature-value-price {
    padding-top: 5px;
    padding-left: 30px; }
  .product-page .feature-values .form-group {
    margin-bottom: 20px; }
  .product-page .feature-values label {
    flex-direction: column; }
  .product-page .feature-main-title {
    padding-top: 35px; }
  .product-page .text {
    padding-top: 30px; }
  .product-page .item-questions {
    padding-top: 35px;
    flex-wrap: wrap; }
    .product-page .item-questions .one-question {
      display: flex;
      align-items: flex-end;
      width: 100%;
      background-color: var(--light-bg); }
      .product-page .item-questions .one-question .inner {
        width: 100%; }
      .product-page .item-questions .one-question.active {
        background-color: var(--anhor); }
        .product-page .item-questions .one-question.active .title {
          color: var(--secondary-title); }
      .product-page .item-questions .one-question:first-child .title {
        padding-right: 10px; }
    .product-page .item-questions .title {
      padding: 10px 10px;
      width: 100%;
      justify-content: flex-start; }
      .product-page .item-questions .title:after {
        display: none; }
  .product-page .item-answears {
    padding-top: 40px; }
    .product-page .item-answears h4 {
      font-size: 18rem; }
    .product-page .item-answears p, .product-page .item-answears ul, .product-page .item-answears ol {
      margin-bottom: 15px; }
    .product-page .item-answears h2 {
      margin-bottom: 25px;
      font-size: 22rem; }
  .product-page .product-carousel .owl-nav button {
    height: 84px; }
  .product-page .product-carousel .one-image img {
    height: 68px; }
  .product-page .photos {
    padding: 0px; }
    .product-page .photos #main-photo {
      margin-bottom: 30px;
      height: 65vw; }
      .product-page .photos #main-photo img {
        max-width: 80%; }

  .breadcrumbs {
    padding-left: 0px;
    padding-top: 20px; }

  #footer {
    padding-top: 0px; }
    #footer .footer-wrapper {
      background-size: cover;
      padding: 25px 0; }
    #footer .special-element {
      display: none; }
      #footer .special-element img {
        max-width: 450px; }

  .top-footer {
    padding-right: 0px; }
    .top-footer .wrapper {
      flex-direction: column;
      justify-content: flex-start; }
    .top-footer .contact-center {
      order: 3; }
      .top-footer .contact-center p {
        padding-left: 0; }
    .top-footer .contact-left {
      order: 2; }
    .top-footer .contact-right {
      order: 1;
      margin-bottom: 30px; }
      .top-footer .contact-right .bottom-menu {
        padding-left: 0; }

  .bottom-footer {
    padding-right: 0px; }

  .page-foto {
    padding: 7vw 0; } }
@media (min-width: 576px) and (max-width: 767.5px) {
  html {
    font-size: 0.85px; }

  header.sticked {
    transform: translateY(0px); }
    header.sticked .page-nav li a span {
      padding-top: 15px;
      padding-bottom: 15px; }
    header.sticked #main-nav .inner #logo {
      padding: 28px 0;
      padding-left: 160px; }

  #author-page .map-links ul li {
    width: 100%;
    padding-right: 0; }

  body h1 {
    font-size: 30px; }
  body ul li:before {
    min-width: 10px;
    width: 10px;
    height: 10px;
    margin-right: 10px; }

  #top-bar {
    height: 50px; }
    #top-bar .right {
      padding-right: 15px; }
    #top-bar .address p {
      font-size: 17rem; }
    #top-bar .socials {
      margin-left: 20px; }
      #top-bar .socials a {
        margin-left: 5px; }

  #main-nav {
    height: 90px; }
    #main-nav .inner {
      padding-left: 200px; }
      #main-nav .inner #logo {
        padding: 28px 0;
        width: 365px;
        padding-left: 160px; }
        #main-nav .inner #logo .motto {
          font-size: 12rem; }
        #main-nav .inner #logo img {
          width: 170px; }

  .language-inner {
    margin-left: 15px; }

  #main-menu.mini-menu {
    top: 50px;
    flex-direction: column;
    padding-top: 100px;
    justify-content: flex-start; }
    #main-menu.mini-menu .page-nav {
      order: 0; }
    #main-menu.mini-menu .page-nav {
      position: relative; }
      #main-menu.mini-menu .page-nav:before {
        display: block;
        content: "";
        position: absolute;
        top: -2px;
        left: 0;
        width: 7px;
        min-width: 7px;
        height: 7px;
        background-color: white;
        border-radius: 50%; }
      #main-menu.mini-menu .page-nav:after {
        display: block;
        content: "";
        position: absolute;
        top: -2px;
        right: 0;
        width: 7px;
        min-width: 7px;
        height: 7px;
        background-color: white;
        border-radius: 50%; }

  .bottom-footer .wrapper {
    flex-direction: column; }
  .bottom-footer .copyright {
    margin-bottom: 20px; }

  .gallery-simple {
    column-count: 3;
    margin-top: 30px; }

  .newsy {
    margin-bottom: 60px; }
    .newsy .one-news .foto img {
      height: 60vw; }
    .newsy h3 {
      font-size: 21rem; }
    .newsy p {
      font-size: 16rem; }

  .product-page .feature-main-title {
    padding-top: 35px; }
  .product-page .text {
    padding-top: 60px; }
  .product-page .item-questions {
    padding-top: 35px; }
    .product-page .item-questions .one-question {
      display: flex;
      align-items: flex-end; }
      .product-page .item-questions .one-question:first-child .title {
        padding-right: 10px; }
    .product-page .item-questions .title {
      padding: 20px 10px; }
  .product-page .item-answears {
    padding-top: 40px; }
    .product-page .item-answears h4 {
      font-size: 18rem; }
    .product-page .item-answears p, .product-page .item-answears ul, .product-page .item-answears ol {
      margin-bottom: 15px; }
    .product-page .item-answears h2 {
      margin-bottom: 35px; }
  .product-page .product-carousel .owl-nav button {
    height: 110px; }
  .product-page .product-carousel .one-image img {
    height: 94px; }
  .product-page .photos {
    padding: 0px; }
    .product-page .photos #main-photo {
      margin-bottom: 50px; }

  .breadcrumbs {
    padding-left: 0px;
    padding-top: 20px; }

  #footer {
    padding-top: 0px; }
    #footer .special-element {
      display: none; }
      #footer .special-element img {
        max-width: 450px; }

  .top-footer {
    padding-right: 0px; }
    .top-footer .contact-left, .top-footer .contact-center {
      padding-right: 25px;
      max-width: 215px; }

  .bottom-footer {
    padding-right: 0px; }

  .page-foto {
    padding: 5vw 0;
    padding-top: 100px; } }
@media (min-width: 768px) and (max-width: 991.5px) {
  html {
    font-size: 0.9px; }

  header.sticked {
    transform: translateY(0px); }
    header.sticked #main-nav .inner #logo {
      padding: 28px 0;
      padding-left: 189px; }
    header.sticked .page-nav li a span {
      padding-top: 20px;
      padding-bottom: 20px; }

  #author-page .map-links ul li {
    width: 50%; }

  #top-bar {
    height: 50px; }
    #top-bar .right {
      padding-right: 15px; }
    #top-bar .address p {
      font-size: 17rem; }
    #top-bar .socials {
      margin-left: 20px; }
      #top-bar .socials a {
        margin-left: 5px; }

  #main-menu.mini-menu {
    padding-top: 100px; }
    #main-menu.mini-menu.mini-menu {
      flex-direction: column; }
    #main-menu.mini-menu .page-nav {
      position: relative; }
      #main-menu.mini-menu .page-nav:before {
        display: block;
        content: "";
        position: absolute;
        top: -2px;
        left: 0;
        width: 7px;
        min-width: 7px;
        height: 7px;
        background-color: white;
        border-radius: 50%; }
      #main-menu.mini-menu .page-nav:after {
        display: block;
        content: "";
        position: absolute;
        top: -2px;
        right: 0;
        width: 7px;
        min-width: 7px;
        height: 7px;
        background-color: white;
        border-radius: 50%; }

  #main-nav {
    height: 90px; }
    #main-nav .inner {
      padding-left: 300px; }
      #main-nav .inner #logo {
        padding: 28px 0;
        width: 435px;
        padding-left: 189px; }
        #main-nav .inner #logo .motto {
          font-size: 12rem; }
        #main-nav .inner #logo img {
          width: 170px; }

  .gallery-simple {
    column-count: 3; }

  .newsy {
    margin-bottom: 60px; }
    .newsy .one-news .foto img {
      height: 240px; }
    .newsy .one-news .text .text-inner:before {
      height: 14px;
      width: 195px; }
    .newsy h3 {
      font-size: 20rem; }
    .newsy p {
      font-size: 16rem; }

  .product-page .text {
    padding-top: 60px; }
  .product-page .item-questions {
    padding-top: 35px; }
    .product-page .item-questions .one-question:first-child .title {
      padding-right: 10px; }
    .product-page .item-questions .title {
      padding: 20px 10px; }
  .product-page .item-answears {
    padding-top: 40px; }
    .product-page .item-answears h2 {
      margin-bottom: 35px; }
  .product-page .product-carousel .owl-nav button {
    height: 100px; }
  .product-page .product-carousel .one-image img {
    height: 84px; }
  .product-page .photos {
    padding: 0px; }
    .product-page .photos #main-photo {
      margin-bottom: 50px; }

  .breadcrumbs {
    padding-left: 0px; }

  #footer {
    padding-top: 0px; }
    #footer .special-element {
      display: none; }
      #footer .special-element img {
        max-width: 450px; }

  .top-footer {
    padding-right: 0px; }
    .top-footer .contact-left, .top-footer .contact-center {
      padding-right: 25px;
      max-width: 215px; }

  .bottom-footer {
    padding-right: 0px; }

  .page-foto {
    padding-top: 100px; } }
@media (min-width: 992px) and (max-width: 1199.5px) {
  html {
    font-size: 0.9px; }

  header.sticked #main-menu.mini-menu {
    transform: translateX(100vw) translateY(30px); }
    header.sticked #main-menu.mini-menu.open {
      transform: translateX(calc(100vw - 500px)) translateY(30px); }
  header.sticked #main-nav .inner #logo {
    padding: 28px 0;
    padding-left: 189px; }

  body h1 {
    font-size: 35px; }
  body h2 {
    font-size: 30rem; }
  body.overflow-y-hidden {
    overflow: auto !important; }

  #top-bar .right {
    padding-right: 15px; }
  #top-bar .left {
    display: none; }
  #top-bar .socials {
    margin-left: 20px; }
    #top-bar .socials a {
      margin-left: 5px; }

  #main-menu #link-konto {
    margin-right: 10px;
    margin-left: auto; }
    #main-menu #link-konto span {
      padding: 16px 0px; }
    #main-menu #link-konto img {
      margin-right: 10px;
      max-height: 28px; }
  #main-menu #link-koszyk {
    margin-left: 10px;
    margin-right: 10px; }
    #main-menu #link-koszyk span {
      padding: 16px 0px; }
    #main-menu #link-koszyk img {
      margin-right: 10px;
      max-height: 29px; }
  #main-menu.mini-menu {
    transform: translateX(100vw) translateY(30px);
    width: 500px;
    flex-wrap: wrap; }
    #main-menu.mini-menu.open {
      transform: translateX(calc(100vw - 500px)) translateY(30px); }
    #main-menu.mini-menu .page-nav li span {
      padding: 25px 15px; }

  #author-page .map-links ul li {
    width: 50%; }

  #main-nav {
    height: 80px; }
    #main-nav .inner {
      padding-left: 300px; }
      #main-nav .inner #logo {
        padding: 28px 0;
        width: 435px;
        padding-left: 189px; }
        #main-nav .inner #logo .motto {
          font-size: 12rem; }
        #main-nav .inner #logo img {
          width: 180px; }

  .page-nav &gt; li:first-child &gt; a span {
    padding: 13px 15px; }
  .page-nav li {
    margin: 0 auto; }
    .page-nav li a span {
      padding: 30px 5px; }
  .page-nav .my-dropdown .my-dropdown-toggle .caret {
    margin-left: 10px; }

  .gallery-simple {
    column-count: 3; }

  .newsy {
    margin-bottom: 90px; }
    .newsy .one-news .foto img {
      height: 240px; }
    .newsy .one-news .text .text-inner:before {
      height: 14px;
      width: 195px; }
    .newsy h3 {
      font-size: 20rem; }
    .newsy p {
      font-size: 16rem; }

  .product-page .item-answears {
    padding-top: 40px; }
    .product-page .item-answears h2 {
      margin-bottom: 35px; }
  .product-page .product-carousel .owl-nav button {
    height: 108px; }
  .product-page .product-carousel .one-image img {
    height: 93px; }
  .product-page .photos {
    padding-right: 70px; }

  .breadcrumbs {
    padding-left: 20px; }

  #footer {
    padding-top: 0px; }
    #footer .special-element {
      display: none; }
      #footer .special-element img {
        max-width: 450px; }

  .top-footer {
    padding-right: 0px; }
    .top-footer .contact-left, .top-footer .contact-center {
      padding-right: 25px; }

  .bottom-footer {
    padding-right: 0px; }

  .page-foto {
    padding-top: 100px; } }
@media (min-width: 1200px) and (max-width: 1579.5px) {
  html {
    font-size: 0.95px; }

  header.sticked #main-menu.big-menu .page-nav &gt; li &gt; a &gt; span {
    padding-top: 16px;
    padding-bottom: 16px; }
  header.sticked #main-menu.big-menu .page-nav &gt; li &gt; a:after {
    top: -15px; }
  header.sticked #main-menu.mini-menu {
    transform: translateX(100vw) translateY(90px); }
    header.sticked #main-menu.mini-menu.open {
      transform: translateX(calc(100vw - 500px)) translateY(90px); }
  header.sticked #main-nav .inner #logo {
    padding: 28px 0;
    padding-left: 189px; }

  body h2 {
    font-size: 25rem; }
  body.overflow-y-hidden {
    overflow: auto !important; }

  #top-bar .address p {
    font-size: 16rem; }
  #top-bar .socials {
    margin-left: 20px; }
    #top-bar .socials a {
      margin-left: 5px; }

  #main-menu #link-konto {
    margin-right: 10px;
    margin-left: auto; }
    #main-menu #link-konto span {
      padding: 16px 0px; }
    #main-menu #link-konto img {
      margin-right: 10px;
      max-height: 28px; }
  #main-menu #link-koszyk {
    margin-left: 10px;
    margin-right: 10px; }
    #main-menu #link-koszyk span {
      padding: 16px 0px; }
    #main-menu #link-koszyk img {
      margin-right: 10px;
      max-height: 29px; }
  #main-menu.mini-menu {
    transform: translateX(100vw) translateY(140px);
    width: 500px; }
    #main-menu.mini-menu.open {
      transform: translateX(calc(100vw - 500px)) translateY(140px); }
    #main-menu.mini-menu .page-nav li:first-child {
      margin-top: 0; }
    #main-menu.mini-menu .page-nav li span {
      padding-top: 20px;
      padding-bottom: 20px; }

  #main-nav {
    height: 80px; }
    #main-nav .inner {
      padding-left: 310px; }
      #main-nav .inner #logo {
        padding: 28px 0;
        width: 435px;
        padding-left: 189px; }
        #main-nav .inner #logo .motto {
          font-size: 12rem; }
        #main-nav .inner #logo img {
          width: 180px; }

  #main-nav .my-dropdown .my-dropdown-toggle:after {
    top: -10px; }
  #main-nav .my-dropdown .dropdown-menu {
    top: 100%; }

  .language-inner {
    margin-left: 0; }

  .page-nav {
    max-width: 780px; }
    .page-nav li {
      margin: 0 auto; }
      .page-nav li a {
        font-size: 16rem; }
        .page-nav li a span {
          padding: 16px 5px; }
      .page-nav li:last-child a span {
        padding: 15px 10px; }
    .page-nav .my-dropdown .my-dropdown-toggle .caret {
      margin-left: 10px; }

  #author-page .map-links ul li {
    width: 33.333%; }

  #big-slider #layerslider {
    height: 550px; }

  .services .wrapper .one-element .foto img {
    height: 290px; }
  .services .wrapper .one-element h3 {
    font-size: 25rem;
    margin-bottom: 15px; }

  .services-one-column .wrapper .one-element .foto img {
    max-height: 265px; }

  #galleries .foto img {
    height: 189px; }

  .newsy {
    margin-bottom: 90px; }
    .newsy .one-news .foto img {
      height: 240px; }
    .newsy .one-news .text .text-inner:before {
      height: 14px;
      width: 195px; }
    .newsy h3 {
      font-size: 21rem; }
    .newsy p {
      font-size: 16rem; }

  .product-page .product-carousel .owl-nav button {
    height: 100px; }
  .product-page .product-carousel .one-image img {
    height: 84px; }
  .product-page .photos {
    padding-right: 70px; }

  .breadcrumbs {
    padding-left: 40px; }

  #footer {
    padding-top: 90px; }
    #footer .special-element {
      display: flex;
      justify-content: flex-end;
      opacity: 0.5; }
      #footer .special-element img {
        max-width: 450px; }

  .top-footer {
    padding-right: 250px; }

  .bottom-footer {
    padding-right: 335px; }

  .page-foto {
    padding-top: 100px; } }
@media (min-width: 1580px) {
  .container {
    max-width: 1550px; }

  #product .container {
    max-width: 1510px; }

  body.overflow-y-hidden {
    overflow: auto !important; }

  header.sticked #main-menu.mini-menu {
    transform: translateX(100vw) translateY(90px); }
    header.sticked #main-menu.mini-menu.open {
      transform: translateX(calc(100vw - 500px)) translateY(90px); }

  #main-menu.mini-menu {
    transform: translateX(100vw) translateY(140px);
    width: 500px; }
    #main-menu.mini-menu.open {
      transform: translateX(calc(100vw - 500px)) translateY(140px); }

  #top-bar .container-fluid {
    padding: 0 40px; }

  #main-nav .container-fluid {
    padding: 0 40px; } }

/*# sourceMappingURL=main.css.map */
</pre></body></html>