@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;500;600;700;900&display=swap");
.accordion {
  margin-top: 0.5rem;
  padding-left: 20px;
  position: relative; }
  .accordion:nth-of-type(1) {
    margin-top: 0; }

@media (min-width: 992px) {
  .accordion--mobileOnly {
    padding-left: 0; }
    .accordion--mobileOnly::before {
      display: none; }
    .accordion--mobileOnly .accordion__content {
      max-height: unset; }
    .accordion--mobileOnly .accordion__text {
      cursor: unset; } }
  .accordion.active::before {
    transform: rotate(90deg); }
  .accordion::before {
    content: "";
    position: absolute;
    top: 4px;
    left: 0;
    width: 7px;
    height: 7px;
    background: #d3222a;
    transition: 0.2s linear;
    clip-path: polygon(100% 50%, 0 0, 0 100%); }
  .accordion__text {
    cursor: pointer;
    font-weight: 500; }
  .accordion__content {
    max-height: 0;
    overflow: hidden;
    transition: 0.2s linear; }

.ico-link {
  padding-left: 30px;
  position: relative; }
  .ico-link:nth-child(1) {
    margin-top: 0; }
  .ico-link:hover span::before {
    width: 100%; }
  .ico-link img {
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    height: 20px;
    width: 20px;
    object-fit: contain; }
  .ico-link span {
    position: relative;
    color: black; }
    .ico-link span:hover::before {
      width: 100%; }
    .ico-link span::before {
      content: "";
      position: absolute;
      bottom: -4px;
      width: 0%;
      height: 1px;
      background-color: orange;
      transition: 0.3s linear;
      left: 0%; }

a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.container,
.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px; }

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block; }

body {
  line-height: 1; }

ol,
ul {
  list-style: none; }

blockquote,
q {
  quotes: none; }

blockquote:after,
blockquote:before,
q:after,
q:before {
  content: "";
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

a {
  color: inherit;
  text-decoration: inherit; }

body *,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 0; }

input::-ms-clear {
  display: none; }

.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  width: 100%;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
  margin-right: auto;
  margin-left: auto; }

@media (min-width: 576px) {
  .container-sm,
.container {
    max-width: 540px; } }

@media (min-width: 768px) {
  .container-md,
.container-sm,
.container {
    max-width: 720px; } }

@media (min-width: 992px) {
  .container-lg,
.container-md,
.container-sm,
.container {
    max-width: 960px; } }

@media (min-width: 1200px) {
  .container-xl,
.container-lg,
.container-md,
.container-sm,
.container {
    max-width: 1140px; } }

@media (min-width: 1400px) {
  .container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm,
.container {
    max-width: 1320px; } }

.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(var(--bs-gutter-y) * -1);
  margin-right: calc(var(--bs-gutter-x) * -0.5);
  margin-left: calc(var(--bs-gutter-x) * -0.5); }

.row > * {
  box-sizing: border-box;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y); }

.col {
  flex: 1 0 0; }

.row-cols-auto > * {
  flex: 0 0 auto;
  width: auto; }

.row-cols-1 > * {
  flex: 0 0 auto;
  width: 100%; }

.row-cols-2 > * {
  flex: 0 0 auto;
  width: 50%; }

.row-cols-3 > * {
  flex: 0 0 auto;
  width: 33.3333333333%; }

.row-cols-4 > * {
  flex: 0 0 auto;
  width: 25%; }

.row-cols-5 > * {
  flex: 0 0 auto;
  width: 20%; }

.row-cols-6 > * {
  flex: 0 0 auto;
  width: 16.6666666667%; }

.col-auto {
  flex: 0 0 auto;
  width: auto; }

.col-1 {
  flex: 0 0 auto;
  width: 8.33333333%; }

.col-2 {
  flex: 0 0 auto;
  width: 16.66666667%; }

.col-3 {
  flex: 0 0 auto;
  width: 25%; }

.col-4 {
  flex: 0 0 auto;
  width: 33.33333333%; }

.col-5 {
  flex: 0 0 auto;
  width: 41.66666667%; }

.col-6 {
  flex: 0 0 auto;
  width: 50%; }

.col-7 {
  flex: 0 0 auto;
  width: 58.33333333%; }

.col-8 {
  flex: 0 0 auto;
  width: 66.66666667%; }

.col-9 {
  flex: 0 0 auto;
  width: 75%; }

.col-10 {
  flex: 0 0 auto;
  width: 83.33333333%; }

.col-11 {
  flex: 0 0 auto;
  width: 91.66666667%; }

.col-12 {
  flex: 0 0 auto;
  width: 100%; }

.offset-1 {
  margin-left: 8.33333333%; }

.offset-2 {
  margin-left: 16.66666667%; }

.offset-3 {
  margin-left: 25%; }

.offset-4 {
  margin-left: 33.33333333%; }

.offset-5 {
  margin-left: 41.66666667%; }

.offset-6 {
  margin-left: 50%; }

.offset-7 {
  margin-left: 58.33333333%; }

.offset-8 {
  margin-left: 66.66666667%; }

.offset-9 {
  margin-left: 75%; }

.offset-10 {
  margin-left: 83.33333333%; }

.offset-11 {
  margin-left: 91.66666667%; }

.g-0,
.gx-0 {
  --bs-gutter-x: 0; }

.g-0,
.gy-0 {
  --bs-gutter-y: 0; }

.g-1,
.gx-1 {
  --bs-gutter-x: 0.25rem; }

.g-1,
.gy-1 {
  --bs-gutter-y: 0.25rem; }

.g-2,
.gx-2 {
  --bs-gutter-x: 0.5rem; }

.g-2,
.gy-2 {
  --bs-gutter-y: 0.5rem; }

.g-3,
.gx-3 {
  --bs-gutter-x: 1rem; }

.g-3,
.gy-3 {
  --bs-gutter-y: 1rem; }

.g-4,
.gx-4 {
  --bs-gutter-x: 1.5rem; }

.g-4,
.gy-4 {
  --bs-gutter-y: 1.5rem; }

.g-5,
.gx-5 {
  --bs-gutter-x: 3rem; }

.g-5,
.gy-5 {
  --bs-gutter-y: 3rem; }

@media (min-width: 576px) {
  .col-sm {
    flex: 1 0 0; }
  .row-cols-sm-auto > * {
    flex: 0 0 auto;
    width: auto; }
  .row-cols-sm-1 > * {
    flex: 0 0 auto;
    width: 100%; }
  .row-cols-sm-2 > * {
    flex: 0 0 auto;
    width: 50%; }
  .row-cols-sm-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%; }
  .row-cols-sm-4 > * {
    flex: 0 0 auto;
    width: 25%; }
  .row-cols-sm-5 > * {
    flex: 0 0 auto;
    width: 20%; }
  .row-cols-sm-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%; }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto; }
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333333%; }
  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.66666667%; }
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%; }
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333333%; }
  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.66666667%; }
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%; }
  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333333%; }
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.66666667%; }
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%; }
  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333333%; }
  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.66666667%; }
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%; }
  .offset-sm-0 {
    margin-left: 0; }
  .offset-sm-1 {
    margin-left: 8.33333333%; }
  .offset-sm-2 {
    margin-left: 16.66666667%; }
  .offset-sm-3 {
    margin-left: 25%; }
  .offset-sm-4 {
    margin-left: 33.33333333%; }
  .offset-sm-5 {
    margin-left: 41.66666667%; }
  .offset-sm-6 {
    margin-left: 50%; }
  .offset-sm-7 {
    margin-left: 58.33333333%; }
  .offset-sm-8 {
    margin-left: 66.66666667%; }
  .offset-sm-9 {
    margin-left: 75%; }
  .offset-sm-10 {
    margin-left: 83.33333333%; }
  .offset-sm-11 {
    margin-left: 91.66666667%; }
  .g-sm-0,
.gx-sm-0 {
    --bs-gutter-x: 0; }
  .g-sm-0,
.gy-sm-0 {
    --bs-gutter-y: 0; }
  .g-sm-1,
.gx-sm-1 {
    --bs-gutter-x: 0.25rem; }
  .g-sm-1,
.gy-sm-1 {
    --bs-gutter-y: 0.25rem; }
  .g-sm-2,
.gx-sm-2 {
    --bs-gutter-x: 0.5rem; }
  .g-sm-2,
.gy-sm-2 {
    --bs-gutter-y: 0.5rem; }
  .g-sm-3,
.gx-sm-3 {
    --bs-gutter-x: 1rem; }
  .g-sm-3,
.gy-sm-3 {
    --bs-gutter-y: 1rem; }
  .g-sm-4,
.gx-sm-4 {
    --bs-gutter-x: 1.5rem; }
  .g-sm-4,
.gy-sm-4 {
    --bs-gutter-y: 1.5rem; }
  .g-sm-5,
.gx-sm-5 {
    --bs-gutter-x: 3rem; }
  .g-sm-5,
.gy-sm-5 {
    --bs-gutter-y: 3rem; } }

@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0; }
  .row-cols-md-auto > * {
    flex: 0 0 auto;
    width: auto; }
  .row-cols-md-1 > * {
    flex: 0 0 auto;
    width: 100%; }
  .row-cols-md-2 > * {
    flex: 0 0 auto;
    width: 50%; }
  .row-cols-md-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%; }
  .row-cols-md-4 > * {
    flex: 0 0 auto;
    width: 25%; }
  .row-cols-md-5 > * {
    flex: 0 0 auto;
    width: 20%; }
  .row-cols-md-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%; }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto; }
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333333%; }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%; }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%; }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%; }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%; }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%; }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%; }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%; }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%; }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%; }
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66666667%; }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%; }
  .offset-md-0 {
    margin-left: 0; }
  .offset-md-1 {
    margin-left: 8.33333333%; }
  .offset-md-2 {
    margin-left: 16.66666667%; }
  .offset-md-3 {
    margin-left: 25%; }
  .offset-md-4 {
    margin-left: 33.33333333%; }
  .offset-md-5 {
    margin-left: 41.66666667%; }
  .offset-md-6 {
    margin-left: 50%; }
  .offset-md-7 {
    margin-left: 58.33333333%; }
  .offset-md-8 {
    margin-left: 66.66666667%; }
  .offset-md-9 {
    margin-left: 75%; }
  .offset-md-10 {
    margin-left: 83.33333333%; }
  .offset-md-11 {
    margin-left: 91.66666667%; }
  .g-md-0,
.gx-md-0 {
    --bs-gutter-x: 0; }
  .g-md-0,
.gy-md-0 {
    --bs-gutter-y: 0; }
  .g-md-1,
.gx-md-1 {
    --bs-gutter-x: 0.25rem; }
  .g-md-1,
.gy-md-1 {
    --bs-gutter-y: 0.25rem; }
  .g-md-2,
.gx-md-2 {
    --bs-gutter-x: 0.5rem; }
  .g-md-2,
.gy-md-2 {
    --bs-gutter-y: 0.5rem; }
  .g-md-3,
.gx-md-3 {
    --bs-gutter-x: 1rem; }
  .g-md-3,
.gy-md-3 {
    --bs-gutter-y: 1rem; }
  .g-md-4,
.gx-md-4 {
    --bs-gutter-x: 1.5rem; }
  .g-md-4,
.gy-md-4 {
    --bs-gutter-y: 1.5rem; }
  .g-md-5,
.gx-md-5 {
    --bs-gutter-x: 3rem; }
  .g-md-5,
.gy-md-5 {
    --bs-gutter-y: 3rem; } }

@media (min-width: 992px) {
  .col-lg {
    flex: 1 0 0; }
  .row-cols-lg-auto > * {
    flex: 0 0 auto;
    width: auto; }
  .row-cols-lg-1 > * {
    flex: 0 0 auto;
    width: 100%; }
  .row-cols-lg-2 > * {
    flex: 0 0 auto;
    width: 50%; }
  .row-cols-lg-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%; }
  .row-cols-lg-4 > * {
    flex: 0 0 auto;
    width: 25%; }
  .row-cols-lg-5 > * {
    flex: 0 0 auto;
    width: 20%; }
  .row-cols-lg-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%; }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto; }
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333333%; }
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%; }
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%; }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%; }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%; }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%; }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%; }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%; }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%; }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%; }
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66666667%; }
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%; }
  .offset-lg-0 {
    margin-left: 0; }
  .offset-lg-1 {
    margin-left: 8.33333333%; }
  .offset-lg-2 {
    margin-left: 16.66666667%; }
  .offset-lg-3 {
    margin-left: 25%; }
  .offset-lg-4 {
    margin-left: 33.33333333%; }
  .offset-lg-5 {
    margin-left: 41.66666667%; }
  .offset-lg-6 {
    margin-left: 50%; }
  .offset-lg-7 {
    margin-left: 58.33333333%; }
  .offset-lg-8 {
    margin-left: 66.66666667%; }
  .offset-lg-9 {
    margin-left: 75%; }
  .offset-lg-10 {
    margin-left: 83.33333333%; }
  .offset-lg-11 {
    margin-left: 91.66666667%; }
  .g-lg-0,
.gx-lg-0 {
    --bs-gutter-x: 0; }
  .g-lg-0,
.gy-lg-0 {
    --bs-gutter-y: 0; }
  .g-lg-1,
.gx-lg-1 {
    --bs-gutter-x: 0.25rem; }
  .g-lg-1,
.gy-lg-1 {
    --bs-gutter-y: 0.25rem; }
  .g-lg-2,
.gx-lg-2 {
    --bs-gutter-x: 0.5rem; }
  .g-lg-2,
.gy-lg-2 {
    --bs-gutter-y: 0.5rem; }
  .g-lg-3,
.gx-lg-3 {
    --bs-gutter-x: 1rem; }
  .g-lg-3,
.gy-lg-3 {
    --bs-gutter-y: 1rem; }
  .g-lg-4,
.gx-lg-4 {
    --bs-gutter-x: 1.5rem; }
  .g-lg-4,
.gy-lg-4 {
    --bs-gutter-y: 1.5rem; }
  .g-lg-5,
.gx-lg-5 {
    --bs-gutter-x: 3rem; }
  .g-lg-5,
.gy-lg-5 {
    --bs-gutter-y: 3rem; } }

@media (min-width: 1200px) {
  .col-xl {
    flex: 1 0 0; }
  .row-cols-xl-auto > * {
    flex: 0 0 auto;
    width: auto; }
  .row-cols-xl-1 > * {
    flex: 0 0 auto;
    width: 100%; }
  .row-cols-xl-2 > * {
    flex: 0 0 auto;
    width: 50%; }
  .row-cols-xl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%; }
  .row-cols-xl-4 > * {
    flex: 0 0 auto;
    width: 25%; }
  .row-cols-xl-5 > * {
    flex: 0 0 auto;
    width: 20%; }
  .row-cols-xl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%; }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto; }
  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333333%; }
  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66666667%; }
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%; }
  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%; }
  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66666667%; }
  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%; }
  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333333%; }
  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66666667%; }
  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%; }
  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333333%; }
  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.66666667%; }
  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%; }
  .offset-xl-0 {
    margin-left: 0; }
  .offset-xl-1 {
    margin-left: 8.33333333%; }
  .offset-xl-2 {
    margin-left: 16.66666667%; }
  .offset-xl-3 {
    margin-left: 25%; }
  .offset-xl-4 {
    margin-left: 33.33333333%; }
  .offset-xl-5 {
    margin-left: 41.66666667%; }
  .offset-xl-6 {
    margin-left: 50%; }
  .offset-xl-7 {
    margin-left: 58.33333333%; }
  .offset-xl-8 {
    margin-left: 66.66666667%; }
  .offset-xl-9 {
    margin-left: 75%; }
  .offset-xl-10 {
    margin-left: 83.33333333%; }
  .offset-xl-11 {
    margin-left: 91.66666667%; }
  .g-xl-0,
.gx-xl-0 {
    --bs-gutter-x: 0; }
  .g-xl-0,
.gy-xl-0 {
    --bs-gutter-y: 0; }
  .g-xl-1,
.gx-xl-1 {
    --bs-gutter-x: 0.25rem; }
  .g-xl-1,
.gy-xl-1 {
    --bs-gutter-y: 0.25rem; }
  .g-xl-2,
.gx-xl-2 {
    --bs-gutter-x: 0.5rem; }
  .g-xl-2,
.gy-xl-2 {
    --bs-gutter-y: 0.5rem; }
  .g-xl-3,
.gx-xl-3 {
    --bs-gutter-x: 1rem; }
  .g-xl-3,
.gy-xl-3 {
    --bs-gutter-y: 1rem; }
  .g-xl-4,
.gx-xl-4 {
    --bs-gutter-x: 1.5rem; }
  .g-xl-4,
.gy-xl-4 {
    --bs-gutter-y: 1.5rem; }
  .g-xl-5,
.gx-xl-5 {
    --bs-gutter-x: 3rem; }
  .g-xl-5,
.gy-xl-5 {
    --bs-gutter-y: 3rem; } }

@media (min-width: 1400px) {
  .col-xxl {
    flex: 1 0 0; }
  .row-cols-xxl-auto > * {
    flex: 0 0 auto;
    width: auto; }
  .row-cols-xxl-1 > * {
    flex: 0 0 auto;
    width: 100%; }
  .row-cols-xxl-2 > * {
    flex: 0 0 auto;
    width: 50%; }
  .row-cols-xxl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%; }
  .row-cols-xxl-4 > * {
    flex: 0 0 auto;
    width: 25%; }
  .row-cols-xxl-5 > * {
    flex: 0 0 auto;
    width: 20%; }
  .row-cols-xxl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%; }
  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto; }
  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.33333333%; }
  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.66666667%; }
  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%; }
  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.33333333%; }
  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.66666667%; }
  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%; }
  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.33333333%; }
  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.66666667%; }
  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%; }
  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.33333333%; }
  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.66666667%; }
  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%; }
  .offset-xxl-0 {
    margin-left: 0; }
  .offset-xxl-1 {
    margin-left: 8.33333333%; }
  .offset-xxl-2 {
    margin-left: 16.66666667%; }
  .offset-xxl-3 {
    margin-left: 25%; }
  .offset-xxl-4 {
    margin-left: 33.33333333%; }
  .offset-xxl-5 {
    margin-left: 41.66666667%; }
  .offset-xxl-6 {
    margin-left: 50%; }
  .offset-xxl-7 {
    margin-left: 58.33333333%; }
  .offset-xxl-8 {
    margin-left: 66.66666667%; }
  .offset-xxl-9 {
    margin-left: 75%; }
  .offset-xxl-10 {
    margin-left: 83.33333333%; }
  .offset-xxl-11 {
    margin-left: 91.66666667%; }
  .g-xxl-0,
.gx-xxl-0 {
    --bs-gutter-x: 0; }
  .g-xxl-0,
.gy-xxl-0 {
    --bs-gutter-y: 0; }
  .g-xxl-1,
.gx-xxl-1 {
    --bs-gutter-x: 0.25rem; }
  .g-xxl-1,
.gy-xxl-1 {
    --bs-gutter-y: 0.25rem; }
  .g-xxl-2,
.gx-xxl-2 {
    --bs-gutter-x: 0.5rem; }
  .g-xxl-2,
.gy-xxl-2 {
    --bs-gutter-y: 0.5rem; }
  .g-xxl-3,
.gx-xxl-3 {
    --bs-gutter-x: 1rem; }
  .g-xxl-3,
.gy-xxl-3 {
    --bs-gutter-y: 1rem; }
  .g-xxl-4,
.gx-xxl-4 {
    --bs-gutter-x: 1.5rem; }
  .g-xxl-4,
.gy-xxl-4 {
    --bs-gutter-y: 1.5rem; }
  .g-xxl-5,
.gx-xxl-5 {
    --bs-gutter-x: 3rem; }
  .g-xxl-5,
.gy-xxl-5 {
    --bs-gutter-y: 3rem; } }

.d-inline {
  display: inline !important; }

.d-inline-block {
  display: inline-block !important; }

.d-block {
  display: block !important; }

.d-grid {
  display: grid !important; }

.d-table {
  display: table !important; }

.d-table-row {
  display: table-row !important; }

.d-table-cell {
  display: table-cell !important; }

.d-flex {
  display: flex !important; }

.d-inline-flex {
  display: inline-flex !important; }

.d-none {
  display: none !important; }

.flex-fill {
  flex: 1 1 auto !important; }

.flex-row {
  flex-direction: row !important; }

.flex-column {
  flex-direction: column !important; }

.flex-row-reverse {
  flex-direction: row-reverse !important; }

.flex-column-reverse {
  flex-direction: column-reverse !important; }

.flex-grow-0 {
  flex-grow: 0 !important; }

.flex-grow-1 {
  flex-grow: 1 !important; }

.flex-shrink-0 {
  flex-shrink: 0 !important; }

.flex-shrink-1 {
  flex-shrink: 1 !important; }

.flex-wrap {
  flex-wrap: wrap !important; }

.flex-nowrap {
  flex-wrap: nowrap !important; }

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important; }

.justify-content-start {
  justify-content: flex-start !important; }

.justify-content-end {
  justify-content: flex-end !important; }

.justify-content-center {
  justify-content: center !important; }

.justify-content-between {
  justify-content: space-between !important; }

.justify-content-around {
  justify-content: space-around !important; }

.justify-content-evenly {
  justify-content: space-evenly !important; }

.align-items-start {
  align-items: flex-start !important; }

.align-items-end {
  align-items: flex-end !important; }

.align-items-center {
  align-items: center !important; }

.align-items-baseline {
  align-items: baseline !important; }

.align-items-stretch {
  align-items: stretch !important; }

.align-content-start {
  align-content: flex-start !important; }

.align-content-end {
  align-content: flex-end !important; }

.align-content-center {
  align-content: center !important; }

.align-content-between {
  align-content: space-between !important; }

.align-content-around {
  align-content: space-around !important; }

.align-content-stretch {
  align-content: stretch !important; }

.align-self-auto {
  align-self: auto !important; }

.align-self-start {
  align-self: flex-start !important; }

.align-self-end {
  align-self: flex-end !important; }

.align-self-center {
  align-self: center !important; }

.align-self-baseline {
  align-self: baseline !important; }

.align-self-stretch {
  align-self: stretch !important; }

.order-first {
  order: -1 !important; }

.order-0 {
  order: 0 !important; }

.order-1 {
  order: 1 !important; }

.order-2 {
  order: 2 !important; }

.order-3 {
  order: 3 !important; }

.order-4 {
  order: 4 !important; }

.order-5 {
  order: 5 !important; }

.order-last {
  order: 6 !important; }

.m-0 {
  margin: 0 !important; }

.m-1 {
  margin: 0.25rem !important; }

.m-2 {
  margin: 0.5rem !important; }

.m-3 {
  margin: 1rem !important; }

.m-4 {
  margin: 1.5rem !important; }

.m-5 {
  margin: 3rem !important; }

.m-auto {
  margin: auto !important; }

.mx-0 {
  margin-right: 0 !important;
  margin-left: 0 !important; }

.mx-1 {
  margin-right: 0.25rem !important;
  margin-left: 0.25rem !important; }

.mx-2 {
  margin-right: 0.5rem !important;
  margin-left: 0.5rem !important; }

.mx-3 {
  margin-right: 1rem !important;
  margin-left: 1rem !important; }

.mx-4 {
  margin-right: 1.5rem !important;
  margin-left: 1.5rem !important; }

.mx-5 {
  margin-right: 3rem !important;
  margin-left: 3rem !important; }

.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important; }

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important; }

.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important; }

.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important; }

.my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important; }

.my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important; }

.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important; }

.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important; }

.mt-0 {
  margin-top: 0 !important; }

.mt-1 {
  margin-top: 0.25rem !important; }

.mt-2 {
  margin-top: 0.5rem !important; }

.mt-3 {
  margin-top: 1rem !important; }

.mt-4 {
  margin-top: 1.5rem !important; }

.mt-5 {
  margin-top: 3rem !important; }

.mt-auto {
  margin-top: auto !important; }

.me-0 {
  margin-right: 0 !important; }

.me-1 {
  margin-right: 0.25rem !important; }

.me-2 {
  margin-right: 0.5rem !important; }

.me-3 {
  margin-right: 1rem !important; }

.me-4 {
  margin-right: 1.5rem !important; }

.me-5 {
  margin-right: 3rem !important; }

.me-auto {
  margin-right: auto !important; }

.mb-0 {
  margin-bottom: 0 !important; }

.mb-1 {
  margin-bottom: 0.25rem !important; }

.mb-2 {
  margin-bottom: 0.5rem !important; }

.mb-3 {
  margin-bottom: 1rem !important; }

.mb-4 {
  margin-bottom: 1.5rem !important; }

.mb-5 {
  margin-bottom: 3rem !important; }

.mb-auto {
  margin-bottom: auto !important; }

.ms-0 {
  margin-left: 0 !important; }

.ms-1 {
  margin-left: 0.25rem !important; }

.ms-2 {
  margin-left: 0.5rem !important; }

.ms-3 {
  margin-left: 1rem !important; }

.ms-4 {
  margin-left: 1.5rem !important; }

.ms-5 {
  margin-left: 3rem !important; }

.ms-auto {
  margin-left: auto !important; }

.p-0 {
  padding: 0 !important; }

.p-1 {
  padding: 0.25rem !important; }

.p-2 {
  padding: 0.5rem !important; }

.p-3 {
  padding: 1rem !important; }

.p-4 {
  padding: 1.5rem !important; }

.p-5 {
  padding: 3rem !important; }

.px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important; }

.px-1 {
  padding-right: 0.25rem !important;
  padding-left: 0.25rem !important; }

.px-2 {
  padding-right: 0.5rem !important;
  padding-left: 0.5rem !important; }

.px-3 {
  padding-right: 1rem !important;
  padding-left: 1rem !important; }

.px-4 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important; }

.px-5 {
  padding-right: 3rem !important;
  padding-left: 3rem !important; }

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important; }

.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important; }

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important; }

.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important; }

.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important; }

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important; }

.pt-0 {
  padding-top: 0 !important; }

.pt-1 {
  padding-top: 0.25rem !important; }

.pt-2 {
  padding-top: 0.5rem !important; }

.pt-3 {
  padding-top: 1rem !important; }

.pt-4 {
  padding-top: 1.5rem !important; }

.pt-5 {
  padding-top: 3rem !important; }

.pe-0 {
  padding-right: 0 !important; }

.pe-1 {
  padding-right: 0.25rem !important; }

.pe-2 {
  padding-right: 0.5rem !important; }

.pe-3 {
  padding-right: 1rem !important; }

.pe-4 {
  padding-right: 1.5rem !important; }

.pe-5 {
  padding-right: 3rem !important; }

.pb-0 {
  padding-bottom: 0 !important; }

.pb-1 {
  padding-bottom: 0.25rem !important; }

.pb-2 {
  padding-bottom: 0.5rem !important; }

.pb-3 {
  padding-bottom: 1rem !important; }

.pb-4 {
  padding-bottom: 1.5rem !important; }

.pb-5 {
  padding-bottom: 3rem !important; }

.ps-0 {
  padding-left: 0 !important; }

.ps-1 {
  padding-left: 0.25rem !important; }

.ps-2 {
  padding-left: 0.5rem !important; }

.ps-3 {
  padding-left: 1rem !important; }

.ps-4 {
  padding-left: 1.5rem !important; }

.ps-5 {
  padding-left: 3rem !important; }

@media (min-width: 576px) {
  .d-sm-inline {
    display: inline !important; }
  .d-sm-inline-block {
    display: inline-block !important; }
  .d-sm-block {
    display: block !important; }
  .d-sm-grid {
    display: grid !important; }
  .d-sm-table {
    display: table !important; }
  .d-sm-table-row {
    display: table-row !important; }
  .d-sm-table-cell {
    display: table-cell !important; }
  .d-sm-flex {
    display: flex !important; }
  .d-sm-inline-flex {
    display: inline-flex !important; }
  .d-sm-none {
    display: none !important; }
  .flex-sm-fill {
    flex: 1 1 auto !important; }
  .flex-sm-row {
    flex-direction: row !important; }
  .flex-sm-column {
    flex-direction: column !important; }
  .flex-sm-row-reverse {
    flex-direction: row-reverse !important; }
  .flex-sm-column-reverse {
    flex-direction: column-reverse !important; }
  .flex-sm-grow-0 {
    flex-grow: 0 !important; }
  .flex-sm-grow-1 {
    flex-grow: 1 !important; }
  .flex-sm-shrink-0 {
    flex-shrink: 0 !important; }
  .flex-sm-shrink-1 {
    flex-shrink: 1 !important; }
  .flex-sm-wrap {
    flex-wrap: wrap !important; }
  .flex-sm-nowrap {
    flex-wrap: nowrap !important; }
  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important; }
  .justify-content-sm-start {
    justify-content: flex-start !important; }
  .justify-content-sm-end {
    justify-content: flex-end !important; }
  .justify-content-sm-center {
    justify-content: center !important; }
  .justify-content-sm-between {
    justify-content: space-between !important; }
  .justify-content-sm-around {
    justify-content: space-around !important; }
  .justify-content-sm-evenly {
    justify-content: space-evenly !important; }
  .align-items-sm-start {
    align-items: flex-start !important; }
  .align-items-sm-end {
    align-items: flex-end !important; }
  .align-items-sm-center {
    align-items: center !important; }
  .align-items-sm-baseline {
    align-items: baseline !important; }
  .align-items-sm-stretch {
    align-items: stretch !important; }
  .align-content-sm-start {
    align-content: flex-start !important; }
  .align-content-sm-end {
    align-content: flex-end !important; }
  .align-content-sm-center {
    align-content: center !important; }
  .align-content-sm-between {
    align-content: space-between !important; }
  .align-content-sm-around {
    align-content: space-around !important; }
  .align-content-sm-stretch {
    align-content: stretch !important; }
  .align-self-sm-auto {
    align-self: auto !important; }
  .align-self-sm-start {
    align-self: flex-start !important; }
  .align-self-sm-end {
    align-self: flex-end !important; }
  .align-self-sm-center {
    align-self: center !important; }
  .align-self-sm-baseline {
    align-self: baseline !important; }
  .align-self-sm-stretch {
    align-self: stretch !important; }
  .order-sm-first {
    order: -1 !important; }
  .order-sm-0 {
    order: 0 !important; }
  .order-sm-1 {
    order: 1 !important; }
  .order-sm-2 {
    order: 2 !important; }
  .order-sm-3 {
    order: 3 !important; }
  .order-sm-4 {
    order: 4 !important; }
  .order-sm-5 {
    order: 5 !important; }
  .order-sm-last {
    order: 6 !important; }
  .m-sm-0 {
    margin: 0 !important; }
  .m-sm-1 {
    margin: 0.25rem !important; }
  .m-sm-2 {
    margin: 0.5rem !important; }
  .m-sm-3 {
    margin: 1rem !important; }
  .m-sm-4 {
    margin: 1.5rem !important; }
  .m-sm-5 {
    margin: 3rem !important; }
  .m-sm-auto {
    margin: auto !important; }
  .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important; }
  .mx-sm-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important; }
  .mx-sm-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important; }
  .mx-sm-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important; }
  .mx-sm-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important; }
  .mx-sm-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important; }
  .mx-sm-auto {
    margin-right: auto !important;
    margin-left: auto !important; }
  .my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important; }
  .my-sm-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important; }
  .my-sm-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important; }
  .my-sm-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important; }
  .my-sm-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important; }
  .my-sm-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important; }
  .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important; }
  .mt-sm-0 {
    margin-top: 0 !important; }
  .mt-sm-1 {
    margin-top: 0.25rem !important; }
  .mt-sm-2 {
    margin-top: 0.5rem !important; }
  .mt-sm-3 {
    margin-top: 1rem !important; }
  .mt-sm-4 {
    margin-top: 1.5rem !important; }
  .mt-sm-5 {
    margin-top: 3rem !important; }
  .mt-sm-auto {
    margin-top: auto !important; }
  .me-sm-0 {
    margin-right: 0 !important; }
  .me-sm-1 {
    margin-right: 0.25rem !important; }
  .me-sm-2 {
    margin-right: 0.5rem !important; }
  .me-sm-3 {
    margin-right: 1rem !important; }
  .me-sm-4 {
    margin-right: 1.5rem !important; }
  .me-sm-5 {
    margin-right: 3rem !important; }
  .me-sm-auto {
    margin-right: auto !important; }
  .mb-sm-0 {
    margin-bottom: 0 !important; }
  .mb-sm-1 {
    margin-bottom: 0.25rem !important; }
  .mb-sm-2 {
    margin-bottom: 0.5rem !important; }
  .mb-sm-3 {
    margin-bottom: 1rem !important; }
  .mb-sm-4 {
    margin-bottom: 1.5rem !important; }
  .mb-sm-5 {
    margin-bottom: 3rem !important; }
  .mb-sm-auto {
    margin-bottom: auto !important; }
  .ms-sm-0 {
    margin-left: 0 !important; }
  .ms-sm-1 {
    margin-left: 0.25rem !important; }
  .ms-sm-2 {
    margin-left: 0.5rem !important; }
  .ms-sm-3 {
    margin-left: 1rem !important; }
  .ms-sm-4 {
    margin-left: 1.5rem !important; }
  .ms-sm-5 {
    margin-left: 3rem !important; }
  .ms-sm-auto {
    margin-left: auto !important; }
  .p-sm-0 {
    padding: 0 !important; }
  .p-sm-1 {
    padding: 0.25rem !important; }
  .p-sm-2 {
    padding: 0.5rem !important; }
  .p-sm-3 {
    padding: 1rem !important; }
  .p-sm-4 {
    padding: 1.5rem !important; }
  .p-sm-5 {
    padding: 3rem !important; }
  .px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important; }
  .px-sm-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important; }
  .px-sm-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important; }
  .px-sm-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important; }
  .px-sm-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important; }
  .px-sm-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important; }
  .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important; }
  .py-sm-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important; }
  .py-sm-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important; }
  .py-sm-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important; }
  .py-sm-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important; }
  .py-sm-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important; }
  .pt-sm-0 {
    padding-top: 0 !important; }
  .pt-sm-1 {
    padding-top: 0.25rem !important; }
  .pt-sm-2 {
    padding-top: 0.5rem !important; }
  .pt-sm-3 {
    padding-top: 1rem !important; }
  .pt-sm-4 {
    padding-top: 1.5rem !important; }
  .pt-sm-5 {
    padding-top: 3rem !important; }
  .pe-sm-0 {
    padding-right: 0 !important; }
  .pe-sm-1 {
    padding-right: 0.25rem !important; }
  .pe-sm-2 {
    padding-right: 0.5rem !important; }
  .pe-sm-3 {
    padding-right: 1rem !important; }
  .pe-sm-4 {
    padding-right: 1.5rem !important; }
  .pe-sm-5 {
    padding-right: 3rem !important; }
  .pb-sm-0 {
    padding-bottom: 0 !important; }
  .pb-sm-1 {
    padding-bottom: 0.25rem !important; }
  .pb-sm-2 {
    padding-bottom: 0.5rem !important; }
  .pb-sm-3 {
    padding-bottom: 1rem !important; }
  .pb-sm-4 {
    padding-bottom: 1.5rem !important; }
  .pb-sm-5 {
    padding-bottom: 3rem !important; }
  .ps-sm-0 {
    padding-left: 0 !important; }
  .ps-sm-1 {
    padding-left: 0.25rem !important; }
  .ps-sm-2 {
    padding-left: 0.5rem !important; }
  .ps-sm-3 {
    padding-left: 1rem !important; }
  .ps-sm-4 {
    padding-left: 1.5rem !important; }
  .ps-sm-5 {
    padding-left: 3rem !important; } }

@media (min-width: 768px) {
  .d-md-inline {
    display: inline !important; }
  .d-md-inline-block {
    display: inline-block !important; }
  .d-md-block {
    display: block !important; }
  .d-md-grid {
    display: grid !important; }
  .d-md-table {
    display: table !important; }
  .d-md-table-row {
    display: table-row !important; }
  .d-md-table-cell {
    display: table-cell !important; }
  .d-md-flex {
    display: flex !important; }
  .d-md-inline-flex {
    display: inline-flex !important; }
  .d-md-none {
    display: none !important; }
  .flex-md-fill {
    flex: 1 1 auto !important; }
  .flex-md-row {
    flex-direction: row !important; }
  .flex-md-column {
    flex-direction: column !important; }
  .flex-md-row-reverse {
    flex-direction: row-reverse !important; }
  .flex-md-column-reverse {
    flex-direction: column-reverse !important; }
  .flex-md-grow-0 {
    flex-grow: 0 !important; }
  .flex-md-grow-1 {
    flex-grow: 1 !important; }
  .flex-md-shrink-0 {
    flex-shrink: 0 !important; }
  .flex-md-shrink-1 {
    flex-shrink: 1 !important; }
  .flex-md-wrap {
    flex-wrap: wrap !important; }
  .flex-md-nowrap {
    flex-wrap: nowrap !important; }
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important; }
  .justify-content-md-start {
    justify-content: flex-start !important; }
  .justify-content-md-end {
    justify-content: flex-end !important; }
  .justify-content-md-center {
    justify-content: center !important; }
  .justify-content-md-between {
    justify-content: space-between !important; }
  .justify-content-md-around {
    justify-content: space-around !important; }
  .justify-content-md-evenly {
    justify-content: space-evenly !important; }
  .align-items-md-start {
    align-items: flex-start !important; }
  .align-items-md-end {
    align-items: flex-end !important; }
  .align-items-md-center {
    align-items: center !important; }
  .align-items-md-baseline {
    align-items: baseline !important; }
  .align-items-md-stretch {
    align-items: stretch !important; }
  .align-content-md-start {
    align-content: flex-start !important; }
  .align-content-md-end {
    align-content: flex-end !important; }
  .align-content-md-center {
    align-content: center !important; }
  .align-content-md-between {
    align-content: space-between !important; }
  .align-content-md-around {
    align-content: space-around !important; }
  .align-content-md-stretch {
    align-content: stretch !important; }
  .align-self-md-auto {
    align-self: auto !important; }
  .align-self-md-start {
    align-self: flex-start !important; }
  .align-self-md-end {
    align-self: flex-end !important; }
  .align-self-md-center {
    align-self: center !important; }
  .align-self-md-baseline {
    align-self: baseline !important; }
  .align-self-md-stretch {
    align-self: stretch !important; }
  .order-md-first {
    order: -1 !important; }
  .order-md-0 {
    order: 0 !important; }
  .order-md-1 {
    order: 1 !important; }
  .order-md-2 {
    order: 2 !important; }
  .order-md-3 {
    order: 3 !important; }
  .order-md-4 {
    order: 4 !important; }
  .order-md-5 {
    order: 5 !important; }
  .order-md-last {
    order: 6 !important; }
  .m-md-0 {
    margin: 0 !important; }
  .m-md-1 {
    margin: 0.25rem !important; }
  .m-md-2 {
    margin: 0.5rem !important; }
  .m-md-3 {
    margin: 1rem !important; }
  .m-md-4 {
    margin: 1.5rem !important; }
  .m-md-5 {
    margin: 3rem !important; }
  .m-md-auto {
    margin: auto !important; }
  .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important; }
  .mx-md-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important; }
  .mx-md-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important; }
  .mx-md-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important; }
  .mx-md-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important; }
  .mx-md-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important; }
  .mx-md-auto {
    margin-right: auto !important;
    margin-left: auto !important; }
  .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important; }
  .my-md-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important; }
  .my-md-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important; }
  .my-md-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important; }
  .my-md-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important; }
  .my-md-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important; }
  .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important; }
  .mt-md-0 {
    margin-top: 0 !important; }
  .mt-md-1 {
    margin-top: 0.25rem !important; }
  .mt-md-2 {
    margin-top: 0.5rem !important; }
  .mt-md-3 {
    margin-top: 1rem !important; }
  .mt-md-4 {
    margin-top: 1.5rem !important; }
  .mt-md-5 {
    margin-top: 3rem !important; }
  .mt-md-auto {
    margin-top: auto !important; }
  .me-md-0 {
    margin-right: 0 !important; }
  .me-md-1 {
    margin-right: 0.25rem !important; }
  .me-md-2 {
    margin-right: 0.5rem !important; }
  .me-md-3 {
    margin-right: 1rem !important; }
  .me-md-4 {
    margin-right: 1.5rem !important; }
  .me-md-5 {
    margin-right: 3rem !important; }
  .me-md-auto {
    margin-right: auto !important; }
  .mb-md-0 {
    margin-bottom: 0 !important; }
  .mb-md-1 {
    margin-bottom: 0.25rem !important; }
  .mb-md-2 {
    margin-bottom: 0.5rem !important; }
  .mb-md-3 {
    margin-bottom: 1rem !important; }
  .mb-md-4 {
    margin-bottom: 1.5rem !important; }
  .mb-md-5 {
    margin-bottom: 3rem !important; }
  .mb-md-auto {
    margin-bottom: auto !important; }
  .ms-md-0 {
    margin-left: 0 !important; }
  .ms-md-1 {
    margin-left: 0.25rem !important; }
  .ms-md-2 {
    margin-left: 0.5rem !important; }
  .ms-md-3 {
    margin-left: 1rem !important; }
  .ms-md-4 {
    margin-left: 1.5rem !important; }
  .ms-md-5 {
    margin-left: 3rem !important; }
  .ms-md-auto {
    margin-left: auto !important; }
  .p-md-0 {
    padding: 0 !important; }
  .p-md-1 {
    padding: 0.25rem !important; }
  .p-md-2 {
    padding: 0.5rem !important; }
  .p-md-3 {
    padding: 1rem !important; }
  .p-md-4 {
    padding: 1.5rem !important; }
  .p-md-5 {
    padding: 3rem !important; }
  .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important; }
  .px-md-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important; }
  .px-md-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important; }
  .px-md-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important; }
  .px-md-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important; }
  .px-md-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important; }
  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important; }
  .py-md-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important; }
  .py-md-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important; }
  .py-md-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important; }
  .py-md-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important; }
  .py-md-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important; }
  .pt-md-0 {
    padding-top: 0 !important; }
  .pt-md-1 {
    padding-top: 0.25rem !important; }
  .pt-md-2 {
    padding-top: 0.5rem !important; }
  .pt-md-3 {
    padding-top: 1rem !important; }
  .pt-md-4 {
    padding-top: 1.5rem !important; }
  .pt-md-5 {
    padding-top: 3rem !important; }
  .pe-md-0 {
    padding-right: 0 !important; }
  .pe-md-1 {
    padding-right: 0.25rem !important; }
  .pe-md-2 {
    padding-right: 0.5rem !important; }
  .pe-md-3 {
    padding-right: 1rem !important; }
  .pe-md-4 {
    padding-right: 1.5rem !important; }
  .pe-md-5 {
    padding-right: 3rem !important; }
  .pb-md-0 {
    padding-bottom: 0 !important; }
  .pb-md-1 {
    padding-bottom: 0.25rem !important; }
  .pb-md-2 {
    padding-bottom: 0.5rem !important; }
  .pb-md-3 {
    padding-bottom: 1rem !important; }
  .pb-md-4 {
    padding-bottom: 1.5rem !important; }
  .pb-md-5 {
    padding-bottom: 3rem !important; }
  .ps-md-0 {
    padding-left: 0 !important; }
  .ps-md-1 {
    padding-left: 0.25rem !important; }
  .ps-md-2 {
    padding-left: 0.5rem !important; }
  .ps-md-3 {
    padding-left: 1rem !important; }
  .ps-md-4 {
    padding-left: 1.5rem !important; }
  .ps-md-5 {
    padding-left: 3rem !important; } }

@media (min-width: 992px) {
  .d-lg-inline {
    display: inline !important; }
  .d-lg-inline-block {
    display: inline-block !important; }
  .d-lg-block {
    display: block !important; }
  .d-lg-grid {
    display: grid !important; }
  .d-lg-table {
    display: table !important; }
  .d-lg-table-row {
    display: table-row !important; }
  .d-lg-table-cell {
    display: table-cell !important; }
  .d-lg-flex {
    display: flex !important; }
  .d-lg-inline-flex {
    display: inline-flex !important; }
  .d-lg-none {
    display: none !important; }
  .flex-lg-fill {
    flex: 1 1 auto !important; }
  .flex-lg-row {
    flex-direction: row !important; }
  .flex-lg-column {
    flex-direction: column !important; }
  .flex-lg-row-reverse {
    flex-direction: row-reverse !important; }
  .flex-lg-column-reverse {
    flex-direction: column-reverse !important; }
  .flex-lg-grow-0 {
    flex-grow: 0 !important; }
  .flex-lg-grow-1 {
    flex-grow: 1 !important; }
  .flex-lg-shrink-0 {
    flex-shrink: 0 !important; }
  .flex-lg-shrink-1 {
    flex-shrink: 1 !important; }
  .flex-lg-wrap {
    flex-wrap: wrap !important; }
  .flex-lg-nowrap {
    flex-wrap: nowrap !important; }
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important; }
  .justify-content-lg-start {
    justify-content: flex-start !important; }
  .justify-content-lg-end {
    justify-content: flex-end !important; }
  .justify-content-lg-center {
    justify-content: center !important; }
  .justify-content-lg-between {
    justify-content: space-between !important; }
  .justify-content-lg-around {
    justify-content: space-around !important; }
  .justify-content-lg-evenly {
    justify-content: space-evenly !important; }
  .align-items-lg-start {
    align-items: flex-start !important; }
  .align-items-lg-end {
    align-items: flex-end !important; }
  .align-items-lg-center {
    align-items: center !important; }
  .align-items-lg-baseline {
    align-items: baseline !important; }
  .align-items-lg-stretch {
    align-items: stretch !important; }
  .align-content-lg-start {
    align-content: flex-start !important; }
  .align-content-lg-end {
    align-content: flex-end !important; }
  .align-content-lg-center {
    align-content: center !important; }
  .align-content-lg-between {
    align-content: space-between !important; }
  .align-content-lg-around {
    align-content: space-around !important; }
  .align-content-lg-stretch {
    align-content: stretch !important; }
  .align-self-lg-auto {
    align-self: auto !important; }
  .align-self-lg-start {
    align-self: flex-start !important; }
  .align-self-lg-end {
    align-self: flex-end !important; }
  .align-self-lg-center {
    align-self: center !important; }
  .align-self-lg-baseline {
    align-self: baseline !important; }
  .align-self-lg-stretch {
    align-self: stretch !important; }
  .order-lg-first {
    order: -1 !important; }
  .order-lg-0 {
    order: 0 !important; }
  .order-lg-1 {
    order: 1 !important; }
  .order-lg-2 {
    order: 2 !important; }
  .order-lg-3 {
    order: 3 !important; }
  .order-lg-4 {
    order: 4 !important; }
  .order-lg-5 {
    order: 5 !important; }
  .order-lg-last {
    order: 6 !important; }
  .m-lg-0 {
    margin: 0 !important; }
  .m-lg-1 {
    margin: 0.25rem !important; }
  .m-lg-2 {
    margin: 0.5rem !important; }
  .m-lg-3 {
    margin: 1rem !important; }
  .m-lg-4 {
    margin: 1.5rem !important; }
  .m-lg-5 {
    margin: 3rem !important; }
  .m-lg-auto {
    margin: auto !important; }
  .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important; }
  .mx-lg-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important; }
  .mx-lg-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important; }
  .mx-lg-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important; }
  .mx-lg-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important; }
  .mx-lg-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important; }
  .mx-lg-auto {
    margin-right: auto !important;
    margin-left: auto !important; }
  .my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important; }
  .my-lg-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important; }
  .my-lg-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important; }
  .my-lg-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important; }
  .my-lg-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important; }
  .my-lg-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important; }
  .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important; }
  .mt-lg-0 {
    margin-top: 0 !important; }
  .mt-lg-1 {
    margin-top: 0.25rem !important; }
  .mt-lg-2 {
    margin-top: 0.5rem !important; }
  .mt-lg-3 {
    margin-top: 1rem !important; }
  .mt-lg-4 {
    margin-top: 1.5rem !important; }
  .mt-lg-5 {
    margin-top: 3rem !important; }
  .mt-lg-auto {
    margin-top: auto !important; }
  .me-lg-0 {
    margin-right: 0 !important; }
  .me-lg-1 {
    margin-right: 0.25rem !important; }
  .me-lg-2 {
    margin-right: 0.5rem !important; }
  .me-lg-3 {
    margin-right: 1rem !important; }
  .me-lg-4 {
    margin-right: 1.5rem !important; }
  .me-lg-5 {
    margin-right: 3rem !important; }
  .me-lg-auto {
    margin-right: auto !important; }
  .mb-lg-0 {
    margin-bottom: 0 !important; }
  .mb-lg-1 {
    margin-bottom: 0.25rem !important; }
  .mb-lg-2 {
    margin-bottom: 0.5rem !important; }
  .mb-lg-3 {
    margin-bottom: 1rem !important; }
  .mb-lg-4 {
    margin-bottom: 1.5rem !important; }
  .mb-lg-5 {
    margin-bottom: 3rem !important; }
  .mb-lg-auto {
    margin-bottom: auto !important; }
  .ms-lg-0 {
    margin-left: 0 !important; }
  .ms-lg-1 {
    margin-left: 0.25rem !important; }
  .ms-lg-2 {
    margin-left: 0.5rem !important; }
  .ms-lg-3 {
    margin-left: 1rem !important; }
  .ms-lg-4 {
    margin-left: 1.5rem !important; }
  .ms-lg-5 {
    margin-left: 3rem !important; }
  .ms-lg-auto {
    margin-left: auto !important; }
  .p-lg-0 {
    padding: 0 !important; }
  .p-lg-1 {
    padding: 0.25rem !important; }
  .p-lg-2 {
    padding: 0.5rem !important; }
  .p-lg-3 {
    padding: 1rem !important; }
  .p-lg-4 {
    padding: 1.5rem !important; }
  .p-lg-5 {
    padding: 3rem !important; }
  .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important; }
  .px-lg-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important; }
  .px-lg-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important; }
  .px-lg-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important; }
  .px-lg-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important; }
  .px-lg-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important; }
  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important; }
  .py-lg-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important; }
  .py-lg-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important; }
  .py-lg-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important; }
  .py-lg-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important; }
  .py-lg-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important; }
  .pt-lg-0 {
    padding-top: 0 !important; }
  .pt-lg-1 {
    padding-top: 0.25rem !important; }
  .pt-lg-2 {
    padding-top: 0.5rem !important; }
  .pt-lg-3 {
    padding-top: 1rem !important; }
  .pt-lg-4 {
    padding-top: 1.5rem !important; }
  .pt-lg-5 {
    padding-top: 3rem !important; }
  .pe-lg-0 {
    padding-right: 0 !important; }
  .pe-lg-1 {
    padding-right: 0.25rem !important; }
  .pe-lg-2 {
    padding-right: 0.5rem !important; }
  .pe-lg-3 {
    padding-right: 1rem !important; }
  .pe-lg-4 {
    padding-right: 1.5rem !important; }
  .pe-lg-5 {
    padding-right: 3rem !important; }
  .pb-lg-0 {
    padding-bottom: 0 !important; }
  .pb-lg-1 {
    padding-bottom: 0.25rem !important; }
  .pb-lg-2 {
    padding-bottom: 0.5rem !important; }
  .pb-lg-3 {
    padding-bottom: 1rem !important; }
  .pb-lg-4 {
    padding-bottom: 1.5rem !important; }
  .pb-lg-5 {
    padding-bottom: 3rem !important; }
  .ps-lg-0 {
    padding-left: 0 !important; }
  .ps-lg-1 {
    padding-left: 0.25rem !important; }
  .ps-lg-2 {
    padding-left: 0.5rem !important; }
  .ps-lg-3 {
    padding-left: 1rem !important; }
  .ps-lg-4 {
    padding-left: 1.5rem !important; }
  .ps-lg-5 {
    padding-left: 3rem !important; } }

@media (min-width: 1200px) {
  .d-xl-inline {
    display: inline !important; }
  .d-xl-inline-block {
    display: inline-block !important; }
  .d-xl-block {
    display: block !important; }
  .d-xl-grid {
    display: grid !important; }
  .d-xl-table {
    display: table !important; }
  .d-xl-table-row {
    display: table-row !important; }
  .d-xl-table-cell {
    display: table-cell !important; }
  .d-xl-flex {
    display: flex !important; }
  .d-xl-inline-flex {
    display: inline-flex !important; }
  .d-xl-none {
    display: none !important; }
  .flex-xl-fill {
    flex: 1 1 auto !important; }
  .flex-xl-row {
    flex-direction: row !important; }
  .flex-xl-column {
    flex-direction: column !important; }
  .flex-xl-row-reverse {
    flex-direction: row-reverse !important; }
  .flex-xl-column-reverse {
    flex-direction: column-reverse !important; }
  .flex-xl-grow-0 {
    flex-grow: 0 !important; }
  .flex-xl-grow-1 {
    flex-grow: 1 !important; }
  .flex-xl-shrink-0 {
    flex-shrink: 0 !important; }
  .flex-xl-shrink-1 {
    flex-shrink: 1 !important; }
  .flex-xl-wrap {
    flex-wrap: wrap !important; }
  .flex-xl-nowrap {
    flex-wrap: nowrap !important; }
  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important; }
  .justify-content-xl-start {
    justify-content: flex-start !important; }
  .justify-content-xl-end {
    justify-content: flex-end !important; }
  .justify-content-xl-center {
    justify-content: center !important; }
  .justify-content-xl-between {
    justify-content: space-between !important; }
  .justify-content-xl-around {
    justify-content: space-around !important; }
  .justify-content-xl-evenly {
    justify-content: space-evenly !important; }
  .align-items-xl-start {
    align-items: flex-start !important; }
  .align-items-xl-end {
    align-items: flex-end !important; }
  .align-items-xl-center {
    align-items: center !important; }
  .align-items-xl-baseline {
    align-items: baseline !important; }
  .align-items-xl-stretch {
    align-items: stretch !important; }
  .align-content-xl-start {
    align-content: flex-start !important; }
  .align-content-xl-end {
    align-content: flex-end !important; }
  .align-content-xl-center {
    align-content: center !important; }
  .align-content-xl-between {
    align-content: space-between !important; }
  .align-content-xl-around {
    align-content: space-around !important; }
  .align-content-xl-stretch {
    align-content: stretch !important; }
  .align-self-xl-auto {
    align-self: auto !important; }
  .align-self-xl-start {
    align-self: flex-start !important; }
  .align-self-xl-end {
    align-self: flex-end !important; }
  .align-self-xl-center {
    align-self: center !important; }
  .align-self-xl-baseline {
    align-self: baseline !important; }
  .align-self-xl-stretch {
    align-self: stretch !important; }
  .order-xl-first {
    order: -1 !important; }
  .order-xl-0 {
    order: 0 !important; }
  .order-xl-1 {
    order: 1 !important; }
  .order-xl-2 {
    order: 2 !important; }
  .order-xl-3 {
    order: 3 !important; }
  .order-xl-4 {
    order: 4 !important; }
  .order-xl-5 {
    order: 5 !important; }
  .order-xl-last {
    order: 6 !important; }
  .m-xl-0 {
    margin: 0 !important; }
  .m-xl-1 {
    margin: 0.25rem !important; }
  .m-xl-2 {
    margin: 0.5rem !important; }
  .m-xl-3 {
    margin: 1rem !important; }
  .m-xl-4 {
    margin: 1.5rem !important; }
  .m-xl-5 {
    margin: 3rem !important; }
  .m-xl-auto {
    margin: auto !important; }
  .mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important; }
  .mx-xl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important; }
  .mx-xl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important; }
  .mx-xl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important; }
  .mx-xl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important; }
  .mx-xl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important; }
  .mx-xl-auto {
    margin-right: auto !important;
    margin-left: auto !important; }
  .my-xl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important; }
  .my-xl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important; }
  .my-xl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important; }
  .my-xl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important; }
  .my-xl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important; }
  .my-xl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important; }
  .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important; }
  .mt-xl-0 {
    margin-top: 0 !important; }
  .mt-xl-1 {
    margin-top: 0.25rem !important; }
  .mt-xl-2 {
    margin-top: 0.5rem !important; }
  .mt-xl-3 {
    margin-top: 1rem !important; }
  .mt-xl-4 {
    margin-top: 1.5rem !important; }
  .mt-xl-5 {
    margin-top: 3rem !important; }
  .mt-xl-auto {
    margin-top: auto !important; }
  .me-xl-0 {
    margin-right: 0 !important; }
  .me-xl-1 {
    margin-right: 0.25rem !important; }
  .me-xl-2 {
    margin-right: 0.5rem !important; }
  .me-xl-3 {
    margin-right: 1rem !important; }
  .me-xl-4 {
    margin-right: 1.5rem !important; }
  .me-xl-5 {
    margin-right: 3rem !important; }
  .me-xl-auto {
    margin-right: auto !important; }
  .mb-xl-0 {
    margin-bottom: 0 !important; }
  .mb-xl-1 {
    margin-bottom: 0.25rem !important; }
  .mb-xl-2 {
    margin-bottom: 0.5rem !important; }
  .mb-xl-3 {
    margin-bottom: 1rem !important; }
  .mb-xl-4 {
    margin-bottom: 1.5rem !important; }
  .mb-xl-5 {
    margin-bottom: 3rem !important; }
  .mb-xl-auto {
    margin-bottom: auto !important; }
  .ms-xl-0 {
    margin-left: 0 !important; }
  .ms-xl-1 {
    margin-left: 0.25rem !important; }
  .ms-xl-2 {
    margin-left: 0.5rem !important; }
  .ms-xl-3 {
    margin-left: 1rem !important; }
  .ms-xl-4 {
    margin-left: 1.5rem !important; }
  .ms-xl-5 {
    margin-left: 3rem !important; }
  .ms-xl-auto {
    margin-left: auto !important; }
  .p-xl-0 {
    padding: 0 !important; }
  .p-xl-1 {
    padding: 0.25rem !important; }
  .p-xl-2 {
    padding: 0.5rem !important; }
  .p-xl-3 {
    padding: 1rem !important; }
  .p-xl-4 {
    padding: 1.5rem !important; }
  .p-xl-5 {
    padding: 3rem !important; }
  .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important; }
  .px-xl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important; }
  .px-xl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important; }
  .px-xl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important; }
  .px-xl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important; }
  .px-xl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important; }
  .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important; }
  .py-xl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important; }
  .py-xl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important; }
  .py-xl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important; }
  .py-xl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important; }
  .py-xl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important; }
  .pt-xl-0 {
    padding-top: 0 !important; }
  .pt-xl-1 {
    padding-top: 0.25rem !important; }
  .pt-xl-2 {
    padding-top: 0.5rem !important; }
  .pt-xl-3 {
    padding-top: 1rem !important; }
  .pt-xl-4 {
    padding-top: 1.5rem !important; }
  .pt-xl-5 {
    padding-top: 3rem !important; }
  .pe-xl-0 {
    padding-right: 0 !important; }
  .pe-xl-1 {
    padding-right: 0.25rem !important; }
  .pe-xl-2 {
    padding-right: 0.5rem !important; }
  .pe-xl-3 {
    padding-right: 1rem !important; }
  .pe-xl-4 {
    padding-right: 1.5rem !important; }
  .pe-xl-5 {
    padding-right: 3rem !important; }
  .pb-xl-0 {
    padding-bottom: 0 !important; }
  .pb-xl-1 {
    padding-bottom: 0.25rem !important; }
  .pb-xl-2 {
    padding-bottom: 0.5rem !important; }
  .pb-xl-3 {
    padding-bottom: 1rem !important; }
  .pb-xl-4 {
    padding-bottom: 1.5rem !important; }
  .pb-xl-5 {
    padding-bottom: 3rem !important; }
  .ps-xl-0 {
    padding-left: 0 !important; }
  .ps-xl-1 {
    padding-left: 0.25rem !important; }
  .ps-xl-2 {
    padding-left: 0.5rem !important; }
  .ps-xl-3 {
    padding-left: 1rem !important; }
  .ps-xl-4 {
    padding-left: 1.5rem !important; }
  .ps-xl-5 {
    padding-left: 3rem !important; } }

@media (min-width: 1400px) {
  .d-xxl-inline {
    display: inline !important; }
  .d-xxl-inline-block {
    display: inline-block !important; }
  .d-xxl-block {
    display: block !important; }
  .d-xxl-grid {
    display: grid !important; }
  .d-xxl-table {
    display: table !important; }
  .d-xxl-table-row {
    display: table-row !important; }
  .d-xxl-table-cell {
    display: table-cell !important; }
  .d-xxl-flex {
    display: flex !important; }
  .d-xxl-inline-flex {
    display: inline-flex !important; }
  .d-xxl-none {
    display: none !important; }
  .flex-xxl-fill {
    flex: 1 1 auto !important; }
  .flex-xxl-row {
    flex-direction: row !important; }
  .flex-xxl-column {
    flex-direction: column !important; }
  .flex-xxl-row-reverse {
    flex-direction: row-reverse !important; }
  .flex-xxl-column-reverse {
    flex-direction: column-reverse !important; }
  .flex-xxl-grow-0 {
    flex-grow: 0 !important; }
  .flex-xxl-grow-1 {
    flex-grow: 1 !important; }
  .flex-xxl-shrink-0 {
    flex-shrink: 0 !important; }
  .flex-xxl-shrink-1 {
    flex-shrink: 1 !important; }
  .flex-xxl-wrap {
    flex-wrap: wrap !important; }
  .flex-xxl-nowrap {
    flex-wrap: nowrap !important; }
  .flex-xxl-wrap-reverse {
    flex-wrap: wrap-reverse !important; }
  .justify-content-xxl-start {
    justify-content: flex-start !important; }
  .justify-content-xxl-end {
    justify-content: flex-end !important; }
  .justify-content-xxl-center {
    justify-content: center !important; }
  .justify-content-xxl-between {
    justify-content: space-between !important; }
  .justify-content-xxl-around {
    justify-content: space-around !important; }
  .justify-content-xxl-evenly {
    justify-content: space-evenly !important; }
  .align-items-xxl-start {
    align-items: flex-start !important; }
  .align-items-xxl-end {
    align-items: flex-end !important; }
  .align-items-xxl-center {
    align-items: center !important; }
  .align-items-xxl-baseline {
    align-items: baseline !important; }
  .align-items-xxl-stretch {
    align-items: stretch !important; }
  .align-content-xxl-start {
    align-content: flex-start !important; }
  .align-content-xxl-end {
    align-content: flex-end !important; }
  .align-content-xxl-center {
    align-content: center !important; }
  .align-content-xxl-between {
    align-content: space-between !important; }
  .align-content-xxl-around {
    align-content: space-around !important; }
  .align-content-xxl-stretch {
    align-content: stretch !important; }
  .align-self-xxl-auto {
    align-self: auto !important; }
  .align-self-xxl-start {
    align-self: flex-start !important; }
  .align-self-xxl-end {
    align-self: flex-end !important; }
  .align-self-xxl-center {
    align-self: center !important; }
  .align-self-xxl-baseline {
    align-self: baseline !important; }
  .align-self-xxl-stretch {
    align-self: stretch !important; }
  .order-xxl-first {
    order: -1 !important; }
  .order-xxl-0 {
    order: 0 !important; }
  .order-xxl-1 {
    order: 1 !important; }
  .order-xxl-2 {
    order: 2 !important; }
  .order-xxl-3 {
    order: 3 !important; }
  .order-xxl-4 {
    order: 4 !important; }
  .order-xxl-5 {
    order: 5 !important; }
  .order-xxl-last {
    order: 6 !important; }
  .m-xxl-0 {
    margin: 0 !important; }
  .m-xxl-1 {
    margin: 0.25rem !important; }
  .m-xxl-2 {
    margin: 0.5rem !important; }
  .m-xxl-3 {
    margin: 1rem !important; }
  .m-xxl-4 {
    margin: 1.5rem !important; }
  .m-xxl-5 {
    margin: 3rem !important; }
  .m-xxl-auto {
    margin: auto !important; }
  .mx-xxl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important; }
  .mx-xxl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important; }
  .mx-xxl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important; }
  .mx-xxl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important; }
  .mx-xxl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important; }
  .mx-xxl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important; }
  .mx-xxl-auto {
    margin-right: auto !important;
    margin-left: auto !important; }
  .my-xxl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important; }
  .my-xxl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important; }
  .my-xxl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important; }
  .my-xxl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important; }
  .my-xxl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important; }
  .my-xxl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important; }
  .my-xxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important; }
  .mt-xxl-0 {
    margin-top: 0 !important; }
  .mt-xxl-1 {
    margin-top: 0.25rem !important; }
  .mt-xxl-2 {
    margin-top: 0.5rem !important; }
  .mt-xxl-3 {
    margin-top: 1rem !important; }
  .mt-xxl-4 {
    margin-top: 1.5rem !important; }
  .mt-xxl-5 {
    margin-top: 3rem !important; }
  .mt-xxl-auto {
    margin-top: auto !important; }
  .me-xxl-0 {
    margin-right: 0 !important; }
  .me-xxl-1 {
    margin-right: 0.25rem !important; }
  .me-xxl-2 {
    margin-right: 0.5rem !important; }
  .me-xxl-3 {
    margin-right: 1rem !important; }
  .me-xxl-4 {
    margin-right: 1.5rem !important; }
  .me-xxl-5 {
    margin-right: 3rem !important; }
  .me-xxl-auto {
    margin-right: auto !important; }
  .mb-xxl-0 {
    margin-bottom: 0 !important; }
  .mb-xxl-1 {
    margin-bottom: 0.25rem !important; }
  .mb-xxl-2 {
    margin-bottom: 0.5rem !important; }
  .mb-xxl-3 {
    margin-bottom: 1rem !important; }
  .mb-xxl-4 {
    margin-bottom: 1.5rem !important; }
  .mb-xxl-5 {
    margin-bottom: 3rem !important; }
  .mb-xxl-auto {
    margin-bottom: auto !important; }
  .ms-xxl-0 {
    margin-left: 0 !important; }
  .ms-xxl-1 {
    margin-left: 0.25rem !important; }
  .ms-xxl-2 {
    margin-left: 0.5rem !important; }
  .ms-xxl-3 {
    margin-left: 1rem !important; }
  .ms-xxl-4 {
    margin-left: 1.5rem !important; }
  .ms-xxl-5 {
    margin-left: 3rem !important; }
  .ms-xxl-auto {
    margin-left: auto !important; }
  .p-xxl-0 {
    padding: 0 !important; }
  .p-xxl-1 {
    padding: 0.25rem !important; }
  .p-xxl-2 {
    padding: 0.5rem !important; }
  .p-xxl-3 {
    padding: 1rem !important; }
  .p-xxl-4 {
    padding: 1.5rem !important; }
  .p-xxl-5 {
    padding: 3rem !important; }
  .px-xxl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important; }
  .px-xxl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important; }
  .px-xxl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important; }
  .px-xxl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important; }
  .px-xxl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important; }
  .px-xxl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important; }
  .py-xxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important; }
  .py-xxl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important; }
  .py-xxl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important; }
  .py-xxl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important; }
  .py-xxl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important; }
  .py-xxl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important; }
  .pt-xxl-0 {
    padding-top: 0 !important; }
  .pt-xxl-1 {
    padding-top: 0.25rem !important; }
  .pt-xxl-2 {
    padding-top: 0.5rem !important; }
  .pt-xxl-3 {
    padding-top: 1rem !important; }
  .pt-xxl-4 {
    padding-top: 1.5rem !important; }
  .pt-xxl-5 {
    padding-top: 3rem !important; }
  .pe-xxl-0 {
    padding-right: 0 !important; }
  .pe-xxl-1 {
    padding-right: 0.25rem !important; }
  .pe-xxl-2 {
    padding-right: 0.5rem !important; }
  .pe-xxl-3 {
    padding-right: 1rem !important; }
  .pe-xxl-4 {
    padding-right: 1.5rem !important; }
  .pe-xxl-5 {
    padding-right: 3rem !important; }
  .pb-xxl-0 {
    padding-bottom: 0 !important; }
  .pb-xxl-1 {
    padding-bottom: 0.25rem !important; }
  .pb-xxl-2 {
    padding-bottom: 0.5rem !important; }
  .pb-xxl-3 {
    padding-bottom: 1rem !important; }
  .pb-xxl-4 {
    padding-bottom: 1.5rem !important; }
  .pb-xxl-5 {
    padding-bottom: 3rem !important; }
  .ps-xxl-0 {
    padding-left: 0 !important; }
  .ps-xxl-1 {
    padding-left: 0.25rem !important; }
  .ps-xxl-2 {
    padding-left: 0.5rem !important; }
  .ps-xxl-3 {
    padding-left: 1rem !important; }
  .ps-xxl-4 {
    padding-left: 1.5rem !important; }
  .ps-xxl-5 {
    padding-left: 3rem !important; } }

@media print {
  .d-print-inline {
    display: inline !important; }
  .d-print-inline-block {
    display: inline-block !important; }
  .d-print-block {
    display: block !important; }
  .d-print-grid {
    display: grid !important; }
  .d-print-table {
    display: table !important; }
  .d-print-table-row {
    display: table-row !important; }
  .d-print-table-cell {
    display: table-cell !important; }
  .d-print-flex {
    display: flex !important; }
  .d-print-inline-flex {
    display: inline-flex !important; }
  .d-print-none {
    display: none !important; } }

* {
  scroll-behavior: smooth;
  box-sizing: border-box; }

body {
  margin: 0;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.3;
  overflow-x: hidden;
  position: relative;
  font-family: "Roboto", sans-serif;
  line-height: 1.3;
  background-color: white !important; }

.landing img {
  max-width: 100%;
  width: 100%; }

.one-cookie-banner.py-2.is-platform-closed {
  top: 0 !important;
  z-index: 9999999 !important;
  max-height: 100% !important;
  overflow: auto !important; }

.bg-gray {
  background-color: rgba(124, 124, 124, 0.05); }

.height-100 {
  height: 100%; }

.content {
  padding: 0 !important; }

html {
  font-size: 16px; }

.layout {
  overflow-x: hidden; }

.content {
  margin: 0 !important; }

.padding-7 {
  padding-left: 7px;
  padding-right: 7px; }

#warunki_dostaw {
  color: #000000;
  background: white; }

.header-container__middle-header__logo-container img {
  max-width: 200px; }

:root {
  --primary-color: #d3222a;
  --badges-color: #d3222a;
  --btn-color: #d3222a;
  --btnColor: #d3222a;
  --border-color: #efefef;
  --header-color: #b48484; }

a:hover {
  text-decoration: none; }

.one-notice-banner {
  background-color: #d3222a;
  text-align: center;
  color: white;
  padding: 5px; }
  .one-notice-banner a {
    color: white; }
    .one-notice-banner a:hover {
      color: white;
      text-decoration: underline; }

.header-top {
  padding: 30px 0 0px 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between; }

@media (max-width: 1199px) {
  .header-top {
    display: none !important; } }
  .header-top__img {
    display: block;
    width: 178px;
    object-fit: cover;
    margin: 0 0 0 10px; }

@media (max-width: 1199px) {
  .header-top__img {
    width: 110px; } }
  .header-top__logo-container {
    margin-right: 37px; }
  .header-top__input-container {
    flex: 1; }
    .header-top__input-container input {
      height: 100%;
      width: 100%; }
  .header-top__right {
    margin-left: 58px;
    display: flex;
    height: 100%;
    align-items: center; }

@media (max-width: 1199px) {
  .header-top__right {
    display: none !important; } }
  .header-top .one-button {
    width: 50px;
    height: 40px;
    left: -12px !important;
    transition: 0.3s linear; }
    .header-top .one-button__content {
      background: transparent !important;
      background-color: transparent !important;
      border-color: transparent !important;
      color: white !important; }
    .header-top .one-button:hover {
      background-color: #313534 !important;
      border-color: #313534 !important;
      color: white !important; }
    .header-top .one-button:hover i {
      background-color: #313534 !important;
      border-color: #313534 !important;
      color: white !important; }
    .header-top .one-button i {
      background-color: #d3222a !important;
      border-color: #d3222a !important;
      background-color: #d3222a !important;
      transition: 0.3s linear; }
      .header-top .one-button i::before {
        font-weight: bold !important; }
  .header-top .btn-secondary:focus {
    background-color: white !important; }
  .header-top .dropdown-toggle {
    height: 40px;
    font-size: 14px;
    left: -6px; }
    .header-top .dropdown-toggle .icon-arrows-down {
      font-size: 12px !important; }
  .header-top .search-input {
    height: 40px !important; }
  .header-top .nav-link-custom {
    margin-right: 24px; }
  .header-top .one-manager-info-component .dropdown-toggle {
    font-size: 16px !important;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 24px; }
    .header-top .one-manager-info-component .dropdown-toggle i::before {
      content: "";
      background-image: url("https://static.et-preprod.one.unity.pl/cms/eed8726cacda48fca515248673b29320/support.png");
      background-position: center;
      background-size: contain;
      width: 20px;
      height: 20px;
      margin-right: 8px;
      display: block; }
  .header-top .one-account-dropdown-component .dropdown-toggle {
    position: relative; }
    .header-top .one-account-dropdown-component .dropdown-toggle::before {
      content: "";
      background-image: url("https://static.et-preprod.one.unity.pl/cms/9dc787ef9338491a812dac40d9cdcda0/user.png");
      background-position: center;
      background-size: contain;
      width: 20px;
      height: 20px;
      margin-right: 8px; }
  .header-top .one-login-logout-component::before {
    content: "";
    background-image: url("https://static.et-preprod.one.unity.pl/cms/42562d970e0b46a49a8eee27b9624f43/power.png");
    background-position: center;
    background-size: contain;
    width: 20px;
    height: 20px;
    margin-right: 8px; }
  .header-top .one-login-logout-component,
.header-top .nav-link-custom {
    font-size: 16px !important;
    padding: 0 !important; }
  .header-top .btn-secondary.dropdown-toggle {
    background-color: white !important; }
  .header-top .one-search-bar {
    justify-content: flex-start !important;
    max-width: 725px !important;
    width: unset !important; }

.header-middle {
  padding: 5px 0; }
  .header-middle .one-warehouse-selector-component {
    display: flex;
    align-items: center;
    justify-content: flex-end; }
  .header-middle .dropdown-toggle {
    padding: 0;
    font-size: 14px; }

@media (max-width: 1199px) {
  .header-middle {
    display: none !important; } }

.header-bottom {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start; }

@media (max-width: 1199px) {
  .header-bottom {
    display: none !important; } }
  .header-bottom__categories {
    padding: 15px 30px 15px 30px !important; }
    .header-bottom__categories .d-flex {
      order: 2; }
    .header-bottom__categories i {
      order: 1 !important;
      padding-right: 10px;
      display: flex;
      align-items: center;
      justify-content: center; }
      .header-bottom__categories i:nth-child(1)::before {
        transform: rotate(-90deg); }
      .header-bottom__categories i::before {
        transform: rotate(0deg);
        font-family: unset !important;
        content: "" !important;
        height: 12px;
        width: 12px;
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
        background: url(https://static.hb-preprod.one.unity.pl/cms/d7c04ffb4886434a9e7b58617a766f9d/strza_ka-do__.png); }
  .header-bottom__link {
    padding: 12px 24px;
    font-size: 16px;
    line-height: 25px;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    transition: 0.3s linear; }

@media (max-width: 1399px) {
  .header-bottom__link {
    padding: 12px; } }
    .header-bottom__link:hover {
      background-color: #d3222a;
      color: white; }
    .header-bottom__link a:hover {
      color: white; }
  .header-bottom__button_black {
    padding: 12px 24px;
    font-size: 16px;
    line-height: 25px;
    background-color: #313534;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    transition: 0.3s linear;
    color: white; }

@media (max-width: 1399px) {
  .header-bottom__button_black {
    padding: 12px; } }
    .header-bottom__button_black:hover {
      background-color: #d3222a;
      color: white; }
    .header-bottom__button_black span {
      color: yellow;
      font-weight: bold;
      font-size: larger; }
  .header-bottom__button_red {
    padding: 12px 24px;
    font-size: 16px;
    line-height: 25px;
    background-color: #d3222a;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    transition: 0.3s linear;
    color: white; }

@media (max-width: 1399px) {
  .header-bottom__button_red {
    padding: 12px; } }
    .header-bottom__button_red:hover {
      background-color: #313534;
      color: white; }
  .header-bottom__link--mega-menu {
    padding-left: 12px !important; }
    .header-bottom__link--mega-menu::before {
      content: "";
      width: 12px;
      height: 6px;
      background-color: black;
      clip-path: polygon(50% 100%, 0 0, 100% 0);
      transition: 0.2s linear;
      margin-right: 12px; }
    .header-bottom__link--mega-menu:hover::before {
      transform: rotateX(180deg);
      background-color: white; }
  .header-bottom .container {
    position: relative; }
  .header-bottom__right {
    display: flex;
    align-items: center;
    justify-content: space-between; }
    .header-bottom__right div {
      margin-right: 24px; }
      .header-bottom__right div:nth-last-child(1) {
        margin-right: 0; }
  .header-bottom .icon-badge {
    padding: 0 !important;
    margin: 0 !important; }
    .header-bottom .icon-badge .icon-2x {
      font-size: 27px; }
    .header-bottom .icon-badge::after {
      font-size: 10px; }
  .header-bottom .one-cart-value-component {
    font-size: 16px; }
  .header-bottom .one-button-toggle__text {
    min-width: 48px !important;
    order: 2;
    margin: 0 0 0 12px !important;
    padding: 0 !important;
    font-size: 18px !important; }
  .header-bottom .one-cms-categories-list {
    max-width: 388px !important;
    left: 15px !important;
    width: 100% !important;
    color: black !important; }
    .header-bottom .one-cms-categories-list__subcategory {
      width: calc(130% - 2px); }
      .header-bottom .one-cms-categories-list__subcategory .align-items-center {
        text-align: left !important; }
    .header-bottom .one-cms-categories-list i.icon-arrows-right {
      color: #d3222a;
      font-size: 12px; }
  .header-bottom .one-cms-categories-list__item.position-relative {
    text-align: left !important; }

.mega-menu {
  cursor: default;
  transition: 0.2s linear;
  position: absolute;
  display: none;
  top: 160px;
  left: 0;
  width: 100%;
  padding: 0 12px; }
  .mega-menu__wrapper {
    width: 100%;
    display: flex;
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
    background-color: white; }
  .mega-menu__categories {
    flex: 1;
    padding: 48px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    row-gap: 24px;
    column-gap: 24px; }
  .mega-menu__banner {
    max-width: 300px;
    width: 100%; }
    .mega-menu__banner img {
      width: 100%;
      height: auto;
      object-fit: contain; }
  .mega-menu__title-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start; }
  .mega-menu__icon {
    width: 30px;
    height: 30px;
    object-fit: contain;
    margin-right: 12px; }
  .mega-menu__title {
    font-size: 16px;
    font-weight: bold;
    color: black;
    text-align: left;
    width: 100%; }
    .mega-menu__title:hover {
      color: #d3222a !important; }
  .mega-menu__links {
    margin-top: 12px;
    text-align: left; }
  .mega-menu__links-item {
    font-size: 16px;
    margin-top: 6px;
    width: 100%; }
    .mega-menu__links-item a {
      display: block;
      width: 100%;
      color: black; }
      .mega-menu__links-item a:hover {
        color: #d3222a; }
    .mega-menu__links-item:nth-child(1) {
      margin-top: 0; }

.mobile__input-container {
  padding-top: 15px;
  padding-bottom: 15px;
  flex: 1;
  display: none; }

@media (max-width: 1199px) {
  .mobile__input-container {
    display: block; } }
  .mobile__input-container .one-button {
    width: 50px;
    height: 40px;
    left: -12px !important;
    transition: 0.3s linear; }
    .mobile__input-container .one-button__content {
      background: transparent !important;
      background-color: transparent !important;
      border-color: transparent !important;
      color: white !important; }
    .mobile__input-container .one-button:hover {
      background-color: #313534 !important;
      border-color: #313534 !important;
      color: white !important; }
    .mobile__input-container .one-button:hover i {
      background-color: #313534 !important;
      border-color: #313534 !important;
      color: #d3222a !important; }
    .mobile__input-container .one-button i {
      background-color: #d3222a !important;
      border-color: #d3222a !important;
      background-color: #d3222a !important;
      transition: 0.3s linear; }
  .mobile__input-container .dropdown-toggle {
    background-color: white !important;
    left: -6px;
    height: 40px;
    font-size: 14px; }
  .mobile__input-container input {
    height: 100%;
    width: 100%; }

.mobile__logo-container {
  padding-top: 15px;
  padding-bottom: 15px;
  display: none;
  align-items: center;
  justify-content: center; }

@media (max-width: 1199px) {
  .mobile__logo-container {
    display: flex; } }
  .mobile__logo-container img {
    display: none;
    max-width: 150px;
    width: auto;
    height: auto;
    object-fit: cover; }

@media (max-width: 1199px) {
  .mobile__logo-container img {
    display: block; } }

.header-flex {
  display: flex;
  align-items: center !important;
  justify-content: space-between !important; }

#mehmrgh {
  display: none !important; }

/*
.footer-col {
  @include respond-above(md) {
    width: 14.28% !important;
    max-width: 14.28% !important;
  }
  &:nth-last-child(2) {
    @include respond-above(md) {
      width: 20% !important;
      max-width: 20% !important;
    }
  }
  &:nth-last-child(1) {
    @include respond-above(md) {
      width: 8% !important;
      max-width: 8% !important;
    }
  }

  @include respond-below(lg) {
    margin-top: 24px;
    &:nth-child(1) {
      margin-top: 0;
    }
  }
}

.footer-col:nth-last-child(2) {
  @include respond-above(md) {
    position: relative;

    &::before {
      content: "";
      position: absolute;
      top: -48px;
      left: 0;
      width: 100%;
      height: calc(100% + 170px);
      background-color: white;
    }
    .footer {
      &__list {
        color: $black;
      }
      &__list-item {
        color: $black;
      }
      &__heading {
        color: $black;
      }
    }
    .footer-newsletter {
      &__paragraph {
        color: $black;
      }
    }
  }
}
*/
.footer {
  padding-top: 48px;
  background-color: #313534; }

@media (max-width: 1199px) {
  .footer {
    padding-top: 24px; } }
  .footer__content {
    margin-top: 24px; }
  .footer__heading {
    font-size: 0.875rem;
    position: relative;
    text-transform: uppercase;
    padding-bottom: 12px;
    margin-bottom: 12px;
    color: white; }

@media (max-width: 1199px) {
  .footer__heading {
    padding-bottom: 0;
    margin-bottom: 0; } }
    .footer__heading::before {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      width: 50%;
      height: 1px;
      background-color: #7c7c7c; }

@media (max-width: 1199px) {
  .footer__heading::before {
    display: none; } }
  .footer__list {
    padding-bottom: 4px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start; }
  .footer__list-item {
    font-size: 0.75rem;
    color: white !important;
    margin-top: 24px;
    text-transform: uppercase;
    display: flex;
    width: 100%; }
    .footer__list-item a {
      width: 100%; }
      .footer__list-item a:hover {
        text-decoration: underline;
        color: white !important; }
  .footer iframe {
    height: 185px;
    padding: 0;
    height: 235px; }
  .footer .bhr-contact-form {
    padding: 0 !important; }

.footer-payments {
  margin-top: 48px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: flex-start; }

@media (max-width: 1199px) {
  .footer-payments {
    margin-top: 24px;
    flex-direction: column;
    align-items: flex-start; } }
  .footer-payments__text {
    color: white;
    font-size: 0.75rem;
    text-transform: uppercase; }
  .footer-payments__img {
    margin-left: 12px;
    max-width: 555px;
    width: auto;
    height: 50px;
    max-width: 100%;
    box-sizing: border-box;
    object-fit: contain; }

@media (max-width: 1199px) {
  .footer-payments__img {
    margin-left: 0;
    margin-top: 12px; } }

.footer-socials {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: column;
  gap: 12px; }

@media (max-width: 1199px) {
  .footer-socials {
    justify-content: flex-start;
    flex-direction: row; } }
  .footer-socials__link:nth-child(1) {
    margin-left: 0; }
  .footer-socials__link img {
    height: 24px;
    width: auto;
    object-fit: contain;
    transition: 0.2s linear; }
    .footer-socials__link img:hover {
      opacity: 0.8; }

.footer-newsletter {
  padding-bottom: 4px; }
  .footer-newsletter__paragraph {
    margin-top: 24px;
    color: white;
    font-size: 0.75rem; }
  .footer-newsletter__link {
    display: inline-block;
    margin-top: 24px;
    color: white;
    color: #d3222a;
    padding-left: calc(15px + 5px);
    position: relative;
    transform: translateX(calc(-15px - 5px));
    transition: 0.2s linear;
    overflow: hidden;
    font-size: 1.1875rem;
    font-weight: bold; }
    .footer-newsletter__link:hover {
      transform: translateX(0); }
    .footer-newsletter__link::before {
      content: "";
      position: absolute;
      top: 13px;
      left: 0;
      width: 15px;
      height: 2px;
      background-color: white; }
    .footer-newsletter__link:hover {
      color: #d3222a !important; }

.footer-bottom {
  background-color: #d0cccc;
  width: 100%;
  padding: 24px 0 24px 0; }
  .footer-bottom__list {
    display: flex;
    align-items: center;
    justify-content: space-between; }

@media (max-width: 1199px) {
  .footer-bottom__list {
    flex-direction: column;
    align-items: flex-start; } }
  .footer-bottom__list-item {
    cursor: pointer; }

@media (max-width: 1199px) {
  .footer-bottom__list-item {
    margin-top: 24px; }
    .footer-bottom__list-item:nth-child(1) {
      margin-top: 0; } }
    .footer-bottom__list-item a {
      width: 100%;
      font-weight: 500;
      font-size: 0.875rem; }
      .footer-bottom__list-item a:hover {
        text-decoration: underline; }

div#footer {
  padding-top: 14px !important; }

.one-footer__mobile {
  background-color: white !important; }

#footer > .container:nth-child(1) {
  max-width: 100% !important;
  padding: 0 !important; }

#footer > .container:nth-child(2) .col {
  padding: 0 !important; }

.one-footer .pt-4 {
  padding-top: 14px !important; }

.one-footer .hr.hr.mb-2 {
  display: none !important; }

.one-footer__logo {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  text-align: center !important; }

.heading-container {
  margin-top: calc(1.5rem + 3 vw);
  margin-bottom: calc(1.5rem + 3 vw);
  display: flex;
  align-items: center;
  justify-content: center; }

@media (min-width: 1200px) {
  .heading-container {
    margin-top: 3.75rem; } }

@media (min-width: 1200px) {
  .heading-container {
    margin-bottom: 3.75rem; } }
  .heading-container__heading {
    font-weight: bold;
    padding-bottom: 12px;
    font-size: calc(1.35rem + 1.2 vw);
    position: relative;
    padding-bottom: 12px; }

@media (min-width: 1200px) {
  .heading-container__heading {
    font-size: 2.25rem; } }
    .heading-container__heading::before {
      content: "";
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 75px;
      height: 4px;
      background: #d3222a; }

.buy-box {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 24px; }
  .buy-box__img-container {
    margin: 0 auto;
    height: auto;
    width: 100%;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; }
    .buy-box__img-container img {
      width: 100%;
      height: 150px;
      object-fit: contain;
      border-radius: 0px !important; }
  .buy-box__span {
    display: inline-block;
    margin: 0 auto;
    text-align: center; }
    .buy-box__span--description {
      font-weight: 500;
      font-size: 1rem; }
    .buy-box__span--price {
      padding-top: 15px;
      font-size: calc(1.275rem + 0.3 vw);
      font-weight: bold;
      width: 100%; }

@media (min-width: 1200px) {
  .buy-box__span--price {
    font-size: 1.5rem; } }
    .buy-box__span--netto {
      padding-top: 5px;
      color: #7c7c7c;
      width: 100%;
      font-size: 0.75rem; }
    .buy-box__span--minbuy {
      padding-top: 5px;
      width: 100%;
      font-size: 0.75rem; }
  .buy-box__price-container {
    padding-left: 20px;
    padding-right: 20px;
    min-height: 100px;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%; }
  .buy-box__onlyregisterloginbutton {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center; }
  .buy-box .elit_login_register_button {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 13px 0;
    background: #d3222a !important;
    border: none;
    border-radius: 0px !important;
    color: white !important;
    font-size: 1rem;
    transition: 0.2s linear;
    margin-right: 24px;
    margin-left: 24px;
    width: 100%; }
    .buy-box .elit_login_register_button .one-button__content {
      background-color: transparent !important; }
      .buy-box .elit_login_register_button .one-button__content i {
        background-color: transparent !important; }
    .buy-box .elit_login_register_button:hover {
      color: white !important;
      background-color: #d3222a !important; }
  .buy-box__form {
    padding-top: 15px;
    display: flex;
    align-items: center;
    justify-content: space-evenly; }
  .buy-box__form-number {
    height: 40px;
    width: 62.8%;
    border-radius: 0px !important;
    font-size: 1rem;
    border: none;
    border: 1px solid #7c7c7c;
    color: #7c7c7c;
    padding-left: 9px; }
  .buy-box__form-btn {
    border-radius: 0px !important;
    font-size: 1rem;
    width: 17.46%;
    height: 40px;
    border: none;
    outline: none;
    background-color: #d3222a;
    position: relative;
    transition: 0.2s linear; }
    .buy-box__form-btn:hover {
      opacity: 0.95; }
    .buy-box__form-btn::before {
      content: url(img/ico-ikona-koszyk-white.png);
      position: absolute;
      height: 24px;
      width: 24px;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%); }

.top-page {
  position: relative; }

@media (max-width: 1199px) {
  .top-page {
    display: none; } }
  .top-page::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background-color: #313534;
    z-index: -1; }

@media (max-width: 1199px) {
  .top-page::before {
    display: none; } }
  .top-page::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-color: white;
    z-index: -1; }

@media (max-width: 1199px) {
  .top-page::after {
    display: none; } }
  .top-page__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap; }
  .top-page__content {
    height: 60px;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: space-around; }

@media (max-width: 1199px) {
  .top-page__content {
    width: 100%;
    height: auto;
    padding: 12px 0;
    flex-direction: column; } }
    .top-page__content--left {
      background-color: #313534; }
    .top-page__content--right {
      background-color: white; }
  .top-page__text {
    text-transform: uppercase; }
    .top-page__text--left {
      color: white;
      font-size: 1.25rem; }
    .top-page__text--right {
      color: #313534;
      font-size: calc(1.275rem + 0.3 vw); }

@media (min-width: 1200px) {
  .top-page__text--right {
    font-size: 1.5rem; } }
  .top-page__img {
    max-width: 200px;
    height: auto;
    object-fit: contain; }

@media (max-width: 1199px) {
  .top-page__img {
    margin-top: 12px; } }

.main-heading {
  margin-top: 60px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #cccccc; }

@media (max-width: 991px) {
  .main-heading {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px; } }
  .main-heading__wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start; }

@media (max-width: 991px) {
  .main-heading__wrapper {
    flex-direction: column;
    align-items: center;
    justify-content: center; } }
  .main-heading__img {
    height: 25px;
    width: auto;
    object-fit: contain;
    margin: 0 20px; }

@media (max-width: 991px) {
  .main-heading__img {
    margin-top: 20px; } }
  .main-heading__heading {
    color: #313534;
    font-size: calc(1.30625rem + 0.675 vw);
    padding-left: 80px;
    text-transform: uppercase; }

@media (min-width: 1200px) {
  .main-heading__heading {
    font-size: 1.8125rem; } }

@media (max-width: 1199px) {
  .main-heading__heading {
    padding-left: 0; } }

@media (max-width: 991px) {
  .main-heading__heading {
    text-align: center; } }
  .main-heading__btn {
    margin-left: 48px;
    display: block;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 44px;
    background: #313534 !important;
    border: none;
    border-radius: 0px !important;
    color: white !important;
    font-size: 1rem;
    transition: 0.2s linear; }

@media (max-width: 991px) {
  .main-heading__btn {
    margin-top: 24px;
    margin-left: 0; } }
    .main-heading__btn .one-button__content {
      background-color: transparent !important; }
      .main-heading__btn .one-button__content i {
        background-color: transparent !important; }
    .main-heading__btn:hover {
      color: white !important;
      background-color: #d3222a !important; }

@media (max-width: 991px) {
  .one-catalog-view-list__catalog-row p {
    margin-top: 24px !important; } }

.one-catalog-view-list__catalog-row p img {
  width: 100% !important;
  object-fit: cover !important;
  height: auto !important; }

@media (max-width: 991px) {
  .one-catalog-view-list__catalog-row .one-listing-banner {
    margin-top: 24px !important; } }

.one-catalog-view-list__catalog-row .one-listing-banner img {
  width: 100% !important;
  object-fit: cover !important;
  height: auto !important; }

.one-breadcrumbs {
  margin-top: 24px !important;
  padding-right: 0;
  margin-bottom: 24px !important;
  padding: 0px 24px;
  height: inherit !important;
  background-color: #e4e4e4; }
  .one-breadcrumbs .crumb {
    color: black;
    font-size: 0.75rem; }

.one-category-tree {
  border-radius: 0px !important;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
  padding: 30px 15px !important;
  background-color: white;
  margin-bottom: 12px !important; }

@media (max-width: 991px) {
  .one-category-tree {
    margin-top: 12px !important; } }
  .one-category-tree__header {
    font-size: 1.25rem;
    position: relative;
    font-weight: 700;
    padding: 0 !important;
    margin-bottom: 12px !important;
    padding-bottom: 12px !important;
    border: none !important; }
    .one-category-tree__header::before {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      width: 75px;
      height: 4px;
      background: #d3222a; }
  .one-category-tree .ps__rail-x,
.one-category-tree .ps__rail-y {
    display: none !important; }
  .one-category-tree__content {
    border-top: none !important;
    padding: 0 !important;
    max-height: unset !important;
    /* width */
    /* Track */
    /* Handle */ }
    .one-category-tree__content::-webkit-scrollbar {
      width: 9px;
      border-radius: 5px; }
    .one-category-tree__content::-webkit-scrollbar-track {
      border: 1px solid #919191;
      background-color: #e8e8e8;
      border-radius: 5px; }
    .one-category-tree__content::-webkit-scrollbar-thumb {
      background: white;
      border-radius: 5px;
      border: 1px solid #919191; }
  .one-category-tree__scroll-area {
    max-height: unset !important; }
    .one-category-tree__scroll-area ul li {
      margin-top: 10px;
      font-size: 1rem; }
      .one-category-tree__scroll-area ul li .bold {
        color: #313534; }
      .one-category-tree__scroll-area ul li .one-category-tree-item__circle {
        border-radius: 50%;
        color: #d3222a;
        border-color: #d3222a; }
        .one-category-tree__scroll-area ul li .one-category-tree-item__circle--horizontal {
          background: #d3222a; }
        .one-category-tree__scroll-area ul li .one-category-tree-item__circle--vertical {
          background: #d3222a; }

.one-filters-container {
  background-color: white;
  padding: 30px 15px !important;
  border-radius: 0px !important;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1); }

@media (max-width: 767px) {
  .one-filters-container {
    margin-top: 15px !important; } }
  .one-filters-container .one-filters__header {
    font-size: 1.25rem;
    position: relative;
    font-weight: 700;
    padding: 0 !important;
    margin-bottom: 12px !important;
    padding-bottom: 12px !important;
    border: none !important; }
    .one-filters-container .one-filters__header::before {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      width: 75px;
      height: 4px;
      background: #d3222a; }
  .one-filters-container .one-filters__pointer {
    background: transparent; }
  .one-filters-container .one-multicheckbox-filter {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    cursor: pointer;
    position: relative;
    overflow: hidden; }
    .one-filters-container .one-multicheckbox-filter::before {
      content: "";
      position: absolute;
      bottom: 0;
      left: -32px;
      width: calc(100% + 64px);
      height: 1px;
      background-color: #d0d0d0; }
    .one-filters-container .one-multicheckbox-filter:nth-last-child(1)::before {
      display: none; }
    .one-filters-container .one-multicheckbox-filter__header {
      padding: 10px 0 10px 0; }
      .one-filters-container .one-multicheckbox-filter__header span {
        font-size: 1rem; }
      .one-filters-container .one-multicheckbox-filter__header--bottom-border {
        border: none; }
    .one-filters-container .one-multicheckbox-filter__icon-toggle::before {
      color: #d3222a !important;
      font-weight: bold !important; }
    .one-filters-container .one-multicheckbox-filter .py-2 {
      padding: 0 0 15px 0 !important; }
      .one-filters-container .one-multicheckbox-filter .py-2 .custom-control-input:checked ~ .custom-control-label:before {
        background: #d3222a;
        border: none; }
      .one-filters-container .one-multicheckbox-filter .py-2 .custom-control-input:checked ~ .custom-control-label {
        color: #d3222a; }
      .one-filters-container .one-multicheckbox-filter .py-2 .one-multicheckbox-filter-item {
        display: flex;
        align-items: center; }
        .one-filters-container .one-multicheckbox-filter .py-2 .one-multicheckbox-filter-item .custom-control-label {
          color: #7c7c7c;
          font-size: 0.875rem; }
          .one-filters-container .one-multicheckbox-filter .py-2 .one-multicheckbox-filter-item .custom-control-label::before {
            border: 1px solid #7c7c7c;
            border-radius: 50%;
            position: absolute;
            top: 0; }
          .one-filters-container .one-multicheckbox-filter .py-2 .one-multicheckbox-filter-item .custom-control-label::after {
            top: 0 !important; }

.one-selected-filters {
  padding: 30px 60px !important;
  border-radius: 0px !important;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
  background-color: white;
  margin-bottom: 12px !important; }

@media (max-width: 1199px) {
  .one-selected-filters {
    margin-top: 12px !important; } }
  .one-selected-filters .pl-1 {
    font-size: 1rem;
    display: block;
    padding-left: 24px !important; }
  .one-selected-filters .pl-2 {
    margin-top: 10px !important; }
  .one-selected-filters .pointer {
    padding: 0 !important;
    margin-top: 10px; }
    .one-selected-filters .pointer:nth-child(1) {
      margin-top: 0; }
  .one-selected-filters__row {
    background: transparent;
    border-radius: 0px !important; }
  .one-selected-filters__header {
    font-weight: 700;
    font-size: 1.25rem;
    padding: 0 !important;
    margin-bottom: 12px !important;
    padding-bottom: 12px !important;
    border: none !important;
    position: relative; }
    .one-selected-filters__header::before {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      width: 75px;
      height: 4px;
      background: #d3222a; }
  .one-selected-filters__link {
    padding: 0 !important;
    font-size: 1rem;
    color: #d3222a !important; }
  .one-selected-filters__circle {
    border-radius: 50% !important;
    background: transparent !important;
    border: 1px solid #d3222a !important; }
  .one-selected-filters .one-selected-filters__circle--horizontal {
    background: #d3222a !important; }
  .one-selected-filters .one-selected-filters__circle--vertical {
    background: #d3222a !important; }

.one-price-filter__header {
  padding: 0 !important; }

.one-price-filter .col-12 {
  padding: 0 !important; }

.one-toolbar-list {
  border-radius: 0px !important;
  background-color: transparent !important;
  margin: 0 !important; }
  .one-toolbar-list__query {
    height: auto;
    padding: 0 !important;
    padding-bottom: 15px !important;
    border: none !important; }
    .one-toolbar-list__query .d-flex {
      padding-top: 0 !important;
      padding-bottom: 0 !important; }
      .one-toolbar-list__query .d-flex .text-muted {
        font-size: 0.875rem;
        color: #313534 !important; }
      .one-toolbar-list__query .d-flex .ml-2 {
        font-size: 0.875rem;
        color: #313534 !important;
        font-weight: bold !important; }
  .one-toolbar-list .col-12 {
    padding: 0; }
  .one-toolbar-list__tool {
    height: 70px !important; }
    .one-toolbar-list__tool .row:nth-child(1) {
      background-color: rgba(124, 124, 124, 0.05) !important;
      margin-left: 0 !important;
      border-radius: 0px !important; }
    .one-toolbar-list__tool .row .col:nth-child(1) {
      justify-content: flex-start; }
    .one-toolbar-list__tool .row .col:nth-child(4) {
      justify-content: flex-end; }
    .one-toolbar-list__tool .border-right {
      border: none !important; }
    .one-toolbar-list__tool .border-left {
      border: none !important; }
    .one-toolbar-list__tool .icon-view-list::before,
.one-toolbar-list__tool .icon-view-tiles::before,
.one-toolbar-list__tool .icon-view-minilist::before {
      color: black !important; }
    .one-toolbar-list__tool .row .col {
      color: #7c7c7c !important; }
  .one-toolbar-list__pagination-container .one-toolbar-list__arrow:nth-of-type(2) {
    margin-right: 25px !important; }
  .one-toolbar-list__pagination-container .one-toolbar-list__arrow::before {
    color: #d3222a !important;
    font-weight: bold !important;
    height: 18px !important;
    width: 18px !important;
    font-size: 18px !important; }
  .one-toolbar-list__pagination-container .one-toolbar-list__page-input {
    width: 44px;
    height: 30px;
    font-size: 14px !important;
    color: #7c7c7c;
    border-radius: 0px !important; }
  .one-toolbar-list .custom-select {
    height: 30px;
    max-width: 222px;
    width: 100%;
    color: #7c7c7c;
    font-size: 14px;
    border-radius: 0px !important; }

.one-pagination {
  background-color: transparent !important;
  color: #7c7c7c;
  font-size: 0.875rem;
  height: 70px !important;
  margin: 0 !important;
  margin-top: 15px !important;
  position: relative; }
  .one-pagination::before {
    content: "";
    position: absolute;
    right: -15px;
    top: 0;
    height: 70px;
    width: calc(100% + 15px);
    background-color: rgba(124, 124, 124, 0.05) !important;
    border-radius: 0px !important; }

@media (max-width: 991px) {
  .one-pagination::before {
    right: 0 !important;
    width: 100% !important; } }
  .one-pagination .col {
    padding: 0 !important; }
    .one-pagination .col:nth-child(3) {
      justify-content: flex-end; }
  .one-pagination .border-left {
    border: none !important; }
  .one-pagination__input {
    height: 30px !important;
    width: 44px !important;
    border-radius: 0px !important;
    color: #7c7c7c; }
  .one-pagination .arrow::before {
    color: #d3222a !important;
    font-weight: bold !important;
    font-size: 18px;
    height: 18px;
    width: 18px; }
  .one-pagination .custom-select {
    border-radius: 0px !important;
    height: 30px;
    width: 53px;
    color: #7c7c7c; }

@media (max-width: 991px) {
  .one-pagination .custom-select {
    margin-right: 15px; } }

.one-product-list-view {
  border-radius: 0px !important;
  margin: 0 !important;
  margin-top: 15px !important;
  padding-left: 0;
  margin-left: 15px !important; }

@media (max-width: 991px) {
  .one-product-list-view {
    padding-left: 15px !important;
    margin-left: 0 !important; } }
  .one-product-list-view .border-bottom {
    border: none !important; }
  .one-product-list-view__tile {
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
    background-color: white !important;
    border-radius: 0px !important; }

@media (max-width: 991px) {
  .one-product-list-view .order-sm-1 {
    width: 100%; } }

@media (max-width: 991px) {
  .one-product-list-view__tile--right {
    width: 100%; } }
  .one-product-list-view .one-header {
    font-size: 1.25rem;
    padding: 30px 60px !important;
    font-weight: bold;
    color: #313534; }

@media (max-width: 767px) {
  .one-product-list-view .one-header {
    padding-top: 15px;
    padding-bottom: 15px; } }
    .one-product-list-view .one-header__title {
      font-size: 1.25rem; }

@media (max-width: 991px) {
  .one-product-list-view .one-header__title {
    text-align: center !important; } }
      .one-product-list-view .one-header__title a {
        text-decoration: none; }
        .one-product-list-view .one-header__title a div {
          margin: 0 !important; }
    .one-product-list-view .one-header .col {
      padding: 0; }
      .one-product-list-view .one-header .col .py-2 {
        padding: 0 !important; }
  .one-product-list-view .one-product-tile-information {
    padding: 0 !important; }
    .one-product-list-view .one-product-tile-information__row {
      margin-top: 10px !important;
      margin-bottom: 0 !important;
      border-left: 2px solid #d3222a !important;
      color: #313534; }
      .one-product-list-view .one-product-tile-information__row:nth-child(1) {
        margin-top: 0 !important; }
      .one-product-list-view .one-product-tile-information__row:nth-child(3) {
        display: none !important; }
      .one-product-list-view .one-product-tile-information__row div {
        color: #313534; }
      .one-product-list-view .one-product-tile-information__row strong {
        color: #313534;
        font-weight: 600; }

@media (max-width: 991px) {
  .one-product-list-view .one-product-tile-information {
    padding-left: 30px !important; } }
    .one-product-list-view .one-product-tile-information__title--border {
      border: none !important;
      font-size: 0.875rem;
      color: #7c7c7c;
      padding-left: 17px !important;
      margin: 0 !important;
      margin-top: 5px !important;
      position: relative;
      background-color: #d3222a; }
      .one-product-list-view .one-product-tile-information__title--border::before {
        position: absolute;
        content: "";
        width: 12px;
        height: 1px;
        background-color: #d3222a;
        top: 13px;
        left: 0; }
    .one-product-list-view .one-product-tile-information a {
      text-decoration: none;
      color: #7c7c7c; }
    .one-product-list-view .one-product-tile-information b {
      font-weight: bold; }
  .one-product-list-view .one-product-technical-button {
    margin-top: 30px; }
    .one-product-list-view .one-product-technical-button .border-right-md {
      border: none; }
    .one-product-list-view .one-product-technical-button__title {
      background-color: rgba(124, 124, 124, 0.05); }
  .one-product-list-view__tile--right {
    border: none !important;
    justify-content: flex-start !important; }

@media (max-width: 767px) {
  .one-product-list-view__tile--right {
    margin-bottom: 30px; } }
    .one-product-list-view__tile--right .py-2 {
      order: 3; }
    .one-product-list-view__tile--right .col {
      flex-grow: inherit !important;
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
      flex-direction: column !important;
      display: block !important; }
      .one-product-list-view__tile--right .col .justify-content-end {
        justify-content: center !important; }
  .one-product-list-view .one-product-tile-right-price {
    padding: 0 30px !important; }
    .one-product-list-view .one-product-tile-right-price__value {
      font-size: 1.25rem;
      font-weight: 500;
      display: block !important;
      width: 100%; }
    .one-product-list-view .one-product-tile-right-price__type {
      padding: 0 !important;
      padding-top: 0 !important;
      margin-left: 0 !important;
      color: #7c7c7c;
      display: block !important;
      width: 100%;
      font-size: 0.75rem; }
    .one-product-list-view .one-product-tile-right-price__info {
      padding-top: 10px;
      color: #d3222a; }
  .one-product-list-view .one-product-tile-right-actions {
    order: 2; }
    .one-product-list-view .one-product-tile-right-actions .col .d-flex {
      justify-content: center !important; }
  .one-product-list-view .one-product-tile-right-price__container {
    display: block !important;
    width: 100%;
    text-align: center; }
  .one-product-list-view .one-product-tile-right-price__info {
    display: flex;
    align-items: center;
    justify-content: center; }
  .one-product-list-view .collapse {
    margin-top: 15px;
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
    border-radius: 0px !important; }
    .one-product-list-view .collapse .one-product-technical-data {
      padding: 0 !important;
      padding: 17.5px !important; }
    .one-product-list-view .collapse .d-flex {
      margin: 0 !important;
      padding: 0 !important;
      padding-left: 17.5px !important;
      padding-right: 17.5px !important;
      padding-top: 10px !important;
      padding-bottom: 10px !important;
      position: relative; }

@media (max-width: 991px) {
  .one-product-list-view .collapse .d-flex {
    display: block !important; } }
      .one-product-list-view .collapse .d-flex::before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: calc(100% - 30px);
        height: 1px;
        background-color: #f1f1f1; }
      .one-product-list-view .collapse .d-flex div {
        display: flex;
        align-items: center;
        justify-content: center; }

@media (max-width: 991px) {
  .one-product-list-view .collapse .d-flex div {
    justify-content: flex-start; } }
        .one-product-list-view .collapse .d-flex div .icon-cancel {
          margin: 0 !important; }
          .one-product-list-view .collapse .d-flex div .icon-cancel::before {
            color: #7c7c7c;
            opacity: 0.25; }
        .one-product-list-view .collapse .d-flex div .icon-correct {
          margin: 0 !important; }
          .one-product-list-view .collapse .d-flex div .icon-correct::before {
            color: #00c000; }
      .one-product-list-view .collapse .d-flex span {
        font-size: 14px;
        line-height: 26px; }

@media (max-width: 991px) {
  .one-product-list-view .collapse .d-flex span {
    width: 100%;
    display: block !important;
    text-align: left !important;
    margin: 0 !important; } }
  .one-product-list-view .border-top {
    border: none !important; }
  .one-product-list-view .col {
    padding: 0 !important;
    overflow: visible !important; }

.one-product-tile-view {
  margin: 0 !important;
  padding: 0 !important;
  margin-top: 15px !important;
  padding-left: 15px !important; }
  .one-product-tile-view__product-tile {
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
    border-radius: 0px !important;
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    height: unset !important; }
    .one-product-tile-view__product-tile .border-top {
      border: none !important; }
  .one-product-tile-view__gallery-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; }
    .one-product-tile-view__gallery-container a {
      font-size: 1rem;
      text-align: center;
      padding-left: 15px;
      padding-right: 15px;
      font-weight: 500;
      text-decoration: none; }
  .one-product-tile-view__right-side .col .justify-content-end {
    justify-content: center !important; }
  .one-product-tile-view__right-side .col .one-product-tile-right-price div {
    justify-content: center; }
  .one-product-tile-view__right-side .grid-table {
    display: flex !important;
    justify-content: center !important;
    padding: 0 !important;
    margin: 0 !important;
    align-items: center !important; }
    .one-product-tile-view__right-side .grid-table .d-flex {
      font-size: 0.75rem; }
  .one-product-tile-view .one-product-tile-gallery__items {
    margin-top: 15px; }
  .one-product-tile-view .one-product-tile-right-price {
    padding: 0 !important; }
    .one-product-tile-view .one-product-tile-right-price div {
      display: flex;
      flex-direction: column; }
    .one-product-tile-view .one-product-tile-right-price__container {
      justify-content: center !important;
      flex-direction: column !important;
      align-items: center !important; }
    .one-product-tile-view .one-product-tile-right-price__value {
      font-size: calc(1.275rem + 0.3 vw);
      padding-top: 16px !important;
      font-weight: 500; }

@media (min-width: 1200px) {
  .one-product-tile-view .one-product-tile-right-price__value {
    font-size: 1.5rem; } }
    .one-product-tile-view .one-product-tile-right-price__type {
      font-size: 0.75rem;
      padding-top: 5px;
      color: #7c7c7c; }
  .one-product-tile-view .border-bottom {
    border: none !important; }
  .one-product-tile-view__action-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 10px !important; }

.one-product-minilist-view {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin: 0 !important;
  padding-left: 0 !important;
  margin-left: 15px !important; }
  .one-product-minilist-view__title {
    width: auto !important; }
  .one-product-minilist-view__tile {
    padding: 30px 60px !important;
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
    border-radius: 0px !important;
    background-color: white;
    margin-top: 15px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important; }
    .one-product-minilist-view__tile .p-3 {
      text-align: center !important; }
    .one-product-minilist-view__tile .one-product-minilist-view__header h2 {
      font-size: 1rem;
      padding: 0 !important;
      margin: 0 !important; }
      .one-product-minilist-view__tile .one-product-minilist-view__header h2 a div {
        margin: 0 !important; }
    .one-product-minilist-view__tile .one-product-minilist-view__header .one-product-minilist-view__title {
      color: #7c7c7c;
      padding: 0 !important;
      margin: 0 !important;
      padding-left: 17px !important;
      margin-right: 15px !important;
      position: relative;
      font-size: 0.875rem;
      margin-top: 10px !important; }
      .one-product-minilist-view__tile .one-product-minilist-view__header .one-product-minilist-view__title::before {
        content: "";
        position: absolute;
        top: 9px;
        left: 0;
        width: 12px;
        height: 1px;
        background-color: #d3222a; }
    .one-product-minilist-view__tile .one-product-stocks-info .one-product-stocks-popup-dialog {
      display: block;
      width: 100%;
      text-align: center;
      margin-top: 10px; }
      .one-product-minilist-view__tile .one-product-stocks-info .one-product-stocks-popup-dialog__link {
        color: #7c7c7c; }
    .one-product-minilist-view__tile .one-product-stocks-info .grid-table .d-flex {
      justify-content: center !important; }
    .one-product-minilist-view__tile .flex-start {
      justify-content: center !important;
      align-items: center !important; }
  .one-product-minilist-view .btn {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    background: #d3222a !important;
    border: none;
    border-radius: 0px !important;
    color: white !important;
    font-size: 1rem;
    transition: 0.2s linear; }
    .one-product-minilist-view .btn .one-button__content {
      background-color: transparent !important; }
      .one-product-minilist-view .btn .one-button__content i {
        background-color: transparent !important; }
    .one-product-minilist-view .btn:hover {
      color: white !important;
      background-color: #d3222a !important; }
  .one-product-minilist-view .btn-secondary {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    background: #d3222a !important;
    border: none;
    border-radius: 0px !important;
    color: white !important;
    font-size: 1rem;
    transition: 0.2s linear; }
    .one-product-minilist-view .btn-secondary .one-button__content {
      background-color: transparent !important; }
      .one-product-minilist-view .btn-secondary .one-button__content i {
        background-color: transparent !important; }
    .one-product-minilist-view .btn-secondary:hover {
      color: white !important;
      background-color: #d3222a !important; }
  .one-product-minilist-view .one-product-minilist-view__title--border {
    border: none !important; }
  .one-product-minilist-view .one-product-tile-gallery__items img {
    width: 60px;
    height: 60px;
    object-fit: contain; }
  .one-product-minilist-view .one-product-tile-right-price__container {
    flex-direction: column;
    align-items: center; }
    .one-product-minilist-view .one-product-tile-right-price__container .one-product-tile-right-price__value {
      font-size: 1.25rem;
      font-weight: 500; }
    .one-product-minilist-view .one-product-tile-right-price__container .one-product-tile-right-price__type {
      color: #7c7c7c;
      font-size: 0.75rem;
      padding: 0 !important;
      margin: 0; }

.one-product-list-view .one-product-tile-right-actions,
.one-product-tile-view .one-product-tile-right-actions {
  padding: 0 !important; }
  .one-product-list-view .one-product-tile-right-actions .col,
.one-product-tile-view .one-product-tile-right-actions .col {
    position: relative;
    display: block !important;
    padding-top: 10px !important;
    padding-bottom: 26px !important;
    overflow: visible; }
    .one-product-list-view .one-product-tile-right-actions .col .one-quantity-and-interval-info__container,
.one-product-tile-view .one-product-tile-right-actions .col .one-quantity-and-interval-info__container {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%; }
      .one-product-list-view .one-product-tile-right-actions .col .one-quantity-and-interval-info__container .one-quantity-and-interval-info,
.one-product-tile-view .one-product-tile-right-actions .col .one-quantity-and-interval-info__container .one-quantity-and-interval-info {
        padding: 0 !important;
        margin: 0 !important;
        display: flex;
        align-items: center;
        justify-content: center; }
        .one-product-list-view .one-product-tile-right-actions .col .one-quantity-and-interval-info__container .one-quantity-and-interval-info__gray-info-color,
.one-product-tile-view .one-product-tile-right-actions .col .one-quantity-and-interval-info__container .one-quantity-and-interval-info__gray-info-color {
          font-size: 10px;
          line-height: 20px;
          color: #7c7c7c; }
          .one-product-list-view .one-product-tile-right-actions .col .one-quantity-and-interval-info__container .one-quantity-and-interval-info__gray-info-color:nth-child(1),
.one-product-tile-view .one-product-tile-right-actions .col .one-quantity-and-interval-info__container .one-quantity-and-interval-info__gray-info-color:nth-child(1) {
            margin-right: 15px; }
          .one-product-list-view .one-product-tile-right-actions .col .one-quantity-and-interval-info__container .one-quantity-and-interval-info__gray-info-color:nth-child(2),
.one-product-tile-view .one-product-tile-right-actions .col .one-quantity-and-interval-info__container .one-quantity-and-interval-info__gray-info-color:nth-child(2) {
            margin-left: 15px; }
    .one-product-list-view .one-product-tile-right-actions .col .input-container,
.one-product-tile-view .one-product-tile-right-actions .col .input-container {
      float: left;
      max-width: 100%;
      margin-right: 15px; }
      .one-product-list-view .one-product-tile-right-actions .col .input-container .one-input-tooltip,
.one-product-tile-view .one-product-tile-right-actions .col .input-container .one-input-tooltip {
        flex-direction: row; }
        .one-product-list-view .one-product-tile-right-actions .col .input-container .one-input-tooltip__input,
.one-product-tile-view .one-product-tile-right-actions .col .input-container .one-input-tooltip__input {
          border-radius: 0px !important;
          height: 40px;
          width: 144px;
          text-align: left;
          padding-left: 15px; }
        .one-product-list-view .one-product-tile-right-actions .col .input-container .one-input-tooltip__unit,
.one-product-tile-view .one-product-tile-right-actions .col .input-container .one-input-tooltip__unit {
          font-size: 10px;
          color: #7c7c7c;
          padding-left: 2px; }
    .one-product-list-view .one-product-tile-right-actions .col .btn-wishlist,
.one-product-tile-view .one-product-tile-right-actions .col .btn-wishlist {
      float: left;
      margin: 0 !important;
      margin-right: 15px !important; }
    .one-product-list-view .one-product-tile-right-actions .col .btn,
.one-product-tile-view .one-product-tile-right-actions .col .btn {
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 8px;
      background: #d3222a !important;
      border: none;
      border-radius: 0px !important;
      color: white !important;
      font-size: 1rem;
      transition: 0.2s linear; }
      .one-product-list-view .one-product-tile-right-actions .col .btn .one-button__content,
.one-product-tile-view .one-product-tile-right-actions .col .btn .one-button__content {
        background-color: transparent !important; }
        .one-product-list-view .one-product-tile-right-actions .col .btn .one-button__content i,
.one-product-tile-view .one-product-tile-right-actions .col .btn .one-button__content i {
          background-color: transparent !important; }
      .one-product-list-view .one-product-tile-right-actions .col .btn:hover,
.one-product-tile-view .one-product-tile-right-actions .col .btn:hover {
        color: white !important;
        background-color: #d3222a !important; }
      .one-product-list-view .one-product-tile-right-actions .col .btn .btn-content,
.one-product-tile-view .one-product-tile-right-actions .col .btn .btn-content {
        font-size: 0; }

.one-product-list-view .py-2.col,
.one-product-tile-view .py-2.col {
  padding: 0 !important; }

.one-product-list-view .one-product-stocks-info,
.one-product-tile-view .one-product-stocks-info {
  margin-left: 20px;
  margin-top: 10px;
  margin-bottom: 15px; }
  .one-product-list-view .one-product-stocks-info__warehouse,
.one-product-tile-view .one-product-stocks-info__warehouse {
    padding-right: 30px; }
  .one-product-list-view .one-product-stocks-info .one-product-stocks-popup-dialog,
.one-product-tile-view .one-product-stocks-info .one-product-stocks-popup-dialog {
    display: none;
    width: 100%;
    text-align: center; }
    .one-product-list-view .one-product-stocks-info .one-product-stocks-popup-dialog__link,
.one-product-tile-view .one-product-stocks-info .one-product-stocks-popup-dialog__link {
      color: #7c7c7c; }
  .one-product-list-view .one-product-stocks-info .grid-table,
.one-product-tile-view .one-product-stocks-info .grid-table {
    display: flex;
    align-items: center; }
    .one-product-list-view .one-product-stocks-info .grid-table:nth-child(1) .one-product-stocks-info__warehouse,
.one-product-tile-view .one-product-stocks-info .grid-table:nth-child(1) .one-product-stocks-info__warehouse {
      position: relative;
      font-size: 0; }
      .one-product-list-view .one-product-stocks-info .grid-table:nth-child(1) .one-product-stocks-info__warehouse::before,
.one-product-tile-view .one-product-stocks-info .grid-table:nth-child(1) .one-product-stocks-info__warehouse::before {
        content: "w magazynie centralnym";
        font-size: 10px;
        width: 200px;
        height: 10px;
        color: gray;
        background-color: white; }
    .one-product-list-view .one-product-stocks-info .grid-table:nth-child(2) .one-product-stocks-info__warehouse,
.one-product-tile-view .one-product-stocks-info .grid-table:nth-child(2) .one-product-stocks-info__warehouse {
      position: relative;
      font-size: 0; }
      .one-product-list-view .one-product-stocks-info .grid-table:nth-child(2) .one-product-stocks-info__warehouse::before,
.one-product-tile-view .one-product-stocks-info .grid-table:nth-child(2) .one-product-stocks-info__warehouse::before {
        content: "w magazynie lokalnym";
        font-size: 10px;
        width: 200px;
        height: 10px;
        color: gray;
        background-color: white; }
    .one-product-list-view .one-product-stocks-info .grid-table .d-flex,
.one-product-tile-view .one-product-stocks-info .grid-table .d-flex {
      font-size: 10px !important;
      line-height: 20px !important;
      color: #7c7c7c !important; }
      .one-product-list-view .one-product-stocks-info .grid-table .d-flex:nth-of-type(1),
.one-product-tile-view .one-product-stocks-info .grid-table .d-flex:nth-of-type(1) {
        order: 2; }
      .one-product-list-view .one-product-stocks-info .grid-table .d-flex:nth-of-type(3),
.one-product-tile-view .one-product-stocks-info .grid-table .d-flex:nth-of-type(3) {
        order: 1; }
      .one-product-list-view .one-product-stocks-info .grid-table .d-flex span:nth-child(1),
.one-product-tile-view .one-product-stocks-info .grid-table .d-flex span:nth-child(1) {
        margin-right: 2px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center; }

.vertical-bar {
  display: none !important; }

.one-catalog-view-list__sidebar-footer .btn {
  background-color: #d3222a;
  background-color: transparent !important;
  border: none !important;
  border-color: transparent; }
  .one-catalog-view-list__sidebar-footer .btn .one-button__content {
    background-color: transparent !important; }

.one-sidebar-header {
  box-shadow: rgba(124, 124, 124, 0.05) !important;
  z-index: 9999999; }
  .one-sidebar-header .border-bottom {
    border: none !important; }
  .one-sidebar-header .border-top {
    border: none !important; }
  .one-sidebar-header__title {
    font-size: calc(1.275rem + 0.3 vw); }

@media (min-width: 1200px) {
  .one-sidebar-header__title {
    font-size: 1.5rem; } }

@media (max-width: 1199px) {
  .one-product-data-container .one-product-data-container--right {
    padding-bottom: 0 !important;
    top: 6.5px !important; } }

.one-product-data-container .one-product-download__link {
  padding-left: 0 !important;
  padding-right: 0 !important; }

.one-product-download__link.d-flex {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #313534; }

.one-product-download.col .py-2 {
  padding: 0 !important; }

.one-product-download__title {
  padding: 10px 17.5px !important; }

@media (max-width: 1199px) {
  .one-product-download__title {
    padding: 10px 16px !important; } }

a.one-product-download__link.d-flex {
  padding: 10px 17.5px !important; }

@media (max-width: 1199px) {
  a.one-product-download__link.d-flex {
    padding: 10px 16px !important; } }

.one-product-page .img.one-gallery__content__image.img-fluid.one-image.v-lazy-image-loaded.main-img:hover {
  opacity: 0; }

.one-product-page .gallery {
  padding: 30px 60px !important; }

.one-product-page .informations {
  padding: 30px 0 30px 0; }

@media (max-width: 1199px) {
  .one-product-page .informations {
    padding: 30px 60px !important; } }
  .one-product-page .informations .row {
    margin: 0; }
  .one-product-page .informations h5 {
    font-size: calc(1.275rem + 0.3 vw);
    padding: 0 !important;
    margin: 0 !important;
    color: #313534;
    font-weight: 500; }

@media (min-width: 1200px) {
  .one-product-page .informations h5 {
    font-size: 1.5rem; } }
  .one-product-page .informations .one-product-tile-information__title {
    font-size: 1rem;
    margin-top: 10px !important;
    margin-bottom: 0 !important;
    color: #313534;
    padding-left: 20px;
    position: relative; }
    .one-product-page .informations .one-product-tile-information__title:nth-child(3) {
      display: none !important; }
    .one-product-page .informations .one-product-tile-information__title a {
      color: #313534;
      position: relative; }
      .one-product-page .informations .one-product-tile-information__title a:hover {
        color: #313534; }
    .one-product-page .informations .one-product-tile-information__title b {
      font-weight: bold; }
    .one-product-page .informations .one-product-tile-information__title:nth-child(1) {
      margin-top: 15px !important; }
    .one-product-page .informations .one-product-tile-information__title::before {
      content: "";
      position: absolute;
      top: 11px;
      left: 0;
      width: 10px;
      height: 1px;
      background-color: #d3222a; }
  .one-product-page .informations .one-product-tile-information__short-description p {
    color: #7c7c7c; }
  .one-product-page .informations .one-product-tile-information__short-description ul li {
    color: #7c7c7c;
    font-size: 1rem;
    padding-left: 15px !important;
    margin-top: 10px !important;
    position: relative; }
    .one-product-page .informations .one-product-tile-information__short-description ul li:nth-child(1) {
      margin-top: 15px !important; }
    .one-product-page .informations .one-product-tile-information__short-description ul li::before {
      content: "";
      position: absolute;
      top: 9px;
      left: 0;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background-color: #d3222a; }

.one-product-page .actions {
  padding: 30px 60px !important;
  align-items: center !important;
  justify-content: center !important; }
  .one-product-page .actions .btn {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    background: #d3222a !important;
    border: none;
    border-radius: 0px !important;
    color: white !important;
    font-size: 1rem;
    transition: 0.2s linear; }
    .one-product-page .actions .btn .one-button__content {
      background-color: transparent !important; }
      .one-product-page .actions .btn .one-button__content i {
        background-color: transparent !important; }
    .one-product-page .actions .btn:hover {
      color: white !important;
      background-color: #d3222a !important; }

.one-product-page .one-product-tile-right-price__container {
  display: flex;
  align-content: center;
  justify-content: center;
  flex-direction: column; }

.one-product-page .one-product-tile-right-price__value {
  color: #d3222a;
  font-size: 1.25rem; }

.one-product-page .one-product-tile-right-price__type {
  font-size: 0.75rem;
  justify-content: center !important;
  margin-top: 5px;
  color: #7c7c7c; }

.one-product-page .one-product-stocks-info {
  display: flex;
  align-content: center !important;
  justify-content: center !important;
  flex-direction: column !important; }

.one-product-page .one-product-stocks-popup-dialog {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important; }

.one-product-page {
  border-radius: 0px !important; }
  .one-product-page .one-product-description-section {
    border-radius: 0px !important; }
  .one-product-page .one-base-home-page {
    margin-top: 15px !important; }
  .one-product-page .border-radius {
    border-radius: 0px !important; }
  .one-product-page .one-product-data-container .collapse {
    border: none !important;
    padding: 23px;
    padding-top: 0; }
  .one-product-page .one-product-data-container__tab-name {
    color: black !important;
    font-size: 16px !important;
    position: relative;
    display: inline-block !important;
    border: none !important; }

@media (max-width: 1199px) {
  .one-product-page .one-product-data-container__tab-name {
    justify-content: flex-start; } }
    .one-product-page .one-product-data-container__tab-name--active::before {
      width: 100%; }

@media (max-width: 991px) {
  .one-product-page .one-product-data-container__tab-name--active::before {
    width: calc(100% - 16px);
    margin-left: 16px; } }
  .one-product-page .one-product-data-container .one-product-data-container--right {
    width: auto !important; }

@media (max-width: 1199px) {
  .one-product-page .one-product-data-container .one-product-data-container--right {
    position: absolute;
    top: 13px;
    right: 16px;
    padding-bottom: 35px !important; } }

@media (max-width: 1199px) {
  .one-product-page .one-product-data-container .one-product-data-container--right .collapse-btn {
    margin: 0 !important; } }
  .one-product-page .one-product-data-container--bold-text {
    font-style: 16px !important;
    color: #313534 !important;
    font-weight: bold !important;
    width: auto;
    padding: 15px 46px !important; }

@media (max-width: 1199px) {
  .one-product-page .one-product-data-container--bold-text {
    width: 90%; } }
  .one-product-page .one-product-data-container .one-product-technical-data {
    padding: 0 !important; }
    .one-product-page .one-product-data-container .one-product-technical-data .col-md-6 {
      width: 70%; }

@media (max-width: 1199px) {
  .one-product-page .one-product-data-container .one-product-technical-data .col-md-6 {
    width: 100%; } }
  .one-product-page .one-product-data-container .one-product-description__text {
    color: #313534;
    font-size: 1rem; }
  .one-product-page .one-product-data-container .d-flex {
    position: relative;
    padding: 0 !important;
    padding-left: 23px !important;
    padding-right: 23px !important;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important; }
    .one-product-page .one-product-data-container .d-flex div {
      display: flex;
      align-items: center;
      justify-content: center; }
      .one-product-page .one-product-data-container .d-flex div .icon-cancel {
        margin: 0 !important; }
        .one-product-page .one-product-data-container .d-flex div .icon-cancel::before {
          color: #7c7c7c;
          opacity: 0.25; }
      .one-product-page .one-product-data-container .d-flex div .icon-correct {
        margin: 0 !important; }
        .one-product-page .one-product-data-container .d-flex div .icon-correct::before {
          color: #00c000; }
    .one-product-page .one-product-data-container .d-flex span {
      font-size: 1rem; }
  .one-product-page .one-product-data-container .one-product-download__title {
    font-size: 1rem;
    padding-left: 20px;
    padding-right: 20px;
    color: #313534; }
  .one-product-page .one-product-data-container .one-product-download__link {
    padding-left: 20px !important;
    word-break: break-all; }
    .one-product-page .one-product-data-container .one-product-download__link .label {
      white-space: unset;
      overflow: unset;
      text-overflow: unset; }

@media (max-width: 1199px) {
  .one-product-page .one-product-data-container .one-product-download__link {
    padding-left: 1px !important; } }

@media (max-width: 1199px) {
  .one-product-page .one-product-data-container .one-product-data-container--right {
    width: 100%;
    margin-left: 0; }
    .one-product-page .one-product-data-container .one-product-data-container--right .btn {
      width: 100%;
      justify-content: center; } }
  .one-product-page .one-product-data-container .collapse-btn {
    margin-right: 15px; }

@media (max-width: 1199px) {
  .one-product-page .one-product-data-container .collapse-btn {
    margin-right: 0;
    margin-left: 35px !important;
    padding: 0 !important; } }

@media (max-width: 1199px) {
  .one-product-page .one-product-data-container > .row {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center; } }
  .one-product-page .one-swiper-product__title {
    font-size: calc(1.275rem + 0.3 vw);
    color: #7c7c7c;
    padding-left: 1px;
    padding-right: 16px;
    padding-bottom: 8px;
    display: inline-block;
    font-weight: 300 !important; }

@media (min-width: 1200px) {
  .one-product-page .one-swiper-product__title {
    font-size: 1.5rem; } }
  .one-product-page .one-product-data-container__tab-name {
    color: #313534 !important;
    font-weight: bold !important; }

.et2022_product_values-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column; }

.et2022_product_values-value {
  position: relative;
  padding-left: 12px;
  margin-top: 10px; }
  .et2022_product_values-value:nth-child(1) {
    margin-top: 0; }
  .et2022_product_values-value::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background-color: #d3222a; }
  .et2022_product_values-value b {
    font-weight: bold; }

.et2022_product_wrapper {
  border: 1px solid #cccccc;
  padding: 24px; }

.et2022_product-nameandlabels h5,
.et2022_product-nameandlabels h1 {
  font-weight: bold;
  font-size: 1.25rem; }

.et2022_product-price {
  display: flex;
  gap: 20px;
  margin-top: 36px; }
  .et2022_product-price_price {
    color: #d3222a !important;
    font-size: calc(1.275rem + 0.3 vw);
    font-weight: bold; }

@media (min-width: 1200px) {
  .et2022_product-price_price {
    font-size: 1.5rem; } }
  .et2022_product-price_tax {
    font-size: 1rem;
    color: #313534 !important; }

.et2022_product_dropdown {
  border: 1px solid #cccccc; }

.et2022_product_list {
  max-width: 100%;
  padding-bottom: 24px;
  overflow-x: scroll;
  height: 100%; }
  .et2022_product_list .box {
    width: 25%;
    border: none !important;
    padding-bottom: 24px; }

@media (max-width: 1199px) {
  .et2022_product_list .box {
    width: 50%; } }

@media (max-width: 767px) {
  .et2022_product_list .box {
    width: 100%; } }
  .et2022_product_list .one-swiper-product__mobile-slider {
    border: none !important; }

.et2022_product_loginregister-on {
  margin-top: 24px;
  background-color: #cccccc;
  padding: 24px;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; }
  .et2022_product_loginregister-on h3 {
    font-size: 19px;
    font-weight: bold;
    display: block;
    width: 100%; }
  .et2022_product_loginregister-on p {
    margin-top: 17px;
    font-size: 16px;
    font-weight: 400;
    display: block;
    width: 100%; }
  .et2022_product_loginregister-on .et2022_product_loginregister-on_button-1,
.et2022_product_loginregister-on .et2022_product_loginregister-on_button-2 {
    width: calc(50% - 10px);
    display: block;
    height: 50px;
    background-color: #fff;
    color: black;
    font-size: 19px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid white;
    box-sizing: border-box;
    margin-top: 30px; }
    .et2022_product_loginregister-on .et2022_product_loginregister-on_button-1:hover,
.et2022_product_loginregister-on .et2022_product_loginregister-on_button-2:hover {
      border-color: black; }

@media (max-width: 1199px) {
  .et2022_product_loginregister-on .et2022_product_loginregister-on_button-1,
.et2022_product_loginregister-on .et2022_product_loginregister-on_button-2 {
    width: 100% !important; } }

.et2022_product_buybox .one-product-actions {
  margin-top: 20px; }
  .et2022_product_buybox .one-product-actions .justify-content-end {
    gap: 20px; }

@media (min-width: 1200px) {
  .et2022_product_buybox .one-product-actions .justify-content-end {
    justify-content: flex-start !important; } }

@media (max-width: 1199px) {
  .et2022_product_buybox .one-product-actions .justify-content-end {
    justify-content: flex-start !important; } }
  .et2022_product_buybox .one-product-actions .one-input-tooltip {
    max-width: 100px;
    width: 100px; }
    .et2022_product_buybox .one-product-actions .one-input-tooltip__input {
      order: 2;
      width: 50px; }
    .et2022_product_buybox .one-product-actions .one-input-tooltip__unit {
      order: 1;
      position: relative;
      font-size: 0; }
      .et2022_product_buybox .one-product-actions .one-input-tooltip__unit::before {
        content: "liczba sztuk";
        font-size: 16px;
        color: black;
        display: block; }
  .et2022_product_buybox .one-product-actions .one-product-stocks-info {
    display: flex;
    margin-top: 20px; }

.et2022_product_buybox .btn-wishlist {
  display: none; }

.et2022_product_buybox .btn-secondary {
  width: 120px;
  height: 50px;
  max-width: 120px;
  border-radius: 0;
  font-weight: bold; }
  .et2022_product_buybox .btn-secondary .btn-content div {
    font-size: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px; }
    .et2022_product_buybox .btn-secondary .btn-content div::before {
      content: "do koszyka";
      font-size: 15px;
      font-weight: bold;
      display: block;
      order: 2;
      text-transform: none !important; }
    .et2022_product_buybox .btn-secondary .btn-content div i {
      order: 1;
      display: flex;
      align-items: center;
      justify-content: center; }

.et2022_product_buybox .one-product-stocks-info {
  margin-top: 20px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start; }
  .et2022_product_buybox .one-product-stocks-info .grid-table {
    display: flex;
    flex-direction: column;
    gap: 10px; }

#__layout .layout {
  overflow: unset; }

.et2022_product_buybox {
  position: -webkit-sticky;
  position: sticky;
  top: 15px; }

.et2022_product_togglebox {
  display: block;
  margin-top: 15px;
  padding: 15px 140px 15px 60px;
  border: solid 1px #ccc;
  background-color: #fff;
  position: relative;
  cursor: pointer; }
  .et2022_product_togglebox--black {
    border-color: black !important;
    color: black !important; }
  .et2022_product_togglebox.fullwidth {
    padding: 15px 15px 15px 60px; }
  .et2022_product_togglebox.zero {
    padding: 0; }
    .et2022_product_togglebox.zero .et2022_product_togglebox-name {
      padding: 0 0 0 40px; }
  .et2022_product_togglebox.withanchor {
    padding: 0; }
    .et2022_product_togglebox.withanchor a {
      display: block;
      padding: 15px 60px 15px 30px;
      width: 100%;
      height: 100%; }
  .et2022_product_togglebox-ico {
    position: absolute;
    left: 15px;
    width: auto;
    height: 20px;
    top: 15px;
    display: block;
    object-fit: contain;
    object-position: center; }
  .et2022_product_togglebox-name {
    font-size: 16px; }
  .et2022_product_togglebox-info {
    position: absolute;
    top: 15px;
    right: 30px;
    width: 110px;
    text-align: right; }
    .et2022_product_togglebox-info p {
      position: absolute;
      width: 200px;
      font-size: 12px;
      padding: 5px;
      background-color: #fff;
      border: solid 1px #ccc;
      border-radius: 10px;
      -webkit-border-radius: 10px;
      -moz-border-radius: 10px;
      z-index: 2;
      opacity: 0;
      right: -16px;
      top: 0px;
      visibility: hidden;
      text-align: left; }
    .et2022_product_togglebox-info span {
      font-weight: bold;
      position: relative;
      display: block;
      padding-right: 24px;
      font-size: 14px; }
      .et2022_product_togglebox-info span::after {
        position: absolute;
        display: block;
        content: "";
        width: 16px;
        height: 16px;
        right: 0;
        top: 0;
        bottom: 0;
        margin: auto;
        background-size: contain;
        background-image: url("https://static.euroterm24.pl/cms/767b0bbcbc534433af4cc2566a6cf955-et2022-ico-6.png");
        background-repeat: no-repeat; }
    .et2022_product_togglebox-info:hover p {
      visibility: visible;
      opacity: 1; }
  .et2022_product_togglebox .et2022_product_togglebox_label {
    display: block;
    padding: 15px;
    cursor: pointer; }
  .et2022_product_togglebox .et2022_product_togglebox_label_form {
    visibility: hidden;
    opacity: 0;
    height: 0; }
  .et2022_product_togglebox #et2022_product_togglebox_checkbox_desktop,
.et2022_product_togglebox #et2022_product_togglebox_checkbox {
    display: none; }
    .et2022_product_togglebox #et2022_product_togglebox_checkbox_desktop:checked + label > .et2022_product_togglebox_label_form,
.et2022_product_togglebox #et2022_product_togglebox_checkbox:checked + label > .et2022_product_togglebox_label_form {
      visibility: visible;
      opacity: 1;
      margin-top: 15px;
      animation-delay: 300ms;
      height: auto;
      width: 100%; }
      .et2022_product_togglebox #et2022_product_togglebox_checkbox_desktop:checked + label > .et2022_product_togglebox_label_form iframe,
.et2022_product_togglebox #et2022_product_togglebox_checkbox:checked + label > .et2022_product_togglebox_label_form iframe {
        width: 100%;
        height: 600px;
        display: block; }

@media (max-width: 991px) {
  .et2022_product_togglebox #et2022_product_togglebox_checkbox_desktop:checked + label > .et2022_product_togglebox_label_form iframe,
.et2022_product_togglebox #et2022_product_togglebox_checkbox:checked + label > .et2022_product_togglebox_label_form iframe {
    height: 650px; } }

.product-heading {
  text-transform: uppercase;
  margin-top: 60px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #cccccc;
  padding: 0 33px;
  font-size: calc(1.325rem + 0.9 vw);
  color: black; }

@media (min-width: 1200px) {
  .product-heading {
    font-size: 2rem; } }

.fast-access {
  padding-bottom: calc(1.5rem + 3 vw); }

@media (min-width: 1200px) {
  .fast-access {
    padding-bottom: 3.75rem; } }

.fast-access-box {
  display: block;
  height: 100%;
  border-radius: 0px !important;
  background: #d3222a;
  transition: 0.2s linear;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
  cursor: pointer;
  text-align: center; }
  .fast-access-box:hover .fast-acces-box__img-box img {
    transform: scale(0.95); }
  .fast-access-box__img-box {
    height: 150px;
    border-radius: 0px !important;
    background-color: white; }

@media (max-width: 991px) {
  .fast-access-box__img-box {
    height: 125px; } }
    .fast-access-box__img-box img {
      padding: 10px;
      width: 100%;
      height: 100%;
      object-fit: contain;
      border-radius: 0px !important;
      transition: 0.2s linear; }
  .fast-access-box__text-box {
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center; }
  .fast-access-box__paragraph {
    height: 100%;
    color: white;
    font-size: 1.25rem;
    text-align: center; }

@media (max-width: 991px) {
  .fast-acces-box__container {
    margin-top: 24px; }
    .fast-acces-box__container:nth-child(1), .fast-acces-box__container:nth-child(2), .fast-acces-box__container:nth-child(3) {
      margin-top: 0; } }

@media (max-width: 767px) {
  .fast-acces-box__container:nth-child(3) {
    margin-top: 24px; } }

.our-products {
  padding-top: calc(1.5rem + 3 vw);
  padding-bottom: calc(1.5rem + 3 vw); }

@media (min-width: 1200px) {
  .our-products {
    padding-top: 3.75rem; } }

@media (min-width: 1200px) {
  .our-products {
    padding-bottom: 3.75rem; } }
  .our-products__heading-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: calc(1.4375rem + 2.25 vw); }

@media (min-width: 1200px) {
  .our-products__heading-container {
    margin-bottom: 3.125rem; } }
  .our-products__heading {
    font-weight: bold;
    padding-bottom: 12px;
    font-size: calc(1.35rem + 1.2 vw);
    position: relative; }

@media (min-width: 1200px) {
  .our-products__heading {
    font-size: 2.25rem; } }
    .our-products__heading::before {
      content: "";
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 75px;
      height: 4px;
      background: #d3222a; }

@media (max-width: 991px) {
  .our-products__buy-box-container {
    margin-top: 14px; }
    .our-products__buy-box-container:nth-child(1), .our-products__buy-box-container:nth-child(2), .our-products__buy-box-container:nth-child(3) {
      margin-top: 0; } }

@media (max-width: 767px) {
  .our-products__buy-box-container:nth-child(3) {
    margin-top: 14px; } }

@media (max-width: 575px) {
  .our-products__buy-box-container:nth-child(2) {
    margin-top: 14px; } }

.main-page-products-text-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-align: center;
  padding: 48px 24px; }
  .main-page-products-text-content__heading {
    font-size: calc(1.35rem + 1.2 vw);
    color: white;
    text-transform: uppercase;
    font-weight: 500; }

@media (min-width: 1200px) {
  .main-page-products-text-content__heading {
    font-size: 2.25rem; } }
  .main-page-products-text-content__btn {
    margin-top: 48px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 44px;
    background: #313534 !important;
    border: none;
    border-radius: 0px !important;
    color: white !important;
    font-size: 1rem;
    transition: 0.2s linear;
    width: 100%; }
    .main-page-products-text-content__btn .one-button__content {
      background-color: transparent !important; }
      .main-page-products-text-content__btn .one-button__content i {
        background-color: transparent !important; }
    .main-page-products-text-content__btn:hover {
      color: white !important;
      background-color: #d3222a !important; }

@media (max-width: 1199px) {
  .main-page-products-text-content__btn {
    margin-top: 24px; } }
  .main-page-products-text-content__img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    object-fit: cover; }

.main-page-products-slider {
  height: 400px;
  max-width: 100%;
  display: flex;
  flex-wrap: nowrap;
  overflow-x: visible;
  gap: 14px;
  /* width */
  /* Track */
  /* Handle */ }

@media (max-width: 991px) {
  .main-page-products-slider {
    margin-top: 24px; } }
  .main-page-products-slider .one-cms-grid-renderer {
    flex: 0 0 auto;
    width: 25%; }

@media (max-width: 1199px) {
  .main-page-products-slider .one-cms-grid-renderer {
    width: 33.333%; } }

@media (max-width: 767px) {
  .main-page-products-slider .one-cms-grid-renderer {
    width: 90%; } }
  .main-page-products-slider::-webkit-scrollbar {
    width: 9px;
    border-radius: 5px; }
  .main-page-products-slider::-webkit-scrollbar-track {
    border: 1px solid #919191;
    background-color: #e8e8e8;
    border-radius: 5px; }
  .main-page-products-slider::-webkit-scrollbar-thumb {
    background: white;
    border-radius: 5px;
    border: 1px solid #919191; }

.proven-producers {
  padding-top: calc(1.5rem + 3 vw);
  padding-bottom: calc(1.5rem + 3 vw); }

@media (min-width: 1200px) {
  .proven-producers {
    padding-top: 3.75rem; } }

@media (min-width: 1200px) {
  .proven-producers {
    padding-bottom: 3.75rem; } }
  .proven-producers__heading-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: calc(1.5rem + 3 vw); }

@media (min-width: 1200px) {
  .proven-producers__heading-container {
    margin-bottom: 3.75rem; } }
  .proven-producers__heading {
    font-weight: bold;
    padding-bottom: 12px;
    font-size: calc(1.35rem + 1.2 vw);
    position: relative; }

@media (min-width: 1200px) {
  .proven-producers__heading {
    font-size: 2.25rem; } }
    .proven-producers__heading::before {
      content: "";
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 75px;
      height: 4px;
      background: #d3222a; }

@media (max-width: 991px) {
  .proven-producers__img-box-col {
    margin-top: 24px; }
    .proven-producers__img-box-col:nth-child(1), .proven-producers__img-box-col:nth-child(2), .proven-producers__img-box-col:nth-child(3) {
      margin-top: 0; } }

@media (max-width: 767px) {
  .proven-producers__img-box-col:nth-child(3) {
    margin-top: 24px; } }
  .proven-producers__img-box {
    height: auto;
    object-fit: contain;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center; }

@media (max-width: 1199px) {
  .proven-producers__img-box {
    height: 48px;
    width: 100%;
    object-fit: contain; } }
    .proven-producers__img-box img {
      height: auto;
      width: auto; }

.images {
  margin-top: calc(1.5rem + 3 vw); }

@media (min-width: 1200px) {
  .images {
    margin-top: 3.75rem; } }

@media (max-width: 991px) {
  .images__col {
    margin-top: 24px; }
    .images__col:nth-child(1) {
      margin-top: 0; } }
  .images__img-box {
    transition: 0.2s linear;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%; }
    .images__img-box:hover img {
      opacity: 0.8; }
    .images__img-box img {
      border-radius: 0px !important;
      transition: 0.2s linear;
      width: 100%;
      height: 180px;
      object-fit: cover; }

@media (max-width: 575px) {
  .images__img-box img {
    height: 140px; } }

.why-trust-us {
  padding-top: calc(1.5rem + 3 vw);
  padding-bottom: calc(1.5rem + 3 vw); }

@media (min-width: 1200px) {
  .why-trust-us {
    padding-top: 3.75rem; } }

@media (min-width: 1200px) {
  .why-trust-us {
    padding-bottom: 3.75rem; } }
  .why-trust-us__heading-container {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: calc(1.4375rem + 2.25 vw); }

@media (min-width: 1200px) {
  .why-trust-us__heading-container {
    margin-bottom: 3.125rem; } }
  .why-trust-us__heading {
    font-weight: bold;
    padding-bottom: 12px;
    font-size: calc(1.35rem + 1.2 vw);
    position: relative; }

@media (min-width: 1200px) {
  .why-trust-us__heading {
    font-size: 2.25rem; } }
    .why-trust-us__heading::before {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      width: 75px;
      height: 4px;
      background: #d3222a; }
  .why-trust-us__img-box {
    height: 100%; }

@media (max-width: 991px) {
  .why-trust-us__img-box {
    display: none; } }
    .why-trust-us__img-box img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 0px !important; }
  .why-trust-us__btn-container {
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: flex-start; }
  .why-trust-us__button {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 44px;
    background: #d3222a !important;
    border: none;
    border-radius: 0px !important;
    color: white !important;
    font-size: 1rem;
    transition: 0.2s linear; }
    .why-trust-us__button .one-button__content {
      background-color: transparent !important; }
      .why-trust-us__button .one-button__content i {
        background-color: transparent !important; }
    .why-trust-us__button:hover {
      color: white !important;
      background-color: #d3222a !important; }

.why-trust-us-box {
  background-color: white;
  box-sizing: border-box;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 15px;
  padding-right: 15px;
  border-radius: 0px !important;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  height: 100%;
  position: relative; }
  .why-trust-us-box__col {
    display: block;
    margin-top: 24px; }
    .why-trust-us-box__col:nth-child(1), .why-trust-us-box__col:nth-child(2) {
      margin-top: 0; }

@media (max-width: 575px) {
  .why-trust-us-box__col:nth-child(2) {
    margin-top: 24px; } }
  .why-trust-us-box__img {
    display: block;
    width: 60px;
    height: 60px; }

@media (max-width: 991px) {
  .why-trust-us-box__img {
    width: 45px;
    height: 45px; } }
  .why-trust-us-box__paragraph {
    max-width: 200px;
    width: 100%;
    margin-left: 15px;
    font-size: 1.25rem; }
  .why-trust-us-box__number {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 500;
    font-size: 70px;
    line-height: 60px;
    color: #313534;
    opacity: 0.05; }

@media (max-width: 991px) {
  .why-trust-us-box__number {
    font-size: 50px; } }

.nav-with-banners {
  margin-top: 14px; }
  .nav-with-banners .col-banner-right,
.nav-with-banners .col-banner-center {
    padding-left: 7px;
    padding-right: 7px; }
  .nav-with-banners .join-to-specialists {
    height: 100%;
    background-color: #313534;
    padding: 48px 24px;
    display: flex;
    flex-direction: column;
    align-items: center; }

@media (max-width: 991px) {
  .nav-with-banners .join-to-specialists {
    flex-direction: row;
    justify-content: space-evenly; } }

@media (max-width: 575px) {
  .nav-with-banners .join-to-specialists {
    flex-direction: column;
    justify-content: center; } }
    .nav-with-banners .join-to-specialists__content {
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center; }
    .nav-with-banners .join-to-specialists__img {
      display: block;
      max-width: 150px;
      width: 100%;
      height: auto;
      object-fit: contain; }

@media (max-width: 767px) {
  .nav-with-banners .join-to-specialists__img {
    max-width: 100px; } }
    .nav-with-banners .join-to-specialists__text-small {
      margin-top: 12px;
      color: white;
      font-size: 1.25rem; }
    .nav-with-banners .join-to-specialists__text-large {
      color: white;
      font-size: calc(1.2625rem + 0.15 vw); }

@media (min-width: 1200px) {
  .nav-with-banners .join-to-specialists__text-large {
    font-size: 1.375rem; } }
    .nav-with-banners .join-to-specialists__btn {
      margin-top: 24px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 10px 44px;
      background: #d3222a !important;
      border: none;
      border-radius: 0px !important;
      color: white !important;
      font-size: 1rem;
      transition: 0.2s linear;
      width: 100%; }
      .nav-with-banners .join-to-specialists__btn .one-button__content {
        background-color: transparent !important; }
        .nav-with-banners .join-to-specialists__btn .one-button__content i {
          background-color: transparent !important; }
      .nav-with-banners .join-to-specialists__btn:hover {
        color: white !important;
        background-color: #d3222a !important; }

@media (max-width: 991px) {
  .nav-with-banners .join-to-specialists__btn {
    width: 75%; } }

@media (max-width: 575px) {
  .nav-with-banners .join-to-specialists__btn {
    width: 100%; } }
  .nav-with-banners .grid-list-megapopup {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    height: auto !important; }
    .nav-with-banners .grid-list-megapopup__container {
      z-index: 1001;
      background: white;
      padding-left: 7px;
      padding-right: 7px; }
    .nav-with-banners .grid-list-megapopup__popup {
      width: 1050px;
      height: auto !important;
      padding: 15px; }
    .nav-with-banners .grid-list-megapopup__subcategories__ul__title {
      margin-top: 20px; }
    .nav-with-banners .grid-list-megapopup .pointer {
      margin-top: 5px; }
    .nav-with-banners .grid-list-megapopup__header {
      margin-bottom: 12px;
      padding-bottom: 12px;
      font-size: 1.25rem;
      font-weight: 700;
      color: #313534;
      position: relative; }
      .nav-with-banners .grid-list-megapopup__header::before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 75px;
        height: 4px;
        background: #d3222a; }
    .nav-with-banners .grid-list-megapopup__item {
      margin-top: 10px;
      color: #313534;
      padding-top: 2px;
      padding-bottom: 2px;
      padding-left: 0;
      display: flex;
      font-size: 1rem; }
      .nav-with-banners .grid-list-megapopup__item.active .grid-list-megapopup__item__text {
        font-weight: 700; }
      .nav-with-banners .grid-list-megapopup__item__image {
        width: 22px;
        height: 22px; }
      .nav-with-banners .grid-list-megapopup__item__text {
        width: 100%;
        display: flex;
        align-items: center;
        font-size: 16px;
        padding-left: 0; }
  .nav-with-banners .one-carousel-with-thumbnails {
    height: auto !important;
    width: 100%; }
  .nav-with-banners .swiper-pagination-bullet {
    height: 18px;
    width: 18px;
    background-color: #fff;
    box-sizing: border-box;
    opacity: 1;
    border: 1px solid #707070; }
  .nav-with-banners .swiper-slide img {
    height: auto !important;
    width: 100% !important; }
  .nav-with-banners .gallery-thumbs {
    height: 137px !important; }

@media (max-width: 1199px) {
  .nav-with-banners .gallery-thumbs {
    height: 75px !important; } }
  .nav-with-banners .swiper-pagination-bullet-active {
    background-color: #707070; }

.categories {
  margin-top: 30px; }

.category {
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start; }

@media (max-width: 1199px) {
  .category__col {
    margin-top: 14px; }
    .category__col:nth-child(1), .category__col:nth-child(2), .category__col:nth-child(3), .category__col:nth-child(4) {
      margin-top: 0; } }

@media (max-width: 991px) {
  .category__col:nth-child(4) {
    margin-top: 14px; } }

@media (max-width: 1199px) {
  .category {
    background-color: transparent; } }
  .category:hover .category__icon {
    transform: scale(0.95); }
  .category__icon {
    display: block;
    width: 64px;
    height: 64px;
    object-fit: contain;
    transition: 0.2s linear; }

@media (max-width: 1199px) {
  .category__icon {
    height: 48px;
    width: 48px; } }
  .category__text {
    margin-top: 12px;
    color: #313534;
    font-size: 0.625rem;
    font-weight: 500;
    text-transform: uppercase; }

.two-banners {
  display: flex;
  align-items: center;
  justify-content: center; }

@media (max-width: 991px) {
  .two-banners__col {
    margin-top: 14px; }
    .two-banners__col:nth-child(1) {
      margin-top: 0; } }
  .two-banners__banner {
    height: 124px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative; }

@media (max-width: 991px) {
  .two-banners__banner {
    height: 90px; } }
    .two-banners__banner:hover .two-banners__heading {
      transform: scale(1.05); }
  .two-banners__heading {
    font-size: 1.125rem;
    text-transform: uppercase;
    color: #313534;
    text-align: center;
    transition: 0.2s linear; }
  .two-banners__img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 1px solid #707070;
    object-position: center; }

@media (max-width: 991px) {
  .banners__col {
    margin-top: 24px; }
    .banners__col:nth-child(1) {
      margin-top: 0; } }

.banners__banner {
  width: 100%;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center; }
  .banners__banner:hover .banners__btn {
    background-color: #d3222a !important; }

.banners__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: -1; }

.banners__banner {
  height: 210px;
  padding: 24px; }

.banners__btn {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 44px;
  background: #019dd9 !important;
  border: none;
  border-radius: 0px !important;
  color: white !important;
  font-size: 1rem;
  transition: 0.2s linear; }
  .banners__btn .one-button__content {
    background-color: transparent !important; }
    .banners__btn .one-button__content i {
      background-color: transparent !important; }
  .banners__btn:hover {
    color: white !important;
    background-color: #d3222a !important; }

.top-products {
  position: relative; }
  .top-products .one-swiper-product {
    margin-top: 0 !important; }
    .top-products .one-swiper-product .one-swiper-product__mobile-slider {
      border: none !important; }
    .top-products .one-swiper-product .box {
      border: none !important; }
    .top-products .one-swiper-product .pt-2 {
      padding-top: 0 !important; }
    .top-products .one-swiper-product__title {
      display: none;
      background-color: #cccccc;
      color: #313534;
      font-size: calc(1.30625rem + 0.675 vw);
      padding-left: 80px;
      text-transform: uppercase; }

@media (min-width: 1200px) {
  .top-products .one-swiper-product__title {
    font-size: 1.8125rem; } }

@media (max-width: 1199px) {
  .top-products .one-swiper-product__title {
    padding-left: 0;
    padding: 12px; } }
  .top-products .custom-scrollbar {
    background-color: #fff; }
  .top-products .one-product-overview__title {
    margin-top: 30px; }
  .top-products .one-product-overview__inventory {
    align-items: flex-end;
    justify-content: flex-end;
    order: 2; }
  .top-products .one-product-overview__price {
    font-weight: bold;
    font-size: 16px;
    width: 100%;
    display: block;
    order: 1; }
  .top-products .one-product-overview .pr-0 div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start; }

.button {
  position: absolute;
  top: 60px;
  right: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 44px;
  background: #019dd9 !important;
  border: none;
  border-radius: 0px !important;
  color: white !important;
  font-size: 1rem;
  transition: 0.2s linear;
  height: 37px; }
  .button .one-button__content {
    background-color: transparent !important; }
    .button .one-button__content i {
      background-color: transparent !important; }
  .button:hover {
    color: white !important;
    background-color: #d3222a !important; }

@media (max-width: 1199px) {
  .button {
    height: 60px; } }

@media (max-width: 767px) {
  .button {
    position: unset;
    top: 0;
    right: 0;
    margin-top: 48px;
    height: auto; } }

@media (max-width: 1199px) {
  .trainings-box {
    margin-top: 24px; } }

.trainings-box__img {
  width: 100%;
  height: auto;
  object-fit: contain; }

.trainings-box__text {
  text-align: right;
  font-size: 1.25rem; }

@media (max-width: 1199px) {
  .trainings-box__text {
    text-align: center;
    padding: 12px; } }

.brands-slider {
  margin-bottom: 60px;
  display: -webkit-box;
  max-width: 100%;
  overflow: auto;
  padding-bottom: 24px;
  /* Track */
  /* Handle */ }
  .brands-slider__img-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    margin: 0 12px;
    width: calc(12.5% - 24px); }

@media (max-width: 1199px) {
  .brands-slider__img-container {
    width: calc(25% - 12px); } }

@media (max-width: 991px) {
  .brands-slider__img-container {
    width: calc(50% - 24px); } }
    .brands-slider__img-container img {
      width: 100%;
      height: 100%;
      object-fit: contain; }
  .brands-slider::-webkit-scrollbar {
    width: 4px;
    height: 4px;
    border-radius: 2px; }
  .brands-slider::-webkit-scrollbar-track {
    background-color: #f6f6f6;
    border-radius: 2px; }
  .brands-slider::-webkit-scrollbar-thumb {
    background: #424242;
    border-radius: 2px; }

.big-slider img {
  max-width: 100% !important;
  height: 100% !important;
  width: 100% !important;
  object-fit: contain !important; }

.big-banner {
  margin-top: 60px; }
  .big-banner img {
    width: 100%;
    height: auto;
    object-fit: contain; }

.hero__content {
  z-index: 1;
  position: relative; }

.hero__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  z-index: 0; }

.hero__logo {
  position: absolute;
  top: 12px;
  left: 24px;
  max-height: 80px;
  width: auto; }

.hero__heading {
  position: relative;
  top: -35px;
  font-size: calc(1.4375rem + 2.25 vw);
  text-align: center;
  font-weight: 500;
  line-height: 1.05;
  color: white;
  background-color: #d3222a;
  border-radius: 10px;
  padding: 26px;
  margin-left: 56px;
  margin-right: 56px;
  box-shadow: 0px 0px 23px 0px rgba(51, 51, 51, 0.28);
  z-index: 5; }

@media (min-width: 1200px) {
  .hero__heading {
    font-size: 3.125rem; } }

@media (max-width: 991px) {
  .hero__heading {
    font-size: calc(1.35rem + 1.2 vw);
    margin-left: 24px;
    margin-right: 24px; } }

@media (max-width: 991px) and (min-width: 1200px) {
  .hero__heading {
    font-size: 2.25rem; } }

@media (max-width: 767px) {
  .hero__heading {
    font-size: calc(1.275rem + 0.3 vw);
    margin-left: 24px;
    margin-right: 24px; } }

@media (max-width: 767px) and (min-width: 1200px) {
  .hero__heading {
    font-size: 1.5rem; } }

.hero__paragraph {
  font-size: 1rem;
  line-height: 1.48;
  text-align: center; }

.benefits {
  margin-top: calc(1.75rem + 6 vw);
  margin-bottom: calc(1.4375rem + 2.25 vw); }

@media (min-width: 1200px) {
  .benefits {
    margin-top: 6.25rem; } }

@media (min-width: 1200px) {
  .benefits {
    margin-bottom: 3.125rem; } }
  .benefits__heading {
    font-size: 1.25rem;
    font-weight: bold;
    line-height: 1.04;
    margin-bottom: calc(1.44375rem + 2.325 vw); }

@media (min-width: 1200px) {
  .benefits__heading {
    margin-bottom: 3.1875rem; } }
  .benefits__box {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; }

@media (max-width: 1199px) {
  .benefits__box {
    margin-top: 24px; } }
  .benefits__ico {
    width: 45%;
    height: auto; }

@media (max-width: 991px) {
  .benefits__ico {
    width: 34%; } }

@media (max-width: 767px) {
  .benefits__ico {
    width: 30%; } }
  .benefits__description {
    padding-top: 22px;
    font-size: 1rem;
    line-height: 1.48;
    text-align: center; }

.aboutUs__images {
  height: auto;
  width: 100%; }
  .aboutUs__images img {
    width: 100%;
    height: auto;
    margin-bottom: 6px; }

.aboutUs__content {
  padding: 12px; }

@media (max-width: 991px) {
  .aboutUs__content {
    margin-top: 24px; } }
  .aboutUs__content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.33;
    margin-bottom: 30px; }
  .aboutUs__content p {
    font-size: 1.25rem;
    line-height: 1.33;
    margin-bottom: 30px; }

.contact__background {
  background-color: #e0e9f3;
  padding: 112px 20px 80px 64px;
  margin-top: -56px; }

@media (max-width: 1199px) {
  .contact__background {
    margin-top: -0px;
    padding: 50px 30px 50px 30px; } }

@media (max-width: 767px) {
  .contact__background {
    margin-top: -0px;
    padding: 40px 24px 40px 24px; } }

.contact__info {
  display: flex;
  flex-direction: column;
  align-items: center; }
  .contact__info h2 {
    font-size: calc(1.35rem + 1.2 vw);
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 37px; }

@media (min-width: 1200px) {
  .contact__info h2 {
    font-size: 2.25rem; } }
  .contact__info p {
    font-size: 20px;
    line-height: 1.3;
    text-align: center;
    margin-bottom: 80px; }

.contact__ways {
  display: flex;
  flex-direction: row;
  margin-bottom: 20px; }

@media (max-width: 767px) {
  .contact__ways {
    flex-direction: column; } }

.contact__phone {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 15px; }

@media (max-width: 767px) {
  .contact__phone {
    padding: 0px; } }
  .contact__phone img {
    width: 100px;
    height: 100px; }
  .contact__phone a {
    margin-top: 35px;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.24; }

.contact__mail {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0 15px 0; }

@media (max-width: 767px) {
  .contact__mail {
    padding: 0px; } }
  .contact__mail img {
    width: 90px;
    height: 86px; }
  .contact__mail a {
    margin-top: 35px;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.24; }

.contact__form h2 {
  font-size: calc(1.35rem + 1.2 vw);
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 37px;
  text-align: center; }

@media (min-width: 1200px) {
  .contact__form h2 {
    font-size: 2.25rem; } }

.contact__form p {
  font-size: 18px;
  line-height: 1.3; }

.route-landing {
  margin: 0 auto;
  display: block;
  position: relative; }
  .route-landing__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; }
    .route-landing__bg img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
  .route-landing .route-landing-1 {
    padding-top: 24px; }
    .route-landing .route-landing-1__left {
      width: 100%;
      height: 100%;
      display: block;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column; }
    .route-landing .route-landing-1__logos {
      display: flex;
      align-items: center;
      gap: 24px; }

@media (max-width: 1199px) {
  .route-landing .route-landing-1__logos {
    margin-top: 24px;
    flex-direction: column; } }
    .route-landing .route-landing-1__right {
      display: flex;
      align-items: center;
      justify-content: center; }

@media (max-width: 991px) {
  .route-landing .route-landing-1__right {
    margin-top: 24px; } }
    .route-landing .route-landing-1__logo {
      display: block;
      max-width: 250px;
      width: 100%;
      object-fit: contain; }
    .route-landing .route-landing-1__photo {
      max-width: 100%;
      object-fit: contain;
      height: 400px; }
    .route-landing .route-landing-1__heading {
      font-size: calc(1.5rem + 3 vw);
      color: #505661;
      text-align: center;
      font-weight: 500; }

@media (min-width: 1200px) {
  .route-landing .route-landing-1__heading {
    font-size: 3.75rem; } }
    .route-landing .route-landing-1__span {
      font-size: calc(1.325rem + 0.9 vw);
      color: #505661;
      text-align: center;
      font-weight: 500; }

@media (min-width: 1200px) {
  .route-landing .route-landing-1__span {
    font-size: 2rem; } }
  .route-landing .route-landing-2 {
    position: relative; }
    .route-landing .route-landing-2__img {
      width: 100%;
      height: auto;
      object-fit: cover; }
  .route-landing .route-landing-3 {
    margin-top: 24px; }

@media (min-width: 1200px) {
  .route-landing .route-landing-3__left {
    margin-right: 50px; } }

@media (max-width: 1199px) {
  .route-landing .route-landing-3__left {
    margin-top: 24px; } }
    .route-landing .route-landing-3__left img {
      max-width: 100%;
      object-fit: contain; }

@media (min-width: 1200px) {
  .route-landing .route-landing-3__right {
    margin-left: 50px; } }

@media (max-width: 1199px) {
  .route-landing .route-landing-3__right {
    margin-top: 24px; } }
    .route-landing .route-landing-3__right img {
      max-width: 100%;
      object-fit: contain; }
  .route-landing .route-landing-4 {
    margin-top: 24px; }
    .route-landing .route-landing-4__left {
      max-width: 100%;
      object-fit: contain;
      display: block; }
      .route-landing .route-landing-4__left img {
        display: block;
        max-width: 100%; }
    .route-landing .route-landing-4__right {
      margin-top: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 100%; }
    .route-landing .route-landing-4__heading {
      font-size: calc(1.4375rem + 2.25 vw);
      color: #505661;
      font-weight: 500;
      text-transform: uppercase; }

@media (min-width: 1200px) {
  .route-landing .route-landing-4__heading {
    font-size: 3.125rem; } }
  .route-landing .route-landing-5 {
    margin-top: 24px; }
    .route-landing .route-landing-5__left img {
      display: block;
      max-width: 100%;
      object-fit: contain;
      height: 500px; }

@media (max-width: 1199px) {
  .route-landing .route-landing-5__right {
    margin-top: 24px; } }
    .route-landing .route-landing-5__right img {
      display: block;
      max-width: 100%;
      object-fit: contain;
      height: 550px;
      transform: translateX(-25px); }
  .route-landing .meeting {
    margin-bottom: 0; }
    .route-landing .meeting__content {
      background-color: #686464;
      height: 450px; }

@media (max-width: 991px) {
  .route-landing .meeting__content {
    height: 750px; } }
  .route-landing iframe {
    width: 100%;
    height: 100%; }

.collection-hero {
  margin-top: calc(1.425rem + 2.1 vw); }

@media (min-width: 1200px) {
  .collection-hero {
    margin-top: 3rem; } }
  .collection-hero__content {
    display: flex;
    flex-direction: column; }
  .collection-hero__text {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: calc(1.38125rem + 1.575 vw); }

@media (min-width: 1200px) {
  .collection-hero__text {
    margin-bottom: 2.5625rem; } }

@media (max-width: 1199px) {
  .collection-hero__text {
    flex-direction: column; } }
    .collection-hero__text p {
      margin-left: 49px;
      font-size: calc(1.275rem + 0.3 vw);
      line-height: 1.14; }

@media (min-width: 1200px) {
  .collection-hero__text p {
    font-size: 1.5rem; } }

@media (max-width: 1199px) {
  .collection-hero__text p {
    margin-top: 24px;
    margin-left: 0; } }

@media (max-width: 991px) {
  .collection-hero__text p {
    font-size: 1.25rem; } }
  .collection-hero__logo {
    display: block;
    width: 353px;
    height: 84px; }

@media (max-width: 767px) {
  .collection-hero__logo {
    width: 60%;
    height: auto; } }
  .collection-hero__image img {
    width: 100%;
    height: auto; }

.collection-types {
  margin-top: calc(1.425rem + 2.1 vw);
  margin-bottom: 1.1875rem;
  width: auto; }

@media (min-width: 1200px) {
  .collection-types {
    margin-top: 3rem; } }
  .collection-types__content {
    display: flex;
    flex-direction: row; }

@media (max-width: 991px) {
  .collection-types__content {
    flex-direction: column; } }
  .collection-types__design {
    width: 273px;
    height: 92px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #6ec5ca; }

@media (max-width: 991px) {
  .collection-types__design {
    width: 100%;
    margin-bottom: 48px; } }
    .collection-types__design-a {
      font-size: 1.25rem;
      color: white;
      text-align: center; }
    .collection-types__design-b {
      font-size: 1.25rem;
      font-weight: bold;
      text-transform: uppercase;
      color: white; }
  .collection-types__box-wrapper {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap; }
  .collection-types__box {
    width: calc(100% / 6);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 12px;
    margin-bottom: 12px; }

@media (max-width: 1199px) {
  .collection-types__box {
    width: calc(100% / 4); } }

@media (max-width: 991px) {
  .collection-types__box {
    width: calc(100% / 3); } }

@media (max-width: 767px) {
  .collection-types__box {
    width: calc(100% / 2); } }
    .collection-types__box-image {
      display: block;
      height: 37px;
      width: auto; }
    .collection-types__box-paragraph {
      margin-top: 7px;
      font-size: 1rem;
      line-height: 1.73;
      text-transform: uppercase;
      text-align: center; }

.showrooms {
  margin-top: calc(1.425rem + 2.1 vw);
  margin-bottom: calc(1.31875rem + 0.825 vw); }

@media (min-width: 1200px) {
  .showrooms {
    margin-top: 3rem; } }

@media (min-width: 1200px) {
  .showrooms {
    margin-bottom: 1.9375rem; } }
  .showrooms__title {
    font-size: calc(1.275rem + 0.3 vw); }

@media (min-width: 1200px) {
  .showrooms__title {
    font-size: 1.5rem; } }
  .showrooms__wrapper {
    margin-top: calc(1.45625rem + 2.475 vw);
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap; }

@media (min-width: 1200px) {
  .showrooms__wrapper {
    margin-top: 3.3125rem; } }

@media (max-width: 991px) {
  .showrooms__wrapper {
    justify-content: space-between; } }
  .showrooms__box {
    width: 27%;
    height: auto;
    margin-bottom: 24px; }

@media (max-width: 991px) {
  .showrooms__box {
    width: 45%; } }

@media (max-width: 767px) {
  .showrooms__box {
    width: 100%; } }
  .showrooms__frame {
    border: solid 1px #000;
    padding: 7px;
    display: flex;
    justify-content: center;
    align-items: center; }
  .showrooms__image {
    background-color: white;
    width: 100%;
    height: 100%;
    object-fit: cover; }
  .showrooms__paragraph {
    font-size: calc(1.275rem + 0.3 vw);
    line-height: 1.33;
    text-align: center;
    margin-top: 30px; }

@media (min-width: 1200px) {
  .showrooms__paragraph {
    font-size: 1.5rem; } }

.meeting {
  margin-top: calc(1.425rem + 2.1 vw);
  margin-bottom: calc(1.5rem + 3 vw); }

@media (min-width: 1200px) {
  .meeting {
    margin-top: 3rem; } }

@media (min-width: 1200px) {
  .meeting {
    margin-bottom: 3.75rem; } }
  .meeting__content {
    background-color: #6ec5ca;
    width: 100%;
    height: 500px; }

.maintainers {
  padding: calc(1.75rem + 6 vw) 0 calc(1.75rem + 6 vw) 0; }

@media (min-width: 1200px) {
  .maintainers {
    padding: 6.25rem 0 6.25rem 0; } }
  .maintainers__col {
    margin-top: 24px; }
  .maintainers__topText {
    font-size: 1rem;
    color: #3a3a3a;
    display: block; }
  .maintainers .region-1:hover {
    background-color: #ff00f7; }
  .maintainers svg {
    position: absolute;
    top: 0;
    left: 0;
    max-width: 100%;
    width: auto;
    height: auto;
    border: none; }
  .maintainers__map {
    max-width: 100%; }
  .maintainers__map-container {
    position: relative; }

.maintainer-info {
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 24px; }
  .maintainer-info.active {
    display: flex; }
  .maintainer-info__img {
    position: relative;
    top: unset;
    left: unset;
    display: block;
    width: 250px;
    height: auto;
    object-fit: cover; }
  .maintainer-info__name {
    margin-top: 24px;
    color: #6e6e6e;
    font-size: calc(1.35rem + 1.2 vw);
    font-weight: 400; }

@media (min-width: 1200px) {
  .maintainer-info__name {
    font-size: 2.25rem; } }
  .maintainer-info__job {
    color: #6e6e6e;
    font-size: 1rem;
    margin-bottom: 48px; }

@media (max-width: 991px) {
  .maintainer-info__job {
    margin-bottom: 24px; } }

.maintainers-ico-link {
  margin-top: 24px;
  padding-left: 50px;
  position: relative;
  display: block; }

@media (max-width: 991px) {
  .maintainers-ico-link {
    padding-left: 40px; } }
  .maintainers-ico-link:nth-of-type(1) {
    margin-top: 0; }
  .maintainers-ico-link:hover span::before {
    width: 100%; }
  .maintainers-ico-link img {
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    height: 40px;
    width: 40px;
    object-fit: contain; }

@media (max-width: 991px) {
  .maintainers-ico-link img {
    height: 24px;
    width: 24px; } }
  .maintainers-ico-link span {
    position: relative;
    color: #6e6e6e;
    font-size: calc(1.275rem + 0.3 vw); }
    .maintainers-ico-link span:hover::before {
      width: 100%; }
    .maintainers-ico-link span::before {
      content: "";
      position: absolute;
      bottom: -4px;
      width: 0%;
      height: 2px;
      background-color: #6e6e6e;
      transition: 0.3s linear;
      left: 0%; }

@media (min-width: 1200px) {
  .maintainers-ico-link span {
    font-size: 1.5rem; } }

@media (max-width: 991px) {
  .maintainers-ico-link span {
    font-size: 1.25rem; } }

.mapRegion {
  cursor: pointer;
  opacity: 0; }
  .mapRegion:hover {
    fill: #5ac0f6;
    opacity: 0.33; }
  .mapRegion.active {
    fill: #5ac0f6;
    opacity: 0.33; }

.branches {
  margin-top: 24px; }
  .branches__title {
    text-align: center;
    margin-bottom: 40px;
    margin-top: 24px;
    display: block; }

@media (max-width: 1199px) {
  .branches__title {
    margin-top: 48px; } }
  .branches__map {
    height: 100%; }

@media (max-width: 1199px) {
  .branches__map {
    height: 250px; } }
    .branches__map iframe {
      width: 100%;
      height: 100%; }

.branches-list {
  overflow-y: auto;
  min-height: 640px;
  max-height: 640px;
  /* Track */
  /* Handle */ }

@media (max-width: 1199px) {
  .branches-list {
    min-height: auto;
    max-height: 250px; } }
  .branches-list::-webkit-scrollbar {
    width: 9px;
    border-radius: 5px; }
  .branches-list::-webkit-scrollbar-track {
    border: 1px solid #919191;
    background-color: #e8e8e8;
    border-radius: 5px; }
  .branches-list::-webkit-scrollbar-thumb {
    background: white;
    border-radius: 5px;
    border: 1px solid #919191; }
  .branches-list__item {
    padding-left: 40px;
    position: relative;
    list-style: none; }
    .branches-list__item::before {
      position: absolute;
      left: 0;
      top: 0;
      margin: auto;
      bottom: 0;
      content: "";
      background-size: contain;
      background-repeat: no-repeat;
      width: 30px;
      height: 30px;
      background-image: url("https://static.euroterm24.pl/cms/ef8e0da599b94643b88adc149a3cd199-e24.svg"); }
    .branches-list__item a {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      cursor: pointer;
      padding: 10px 0; }
    .branches-list__item:hover {
      background-color: #e8e8e8; }
      .branches-list__item:hover .branches-list__item-btn {
        opacity: 1; }
  .branches-list__text {
    display: block;
    font-size: 12px;
    font-weight: bolder; }
  .branches-list__item-content {
    width: 60%; }
  .branches-list_item-btn-container {
    display: flex;
    align-items: center;
    justify-content: center; }
  .branches-list__item-btn {
    padding: 7px;
    text-align: center;
    border-radius: 5px;
    opacity: 0;
    background-color: white;
    font-size: 14px; }

.oddzial2022 {
  display: block;
  margin: 50px auto; }
  .oddzial2022 strong {
    font-weight: bold; }
  .oddzial2022 .oddzial2022_header {
    display: block;
    border-bottom: solid 1px #e4e4e4;
    margin-bottom: 15px;
    padding-bottom: 15px; }
    .oddzial2022 .oddzial2022_header h1,
.oddzial2022 .oddzial2022_header h2 {
      font-size: 1.5rem;
      line-height: 1.8;
      font-weight: bold;
      letter-spacing: 0.5px;
      color: #d3222a; }
    .oddzial2022 .oddzial2022_header p {
      font-size: 14px;
      line-height: 1.8; }
  .oddzial2022 .oddzial20222_adres {
    display: block; }
    .oddzial2022 .oddzial20222_adres a:hover {
      color: #d3222a; }
    .oddzial2022 .oddzial20222_adres .adres,
.oddzial2022 .oddzial20222_adres .godziny,
.oddzial2022 .oddzial20222_adres .telefon,
.oddzial2022 .oddzial20222_adres .email {
      display: block;
      transition: 300ms;
      padding-left: 30px;
      position: relative;
      margin-bottom: 30px;
      line-height: 15px;
      font-size: 14px;
      text-decoration: none;
      color: #000; }
      .oddzial2022 .oddzial20222_adres .adres::before,
.oddzial2022 .oddzial20222_adres .godziny::before,
.oddzial2022 .oddzial20222_adres .telefon::before,
.oddzial2022 .oddzial20222_adres .email::before {
        width: 15px;
        height: 15px;
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        display: block;
        background-size: contain;
        background-repeat: no-repeat; }
    .oddzial2022 .oddzial20222_adres .adres::before {
      background-image: url("https://static.euroterm24.pl/cms/b54fc00a0f19447dac7bc27d07186f68-ico-oddzial-place.png"); }
    .oddzial2022 .oddzial20222_adres .godziny::before {
      background-image: url("https://static.euroterm24.pl/cms/e65be74144d34f8a8030c621184a997f-ico-oddzial-clock.png"); }
    .oddzial2022 .oddzial20222_adres .telefon::before {
      background-image: url("https://static.euroterm24.pl/cms/b2836781d2a042a88081e5cc8afd6665-ico-oddzial-phone.png"); }
    .oddzial2022 .oddzial20222_adres .email::before {
      background-image: url("https://static.euroterm24.pl/cms/cb292b1750dc45538415c9ce56c25242-ico-oddzial-mail.png"); }
  .oddzial2022 .oddzial2022_buttony {
    display: block;
    margin: 0 -15px 30px -15px; }
    .oddzial2022 .oddzial2022_buttony .oddzial2022_buttony_button {
      margin: 15px;
      display: inline-block;
      width: auto;
      height: 50px;
      line-height: 50px;
      padding: 0 30px 0 60px;
      position: relative;
      color: #fff;
      transition: 300ms;
      cursor: pointer;
      text-decoration: none;
      font-size: 14px; }
      .oddzial2022 .oddzial2022_buttony .oddzial2022_buttony_button::before {
        width: 20px;
        height: 20px;
        left: 20px;
        top: 15px;
        display: block;
        position: absolute;
        background-size: contain;
        background-repeat: no-repeat;
        content: ""; }
      .oddzial2022 .oddzial2022_buttony .oddzial2022_buttony_button.gray {
        background-color: #313534; }
        .oddzial2022 .oddzial2022_buttony .oddzial2022_buttony_button.gray:hover {
          background-color: #d3222a; }
        .oddzial2022 .oddzial2022_buttony .oddzial2022_buttony_button.gray::before {
          background-image: url("https://static.euroterm24.pl/cms/17afbe0fa4694776bae1660bc95c0bf0-ico-oddzial-arrow.png"); }
      .oddzial2022 .oddzial2022_buttony .oddzial2022_buttony_button.red {
        background-color: #d3222a; }
        .oddzial2022 .oddzial2022_buttony .oddzial2022_buttony_button.red:hover {
          background-color: #313534; }
        .oddzial2022 .oddzial2022_buttony .oddzial2022_buttony_button.red::before {
          background-image: url("https://static.euroterm24.pl/cms/c5ca36ce9ead4c709102ca2e04944487-ico-oddzial-mail-white.png"); }
  .oddzial2022 .oddzial2022_jakdojechac {
    margin-top: 15px;
    display: block; }
    .oddzial2022 .oddzial2022_jakdojechac h2,
.oddzial2022 .oddzial2022_jakdojechac h3,
.oddzial2022 .oddzial2022_jakdojechac p {
      font-size: 14px;
      line-height: 1.8;
      margin-top: 15px; }
    .oddzial2022 .oddzial2022_jakdojechac h2,
.oddzial2022 .oddzial2022_jakdojechac h3 {
      font-weight: bold; }
    .oddzial2022 .oddzial2022_jakdojechac a {
      color: #d3222a;
      position: relative;
      transition: 300ms; }
      .oddzial2022 .oddzial2022_jakdojechac a::before {
        display: block;
        position: absolute;
        left: 0;
        bottom: 0;
        transition: 300ms;
        content: "";
        width: 100%;
        height: 1px;
        background-color: #d3222a; }
      .oddzial2022 .oddzial2022_jakdojechac a:hover::before {
        width: 0; }
  .oddzial2022 .oddzial2022_mapa {
    display: block;
    width: 100%;
    height: 100%; }
    .oddzial2022 .oddzial2022_mapa iframe {
      display: block;
      width: 100%;
      height: 100%;
      filter: grayscale(100%); }
  .oddzial2022 .oddzial2022_fotolewe .oddzial2022_foto,
.oddzial2022 .oddzial2022_fotoprawe .oddzial2022_foto,
.oddzial2022 .oddzial2022_dwazdjecia .oddzial2022_foto {
    display: block;
    width: 100%;
    height: auto;
    margin-top: 30px; }
    .oddzial2022 .oddzial2022_fotolewe .oddzial2022_foto img,
.oddzial2022 .oddzial2022_fotoprawe .oddzial2022_foto img,
.oddzial2022 .oddzial2022_dwazdjecia .oddzial2022_foto img {
      display: block;
      width: 100%;
      height: auto; }
  .oddzial2022 .oddzial2022_fotolewe .oddzial2022_tresc,
.oddzial2022 .oddzial2022_fotoprawe .oddzial2022_tresc,
.oddzial2022 .oddzial2022_dwazdjecia .oddzial2022_tresc {
    margin-top: 15px;
    display: block; }
    .oddzial2022 .oddzial2022_fotolewe .oddzial2022_tresc h2,
.oddzial2022 .oddzial2022_fotolewe .oddzial2022_tresc h3,
.oddzial2022 .oddzial2022_fotolewe .oddzial2022_tresc p,
.oddzial2022 .oddzial2022_fotoprawe .oddzial2022_tresc h2,
.oddzial2022 .oddzial2022_fotoprawe .oddzial2022_tresc h3,
.oddzial2022 .oddzial2022_fotoprawe .oddzial2022_tresc p,
.oddzial2022 .oddzial2022_dwazdjecia .oddzial2022_tresc h2,
.oddzial2022 .oddzial2022_dwazdjecia .oddzial2022_tresc h3,
.oddzial2022 .oddzial2022_dwazdjecia .oddzial2022_tresc p {
      font-size: 14px;
      line-height: 1.8;
      margin-top: 15px; }
    .oddzial2022 .oddzial2022_fotolewe .oddzial2022_tresc h2,
.oddzial2022 .oddzial2022_fotolewe .oddzial2022_tresc h3,
.oddzial2022 .oddzial2022_fotoprawe .oddzial2022_tresc h2,
.oddzial2022 .oddzial2022_fotoprawe .oddzial2022_tresc h3,
.oddzial2022 .oddzial2022_dwazdjecia .oddzial2022_tresc h2,
.oddzial2022 .oddzial2022_dwazdjecia .oddzial2022_tresc h3 {
      font-weight: bold; }
    .oddzial2022 .oddzial2022_fotolewe .oddzial2022_tresc ol li,
.oddzial2022 .oddzial2022_fotoprawe .oddzial2022_tresc ol li,
.oddzial2022 .oddzial2022_dwazdjecia .oddzial2022_tresc ol li {
      list-style: decimal;
      list-style-position: inside;
      font-size: 14px;
      line-height: 1.8;
      margin-top: 15px; }
      .oddzial2022 .oddzial2022_fotolewe .oddzial2022_tresc ol li:nth-child(1),
.oddzial2022 .oddzial2022_fotoprawe .oddzial2022_tresc ol li:nth-child(1),
.oddzial2022 .oddzial2022_dwazdjecia .oddzial2022_tresc ol li:nth-child(1) {
        margin-top: 0; }
    .oddzial2022 .oddzial2022_fotolewe .oddzial2022_tresc ul li,
.oddzial2022 .oddzial2022_fotoprawe .oddzial2022_tresc ul li,
.oddzial2022 .oddzial2022_dwazdjecia .oddzial2022_tresc ul li {
      position: relative;
      padding-left: 17px;
      margin-top: 5px;
      font-size: 14px;
      line-height: 1.8; }
      .oddzial2022 .oddzial2022_fotolewe .oddzial2022_tresc ul li:nth-child(1),
.oddzial2022 .oddzial2022_fotoprawe .oddzial2022_tresc ul li:nth-child(1),
.oddzial2022 .oddzial2022_dwazdjecia .oddzial2022_tresc ul li:nth-child(1) {
        margin-top: 0; }
      .oddzial2022 .oddzial2022_fotolewe .oddzial2022_tresc ul li::before,
.oddzial2022 .oddzial2022_fotoprawe .oddzial2022_tresc ul li::before,
.oddzial2022 .oddzial2022_dwazdjecia .oddzial2022_tresc ul li::before {
        content: "";
        position: absolute;
        top: 11px;
        left: 0;
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background-color: #d3222a; }
    .oddzial2022 .oddzial2022_fotolewe .oddzial2022_tresc a,
.oddzial2022 .oddzial2022_fotoprawe .oddzial2022_tresc a,
.oddzial2022 .oddzial2022_dwazdjecia .oddzial2022_tresc a {
      color: #d3222a;
      position: relative;
      transition: 300ms; }
      .oddzial2022 .oddzial2022_fotolewe .oddzial2022_tresc a::before,
.oddzial2022 .oddzial2022_fotoprawe .oddzial2022_tresc a::before,
.oddzial2022 .oddzial2022_dwazdjecia .oddzial2022_tresc a::before {
        display: block;
        position: absolute;
        left: 0;
        bottom: 0;
        transition: 300ms;
        content: "";
        width: 100%;
        height: 1px;
        background-color: #d3222a; }
      .oddzial2022 .oddzial2022_fotolewe .oddzial2022_tresc a:hover::before,
.oddzial2022 .oddzial2022_fotoprawe .oddzial2022_tresc a:hover::before,
.oddzial2022 .oddzial2022_dwazdjecia .oddzial2022_tresc a:hover::before {
        width: 0; }
  .oddzial2022 .oddzial2022_inne {
    background-color: #e4e4e4;
    margin-top: 30px;
    padding: 15px; }
    .oddzial2022 .oddzial2022_inne .oddzial_container {
      margin-top: 15px; }
    .oddzial2022 .oddzial2022_inne .oddzial2022_inne_oddzial {
      background-color: #fff;
      padding: 10px 10px 5px 10px;
      transition: 300ms;
      text-decoration: none;
      display: block;
      width: 100%;
      height: 100%; }
      .oddzial2022 .oddzial2022_inne .oddzial2022_inne_oddzial h3,
.oddzial2022 .oddzial2022_inne .oddzial2022_inne_oddzial h4 {
        color: #000;
        line-height: 1.6;
        transition: 300ms; }
      .oddzial2022 .oddzial2022_inne .oddzial2022_inne_oddzial h3 {
        font-size: 14px; }
      .oddzial2022 .oddzial2022_inne .oddzial2022_inne_oddzial h4 {
        font-size: 8px;
        margin-bottom: 5px; }
      .oddzial2022 .oddzial2022_inne .oddzial2022_inne_oddzial.teraz {
        background-color: #019dd9; }
        .oddzial2022 .oddzial2022_inne .oddzial2022_inne_oddzial.teraz h3, .oddzial2022 .oddzial2022_inne .oddzial2022_inne_oddzial.teraz h4 {
          color: white;
          font-weight: bold; }
      .oddzial2022 .oddzial2022_inne .oddzial2022_inne_oddzial:hover {
        background-color: #d3222a; }
        .oddzial2022 .oddzial2022_inne .oddzial2022_inne_oddzial:hover h3,
.oddzial2022 .oddzial2022_inne .oddzial2022_inne_oddzial:hover h4 {
          color: #fff; }
      .oddzial2022 .oddzial2022_inne .oddzial2022_inne_oddzial.soon {
        cursor: progress; }
        .oddzial2022 .oddzial2022_inne .oddzial2022_inne_oddzial.soon h3,
.oddzial2022 .oddzial2022_inne .oddzial2022_inne_oddzial.soon h4 {
          opacity: 0.42; }
        .oddzial2022 .oddzial2022_inne .oddzial2022_inne_oddzial.soon:hover {
          background-color: #fff; }
          .oddzial2022 .oddzial2022_inne .oddzial2022_inne_oddzial.soon:hover h3,
.oddzial2022 .oddzial2022_inne .oddzial2022_inne_oddzial.soon:hover h4 {
            color: #000; }

.kontakt2022 {
  display: block; }
  .kontakt2022 .kontakt_2022_h1 {
    margin: 50px 0 15px 0;
    padding: 0 0 0 50px;
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 0.5px;
    color: #d3222a; }
  .kontakt2022 .kontakt_2022_h2 {
    padding: 0 0 0 50px;
    margin-bottom: 15px;
    font-size: 14px; }
  .kontakt2022 .kontakt_2022_separator {
    display: block;
    width: 100%;
    height: 1px;
    margin-bottom: 15px;
    background-color: #e4e4e4; }
  .kontakt2022 .kontakt_2022_content {
    background-color: #f8f9fb;
    padding: 30px;
    display: block;
    width: 100%;
    height: 100%; }
    .kontakt2022 .kontakt_2022_content strong {
      font-weight: 400; }
    .kontakt2022 .kontakt_2022_content h2 {
      font-size: 24px;
      line-height: 1.6; }
    .kontakt2022 .kontakt_2022_content h3 {
      font-size: 20px;
      line-height: 1.6;
      margin-top: 10px;
      margin-bottom: 30px; }
    .kontakt2022 .kontakt_2022_content p {
      font-size: 16px;
      line-height: 1.6;
      margin-top: 10px; }
    .kontakt2022 .kontakt_2022_content ul {
      display: block;
      margin-bottom: 30px; }
      .kontakt2022 .kontakt_2022_content ul li {
        display: block;
        margin-top: 15px;
        overflow: hidden;
        line-height: 1.6; }
        .kontakt2022 .kontakt_2022_content ul li img {
          display: block;
          float: left;
          width: 18px;
          height: 18px;
          margin-right: 10px;
          object-fit: contain; }
        .kontakt2022 .kontakt_2022_content ul li .right {
          display: block;
          width: calc(100% - 28px);
          float: right;
          text-align: left; }
        .kontakt2022 .kontakt_2022_content ul li a {
          transition: 300ms; }
          .kontakt2022 .kontakt_2022_content ul li a:hover {
            color: #d3222a; }
  .kontakt2022 .kontakt_2022_content_buttony {
    display: block;
    text-align: left;
    margin: 0;
    overflow: hidden; }
    .kontakt2022 .kontakt_2022_content_buttony .kontakt_2022_content_buttony_red,
.kontakt2022 .kontakt_2022_content_buttony .kontakt_2022_content_buttony_gray,
.kontakt2022 .kontakt_2022_content_buttony .kontakt_2022_content_buttony_sm {
      float: left; }
    .kontakt2022 .kontakt_2022_content_buttony .kontakt_2022_content_buttony_red,
.kontakt2022 .kontakt_2022_content_buttony .kontakt_2022_content_buttony_gray {
      margin: 15px 15px 0 0;
      width: auto;
      height: 50px;
      line-height: 50px;
      padding: 0 30px 0 50px;
      transition: 300ms;
      position: relative;
      color: #fff; }
      .kontakt2022 .kontakt_2022_content_buttony .kontakt_2022_content_buttony_red:hover,
.kontakt2022 .kontakt_2022_content_buttony .kontakt_2022_content_buttony_gray:hover {
        opacity: 0.7; }
      .kontakt2022 .kontakt_2022_content_buttony .kontakt_2022_content_buttony_red img,
.kontakt2022 .kontakt_2022_content_buttony .kontakt_2022_content_buttony_gray img {
        position: absolute;
        left: 15px;
        top: 0;
        bottom: 0;
        width: 20px;
        height: 20px;
        margin: auto; }
    .kontakt2022 .kontakt_2022_content_buttony .kontakt_2022_content_buttony_red {
      background-color: #d3222a; }
    .kontakt2022 .kontakt_2022_content_buttony .kontakt_2022_content_buttony_gray {
      background-color: #313534; }
    .kontakt2022 .kontakt_2022_content_buttony .kontakt_2022_content_buttony_sm {
      text-align: left;
      margin-top: 15px; }
      .kontakt2022 .kontakt_2022_content_buttony .kontakt_2022_content_buttony_sm a {
        display: block;
        float: left;
        width: 50px;
        height: 50px;
        padding: 10px; }
        .kontakt2022 .kontakt_2022_content_buttony .kontakt_2022_content_buttony_sm a img {
          display: block;
          width: 100%;
          height: 100%;
          object-fit: contain;
          transition: 300ms; }
        .kontakt2022 .kontakt_2022_content_buttony .kontakt_2022_content_buttony_sm a:last-child {
          padding: 6px; }
        .kontakt2022 .kontakt_2022_content_buttony .kontakt_2022_content_buttony_sm a:hover img {
          opacity: 0.7; }
  .kontakt2022 .kontakt_2022_image {
    display: block;
    width: 100%;
    height: 100%; }
    .kontakt2022 .kontakt_2022_image .kontakt_2022_image_img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover; }
  .kontakt2022 .kontakt_2022_form {
    display: block;
    width: 100%; }
    .kontakt2022 .kontakt_2022_form .kontakt_2022_form_headline {
      font-size: 20px;
      text-align: center;
      margin: 30px 0 20px 0;
      font-weight: 500; }
    .kontakt2022 .kontakt_2022_form .kontakt_2022_form_iframe {
      display: block;
      width: 100%;
      height: 650px;
      margin-bottom: 30px; }

@media (max-width: 991px) {
  .kontakt2022 .kontakt_2022_form .kontakt_2022_form_iframe {
    height: 700px;
    margin-bottom: 0; } }
  .kontakt2022 .kontakt_2022_wartosci {
    display: block;
    width: 100%;
    padding: 80px 0 0 50px; }

@media (max-width: 991px) {
  .kontakt2022 .kontakt_2022_wartosci {
    padding: 0 0 30px 0; } }
    .kontakt2022 .kontakt_2022_wartosci .kontakt_2022_wartosci_wartosc {
      padding-left: 60px;
      position: relative;
      display: block;
      font-size: 14px;
      line-height: 1.6;
      margin-bottom: 30px; }
      .kontakt2022 .kontakt_2022_wartosci .kontakt_2022_wartosci_wartosc:last-child {
        margin: 0; }
      .kontakt2022 .kontakt_2022_wartosci .kontakt_2022_wartosci_wartosc img {
        width: 25px;
        height: 25px;
        object-fit: contain;
        position: absolute;
        left: 0;
        top: 0;
        display: block; }

body.registration main {
  width: 100%;
  position: relative;
  width: 100%;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
  margin-right: auto;
  margin-left: auto; }

@media (min-width: 576px) {
  body.registration main {
    max-width: 540px; } }

@media (min-width: 768px) {
  body.registration main {
    max-width: 720px; } }

@media (min-width: 992px) {
  body.registration main {
    max-width: 960px; } }

@media (min-width: 1200px) {
  body.registration main {
    max-width: 1140px; } }

@media (min-width: 1400px) {
  body.registration main {
    max-width: 1320px; } }
  body.registration main .mr-lg-3.col-lg-8 {
    margin: 0 !important;
    width: 100% !important; }
  body.registration main .mb-large,
body.registration main .mb-small {
    margin-bottom: 30px !important; }

body.registration .one-base-home-page {
  position: relative; }
  body.registration .one-base-home-page::before, body.registration .one-base-home-page::after {
    display: none;
    width: calc(100% - 24px);
    position: relative;
    margin: 0 12px;
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: center top;
    content: ""; }
  body.registration .one-base-home-page::before {
    background-image: url("https://static.euroterm24.pl/cms/ce8b9ea4c7714ab69bd6345f509c9cdf-et-rejestracja-baner.jpg"); }

@media (max-width: 576px) {
  body.registration .one-base-home-page::before {
    height: 50px; } }

@media (max-width: 399px) {
  body.registration .one-base-home-page::before {
    height: 40px; } }

@media (min-width: 576px) {
  body.registration .one-base-home-page::before {
    height: 60px; } }

@media (min-width: 768px) {
  body.registration .one-base-home-page::before {
    height: 72px; } }

@media (min-width: 992px) {
  body.registration .one-base-home-page::before {
    height: 96px; } }

@media (min-width: 1200px) {
  body.registration .one-base-home-page::before {
    height: 115px; } }

@media (min-width: 1400px) {
  body.registration .one-base-home-page::before {
    height: 135px; } }
  body.registration .one-base-home-page::after {
    background-image: url("https://static.euroterm24.pl/cms/38c13a19768d4fa393c0d50ec9787a5a-et-rejestracja-wartosci.jpg"); }

@media (max-width: 576px) {
  body.registration .one-base-home-page::after {
    height: 210px; } }

@media (max-width: 399px) {
  body.registration .one-base-home-page::after {
    height: 160px; } }

@media (min-width: 576px) {
  body.registration .one-base-home-page::after {
    height: 230px; } }

@media (min-width: 768px) {
  body.registration .one-base-home-page::after {
    height: 308px; } }

@media (min-width: 992px) {
  body.registration .one-base-home-page::after {
    height: 425px; } }

@media (min-width: 1200px) {
  body.registration .one-base-home-page::after {
    height: 490px; } }

@media (min-width: 1400px) {
  body.registration .one-base-home-page::after {
    height: 570px; } }

.one-product-minilist-view .one-product-tile-right-actions .col .btn-wishlist .btn,
.one-product-list-view .one-product-tile-right-actions .col .btn-wishlist .btn,
.one-product-tile-view .one-product-tile-right-actions .col .btn-wishlist .btn {
  background-color: white !important;
  color: #d3222a !important; }

.one-product-page .one-base-home-page {
  overflow: hidden; }

.one-product-page .et2022_rekomendowane .one-swiper-product__title {
  text-transform: uppercase;
  margin-top: 60px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #cccccc;
  padding: 0 33px;
  font-size: 2rem;
  color: black; }

.tooltip.b-tooltip .tooltip-inner {
  border: solid 1px #000 !important;
  background-color: #fff !important;
  color: #000 !important; }

.et2022_buybox_mobile {
  display: none; }

@media (max-width: 991px) {
  .et2022_buybox_mobile {
    display: block;
    margin: 15px 0 0 0; } }

.et2022_buybox_desktop {
  display: block; }

@media (max-width: 991px) {
  .et2022_buybox_desktop {
    display: none; } }

.one-product-page .et2022_rekomendowane .one-swiper-product__title,
.main-heading__heading,
.header-bottom__link {
  font-weight: 400 !important; }

.one-product-overview button.btn.one-button.btn-secondary {
  border-radius: 0; }

body.index i.icon-ecommerce-cart-download,
.one-catalog-view-list i.icon-ecommerce-cart-download {
  font-size: 20px;
  vertical-align: sub;
  left: 3px;
  top: 4px;
  position: relative; }

body.index i.icon-ecommerce-cart-download::before {
  top: -1px;
  left: -4px;
  position: relative; }

.et2022_product_buybox .btn-group > .btn-group:not(:first-child) > .btn,
.et2022_product_buybox .btn-group > .btn:not(:first-child) {
  width: 50px; }

.et2022_product_buybox .one-product-stocks-info .grid-table.extended {
  flex-direction: row; }

.top-products .one-product-overview .pr-0 div {
  flex-direction: row; }

body .layout .dodatkowe {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  margin: 0 auto;
  font-size: 16px;
  line-height: 23px;
  font-weight: 400;
  font-family: "Lato", sans-serif; }

body .layout .dodatkowe div,
body .layout .dodatkowe span,
body .layout .dodatkowe applet,
body .layout .dodatkowe object,
body .layout .dodatkowe iframe,
body .layout .dodatkowe h1,
body .layout .dodatkowe h2,
body .layout .dodatkowe h3,
body .layout .dodatkowe h4,
body .layout .dodatkowe h5,
body .layout .dodatkowe h6,
body .layout .dodatkowe p,
body .layout .dodatkowe blockquote,
body .layout .dodatkowe pre,
body .layout .dodatkowe a,
body .layout .dodatkowe abbr,
body .layout .dodatkowe acronym,
body .layout .dodatkowe address,
body .layout .dodatkowe big,
body .layout .dodatkowe cite,
body .layout .dodatkowe code,
body .layout .dodatkowe del,
body .layout .dodatkowe dfn,
body .layout .dodatkowe em,
body .layout .dodatkowe img,
body .layout .dodatkowe ins,
body .layout .dodatkowe kbd,
body .layout .dodatkowe q,
body .layout .dodatkowe s,
body .layout .dodatkowe samp,
body .layout .dodatkowe small,
body .layout .dodatkowe strike,
body .layout .dodatkowe strong,
body .layout .dodatkowe sub,
body .layout .dodatkowe sup,
body .layout .dodatkowe tt,
body .layout .dodatkowe var,
body .layout .dodatkowe b,
body .layout .dodatkowe u,
body .layout .dodatkowe i,
body .layout .dodatkowe center,
body .layout .dodatkowe dl,
body .layout .dodatkowe dt,
body .layout .dodatkowe dd,
body .layout .dodatkowe ol,
body .layout .dodatkowe ul,
body .layout .dodatkowe li,
body .layout .dodatkowe fieldset,
body .layout .dodatkowe form,
body .layout .dodatkowe label,
body .layout .dodatkowe legend,
body .layout .dodatkowe table,
body .layout .dodatkowe caption,
body .layout .dodatkowe tbody,
body .layout .dodatkowe tfoot,
body .layout .dodatkowe thead,
body .layout .dodatkowe tr,
body .layout .dodatkowe th,
body .layout .dodatkowe td,
body .layout .dodatkowe article,
body .layout .dodatkowe aside,
body .layout .dodatkowe canvas,
body .layout .dodatkowe details,
body .layout .dodatkowe embed,
body .layout .dodatkowe figure,
body .layout .dodatkowe figcaption,
body .layout .dodatkowe footer,
body .layout .dodatkowe header,
body .layout .dodatkowe hgroup,
body .layout .dodatkowe menu,
body .layout .dodatkowe nav,
body .layout .dodatkowe output,
body .layout .dodatkowe ruby,
body .layout .dodatkowe section,
body .layout .dodatkowe summary,
body .layout .dodatkowe time,
body .layout .dodatkowe mark,
body .layout .dodatkowe audio,
body .layout .dodatkowe video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline; }

body .layout .dodatkowe article,
body .layout .dodatkowe aside,
body .layout .dodatkowe details,
body .layout .dodatkowe figcaption,
body .layout .dodatkowe figure,
body .layout .dodatkowe footer,
body .layout .dodatkowe header,
body .layout .dodatkowe hgroup,
body .layout .dodatkowe menu,
body .layout .dodatkowe nav,
body .layout .dodatkowe section {
  display: block; }

body .layout .dodatkowe body {
  line-height: 1; }

body .layout .dodatkowe ol,
body .layout .dodatkowe ul {
  list-style: none; }

body .layout .dodatkowe blockquote,
body .layout .dodatkowe q {
  quotes: none; }

body .layout .dodatkowe blockquote:before,
body .layout .dodatkowe blockquote:after,
body .layout .dodatkowe q:before,
body .layout .dodatkowe q:after {
  content: "";
  content: none; }

body .layout .dodatkowe table {
  border-collapse: collapse;
  border-spacing: 0; }

body .layout .dodatkowe strong {
  font-weight: 700;
  font-family: "Lato", sans-serif; }

body .layout .dodatkowe .animate {
  -webkit-transition: all 300ms ease-in-o ut;
  -moz-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out; }

body .layout .dodatkowe .font-bold {
  font-weight: 700;
  font-family: "Lato", sans-serif; }

body .layout .dodatkowe .font-regular {
  font-weight: 400;
  font-family: "Lato", sans-serif; }

body .layout .dodatkowe .ksztalt {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: auto;
  z-index: 1;
  display: none; }

body .layout .dodatkowe div {
  box-sizing: border-box; }

body .layout .dodatkowe .content.tekstowa a.pdf {
  position: relative;
  display: block;
  padding: 10px 0 10px 50px;
  min-height: 40px;
  line-height: 20px;
  font-weight: 700;
  font-family: "Lato", sans-serif;
  text-decoration: none;
  color: #d3222a;
  -webkit-transition: all 300ms ease-in-o ut;
  -moz-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  margin-bottom: 15px; }

@media (max-width: 991px) {
  body .layout .dodatkowe .content.tekstowa a.pdf {
    min-height: 30px;
    padding: 5px 0 5px 40px; } }

body .layout .dodatkowe .content.tekstowa a.pdf:hover {
  color: #00adef; }

body .layout .dodatkowe .content.tekstowa a.pdf::before {
  background-image: url("https://static-demo-images.s3-eu-west-1.amazonaws.com/pdf-icon.png");
  background-size: auto 40px;
  background-repeat: no-repeat;
  width: 40px;
  height: 40px;
  content: "";
  position: absolute;
  left: 0;
  top: 0; }

@media (max-width: 991px) {
  body .layout .dodatkowe .content.tekstowa a.pdf::before {
    background-size: auto 30px;
    width: 30px;
    height: 30px; } }

body .layout .dodatkowe .flexrow {
  width: calc(100% + 30px);
  margin: 0 -15px;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  align-content: stretch;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }

@media (max-width: 767px) {
  body .layout .dodatkowe .flexrow {
    flex-direction: none;
    justify-content: none;
    align-items: none;
    align-content: none;
    display: block;
    -webkit-flex-wrap: none;
    -ms-flex-wrap: none;
    flex-wrap: none; } }

body .layout .dodatkowe .col-xl-2 {
  width: calc(100% / 6);
  float: left; }

body .layout .dodatkowe .flexrow > div {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex; }

@media (max-width: 449px) {
  body .layout .dodatkowe .flexrow > div {
    display: block; } }

body .layout .dodatkowe img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  margin: auto; }
  body .layout .dodatkowe img.opcjonalny_baner {
    display: block;
    width: 100%;
    height: auto;
    margin-bottom: 50px; }

@media (max-width: 991px) {
  body .layout .dodatkowe img.opcjonalny_baner {
    margin-bottom: 30px; } }

body .layout .dodatkowe img.aligncenter {
  margin: 0 auto !important; }

body .layout .dodatkowe img.alignleft {
  float: left; }

body .layout .dodatkowe img.alignright {
  float: right; }

body .layout .dodatkowe img.marginbottom50 {
  margin-bottom: 50px; }

body .layout .dodatkowe h1,
body .layout .dodatkowe h2 {
  font-size: 24px;
  line-height: 1.5;
  margin: 0 0 30px 0;
  color: #000;
  font-weight: 700;
  font-family: "Lato", sans-serif;
  text-align: center; }

@media (max-width: 1199px) {
  body .layout .dodatkowe h1,
body .layout .dodatkowe h2 {
    font-size: 20px; } }

@media (max-width: 991px) {
  body .layout .dodatkowe h1,
body .layout .dodatkowe h2 {
    font-size: 20px; } }

body .layout .dodatkowe .year {
  display: block; }

body .layout .dodatkowe h3 {
  font-size: 20px;
  line-height: 1.5;
  font-weight: 700;
  font-family: "Lato", sans-serif;
  color: #000;
  margin: 0 0 5px 0; }

@media (max-width: 991px) {
  body .layout .dodatkowe h3 {
    font-size: 18px; } }

body .layout .dodatkowe p,
body .layout .dodatkowe h4 {
  font-size: 16px;
  line-height: 23px;
  margin-bottom: 30px;
  font-weight: 400;
  font-family: "Lato", sans-serif; }

body .layout .dodatkowe h4 {
  text-align: center;
  font-weight: 700;
  font-family: "Lato", sans-serif; }

body .layout .dodatkowe .text-center {
  text-align: center; }

body .layout .dodatkowe .text-right {
  text-align: right; }

body .layout .dodatkowe .text-left {
  text-align: left; }

body .layout .dodatkowe span.block {
  display: block; }

body .layout .dodatkowe .button {
  width: 200px;
  height: 50px;
  line-height: 48px;
  color: #000;
  padding: 0 30px;
  text-align: center;
  border: solid 1px #000;
  -webkit-transition: all 300ms ease-in-o ut;
  -moz-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  display: block;
  font-weight: 700;
  font-family: "Lato", sans-serif;
  text-decoration: none;
  margin: 50px auto 0 auto;
  position: relative; }
  body .layout .dodatkowe .button::before, body .layout .dodatkowe .button::after {
    display: none !important; }

body .layout .dodatkowe .button:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #ffffff; }

body .layout .dodatkowe .button.red {
  width: auto;
  display: inline-block;
  padding: 0 75px 0 50px;
  background-color: #d3222a;
  color: #ffffff;
  border-color: #d3222a; }

body .layout .dodatkowe .button.red::before,
body .layout .dodatkowe .button.red::after {
  -moz-transform: rotate(0);
  -webkit-transform: rotate(0);
  -o-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
  left: auto;
  right: 20px; }

body .layout .dodatkowe .button.red::before {
  background-image: url("https://static.euroterm24.pl/cms/3d285390db99474da937eab892f2e77f/arrow_white.svg"); }

body .layout .dodatkowe .button.red::after {
  background-image: url("https://static.euroterm24.pl/cms/3014e3bb3e0d4951a6d6367115f0a5eb/arrow_red.svg"); }

body .layout .dodatkowe .button.red:hover {
  background-color: #ffffff;
  color: #d3222a; }

body .layout .dodatkowe .button.blue2 {
  width: auto;
  display: inline-block;
  padding: 0 75px 0 50px;
  background-color: #00adef;
  color: #ffffff;
  border-color: #00adef; }

body .layout .dodatkowe .button.blue2::before,
body .layout .dodatkowe .button.blue2::after {
  -moz-transform: rotate(0);
  -webkit-transform: rotate(0);
  -o-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
  left: auto;
  right: 20px; }

body .layout .dodatkowe .button.blue2::before {
  background-image: url("https://static.euroterm24.pl/cms/3d285390db99474da937eab892f2e77f/arrow_white.svg"); }

body .layout .dodatkowe .button.blue2::after {
  background-image: url("https://static.euroterm24.pl/cms/bb69dc84adc34679ab2669cb4430b214/arrow_blue.svg"); }

body .layout .dodatkowe .button.blue2:hover {
  background-color: #ffffff;
  color: #00adef; }

body .layout .dodatkowe .button.more {
  display: inline-block;
  width: auto;
  padding: 0 30px;
  margin: 0; }

body .layout .dodatkowe .button.more::before,
body .layout .dodatkowe .button.more::after {
  display: none; }

body .layout .dodatkowe .button.margintopbottom50 {
  margin: 50px 0; }

body .layout .dodatkowe .dodatkowe_container {
  position: relative;
  z-index: 2;
  padding: 0 50px;
  margin: 0 auto; }

@media (max-width: 991px) {
  body .layout .dodatkowe .dodatkowe_container {
    width: 100%;
    padding: 0 40px; } }

@media (max-width: 500px) {
  body .layout .dodatkowe .dodatkowe_container {
    padding: 0 30px; } }

body .layout .dodatkowe .dodatkowe_historia {
  position: relative;
  z-index: 1;
  padding: 100px 0 0 0; }

@media (max-width: 991px) {
  body .layout .dodatkowe .dodatkowe_historia {
    padding: 50px 0 0 0; } }

body .layout .dodatkowe .dodatkowe_historia .bg {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; }

body .layout .dodatkowe .dodatkowe_misja {
  z-index: 2;
  position: relative;
  padding: 20px 0 80px 0; }

@media (max-width: 991px) {
  body .layout .dodatkowe .dodatkowe_misja {
    padding: 20px 0 30px 0; } }

body .layout .dodatkowe .dodatkowe_dostawa {
  padding: 0 0 100px 0;
  z-index: 2; }

@media (max-width: 991px) {
  body .layout .dodatkowe .dodatkowe_dostawa {
    padding: 50px 0; } }

body .layout .dodatkowe .dodatkowe_dostawa .tabelkaiczas {
  overflow: hidden;
  display: block;
  width: 100%;
  height: auto;
  width: calc(100% + 30px);
  margin: 0 -15px;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  align-content: stretch;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 50px -15px; }

@media (max-width: 767px) {
  body .layout .dodatkowe .dodatkowe_dostawa .tabelkaiczas {
    flex-direction: none;
    justify-content: none;
    align-items: none;
    align-content: none;
    display: block;
    -webkit-flex-wrap: none;
    -ms-flex-wrap: none;
    flex-wrap: none; } }

body .layout .dodatkowe .dodatkowe_dostawa .tabelkaiczas .tabela {
  width: 75%;
  float: left; }

@media (max-width: 991px) {
  body .layout .dodatkowe .dodatkowe_dostawa .tabelkaiczas .tabela {
    width: 100%;
    float: none;
    height: auto; } }

body .layout .dodatkowe .dodatkowe_dostawa .tabelkaiczas .tabela table {
  background-color: var(--border-color);
  width: 100%;
  margin: 0; }

@media (max-width: 991px) {
  body .layout .dodatkowe .dodatkowe_dostawa .tabelkaiczas .tabela table {
    font-size: 14px;
    line-height: 20px; } }

@media (max-width: 500px) {
  body .layout .dodatkowe .dodatkowe_dostawa .tabelkaiczas .tabela table {
    font-size: 12px;
    line-height: 20px; } }

body .layout .dodatkowe .dodatkowe_dostawa .tabelkaiczas .tabela table thead tr th {
  text-align: center;
  padding: 10px; }

@media (max-width: 500px) {
  body .layout .dodatkowe .dodatkowe_dostawa .tabelkaiczas .tabela table thead tr th {
    padding: 5px; } }

body .layout .dodatkowe
.dodatkowe_dostawa
.tabelkaiczas
.tabela
table
thead
tr
th
strong {
  font-size: 24px;
  line-height: 34px;
  font-weight: 400;
  font-family: "Lato", sans-serif;
  display: block; }

@media (max-width: 991px) {
  body .layout .dodatkowe
.dodatkowe_dostawa
.tabelkaiczas
.tabela
table
thead
tr
th
strong {
    font-size: 20px;
    line-height: 30px; } }

@media (max-width: 500px) {
  body .layout .dodatkowe
.dodatkowe_dostawa
.tabelkaiczas
.tabela
table
thead
tr
th
strong {
    font-size: 16px;
    line-height: 20px; } }

body .layout .dodatkowe
.dodatkowe_dostawa
.tabelkaiczas
.tabela
table
tbody
tr:nth-child(2n + 1) {
  background-color: #ffffff; }

body .layout .dodatkowe .dodatkowe_dostawa .tabelkaiczas .tabela table tbody tr td {
  text-align: center;
  padding: 5px 15px; }

@media (max-width: 500px) {
  body .layout .dodatkowe .dodatkowe_dostawa .tabelkaiczas .tabela table tbody tr td {
    padding: 5px; } }

body .layout .dodatkowe
.dodatkowe_dostawa
.tabelkaiczas
.tabela
table
tbody
tr
td:first-child {
  text-align: right; }

body .layout .dodatkowe .dodatkowe_dostawa .tabelkaiczas .czas {
  float: left;
  width: 25%;
  height: auto;
  background-color: #d3222a;
  color: #ffffff;
  text-align: center;
  padding: 30px 10px; }

@media (max-width: 991px) {
  body .layout .dodatkowe .dodatkowe_dostawa .tabelkaiczas .czas {
    width: 100%;
    float: none;
    padding: 10px;
    height: auto;
    overflow: hidden; } }

body .layout .dodatkowe .dodatkowe_dostawa .tabelkaiczas .czas h3 {
  color: #ffffff;
  font-weight: 700;
  font-family: "Lato", sans-serif;
  margin: 0; }

@media (max-width: 991px) {
  body .layout .dodatkowe .dodatkowe_dostawa .tabelkaiczas .czas h3 {
    font-size: 25px;
    line-height: 35px; } }

body .layout .dodatkowe .dodatkowe_dostawa .tabelkaiczas .czas p {
  font-size: 13px;
  line-height: 18px; }

@media (max-width: 991px) {
  body .layout .dodatkowe .dodatkowe_dostawa .tabelkaiczas .czas p {
    font-size: 15px;
    line-height: 25px; } }

@media (max-width: 500px) {
  body .layout .dodatkowe .dodatkowe_dostawa .tabelkaiczas .czas p {
    font-size: 12px;
    line-height: 20px; } }

@media (max-width: 991px) {
  body .layout .dodatkowe .dodatkowe_dostawa .tabelkaiczas .czas .opis {
    width: 100%; } }

body .layout .dodatkowe .dodatkowe_dostawa .tabelkaiczas .czas h4 {
  font-size: 2.5em;
  line-height: 1.2;
  margin: 30px 0;
  font-weight: 300; }

@media (max-width: 1199px) {
  body .layout .dodatkowe .dodatkowe_dostawa .tabelkaiczas .czas h4 {
    font-size: 2em; } }

@media (max-width: 991px) {
  body .layout .dodatkowe .dodatkowe_dostawa .tabelkaiczas .czas h4 {
    margin: 15px 0;
    width: 100%; } }

@media (max-width: 767px) {
  body .layout .dodatkowe .dodatkowe_dostawa .tabelkaiczas .czas h4 {
    font-size: 2em; } }

@media (max-width: 500px) {
  body .layout .dodatkowe .dodatkowe_dostawa .tabelkaiczas .czas h4 {
    font-size: 1.5em; } }

body .layout .dodatkowe .dodatkowe_dostawa p {
  margin-bottom: 10px; }

body .layout .dodatkowe .dodatkowe_zsidebarem {
  overflow: hidden;
  position: relative;
  z-index: 2; }

@media (max-width: 991px) {
  body .layout .dodatkowe .dodatkowe_zsidebarem {
    padding: 50px 0; } }

body .layout .dodatkowe .dodatkowe_zsidebarem .sidebar {
  float: left;
  width: 35%;
  padding: 0 50px 0 0; }

@media (max-width: 1199px) {
  body .layout .dodatkowe .dodatkowe_zsidebarem .sidebar {
    width: 50%; } }

@media (max-width: 991px) {
  body .layout .dodatkowe .dodatkowe_zsidebarem .sidebar {
    display: none; } }

@media (max-width: 991px) {
  body .layout .dodatkowe .dodatkowe_zsidebarem .sidebar.desktop {
    display: none; } }

body .layout .dodatkowe .dodatkowe_zsidebarem .sidebar h2 {
  text-align: left; }

body .layout .dodatkowe .dodatkowe_zsidebarem .sidebar ul {
  display: block; }

body .layout .dodatkowe .dodatkowe_zsidebarem .sidebar ul li {
  display: block;
  width: 100%;
  height: auto; }

body .layout .dodatkowe .dodatkowe_zsidebarem .sidebar ul li a {
  display: block;
  width: 100%;
  height: auto;
  padding: 5px 30px 5px 5px;
  background-color: #ffffff;
  background-repeat: no-repeat;
  background-size: auto 10px;
  background-position: calc(100% - 15px) center;
  background-image: none !important;
  box-sizing: border-box;
  color: #000000;
  text-decoration: none;
  -webkit-transition: all 300ms ease-in-o ut;
  -moz-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out; }

@media (max-width: 767px) {
  body .layout .dodatkowe .dodatkowe_zsidebarem .sidebar ul li a {
    font-size: 14px; } }

body .layout .dodatkowe .dodatkowe_zsidebarem .sidebar ul li a:hover {
  background-color: var(--primary-color);
  color: #fff; }

body .layout .dodatkowe .dodatkowe_zsidebarem .sidebar ul li:nth-child(2n + 1) a {
  background-color: #f0f0f0; }

body .layout .dodatkowe .dodatkowe_zsidebarem .sidebar ul li:nth-child(2n + 1) a:hover {
  background-color: var(--primary-color);
  color: #fff; }

body .layout .dodatkowe .dodatkowe_zsidebarem .content {
  float: left;
  width: 65%;
  padding: 0 40px; }

@media (max-width: 1199px) {
  body .layout .dodatkowe .dodatkowe_zsidebarem .content {
    width: 50%;
    padding: 0; } }

@media (max-width: 991px) {
  body .layout .dodatkowe .dodatkowe_zsidebarem .content {
    width: 100%;
    float: none;
    padding: 0; } }

body .layout .dodatkowe .dodatkowe_zsidebarem .content.mapka {
  padding: 0; }

body .layout .dodatkowe .dodatkowe_zsidebarem .content .galeria {
  height: 250px; }

body .layout .dodatkowe .dodatkowe_zsidebarem .content .galeria img {
  float: left;
  width: 33%;
  height: 100%;
  object-fit: cover; }

body .layout .dodatkowe .dodatkowe_zsidebarem .content .mapa {
  display: block;
  width: 100%;
  margin: 0 auto;
  position: relative; }

body .layout .dodatkowe .dodatkowe_zsidebarem .content .mapa img {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1; }

body .layout .dodatkowe .dodatkowe_zsidebarem .content .mapa img.punktowa {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  opacity: 0.5; }

body .layout .dodatkowe .dodatkowe_zsidebarem .content .mapa a {
  position: absolute;
  z-index: 3;
  width: auto;
  height: 10px;
  text-decoration: none; }

body .layout .dodatkowe .dodatkowe_zsidebarem .content .mapa a::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 1;
  background-color: gray;
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%; }

@media (max-width: 500px) {
  body .layout .dodatkowe .dodatkowe_zsidebarem .content .mapa a::before {
    width: 5px;
    height: 5px; } }

body .layout .dodatkowe .dodatkowe_zsidebarem .content .mapa a span {
  opacity: 0;
  font-size: 10px;
  line-height: 10px;
  display: block;
  text-decoration: none;
  margin-top: 10px;
  color: gray;
  -webkit-transition: all 300ms ease-in-o ut;
  -moz-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  text-align: center; }

@media (max-width: 500px) {
  body .layout .dodatkowe .dodatkowe_zsidebarem .content .mapa a span {
    font-size: 7px;
    line-height: 7px;
    margin-top: 5px; } }

body .layout .dodatkowe .dodatkowe_zsidebarem .content .mapa a:hover {
  z-index: 4; }

body .layout .dodatkowe .dodatkowe_zsidebarem .content .mapa a:hover span {
  opacity: 1;
  background-color: #ffffff; }

body .layout .dodatkowe .dodatkowe_zsidebarem .content .mapa a:first-child::before {
  background-color: var(--primary-color); }

body .layout .dodatkowe .dodatkowe_zsidebarem .content .mapa a:first-child span {
  opacity: 1;
  color: var(--primary-color); }

body .layout .dodatkowe .dodatkowe_zsidebarem .content span.blue {
  color: #00adef; }

body .layout .dodatkowe .dodatkowe_zsidebarem .content ul {
  margin: 15px 0; }

body .layout .dodatkowe .dodatkowe_zsidebarem .content ul li {
  margin-bottom: 10px; }

body .layout .dodatkowe .dodatkowe_zsidebarem .content ul li:last-child {
  margin: 0; }

body .layout .dodatkowe .dodatkowe_zsidebarem .content ul li h4 {
  color: var(--primary-color);
  text-align: inherit;
  display: inline-block;
  margin: 0 5px 0 0; }

body .layout .dodatkowe .dodatkowe_zsidebarem .content.tekstowa ul li {
  list-style: circle;
  list-style-position: inside; }

body .layout .dodatkowe .dodatkowe_zsidebarem .content.tekstowa ol li {
  list-style: decimal;
  list-style-position: inside; }

body .layout .dodatkowe .dodatkowe_zsidebarem .content.tekstowa ol li ul {
  padding: 0 0 0 40px; }

body .layout .dodatkowe .dodatkowe_zsidebarem .content.tekstowa ol li ul li {
  list-style: circle;
  list-style-position: outside; }

body .layout .dodatkowe .dodatkowe_zsidebarem .content.tekstowa h4 {
  color: #000;
  text-align: left;
  font-size: 18px;
  line-height: 28px;
  margin: 30px 0 15px 0; }

body .layout .dodatkowe .dodatkowe_bezsidebara {
  position: relative;
  z-index: 2;
  padding: 0 0 50px 0; }

@media (max-width: 991px) {
  body .layout .dodatkowe .dodatkowe_bezsidebara {
    padding: 0 0 50px 0; } }

body .layout .dodatkowe .dodatkowe_bezsidebara .content {
  width: 100%;
  padding: 0 40px; }

@media (max-width: 991px) {
  body .layout .dodatkowe .dodatkowe_bezsidebara .content {
    padding: 0; } }

body .layout .dodatkowe .dodatkowe_bezsidebara .content.mapka {
  padding: 0; }

body .layout .dodatkowe .dodatkowe_bezsidebara .content .galeria {
  width: 100%;
  height: 300px;
  margin: 0 0 30px 0; }

@media (max-width: 1199px) {
  body .layout .dodatkowe .dodatkowe_bezsidebara .content .galeria {
    width: 100%;
    height: 250px;
    margin: 0 0 30px 0; } }

body .layout .dodatkowe .dodatkowe_bezsidebara .content .galeria img {
  float: left;
  width: 33%;
  height: 100%;
  object-fit: cover; }

body .layout .dodatkowe .dodatkowe_bezsidebara .content .mapa {
  display: block;
  width: 100%;
  margin: 0 auto;
  position: relative; }

body .layout .dodatkowe .dodatkowe_bezsidebara .content .mapa img {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1; }

body .layout .dodatkowe .dodatkowe_bezsidebara .content .mapa img.punktowa {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  opacity: 0.5; }

body .layout .dodatkowe .dodatkowe_bezsidebara .content .mapa a {
  position: absolute;
  z-index: 3;
  width: auto;
  height: 10px;
  text-decoration: none; }

body .layout .dodatkowe .dodatkowe_bezsidebara .content .mapa a::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 1;
  background-color: #00adef;
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%; }

@media (max-width: 500px) {
  body .layout .dodatkowe .dodatkowe_bezsidebara .content .mapa a::before {
    width: 5px;
    height: 5px; } }

body .layout .dodatkowe .dodatkowe_bezsidebara .content .mapa a span {
  opacity: 0;
  font-size: 10px;
  line-height: 10px;
  display: block;
  text-decoration: none;
  margin-top: 10px;
  color: #00adef;
  -webkit-transition: all 300ms ease-in-o ut;
  -moz-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  text-align: center; }

@media (max-width: 500px) {
  body .layout .dodatkowe .dodatkowe_bezsidebara .content .mapa a span {
    font-size: 7px;
    line-height: 7px;
    margin-top: 5px; } }

body .layout .dodatkowe .dodatkowe_bezsidebara .content .mapa a:hover {
  z-index: 4; }

body .layout .dodatkowe .dodatkowe_bezsidebara .content .mapa a:hover span {
  opacity: 1;
  background-color: #ffffff; }

body .layout .dodatkowe .dodatkowe_bezsidebara .content .mapa a:first-child::before {
  background-color: #d3222a; }

body .layout .dodatkowe .dodatkowe_bezsidebara .content .mapa a:first-child span {
  opacity: 1;
  color: #d3222a; }

body .layout .dodatkowe .dodatkowe_bezsidebara .content span.blue {
  color: #00adef; }

body .layout .dodatkowe .dodatkowe_bezsidebara .content ul {
  margin: 15px 0; }

body .layout .dodatkowe .dodatkowe_bezsidebara .content ul li {
  margin-bottom: 10px; }

body .layout .dodatkowe .dodatkowe_bezsidebara .content ul li:last-child {
  margin: 0; }

body .layout .dodatkowe .dodatkowe_bezsidebara .content ul li h4 {
  color: #00adef;
  text-align: inherit;
  display: inline-block;
  margin: 0 5px 0 0; }

body .layout .dodatkowe .dodatkowe_bezsidebara .content.tekstowa ul li {
  list-style: circle;
  list-style-position: inside; }

body .layout .dodatkowe .dodatkowe_bezsidebara .content.tekstowa ol li {
  list-style: decimal;
  list-style-position: inside; }

body .layout .dodatkowe .dodatkowe_bezsidebara .content.tekstowa ol li ul {
  padding: 0 0 0 40px; }

body .layout .dodatkowe .dodatkowe_bezsidebara .content.tekstowa ol li ul li {
  list-style: circle;
  list-style-position: outside; }

body .layout .dodatkowe .dodatkowe_bezsidebara .content.tekstowa h4 {
  color: #000;
  text-align: left;
  font-size: 18px;
  line-height: 28px;
  margin: 30px 0 15px 0; }

body .layout .dodatkowe
.dodatkowe_bezsidebara
.content.tekstowa.newsletter
blockquote
p {
  font-size: 12px;
  line-height: 16px; }

body .layout .dodatkowe
.dodatkowe_bezsidebara
.content.tekstowa.newsletter
blockquote
p
a {
  color: var(--primary-color);
  -webkit-transition: all 300ms ease-in-o ut;
  -moz-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  text-decoration: none; }

body .layout .dodatkowe
.dodatkowe_bezsidebara
.content.tekstowa.newsletter
blockquote
p
a:hover {
  color: #d3222a; }

body .layout .dodatkowe .dodatkowe_bezsidebara .content.tekstowa.newsletter iframe h1 {
  line-height: 1.5; }

@media (max-width: 991px) {
  body .layout .dodatkowe .dodatkowe_bezsidebara .content.tekstowa.newsletter iframe h1 {
    font-size: 24px; } }

body .layout .dodatkowe .dodatkowe_bezsidebara .content.oddzial h1 {
  color: #000;
  font-size: 32px;
  line-height: 42px;
  margin: 0 0 50px 0; }

@media (max-width: 700px) {
  body .layout .dodatkowe .dodatkowe_bezsidebara .content.oddzial h1 {
    font-size: 24px;
    line-height: 34px; } }

body .layout .dodatkowe .dodatkowe_bezsidebara .content.oddzial .overbox {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto; }

body .layout .dodatkowe .dodatkowe_bezsidebara .content.oddzial .overbox .oddzial_mapa {
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  height: 100%; }

@media (max-width: 1000px) {
  body .layout .dodatkowe
.dodatkowe_bezsidebara
.content.oddzial
.overbox
.oddzial_mapa {
    height: 300px;
    width: 100%;
    bottom: 0;
    top: auto; } }

body .layout .dodatkowe
.dodatkowe_bezsidebara
.content.oddzial
.overbox
.oddzial_kontakt {
  width: 100%;
  height: auto;
  float: right;
  background-color: rgba(0, 0, 0, 0.3);
  color: #000;
  padding: 50px;
  position: relative; }

@media (max-width: 1000px) {
  body .layout .dodatkowe
.dodatkowe_bezsidebara
.content.oddzial
.overbox
.oddzial_kontakt {
    width: 100%;
    clear: both; } }

body .layout .dodatkowe
.dodatkowe_bezsidebara
.content.oddzial
.overbox
.oddzial_kontakt
p {
  margin: 0; }

body .layout .dodatkowe
.dodatkowe_bezsidebara
.content.oddzial
.overbox
.oddzial_kontakt
.sygnet {
  position: absolute;
  right: 50px;
  top: 50px;
  width: 50px;
  height: auto;
  display: block; }

@media (max-width: 1199px) {
  body .layout .dodatkowe
.dodatkowe_bezsidebara
.content.oddzial
.overbox
.oddzial_kontakt
.sygnet {
    display: none; } }

body .layout .dodatkowe
.dodatkowe_bezsidebara
.content.oddzial
.overbox
.oddzial_kontakt
.napisz {
  margin: 30px 0;
  display: inline-block;
  background-color: #d3222a;
  line-height: 40px;
  padding: 0 30px 0 60px;
  font-weight: 700;
  font-family: "Lato", sans-serif;
  color: #ffffff;
  -webkit-transition: all 300ms ease-in-o ut;
  -moz-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  background-image: url("https://static.euroterm24.pl/cms/da9047a17c884d0abe82340e58019f87/euroterm_ico_email.png");
  background-size: 20px auto;
  background-position: 15px center;
  background-repeat: no-repeat; }

body .layout .dodatkowe
.dodatkowe_bezsidebara
.content.oddzial
.overbox
.oddzial_kontakt
a,
body .layout .dodatkowe
.dodatkowe_bezsidebara
.content.oddzial
.overbox
.oddzial_kontakt
p {
  position: relative;
  z-index: 2;
  text-decoration: none;
  color: #ffffff;
  -webkit-transition: all 300ms ease-in-o ut;
  -moz-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out; }

body .layout .dodatkowe
.dodatkowe_bezsidebara
.content.oddzial
.overbox
.oddzial_kontakt
a:hover,
body .layout .dodatkowe
.dodatkowe_bezsidebara
.content.oddzial
.overbox
.oddzial_kontakt
p:hover {
  opacity: 0.7; }

body .layout .dodatkowe
.dodatkowe_bezsidebara
.content.oddzial
.overbox
.oddzial_kontakt
a.phone,
body .layout .dodatkowe
.dodatkowe_bezsidebara
.content.oddzial
.overbox
.oddzial_kontakt
p.phone {
  font-size: 32px;
  line-height: 42px;
  padding: 0 0 0 40px;
  font-weight: 700;
  font-family: "Lato", sans-serif;
  position: relative; }

body .layout .dodatkowe
.dodatkowe_bezsidebara
.content.oddzial
.overbox
.oddzial_kontakt
a.phone::before,
body .layout .dodatkowe
.dodatkowe_bezsidebara
.content.oddzial
.overbox
.oddzial_kontakt
p.phone::before {
  position: absolute;
  left: 0;
  top: 5px;
  content: "";
  width: 30px;
  height: 30px;
  background-image: url("https://static.euroterm24.pl/cms/5999090311e24cc3bda71f0817991e93/ico_phone.svg");
  background-size: contain;
  background-repeat: no-repeat; }

body .layout .dodatkowe
.dodatkowe_bezsidebara
.content.oddzial
.overbox
.oddzial_kontakt
a.godziny,
body .layout .dodatkowe
.dodatkowe_bezsidebara
.content.oddzial
.overbox
.oddzial_kontakt
p.godziny,
body .layout .dodatkowe
.dodatkowe_bezsidebara
.content.oddzial
.overbox
.oddzial_kontakt
a.adres,
body .layout .dodatkowe
.dodatkowe_bezsidebara
.content.oddzial
.overbox
.oddzial_kontakt
p.adres {
  padding: 0 0 0 30px;
  position: relative;
  margin-bottom: 30px; }

body .layout .dodatkowe
.dodatkowe_bezsidebara
.content.oddzial
.overbox
.oddzial_kontakt
a.godziny::before,
body .layout .dodatkowe
.dodatkowe_bezsidebara
.content.oddzial
.overbox
.oddzial_kontakt
p.godziny::before,
body .layout .dodatkowe
.dodatkowe_bezsidebara
.content.oddzial
.overbox
.oddzial_kontakt
a.adres::before,
body .layout .dodatkowe
.dodatkowe_bezsidebara
.content.oddzial
.overbox
.oddzial_kontakt
p.adres::before {
  position: absolute;
  left: 0;
  top: 3px;
  content: "";
  line-height: 20px;
  width: 20px;
  height: 20px;
  background-image: url("https://static.euroterm24.pl/cms/d51a0662193d4a65aeab39afc33fecca/ico_clock.svg");
  background-size: contain;
  background-repeat: no-repeat; }

body .layout .dodatkowe
.dodatkowe_bezsidebara
.content.oddzial
.overbox
.oddzial_kontakt
a.adres::before,
body .layout .dodatkowe
.dodatkowe_bezsidebara
.content.oddzial
.overbox
.oddzial_kontakt
p.adres::before {
  background-image: url("https://static.euroterm24.pl/cms/90a1fa6e828a42219016c23a3d72b0e2/ico_place.svg"); }

body .layout .dodatkowe
.dodatkowe_bezsidebara
.content.oddzial
.overbox.mapkaikontakt
.oddzial_kontakt {
  width: 50%; }

@media (max-width: 1000px) {
  body .layout .dodatkowe
.dodatkowe_bezsidebara
.content.oddzial
.overbox.mapkaikontakt
.oddzial_kontakt {
    width: 100%; } }

@media (max-width: 1000px) {
  body .layout .dodatkowe
.dodatkowe_bezsidebara
.content.oddzial
.overbox.mapkaikontakt {
    padding-bottom: 300px; } }

body .layout .dodatkowe .dodatkowe_bezsidebara .content.oddzial .overbox.galerka {
  margin: 0 -15px;
  text-align: center;
  display: block;
  width: calc(100% + 30px); }

body .layout .dodatkowe .dodatkowe_bezsidebara .content.oddzial .overbox .fotko {
  width: calc(50% - 30px);
  display: inline-block;
  height: auto;
  margin: 30px 15px 0 15px; }

body .layout .dodatkowe .dodatkowe_bezsidebara .content.oddzial .overbox .fotko img {
  width: 100%;
  height: auto;
  display: block; }

body .layout .dodatkowe .dodatkowe_bezsidebara .content.oddzial h2 {
  font-size: 32px;
  line-height: 42px;
  margin: 50px 0 30px 0;
  color: #000000;
  text-align: center; }

@media (max-width: 700px) {
  body .layout .dodatkowe .dodatkowe_bezsidebara .content.oddzial h2 {
    font-size: 24px;
    line-height: 34px; } }

body .layout .dodatkowe .dodatkowe_bezsidebara .content.oddzial .oddzial_box {
  margin: 50px auto 0 auto;
  display: block;
  width: 60%;
  position: relative; }

@media (min-width: 992px) {
  body .layout .dodatkowe .dodatkowe_bezsidebara .content.oddzial .oddzial_box {
    padding: 0 230px 0 0;
    min-height: 85px; } }

@media (max-width: 1000px) {
  body .layout .dodatkowe .dodatkowe_bezsidebara .content.oddzial .oddzial_box {
    width: 100%; } }

body .layout .dodatkowe .dodatkowe_bezsidebara .content.oddzial .oddzial_box .date {
  display: inline-block;
  font-size: 14px;
  line-height: 30px;
  height: 30px;
  padding: 0 15px 0 30px;
  color: #ffffff;
  font-weight: 400;
  font-family: "Lato", sans-serif;
  position: relative;
  margin-bottom: 15px; }

body .layout .dodatkowe
.dodatkowe_bezsidebara
.content.oddzial
.oddzial_box
.date::before {
  position: absolute;
  left: 7.5px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 15px;
  height: 15px;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("https://static.euroterm24.pl/cms/d51a0662193d4a65aeab39afc33fecca/ico_clock.svg"); }

body .layout .dodatkowe .dodatkowe_bezsidebara .content.oddzial .oddzial_box .place {
  display: inline-block;
  font-size: 14px;
  line-height: 30px;
  height: 30px;
  padding: 0 15px 0 30px;
  color: #ffffff;
  font-weight: 400;
  font-family: "Lato", sans-serif;
  position: relative;
  margin-bottom: 15px; }

body .layout .dodatkowe
.dodatkowe_bezsidebara
.content.oddzial
.oddzial_box
.place::before {
  position: absolute;
  left: 7.5px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 15px;
  height: 15px;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("https://static.euroterm24.pl/cms/90a1fa6e828a42219016c23a3d72b0e2/ico_place.svg"); }

body .layout .dodatkowe .dodatkowe_bezsidebara .content.oddzial .oddzial_box .button {
  width: 200px;
  padding: 0;
  text-align: center;
  height: 40px;
  line-height: 36px;
  padding: 0 30px;
  background-color: #ffffff;
  margin-top: 10px; }

@media (min-width: 992px) {
  body .layout .dodatkowe .dodatkowe_bezsidebara .content.oddzial .oddzial_box .button {
    text-align: center;
    position: absolute;
    right: 0;
    top: 40px;
    margin: 0; } }

body .layout .dodatkowe
.dodatkowe_bezsidebara
.content.oddzial
.oddzial_box
.button::before,
body .layout .dodatkowe
.dodatkowe_bezsidebara
.content.oddzial
.oddzial_box
.button::after {
  display: none; }

body .layout .dodatkowe
.dodatkowe_bezsidebara
.content.oddzial
.oddzial_box.szkolenie
.date {
  background-color: var(--primary-color); }

body .layout .dodatkowe
.dodatkowe_bezsidebara
.content.oddzial
.oddzial_box.szkolenie
.place {
  background-color: var(--primary-color); }

body .layout .dodatkowe
.dodatkowe_bezsidebara
.content.oddzial
.oddzial_box.szkolenie
h3 {
  color: var(--primary-color); }

body .layout .dodatkowe
.dodatkowe_bezsidebara
.content.oddzial
.oddzial_box.szkolenie
.button {
  border-color: var(--primary-color);
  color: var(--primary-color); }

body .layout .dodatkowe
.dodatkowe_bezsidebara
.content.oddzial
.oddzial_box.szkolenie
.button:hover {
  background-color: var(--primary-color);
  color: #ffffff; }

body .layout .dodatkowe
.dodatkowe_bezsidebara
.content.oddzial
.oddzial_box.praca
.date {
  background-color: var(--primary-color); }

body .layout .dodatkowe .dodatkowe_bezsidebara .content.oddzial .oddzial_box.praca h3 {
  color: var(--primary-color); }

body .layout .dodatkowe
.dodatkowe_bezsidebara
.content.oddzial
.oddzial_box.praca
.button {
  border-color: #000;
  color: #000; }

body .layout .dodatkowe
.dodatkowe_bezsidebara
.content.oddzial
.oddzial_box.praca
.button:hover {
  background-color: var(--primary-color);
  color: #ffffff; }

body .layout .dodatkowe .dodatkowe_bezsidebara .content.podwyzka .podwyzki {
  display: block; }
  body .layout .dodatkowe .dodatkowe_bezsidebara .content.podwyzka .podwyzki h1 {
    text-align: center; }

body .layout .dodatkowe .dodatkowe_bezsidebara .content.podwyzka .podwyzki li {
  margin: 0 0 30px 0;
  display: block;
  width: 100%;
  height: auto;
  overflow: hidden;
  background-color: #f0f0f0; }

@media (min-width: 768px) {
  body .layout .dodatkowe .dodatkowe_bezsidebara .content.podwyzka .podwyzki li {
    padding-right: 210px;
    position: relative;
    box-sizing: border-box; } }

@media (max-width: 991px) {
  body .layout .dodatkowe .dodatkowe_bezsidebara .content.podwyzka .podwyzki li {
    text-align: center; } }

body .layout .dodatkowe .dodatkowe_bezsidebara .content.podwyzka .podwyzki li p {
  padding: 10px 15px;
  margin: 0;
  font-size: 16px;
  color: #000000;
  display: block; }

body .layout .dodatkowe .dodatkowe_bezsidebara .content.podwyzka .podwyzki li a {
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  display: block;
  float: right;
  color: #ffffff;
  padding: 0 15px;
  height: 40px;
  line-height: 40px;
  font-weight: 700;
  font-family: "Lato", sans-serif;
  background-color: var(--primary-color);
  text-decoration: none;
  text-align: center; }

@media (min-width: 768px) {
  body .layout .dodatkowe .dodatkowe_bezsidebara .content.podwyzka .podwyzki li a {
    width: 190px;
    padding: 0;
    top: 0;
    right: 0;
    position: absolute;
    height: 100%; } }

body .layout .dodatkowe .dodatkowe_bezsidebara .content.podwyzka .podwyzki li a:hover {
  background-color: gray; }

@media (max-width: 991px) {
  body .layout .dodatkowe .dodatkowe_bezsidebara .content.podwyzka .podwyzki li a {
    display: inline-block;
    float: none; } }

body .layout .dodatkowe .dodatkowe_tabelka {
  padding: 0 0 100px 0; }

@media (max-width: 991px) {
  body .layout .dodatkowe .dodatkowe_tabelka {
    padding: 0 0 50px 0; } }

body .layout .dodatkowe .dodatkowe_tabelka .tabelka {
  display: block;
  width: 100%;
  height: auto; }

body .layout .dodatkowe .dodatkowe_tabelka .tabelka table {
  width: 100%; }

body .layout .dodatkowe .dodatkowe_tabelka .tabelka table thead {
  background-color: var(--border-color); }

@media (max-width: 1199px) {
  body .layout .dodatkowe .dodatkowe_tabelka .tabelka table thead {
    display: none; } }

body .layout .dodatkowe .dodatkowe_tabelka .tabelka table thead tr th {
  font-weight: 700;
  font-family: "Lato", sans-serif; }

@media (max-width: 1199px) {
  body .layout .dodatkowe .dodatkowe_tabelka .tabelka table tr {
    display: block;
    width: calc(50% - 30px);
    float: left;
    margin-top: 30px;
    padding: 0 15px; } }

@media (max-width: 767px) {
  body .layout .dodatkowe .dodatkowe_tabelka .tabelka table tr {
    width: 100%;
    margin-top: 30px;
    padding: 0; } }

body .layout .dodatkowe .dodatkowe_tabelka .tabelka table tr:nth-child(2n-1) {
  clear: left; }

body .layout .dodatkowe .dodatkowe_tabelka .tabelka table tr td,
body .layout .dodatkowe .dodatkowe_tabelka .tabelka table tr th {
  text-align: center;
  padding: 15px 10px;
  font-size: 14px;
  line-height: 18px; }

@media (max-width: 1199px) {
  body .layout .dodatkowe .dodatkowe_tabelka .tabelka table tr td,
body .layout .dodatkowe .dodatkowe_tabelka .tabelka table tr th {
    display: block;
    width: 100%;
    padding: 5px 0; } }

body .layout .dodatkowe .dodatkowe_tabelka .tabelka table tr td:first-child,
body .layout .dodatkowe .dodatkowe_tabelka .tabelka table tr th:first-child {
  text-align: left; }

@media (max-width: 1199px) {
  body .layout .dodatkowe .dodatkowe_tabelka .tabelka table tr td:first-child,
body .layout .dodatkowe .dodatkowe_tabelka .tabelka table tr th:first-child {
    text-align: center; } }

body .layout .dodatkowe .dodatkowe_tabelka .tabelka table tr td a,
body .layout .dodatkowe .dodatkowe_tabelka .tabelka table tr th a {
  color: #000;
  text-decoration: none;
  -webkit-transition: all 300ms ease-in-o ut;
  -moz-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out; }

body .layout .dodatkowe .dodatkowe_tabelka .tabelka table tr td a:hover,
body .layout .dodatkowe .dodatkowe_tabelka .tabelka table tr th a:hover {
  color: var(--primary-color); }

body .layout .dodatkowe .dodatkowe_tabelka .tabelka table tr td::before {
  margin-right: 5px;
  display: none; }

@media (max-width: 1199px) {
  body .layout .dodatkowe .dodatkowe_tabelka .tabelka table tr td::before {
    display: inline-block; } }

body .layout .dodatkowe .dodatkowe_tabelka .tabelka table tr td:nth-child(1) {
  font-weight: 700;
  font-family: "Lato", sans-serif; }

body .layout .dodatkowe .dodatkowe_tabelka .tabelka table tr td:nth-child(2)::before {
  content: "Godziny otwarcia:"; }

body .layout .dodatkowe .dodatkowe_tabelka .tabelka table tr td:nth-child(3)::before {
  content: "Kod:"; }

body .layout .dodatkowe .dodatkowe_tabelka .tabelka table tr td:nth-child(4)::before {
  content: "Adres:"; }

body .layout .dodatkowe .dodatkowe_tabelka .tabelka table tr td:nth-child(5)::before {
  content: "Telefon:"; }

body .layout .dodatkowe .dodatkowe_tabelka .tabelka table tr td:nth-child(6)::before {
  content: "E-mail:"; }

body .layout .dodatkowe.ofertapracy .sidebar h2 {
  font-size: 32px;
  line-height: 42px; }

@media (max-width: 991px) {
  body .layout .dodatkowe.ofertapracy .sidebar h2 {
    font-size: 24px;
    line-height: 34px; } }

body .layout .dodatkowe.ofertapracy .content.tekstowa .miejscepracy {
  display: inline-block;
  background-color: #00adef;
  color: #ffffff;
  padding: 5px 10px;
  font-weight: 700;
  font-family: "Lato", sans-serif; }

body .layout .dodatkowe.ofertapracy .content.tekstowa .miejscepracy.red {
  background-color: #d3222a; }

body .layout .dodatkowe.ofertapracy .content.tekstowa .h3 {
  font-weight: 700;
  font-family: "Lato", sans-serif;
  color: #00adef; }

body .layout .dodatkowe.ofertapracy .content.tekstowa ul {
  padding: 0 0 0 50px; }

body .layout .dodatkowe.ofertapracy .content.tekstowa ul li {
  position: relative;
  padding: 0 0 0 20px;
  list-style: none; }

body .layout .dodatkowe.ofertapracy .content.tekstowa ul li::before {
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  content: "";
  background-color: #d3222a;
  display: block; }

body .layout .dodatkowe.ofertapracy .content.tekstowa .button.red {
  margin: 0 auto 30px auto; }

body .layout .dodatkowe.ofertapracy .content.tekstowa .rodo p {
  margin-bottom: 10px;
  font-size: 12px;
  line-height: 18px; }

body .layout .dodatkowe.producenci ul {
  display: grid;
  column-gap: 24px;
  row-gap: 24px;
  grid-template-columns: repeat(6, 1fr); }

@media (max-width: 991px) {
  body .layout .dodatkowe.producenci ul {
    grid-template-columns: repeat(3, 1fr); } }

@media (max-width: 500px) {
  body .layout .dodatkowe.producenci ul {
    grid-template-columns: repeat(2, 1fr); } }

body .layout .dodatkowe.producenci ul li {
  text-align: center;
  grid-column: span 1; }
  body .layout .dodatkowe.producenci ul li p {
    font-size: 36px;
    text-transform: uppercase;
    margin-top: 10px;
    font-weight: bold;
    color: #d3222a; }

body .layout .litera {
  grid-column: span 6 !important;
  text-align: left !important; }

@media (max-width: 991px) {
  body .layout .litera {
    grid-column: span 3 !important;
    text-align: center !important; } }

@media (max-width: 500px) {
  body .layout .litera {
    grid-column: span 2 !important; } }

body .layout .dodatkowe.producenci ul li a {
  color: #000;
  text-decoration: none;
  -webkit-transition: all 300ms ease-in-o ut;
  -moz-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  position: relative;
  text-align: center;
  display: block;
  border: solid 1px transparent;
  padding: 15px; }
  body .layout .dodatkowe.producenci ul li a:hover {
    border: solid 1px #d3222a; }
  body .layout .dodatkowe.producenci ul li a span {
    font-size: 14px; }
  body .layout .dodatkowe.producenci ul li a img {
    display: block;
    width: auto;
    height: auto;
    max-height: 80px;
    max-width: 80%;
    margin: 0 auto 5px auto; }
  body .layout .dodatkowe.producenci ul li a:hover {
    color: #d3222a; }

body .layout .dodatkowe.kariera_oddzial .oddzial_box {
  margin: 50px auto 0 auto;
  display: block;
  width: 100%;
  position: relative; }

@media (min-width: 992px) {
  body .layout .dodatkowe.kariera_oddzial .oddzial_box {
    padding: 0 230px 0 0;
    min-height: 85px; } }

@media (max-width: 1000px) {
  body .layout .dodatkowe.kariera_oddzial .oddzial_box {
    width: 100%; } }

body .layout .dodatkowe.kariera_oddzial .oddzial_box .date {
  display: inline-block;
  font-size: 14px;
  line-height: 30px;
  height: 30px;
  padding: 0 15px 0 30px;
  color: #ffffff;
  font-weight: 400;
  font-family: "Lato", sans-serif;
  position: relative;
  margin-bottom: 15px; }

body .layout .dodatkowe.kariera_oddzial .oddzial_box .date::before {
  position: absolute;
  left: 7.5px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 15px;
  height: 15px;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("https://static.euroterm24.pl/cms/d51a0662193d4a65aeab39afc33fecca/ico_clock.svg"); }

body .layout .dodatkowe.kariera_oddzial .oddzial_box .place {
  display: inline-block;
  font-size: 14px;
  line-height: 30px;
  height: 30px;
  padding: 0 15px 0 30px;
  color: #ffffff;
  font-weight: 400;
  font-family: "Lato", sans-serif;
  position: relative;
  margin-bottom: 15px; }

body .layout .dodatkowe.kariera_oddzial .oddzial_box .place::before {
  position: absolute;
  left: 7.5px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 15px;
  height: 15px;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("https://static.euroterm24.pl/cms/90a1fa6e828a42219016c23a3d72b0e2/ico_place.svg"); }

body .layout .dodatkowe.kariera_oddzial .oddzial_box .button {
  width: 180px;
  padding: 0;
  height: 40px;
  line-height: 36px;
  background-color: #ffffff;
  margin-top: 10px; }

@media (min-width: 992px) {
  body .layout .dodatkowe.kariera_oddzial .oddzial_box .button {
    text-align: center;
    position: absolute;
    right: 0;
    top: 40px;
    margin: 0; } }

body .layout .dodatkowe.kariera_oddzial .oddzial_box .button::before,
body .layout .dodatkowe.kariera_oddzial .oddzial_box .button::after {
  display: none; }

body .layout .dodatkowe.kariera_oddzial .oddzial_box.szkolenie .date {
  background-color: var(--primary-color); }

body .layout .dodatkowe.kariera_oddzial .oddzial_box.szkolenie .place {
  background-color: var(--primary-color); }

body .layout .dodatkowe.kariera_oddzial .oddzial_box.szkolenie h3 {
  color: var(--primary-color); }

body .layout .dodatkowe.kariera_oddzial .oddzial_box.szkolenie .button {
  border-color: var(--primary-color);
  color: var(--primary-color); }

body .layout .dodatkowe.kariera_oddzial .oddzial_box.szkolenie .button:hover {
  background-color: var(--primary-color);
  color: #ffffff; }

body .layout .dodatkowe.kariera_oddzial .oddzial_box.praca .date {
  background-color: var(--primary-color); }

body .layout .dodatkowe.kariera_oddzial .oddzial_box.praca h3 {
  color: var(--primary-color); }

body .layout .dodatkowe.kariera_oddzial .oddzial_box.praca .button {
  border-color: #000;
  color: #000; }

body .layout .dodatkowe.kariera_oddzial .oddzial_box.praca .button:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #ffffff; }

body .layout .dodatkowe.szkolenie .fotko {
  margin-bottom: 50px;
  width: 100%;
  height: auto; }

body .layout .dodatkowe.szkolenie .fotko img {
  display: block;
  width: auto;
  height: auto;
  margin: auto;
  max-width: 100%; }

body .layout .dodatkowe.instrukcja ul {
  display: block;
  margin: 0 auto 85px auto;
  max-width: 1200px; }

body .layout .dodatkowe.instrukcja ul li {
  margin-bottom: 5px; }

body .layout .dodatkowe.instrukcja ul li a {
  color: #000000;
  -webkit-transition: all 300ms ease-in-o ut;
  -moz-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  text-decoration: none;
  font-size: 16px;
  line-height: 26px; }

body .layout .dodatkowe.instrukcja ul li a:hover {
  color: var(--primary-color); }

body .layout .dodatkowe.instrukcja .instrukcja_strony {
  display: block; }

body .layout .dodatkowe.instrukcja .instrukcja_strony .strona {
  display: block;
  max-width: 1200px;
  margin: 0 auto 100px auto; }

body .layout .dodatkowe.instrukcja .instrukcja_strony .strona img {
  display: block;
  width: auto;
  margin: auto;
  max-width: 100%;
  height: auto; }

body .layout .dodatkowe.instrukcja .backtotop {
  position: fixed;
  z-index: 9;
  right: 30px;
  bottom: 30px;
  width: 70px;
  height: 70px;
  box-sizing: border-box;
  text-decoration: none;
  text-align: center;
  padding: 15px;
  line-height: 20px;
  background-color: #00adef;
  color: #ffffff;
  border-radius: 35px;
  -webkit-border-radius: 35px;
  -moz-border-radius: 35px;
  -webkit-transition: all 300ms ease-in-o ut;
  -moz-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out; }

body .layout .dodatkowe.instrukcja .backtotop:hover {
  background-color: #d3222a; }

body .layout .dodatkowe iframe {
  width: 100%;
  display: block;
  height: 900px; }

@media (max-width: 1199px) {
  body .layout .dodatkowe iframe {
    height: 1110px; } }

@media (max-width: 991px) {
  body .layout .dodatkowe iframe {
    height: 1800px; } }

body .layout .dodatkowe table {
  border: solid 1px #d3222a;
  margin: 30px 0;
  width: 100%; }

@media (min-width: 768px) {
  body .layout .dodatkowe table {
    display: table; } }
  body .layout .dodatkowe table thead tr {
    width: 100%;
    height: auto;
    border-bottom: solid 1px #d3222a; }
    body .layout .dodatkowe table thead tr th {
      border-right: solid 1px #d3222a;
      background-color: #efefef;
      text-align: center;
      color: #000;
      vertical-align: middle;
      padding: 7px;
      font-size: 16px;
      text-transform: uppercase; }
      body .layout .dodatkowe table thead tr th:last-child {
        border-right: none; }
  body .layout .dodatkowe table tbody tr {
    width: 100%;
    height: auto;
    border-bottom: solid 1px #d3222a; }
    body .layout .dodatkowe table tbody tr:last-child {
      border-bottom: none; }
    body .layout .dodatkowe table tbody tr td {
      border-right: solid 1px #d3222a;
      padding: 7px; }
      body .layout .dodatkowe table tbody tr td:last-child {
        border-right: none; }

body .layout .dodatkowe iframe.formularz {
  min-height: 800px; }

@media (max-width: 767px) {
  body .layout .dodatkowe iframe.formularz {
    min-height: 900px; } }

body .layout .dodatkowe iframe.formularz_iframe.formularz_iframe_szkolenie {
  height: 720px; }

@media (max-width: 767px) {
  body .layout .dodatkowe iframe.formularz_iframe.formularz_iframe_szkolenie {
    height: 750px; } }

body .layout .dodatkowe iframe.formularz_iframe.formularz_iframe_praca {
  height: 720px; }

@media (max-width: 767px) {
  body .layout .dodatkowe iframe.formularz_iframe.formularz_iframe_praca {
    height: 750px; } }

body .layout .dodatkowe.dlaczegowarto .dodatkowe_bezsidebara {
  z-index: 4;
  position: relative; }

body .layout .dodatkowe.dlaczegowarto
.dodatkowe_bezsidebara
.dodatkowe_container
.sidebar
h2 {
  font-size: 24px;
  line-height: 1.4;
  color: #ffffff; }

body .layout .dodatkowe.dlaczegowarto
.dodatkowe_bezsidebara
.dodatkowe_container
.sidebar
ul
li
a {
  background-color: transparent;
  color: #ffffff; }

body .layout .dodatkowe.dlaczegowarto
.dodatkowe_bezsidebara
.dodatkowe_container
.sidebar
ul
li
a:hover {
  background-color: rgba(0, 173, 239, 0.5); }

body .layout .dodatkowe.dlaczegowarto
.dodatkowe_bezsidebara
.dodatkowe_container
.sidebar
ul
li:nth-child(2n + 1)
a {
  background-color: rgba(0, 173, 239, 0.17); }

body .layout .dodatkowe.dlaczegowarto
.dodatkowe_bezsidebara
.dodatkowe_container
.sidebar
ul
li:nth-child(2n + 1)
a:hover {
  background-color: rgba(0, 173, 239, 0.5); }

body .layout .dodatkowe.dlaczegowarto
.dodatkowe_bezsidebara
.dodatkowe_container
.content
h1 {
  color: #ffffff; }

body .layout .dodatkowe.dlaczegowarto
.dodatkowe_bezsidebara
.dodatkowe_container
.content
.dlaczegopanel {
  display: block;
  margin-top: 50px; }

@media (max-width: 991px) {
  body .layout .dodatkowe.dlaczegowarto
.dodatkowe_bezsidebara
.dodatkowe_container
.content
.dlaczegopanel {
    margin-top: 30px; } }

body .layout .dodatkowe.dlaczegowarto
.dodatkowe_bezsidebara
.dodatkowe_container
.content
.dlaczegopanel
h2 {
  text-align: left;
  font-size: 24px;
  line-height: 1.4;
  font-weight: 700;
  font-family: "Lato", sans-serif; }

@media (max-width: 991px) {
  body .layout .dodatkowe.dlaczegowarto
.dodatkowe_bezsidebara
.dodatkowe_container
.content
.dlaczegopanel
h2 {
    font-size: 20px; } }

body .layout .dodatkowe.dlaczegowarto
.dodatkowe_bezsidebara
.dodatkowe_container
.content
.dlaczegopanel
ul {
  padding: 0 0 0 50px; }

body .layout .dodatkowe.dlaczegowarto
.dodatkowe_bezsidebara
.dodatkowe_container
.content
.dlaczegopanel
ul
li {
  padding: 0 0 0 30px;
  color: #ffffff;
  display: block;
  position: relative; }

body .layout .dodatkowe.dlaczegowarto
.dodatkowe_bezsidebara
.dodatkowe_container
.content
.dlaczegopanel
ul
li::before {
  width: 8px;
  height: 8px;
  position: absolute;
  left: 0;
  top: 10px;
  content: "";
  background-color: #d3222a;
  display: block; }

body .layout .dodatkowe.dlaczegowarto .bgimg {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  width: 100%;
  height: 100%; }

body .layout .dodatkowe.dlaczegowarto .bgimg_ksztalt {
  position: absolute;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 2; }

body .layout .dodatkowe.dlaczegowarto .bgimg_ksztalt.gora {
  top: 0; }

body .layout .dodatkowe.dlaczegowarto .bgimg_ksztalt.dol {
  bottom: 0; }

body .layout .dodatkowe.dlaczegowarto .ksztalt {
  z-index: 3; }

body .layout .dodatkowe .platnosci_logo {
  display: inline-block;
  margin-left: 15px; }

body .layout .static-page {
  margin-top: 15px;
  min-height: 200px;
  background-color: #fff; }

body .layout .brands {
  color: #313437;
  background-color: #fff; }

body .layout .brands a {
  display: block;
  text-align: center;
  padding: 40px 0; }

@media (max-width: 767px) {
  body .layout .brands a {
    padding: 30px 0; } }

body .layout .brands a img {
  display: inline-block;
  margin: 10px 20px;
  vertical-align: middle; }

body .layout .product-title-container {
  font-size: 1.125em;
  margin-bottom: 0; }
  body .layout .product-title-container .image-container {
    height: 24px; }
  body .layout .product-title-container .v-lazy-image {
    filter: blur(10px);
    transition: filter 0.7s; }
  body .layout .product-title-container .v-lazy-image-loaded {
    filter: blur(0);
    max-height: 100%; }

body .layout .one-product-tile-information__title {
  position: relative;
  font-size: 0.75rem;
  display: flex;
  align-items: center; }
  body .layout .one-product-tile-information__title--border {
    border-left: 2px solid var(--primary-color);
    padding-left: 10px; }
  body .layout .one-product-tile-information__title b {
    margin-left: 2px; }

body .layout .one-product-tile-information__select .dropdown-menu {
  z-index: 1;
  max-height: 240px !important; }

body .layout .footer_popularne_platnosci {
  display: block;
  margin: 10px auto;
  width: 100%;
  height: auto;
  max-width: 100%; }

body .layout .one-footer {
  /* Generated by less 2.5.1 */ }
  body .layout .one-footer .animate {
    -webkit-transition: all 300ms ease-in-o ut;
    -moz-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out; }
  body .layout .one-footer .font-bold {
    font-weight: 700;
    font-family: "Lato", sans-serif; }
  body .layout .one-footer .font-regular {
    font-weight: 400;
    font-family: "Lato", sans-serif; }
  body .layout .one-footer .footer-component {
    font-size: 12px;
    line-height: 20px; }
  body .layout .one-footer .footer-component .text-center {
    text-align: left !important; }
  body .layout .one-footer .footer-component iframe {
    height: 435px;
    min-width: 160px; }

@media (max-width: 1199px) {
  body .layout .one-footer .footer-component iframe {
    height: 520px; } }

@media (max-width: 991px) {
  body .layout .one-footer .footer-component iframe {
    height: 410px; } }

@media (max-width: 767px) {
  body .layout .one-footer .footer-component iframe {
    height: 245px;
    min-width: 290px; } }
  body .layout .one-footer .footer-component iframe .fmForm .cta-button {
    margin-bottom: 50px; }
  body .layout .one-footer .footer-component hr {
    margin: 1rem 0; }
  body .layout .one-footer .footer-component .header {
    font-size: 1rem; }
  body .layout .one-footer .footer-component .button {
    width: auto;
    height: 30px;
    border: solid 1px var(--primary-color);
    font-size: 12px;
    line-height: 28px;
    display: inline-block;
    margin: 0;
    background: var(--primary-color);
    color: #ffffff;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    padding: 0 15px; }
  body .layout .one-footer .footer-component .button:hover {
    color: var(--primary-color);
    background-color: #ffffff; }
  body .layout .one-footer .footer-component .button::before,
body .layout .one-footer .footer-component .button::after {
    display: none; }
  body .layout .one-footer .footer-component ul {
    padding: 0;
    margin: 0; }
  body .layout .one-footer .footer-component .social {
    overflow: hidden; }
  body .layout .one-footer .footer-component .social a {
    float: left;
    width: 20px;
    height: auto; }
  body .layout .one-footer .footer-component .social a:first-child {
    margin: 0 10px 0 0; }
  body .layout .one-footer .footer-component .social a img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0; }
  body .layout .one-footer .footer-component p {
    margin-bottom: 15px; }
  body .layout .one-footer .footer-component p a {
    color: #000;
    -webkit-transition: all 300ms ease-in-o ut;
    -moz-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out; }
  body .layout .one-footer .footer-component p a:hover {
    color: #d3222a; }
  body .layout .one-footer .footer-component li {
    list-style: none;
    margin-bottom: 0.5rem; }
  body .layout .one-footer .footer-component li a {
    -webkit-transition: all 300ms ease-in-o ut;
    -moz-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out; }
  body .layout .one-footer .footer-component li a:hover {
    color: var(--primary-color); }
  body .layout .one-footer .footer-component .phone,
body .layout .one-footer .footer-component .formularz {
    padding: 0 0 0 20px;
    position: relative; }
  body .layout .one-footer .footer-component .phone::before,
body .layout .one-footer .footer-component .formularz::before {
    content: "";
    display: block;
    background-image: url("https://static.euroterm24.pl/cms/55a6a6f5713a43fda9ad9be6e4f435ff/ico_phone_red.png");
    background-size: contain;
    background-repeat: no-repeat;
    width: 15px;
    height: 15px;
    position: absolute;
    left: 0;
    top: 0; }
  body .layout .one-footer .footer-component .phone::before {
    background-image: url("https://static.euroterm24.pl/cms/55a6a6f5713a43fda9ad9be6e4f435ff/ico_phone_red.png"); }
  body .layout .one-footer .footer-component .formularz::before {
    background-image: url("https://static.euroterm24.pl/cms/048d545617194a259617a0e29694236f/ico_email_red.png"); }
  body .layout .one-footer .footer-component .mapa {
    display: block;
    width: 100%;
    max-width: 220px;
    margin: 0 auto;
    position: relative; }
  body .layout .one-footer .footer-component .mapa img {
    display: block;
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1; }
  body .layout .one-footer .footer-component .mapa img.punktowa {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    opacity: 0.5; }
  body .layout .one-footer .footer-component .mapa a {
    position: absolute;
    z-index: 3;
    width: 4px;
    height: 4px;
    text-decoration: none; }
  body .layout .one-footer .footer-component .mapa a:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 1;
    -webkit-transition: all 300ms ease-in-o ut;
    -moz-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    background-color: var(--primary-color);
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%; }

@media (max-width: 500px) {
  body .layout .one-footer .footer-component .mapa a:before {
    width: 5px;
    height: 5px; } }
  body .layout .one-footer .footer-component .mapa a:hover {
    z-index: 4; }
  body .layout .one-footer .footer-component .mapa a:hover:before {
    background-color: var(--primary-color); }
  body .layout .one-footer .footer-component .mapa a:first-child:before {
    background-color: var(--primary-color); }
  body .layout .one-footer .footer-component .mapa a.mapalink {
    position: relative;
    width: 100%;
    height: auto;
    display: block;
    z-index: 1; }
  body .layout .one-footer .footer-component .mapa a.mapalink:hover {
    z-index: 1; }
  body .layout .one-footer .footer-component .mapa a.mapalink::before {
    display: none; }
  body .layout .one-footer .animate {
    -webkit-transition: all 300ms ease-in-o ut;
    -moz-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out; }
  body .layout .one-footer .font-bold {
    font-weight: 700;
    font-family: "Lato", sans-serif; }
  body .layout .one-footer .font-regular {
    font-weight: 400;
    font-family: "Lato", sans-serif; }
  body .layout .one-footer .footer-component {
    font-size: 12px;
    line-height: 20px; }
  body .layout .one-footer .footer-component .text-center {
    text-align: left !important; }
  body .layout .one-footer .footer-component iframe {
    height: 435px;
    min-width: 160px; }

@media (max-width: 1199px) {
  body .layout .one-footer .footer-component iframe {
    height: 520px; } }

@media (max-width: 991px) {
  body .layout .one-footer .footer-component iframe {
    height: 410px; } }

@media (max-width: 767px) {
  body .layout .one-footer .footer-component iframe {
    height: 245px;
    min-width: 290px; } }
  body .layout .one-footer .footer-component iframe .fmForm .cta-button {
    margin-bottom: 50px; }
  body .layout .one-footer .footer-component hr {
    margin: 1rem 0; }
  body .layout .one-footer .footer-component .header {
    font-size: 1rem; }
  body .layout .one-footer .footer-component .button {
    width: auto;
    height: 30px;
    border: solid 1px var(--primary-color);
    font-size: 12px;
    line-height: 28px;
    display: inline-block;
    margin: 0;
    background: #00adef;
    color: #ffffff;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    padding: 0 15px; }
  body .layout .one-footer .footer-component .button:hover {
    color: #00adef;
    background-color: #ffffff; }
  body .layout .one-footer .footer-component .button::before,
body .layout .one-footer .footer-component .button::after {
    display: none; }
  body .layout .one-footer .footer-component ul {
    padding: 0;
    margin: 0; }
  body .layout .one-footer .footer-component .social {
    overflow: hidden; }
  body .layout .one-footer .footer-component .social a {
    float: left;
    width: 20px;
    height: auto; }
  body .layout .one-footer .footer-component .social a:first-child {
    margin: 0 10px 0 0; }
  body .layout .one-footer .footer-component .social a img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0; }
  body .layout .one-footer .footer-component p {
    margin-bottom: 15px; }
  body .layout .one-footer .footer-component p a {
    color: var(--primary-color);
    -webkit-transition: all 300ms ease-in-o ut;
    -moz-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out; }
  body .layout .one-footer .footer-component p a:hover {
    color: #000; }
  body .layout .one-footer .footer-component li {
    list-style: none;
    margin-bottom: 0.5rem; }
  body .layout .one-footer .footer-component li a {
    -webkit-transition: all 300ms ease-in-o ut;
    -moz-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out; }
  body .layout .one-footer .footer-component li a:hover {
    color: var(--primary-color); }
  body .layout .one-footer .footer-component .phone,
body .layout .one-footer .footer-component .formularz {
    padding: 0 0 0 20px;
    position: relative; }
  body .layout .one-footer .footer-component .phone::before,
body .layout .one-footer .footer-component .formularz::before {
    content: "";
    display: block;
    background-image: url("https://static.euroterm24.pl/cms/55a6a6f5713a43fda9ad9be6e4f435ff/ico_phone_red.png");
    background-size: contain;
    background-repeat: no-repeat;
    width: 15px;
    height: 15px;
    position: absolute;
    left: 0;
    top: 0; }
  body .layout .one-footer .footer-component .phone::before {
    background-image: url("https://static.euroterm24.pl/cms/55a6a6f5713a43fda9ad9be6e4f435ff/ico_phone_red.png"); }
  body .layout .one-footer .footer-component .formularz::before {
    background-image: url("https://static.euroterm24.pl/cms/048d545617194a259617a0e29694236f/ico_email_red.png"); }
  body .layout .one-footer .footer-component .mapa {
    display: block;
    width: 100%;
    max-width: 220px;
    margin: 0 auto;
    position: relative; }
  body .layout .one-footer .footer-component .mapa img {
    display: block;
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1; }
  body .layout .one-footer .footer-component .mapa img.punktowa {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    opacity: 0.5; }
  body .layout .one-footer .footer-component .mapa a {
    position: absolute;
    z-index: 3;
    width: 4px;
    height: 4px;
    text-decoration: none; }
  body .layout .one-footer .footer-component .mapa a:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 1;
    -webkit-transition: all 300ms ease-in-o ut;
    -moz-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    background-color: var(--primary-color);
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%; }

@media (max-width: 500px) {
  body .layout .one-footer .footer-component .mapa a:before {
    width: 5px;
    height: 5px; } }
  body .layout .one-footer .footer-component .mapa a:hover {
    z-index: 4; }
  body .layout .one-footer .footer-component .mapa a:hover:before {
    background-color: var(--primary-color); }
  body .layout .one-footer .footer-component .mapa a:first-child:before {
    background-color: var(--primary-color); }
  body .layout .one-footer .footer-component .mapa a.mapalink {
    position: relative;
    width: 100%;
    height: auto;
    display: block;
    z-index: 1; }
  body .layout .one-footer .footer-component .mapa a.mapalink:hover {
    z-index: 1; }
  body .layout .one-footer .footer-component .mapa a.mapalink::before {
    display: none; }

body .layout .one-cms-category-overview__sidebar a,
body .layout .header-container__bottom-header a {
  -webkit-transition: all 300ms ease-in-o ut;
  -moz-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out; }
  body .layout .one-cms-category-overview__sidebar a:hover,
body .layout .header-container__bottom-header a:hover {
    color: var(--primary-color); }

body .header_ue_button {
  width: auto;
  height: 30px;
  margin-left: 15px;
  display: block; }
  body .header_ue_button img {
    display: block;
    width: auto;
    height: 100%;
    -webkit-transition: all 300ms ease-in-o ut;
    -moz-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out; }
  body .header_ue_button:hover img {
    opacity: 0.6; }

body .download_button_pdf {
  position: relative;
  display: inline-block;
  width: auto;
  height: auto;
  color: #d3222a;
  -webkit-transition: all 300ms ease-in-o ut;
  -moz-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  padding: 0 0 0 25px !important;
  line-height: 20px !important; }
  body .download_button_pdf::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    content: "";
    background-image: url("https://static.euroterm24.pl/cms/6968ada6f6b7455c88ecf75b2e273a68/download-circular-button.png");
    background-size: contain;
    background-repeat: no-repeat; }
  body .download_button_pdf:hover {
    color: #000000; }

body .one-product-download .one-product-download__link {
  -webkit-transition: all 300ms ease-in-o ut;
  -moz-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  color: #d3222a; }
  body .one-product-download .one-product-download__link i {
    -webkit-transition: all 300ms ease-in-o ut;
    -moz-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out; }
  body .one-product-download .one-product-download__link:hover {
    color: #000000; }
    body .one-product-download .one-product-download__link:hover i {
      color: #000000; }

body .layout .dodatkowe_bezsidebara .dodatkowe_container .podwyzkanowa .podwyzka2021 {
  margin-top: 30px;
  padding: 30px 30px 30px 35px;
  border-left: solid 3px #d3222a;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
  position: relative;
  display: block; }

@media (max-width: 991px) {
  body .layout .dodatkowe_bezsidebara .dodatkowe_container .podwyzkanowa .podwyzka2021 {
    padding: 15px 15px 15px 20px; } }
  body .layout .dodatkowe_bezsidebara .dodatkowe_container .podwyzkanowa .podwyzka2021::before, body .layout .dodatkowe_bezsidebara .dodatkowe_container .podwyzkanowa .podwyzka2021::after {
    width: 30px;
    height: 2px;
    background-color: #d3222a;
    position: absolute;
    content: "";
    -webkit-transition: all 300ms ease-in-o ut;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    display: block;
    -webkit-transition: all 300ms ease-in-o ut;
    -moz-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out; }

@media (max-width: 991px) {
  body .layout .dodatkowe_bezsidebara .dodatkowe_container .podwyzkanowa .podwyzka2021::before, body .layout .dodatkowe_bezsidebara .dodatkowe_container .podwyzkanowa .podwyzka2021::after {
    width: 20px; } }
  body .layout .dodatkowe_bezsidebara .dodatkowe_container .podwyzkanowa .podwyzka2021::before {
    right: 30px;
    top: 50px;
    -moz-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg); }

@media (max-width: 991px) {
  body .layout .dodatkowe_bezsidebara .dodatkowe_container .podwyzkanowa .podwyzka2021::before {
    top: 30px;
    right: 15px; } }
  body .layout .dodatkowe_bezsidebara .dodatkowe_container .podwyzkanowa .podwyzka2021::after {
    right: 30px;
    top: 50px; }

@media (max-width: 991px) {
  body .layout .dodatkowe_bezsidebara .dodatkowe_container .podwyzkanowa .podwyzka2021::after {
    top: 30px;
    right: 15px; } }
  body .layout .dodatkowe_bezsidebara .dodatkowe_container .podwyzkanowa .podwyzka2021 h3 {
    font-size: 24px;
    font-weight: 400; }

@media (max-width: 991px) {
  body .layout .dodatkowe_bezsidebara .dodatkowe_container .podwyzkanowa .podwyzka2021 h3 {
    font-size: 18px; } }
  body .layout .dodatkowe_bezsidebara .dodatkowe_container .podwyzkanowa .podwyzka2021 .podwyzki {
    display: none;
    visibility: hidden;
    opacity: 0;
    width: 100%;
    overflow: hidden;
    -webkit-transition: all 300ms ease-in-o ut;
    -moz-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out; }
    body .layout .dodatkowe_bezsidebara .dodatkowe_container .podwyzkanowa .podwyzka2021 .podwyzki li {
      width: calc(25% - 37.5px);
      margin-right: 50px;
      float: left;
      list-style: none;
      margin-top: 30px; }
      body .layout .dodatkowe_bezsidebara .dodatkowe_container .podwyzkanowa .podwyzka2021 .podwyzki li .wartosc {
        display: inline-block;
        color: white;
        background-color: #d3222a;
        padding: 0 5px;
        font-size: 10px;
        line-height: 20px;
        margin: 0; }
      body .layout .dodatkowe_bezsidebara .dodatkowe_container .podwyzkanowa .podwyzka2021 .podwyzki li .info {
        font-size: 16px;
        line-height: 26px;
        margin: 5px 0;
        display: block;
        color: #000000; }
      body .layout .dodatkowe_bezsidebara .dodatkowe_container .podwyzkanowa .podwyzka2021 .podwyzki li .url {
        padding: 0 0 0 30px;
        position: relative;
        font-size: 12px;
        -webkit-transition: all 300ms ease-in-o ut;
        -moz-transition: all 300ms ease-in-out;
        -o-transition: all 300ms ease-in-out;
        transition: all 300ms ease-in-out;
        display: inline-block;
        color: #000000;
        text-decoration: none; }
        body .layout .dodatkowe_bezsidebara .dodatkowe_container .podwyzkanowa .podwyzka2021 .podwyzki li .url::before {
          position: absolute;
          top: 0;
          bottom: 0;
          left: 0;
          background-color: #d3222a;
          width: 25px;
          height: 1px;
          -webkit-transition: all 300ms ease-in-o ut;
          -moz-transition: all 300ms ease-in-out;
          -o-transition: all 300ms ease-in-out;
          transition: all 300ms ease-in-out;
          content: "";
          display: block;
          margin: auto; }
        body .layout .dodatkowe_bezsidebara .dodatkowe_container .podwyzkanowa .podwyzka2021 .podwyzki li .url:hover {
          padding: 0; }
          body .layout .dodatkowe_bezsidebara .dodatkowe_container .podwyzkanowa .podwyzka2021 .podwyzki li .url:hover::before {
            width: 0; }

@media (min-width: 992px) {
  body .layout .dodatkowe_bezsidebara .dodatkowe_container .podwyzkanowa .podwyzka2021 .podwyzki li {
    width: calc(25% - 37.5px);
    margin-right: 50px; }
    body .layout .dodatkowe_bezsidebara .dodatkowe_container .podwyzkanowa .podwyzka2021 .podwyzki li:nth-child(4n) {
      margin-right: 0; }
    body .layout .dodatkowe_bezsidebara .dodatkowe_container .podwyzkanowa .podwyzka2021 .podwyzki li:nth-child(4n + 1) {
      clear: both; } }

@media (min-width: 600px) and (max-width: 991px) {
  body .layout .dodatkowe_bezsidebara .dodatkowe_container .podwyzkanowa .podwyzka2021 .podwyzki li {
    width: calc(33% - 37.5px);
    margin-right: 50px; }
    body .layout .dodatkowe_bezsidebara .dodatkowe_container .podwyzkanowa .podwyzka2021 .podwyzki li:nth-child(3n) {
      margin-right: 0; }
    body .layout .dodatkowe_bezsidebara .dodatkowe_container .podwyzkanowa .podwyzka2021 .podwyzki li:nth-child(3n + 1) {
      clear: both; } }

@media (min-width: 400px) and (max-width: 599px) {
  body .layout .dodatkowe_bezsidebara .dodatkowe_container .podwyzkanowa .podwyzka2021 .podwyzki li {
    width: calc(50% - 15px);
    margin-right: 30px; }
    body .layout .dodatkowe_bezsidebara .dodatkowe_container .podwyzkanowa .podwyzka2021 .podwyzki li:nth-child(2n) {
      margin-right: 0; }
    body .layout .dodatkowe_bezsidebara .dodatkowe_container .podwyzkanowa .podwyzka2021 .podwyzki li:nth-child(2n + 1) {
      clear: both; } }

@media (max-width: 399px) {
  body .layout .dodatkowe_bezsidebara .dodatkowe_container .podwyzkanowa .podwyzka2021 .podwyzki li {
    width: 100%;
    margin-right: 0;
    float: none; } }

body .layout .dodatkowe_bezsidebara .dodatkowe_container .podwyzkanowa input[type="checkbox"] {
  display: none; }

body .layout .dodatkowe_bezsidebara .dodatkowe_container .podwyzkanowa input[type="checkbox"]:checked + label::before {
  -moz-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg); }

body .layout .dodatkowe_bezsidebara .dodatkowe_container .podwyzkanowa input[type="checkbox"]:checked + label > .podwyzki {
  visibility: visible;
  opacity: 1;
  margin-top: 15px;
  -webkit-animation-delay: 300ms;
  animation-delay: 300ms;
  height: auto;
  display: block; }

body .layout .dodatkowe_bezsidebara .dodatkowe_container .promocjanowa .szczegolyoferty {
  margin-bottom: 30px;
  padding: 30px 30px 30px 35px;
  border-left: solid 3px #d3222a;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
  position: relative;
  display: block; }

@media (max-width: 991px) {
  body .layout .dodatkowe_bezsidebara .dodatkowe_container .promocjanowa .szczegolyoferty {
    padding: 15px 15px 15px 20px; } }
  body .layout .dodatkowe_bezsidebara .dodatkowe_container .promocjanowa .szczegolyoferty::before, body .layout .dodatkowe_bezsidebara .dodatkowe_container .promocjanowa .szczegolyoferty::after {
    width: 30px;
    height: 2px;
    background-color: #d3222a;
    position: absolute;
    content: "";
    -webkit-transition: all 300ms ease-in-o ut;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    display: block;
    -webkit-transition: all 300ms ease-in-o ut;
    -moz-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out; }

@media (max-width: 991px) {
  body .layout .dodatkowe_bezsidebara .dodatkowe_container .promocjanowa .szczegolyoferty::before, body .layout .dodatkowe_bezsidebara .dodatkowe_container .promocjanowa .szczegolyoferty::after {
    width: 20px; } }
  body .layout .dodatkowe_bezsidebara .dodatkowe_container .promocjanowa .szczegolyoferty::before {
    right: 30px;
    top: 50px;
    -moz-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg); }

@media (max-width: 991px) {
  body .layout .dodatkowe_bezsidebara .dodatkowe_container .promocjanowa .szczegolyoferty::before {
    top: 30px;
    right: 15px; } }
  body .layout .dodatkowe_bezsidebara .dodatkowe_container .promocjanowa .szczegolyoferty::after {
    right: 30px;
    top: 50px; }

@media (max-width: 991px) {
  body .layout .dodatkowe_bezsidebara .dodatkowe_container .promocjanowa .szczegolyoferty::after {
    top: 30px;
    right: 15px; } }
  body .layout .dodatkowe_bezsidebara .dodatkowe_container .promocjanowa .szczegolyoferty h3 {
    font-size: 24px;
    font-weight: 400; }

@media (max-width: 991px) {
  body .layout .dodatkowe_bezsidebara .dodatkowe_container .promocjanowa .szczegolyoferty h3 {
    font-size: 18px; } }
  body .layout .dodatkowe_bezsidebara .dodatkowe_container .promocjanowa .szczegolyoferty .szczegolyoferty_content {
    display: none; }
    body .layout .dodatkowe_bezsidebara .dodatkowe_container .promocjanowa .szczegolyoferty .szczegolyoferty_content p {
      margin-top: 15px; }
    body .layout .dodatkowe_bezsidebara .dodatkowe_container .promocjanowa .szczegolyoferty .szczegolyoferty_content a {
      color: #d3222a;
      text-decoration: none;
      transition: 300ms; }
      body .layout .dodatkowe_bezsidebara .dodatkowe_container .promocjanowa .szczegolyoferty .szczegolyoferty_content a:hover {
        color: black; }

body .layout .dodatkowe_bezsidebara .dodatkowe_container .promocjanowa input[type="checkbox"] {
  display: none; }

body .layout .dodatkowe_bezsidebara .dodatkowe_container .promocjanowa input[type="checkbox"]:checked + label::before {
  -moz-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg); }

body .layout .dodatkowe_bezsidebara .dodatkowe_container .promocjanowa input[type="checkbox"]:checked + label > .szczegolyoferty_content {
  display: block;
  margin-top: 15px;
  -webkit-animation-delay: 300ms;
  animation-delay: 300ms;
  height: auto;
  display: block; }

body.blog h2.my-2 {
  position: relative; }
  body.blog h2.my-2::before {
    display: block;
    width: 100%;
    height: 290px;
    content: "";
    position: relative;
    background-image: url("https://static.euroterm24.pl/cms/b8ac6763704e49c8a27bd748a6cf99b5-baner-blog.webp");
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
    background-size: 100% 100%; }

@media (max-width: 1199px) {
  body.blog h2.my-2::before {
    height: 250px; } }

@media (max-width: 991px) {
  body.blog h2.my-2::before {
    height: 200px; } }

@media (max-width: 767px) {
  body.blog h2.my-2::before {
    height: 150px; } }

@media (max-width: 585px) {
  body.blog h2.my-2::before {
    height: 120px; } }
  body.blog h2.my-2 .badge.blog__badge.badge-secondary {
    display: none; }

.dodatkowe.et_ldp_2021 {
  font-family: "Rubik", sans-serif;
  font-weight: 400; }
  .dodatkowe.et_ldp_2021 .container {
    margin: 0 auto !important; }
  .dodatkowe.et_ldp_2021 .et_ldp_2021_1 {
    background-color: #d3222a;
    display: block;
    padding: 30px 50px; }

@media (max-width: 767px) {
  .dodatkowe.et_ldp_2021 .et_ldp_2021_1 {
    padding: 30px;
    text-align: center; } }
    .dodatkowe.et_ldp_2021 .et_ldp_2021_1 .et_ldp_2021_1_logo {
      width: 100%;
      height: 80px;
      display: block; }

@media (max-width: 767px) {
  .dodatkowe.et_ldp_2021 .et_ldp_2021_1 .et_ldp_2021_1_logo {
    height: 50px;
    margin: 0 auto 15px auto; } }
      .dodatkowe.et_ldp_2021 .et_ldp_2021_1 .et_ldp_2021_1_logo img {
        display: block;
        width: auto;
        margin: 0;
        height: 100%; }

@media (max-width: 767px) {
  .dodatkowe.et_ldp_2021 .et_ldp_2021_1 .et_ldp_2021_1_logo img {
    margin: 0 auto; } }
    .dodatkowe.et_ldp_2021 .et_ldp_2021_1 .et_ldp_2021_1_oddzial {
      position: relative;
      display: block;
      padding: 0 0 0 34px; }

@media (max-width: 767px) {
  .dodatkowe.et_ldp_2021 .et_ldp_2021_1 .et_ldp_2021_1_oddzial {
    display: inline-block; } }
      .dodatkowe.et_ldp_2021 .et_ldp_2021_1 .et_ldp_2021_1_oddzial img {
        display: block;
        left: 0;
        top: 0;
        position: absolute;
        width: 10px;
        height: 10px; }
      .dodatkowe.et_ldp_2021 .et_ldp_2021_1 .et_ldp_2021_1_oddzial p {
        line-height: 12px;
        margin: 0;
        color: #ffffff; }
    .dodatkowe.et_ldp_2021 .et_ldp_2021_1 .et_ldp_2021_1_headline {
      color: #ffffff;
      text-align: right;
      font-size: 24px;
      line-height: 1.7;
      margin: 10px;
      font-weight: 700; }

@media (max-width: 767px) {
  .dodatkowe.et_ldp_2021 .et_ldp_2021_1 .et_ldp_2021_1_headline {
    text-align: center;
    font-size: 18px; } }
  .dodatkowe.et_ldp_2021 .et_ldp_2021_2 {
    display: block; }

@media (max-width: 767px) {
  .dodatkowe.et_ldp_2021 .et_ldp_2021_2 {
    text-align: center; } }
    .dodatkowe.et_ldp_2021 .et_ldp_2021_2 .et_ldp_2021_2_menu {
      float: right;
      padding: 0; }

@media (max-width: 767px) {
  .dodatkowe.et_ldp_2021 .et_ldp_2021_2 .et_ldp_2021_2_menu {
    float: none;
    display: inline-block; } }
      .dodatkowe.et_ldp_2021 .et_ldp_2021_2 .et_ldp_2021_2_menu li {
        float: left;
        list-style: none; }

@media (max-width: 767px) {
  .dodatkowe.et_ldp_2021 .et_ldp_2021_2 .et_ldp_2021_2_menu li {
    float: none;
    display: inline-block; } }
        .dodatkowe.et_ldp_2021 .et_ldp_2021_2 .et_ldp_2021_2_menu li a {
          padding: 15px 30px;
          transition: 300ms;
          position: relative;
          display: inline-block;
          color: #000000;
          text-decoration: none;
          font-size: 20px; }

@media (max-width: 767px) {
  .dodatkowe.et_ldp_2021 .et_ldp_2021_2 .et_ldp_2021_2_menu li a {
    padding: 5px 10px;
    font-size: 15px; } }
          .dodatkowe.et_ldp_2021 .et_ldp_2021_2 .et_ldp_2021_2_menu li a::before, .dodatkowe.et_ldp_2021 .et_ldp_2021_2 .et_ldp_2021_2_menu li a::after {
            position: absolute;
            display: block;
            content: "";
            width: 1px;
            height: 60%;
            top: 0;
            bottom: 0;
            left: 0;
            margin: auto;
            background-color: #000000;
            opacity: 0.2; }

@media (max-width: 767px) {
  .dodatkowe.et_ldp_2021 .et_ldp_2021_2 .et_ldp_2021_2_menu li a::before, .dodatkowe.et_ldp_2021 .et_ldp_2021_2 .et_ldp_2021_2_menu li a::after {
    display: none; } }
          .dodatkowe.et_ldp_2021 .et_ldp_2021_2 .et_ldp_2021_2_menu li a::after {
            left: auto;
            right: 0;
            display: none; }
          .dodatkowe.et_ldp_2021 .et_ldp_2021_2 .et_ldp_2021_2_menu li a:hover {
            background-color: #d3222a;
            color: #ffffff; }
        .dodatkowe.et_ldp_2021 .et_ldp_2021_2 .et_ldp_2021_2_menu li:last-child a::after {
          display: block; }

@media (max-width: 767px) {
  .dodatkowe.et_ldp_2021 .et_ldp_2021_2 .et_ldp_2021_2_menu li:last-child a::after {
    display: none; } }
  .dodatkowe.et_ldp_2021 .et_ldp_2021_3 {
    padding: 80px 0 0 0; }

@media (max-width: 1199px) {
  .dodatkowe.et_ldp_2021 .et_ldp_2021_3 {
    padding: 60px 0 0 0; } }

@media (max-width: 767px) {
  .dodatkowe.et_ldp_2021 .et_ldp_2021_3 {
    padding: 40px 0 0 0; } }
    .dodatkowe.et_ldp_2021 .et_ldp_2021_3 .et_ldp_2021_3_cozyskujesz {
      text-align: center; }
      .dodatkowe.et_ldp_2021 .et_ldp_2021_3 .et_ldp_2021_3_cozyskujesz h1 {
        font-size: 42px;
        line-height: 1.6;
        margin-bottom: 15px; }

@media (max-width: 1199px) {
  .dodatkowe.et_ldp_2021 .et_ldp_2021_3 .et_ldp_2021_3_cozyskujesz h1 {
    font-size: 36px; } }

@media (max-width: 767px) {
  .dodatkowe.et_ldp_2021 .et_ldp_2021_3 .et_ldp_2021_3_cozyskujesz h1 {
    font-size: 32px; } }
      .dodatkowe.et_ldp_2021 .et_ldp_2021_3 .et_ldp_2021_3_cozyskujesz ul {
        display: inline-block;
        padding: 0; }
        .dodatkowe.et_ldp_2021 .et_ldp_2021_3 .et_ldp_2021_3_cozyskujesz ul li {
          padding: 15px;
          margin: 0;
          list-style: none;
          float: left;
          width: 20%; }

@media (max-width: 767px) {
  .dodatkowe.et_ldp_2021 .et_ldp_2021_3 .et_ldp_2021_3_cozyskujesz ul li {
    width: 33%; } }

@media (max-width: 585px) {
  .dodatkowe.et_ldp_2021 .et_ldp_2021_3 .et_ldp_2021_3_cozyskujesz ul li {
    width: 50%; } }
          .dodatkowe.et_ldp_2021 .et_ldp_2021_3 .et_ldp_2021_3_cozyskujesz ul li span {
            display: block;
            width: 80px;
            height: 80px;
            border-radius: 50%;
            border: solid 1px #d7d7d7;
            color: #000000;
            text-align: center;
            line-height: 80px;
            font-size: 42px;
            margin: 0 auto 15px auto; }

@media (max-width: 767px) {
  .dodatkowe.et_ldp_2021 .et_ldp_2021_3 .et_ldp_2021_3_cozyskujesz ul li span {
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 32px; } }
          .dodatkowe.et_ldp_2021 .et_ldp_2021_3 .et_ldp_2021_3_cozyskujesz ul li p {
            text-align: center;
            font-size: 16px;
            line-height: 1.6; }
    .dodatkowe.et_ldp_2021 .et_ldp_2021_3 .et_ldp_2021_3_gift {
      text-align: center; }
      .dodatkowe.et_ldp_2021 .et_ldp_2021_3 .et_ldp_2021_3_gift h3 {
        color: #db9736;
        text-transform: uppercase;
        font-weight: 700;
        font-size: 42px;
        margin-top: 10px; }

@media (max-width: 1199px) {
  .dodatkowe.et_ldp_2021 .et_ldp_2021_3 .et_ldp_2021_3_gift h3 {
    font-size: 36px; } }

@media (max-width: 767px) {
  .dodatkowe.et_ldp_2021 .et_ldp_2021_3 .et_ldp_2021_3_gift h3 {
    font-size: 32px; } }
      .dodatkowe.et_ldp_2021 .et_ldp_2021_3 .et_ldp_2021_3_gift img {
        margin: 15px auto;
        display: block;
        width: 200px;
        height: auto; }

@media (max-width: 1199px) {
  .dodatkowe.et_ldp_2021 .et_ldp_2021_3 .et_ldp_2021_3_gift img {
    width: 150px; } }

@media (max-width: 767px) {
  .dodatkowe.et_ldp_2021 .et_ldp_2021_3 .et_ldp_2021_3_gift img {
    width: 100px; } }
  .dodatkowe.et_ldp_2021 .et_ldp_2021_4 {
    display: block;
    position: relative;
    padding: 70px 0 30px 0; }
    .dodatkowe.et_ldp_2021 .et_ldp_2021_4 .container {
      z-index: 2;
      position: relative; }
    .dodatkowe.et_ldp_2021 .et_ldp_2021_4 .et_ldp_2021_4_piece {
      width: 420px;
      height: auto;
      display: block;
      float: right; }

@media (max-width: 1199px) {
  .dodatkowe.et_ldp_2021 .et_ldp_2021_4 .et_ldp_2021_4_piece {
    float: none;
    width: 100%;
    max-width: 300px;
    margin: 30px auto 0 auto; } }
    .dodatkowe.et_ldp_2021 .et_ldp_2021_4 .et_ldp_2021_4_headline {
      font-size: 64px;
      line-height: 1.5;
      font-weight: 500;
      margin-bottom: 30px; }

@media (max-width: 1199px) {
  .dodatkowe.et_ldp_2021 .et_ldp_2021_4 .et_ldp_2021_4_headline {
    font-size: 48px;
    text-align: center; } }

@media (max-width: 991px) {
  .dodatkowe.et_ldp_2021 .et_ldp_2021_4 .et_ldp_2021_4_headline {
    font-size: 36px; } }
    .dodatkowe.et_ldp_2021 .et_ldp_2021_4 .et_ldp_2021_4_wartosci {
      display: block;
      padding: 0; }
      .dodatkowe.et_ldp_2021 .et_ldp_2021_4 .et_ldp_2021_4_wartosci li {
        float: left;
        margin: 0;
        padding: 10px;
        list-style: none;
        width: calc(100% / 6); }

@media (max-width: 991px) {
  .dodatkowe.et_ldp_2021 .et_ldp_2021_4 .et_ldp_2021_4_wartosci li {
    width: calc(100% / 3); } }

@media (max-width: 575px) {
  .dodatkowe.et_ldp_2021 .et_ldp_2021_4 .et_ldp_2021_4_wartosci li {
    width: calc(100% / 2); } }
        .dodatkowe.et_ldp_2021 .et_ldp_2021_4 .et_ldp_2021_4_wartosci li img {
          width: auto;
          height: 60px;
          display: block;
          margin: 0 auto 5px auto; }
        .dodatkowe.et_ldp_2021 .et_ldp_2021_4 .et_ldp_2021_4_wartosci li span {
          text-align: center;
          display: block; }

@media (min-width: 992px) {
  .dodatkowe.et_ldp_2021 .et_ldp_2021_4 .et_ldp_2021_4_wartosci li:nth-child(6n + 1) {
    clear: both; } }

@media (min-width: 575) {
  .dodatkowe.et_ldp_2021 .et_ldp_2021_4 .et_ldp_2021_4_wartosci li:nth-child(3n + 1) {
    clear: both; } }

@media (max-width: 574px) {
  .dodatkowe.et_ldp_2021 .et_ldp_2021_4 .et_ldp_2021_4_wartosci li:nth-child(2n + 1) {
    clear: both; } }
    .dodatkowe.et_ldp_2021 .et_ldp_2021_4 .et_ldp_2021_4_bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }
      .dodatkowe.et_ldp_2021 .et_ldp_2021_4 .et_ldp_2021_4_bg img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover; }
  .dodatkowe.et_ldp_2021 .et_ldp_2021_5_box {
    background-color: #f3f3f3;
    display: block;
    position: relative;
    padding: 50px 50px 50px 350px; }

@media (max-width: 1399px) {
  .dodatkowe.et_ldp_2021 .et_ldp_2021_5_box {
    padding: 50px; } }

@media (max-width: 767px) {
  .dodatkowe.et_ldp_2021 .et_ldp_2021_5_box {
    padding: 15px; } }
  .dodatkowe.et_ldp_2021 .et_ldp_2021_5_bg {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    left: 50px;
    width: 300px;
    height: auto;
    display: block; }

@media (max-width: 1399px) {
  .dodatkowe.et_ldp_2021 .et_ldp_2021_5_bg {
    left: auto;
    right: auto;
    position: relative;
    bottom: auto;
    top: auto;
    max-width: 300px;
    width: 100%; } }
  .dodatkowe.et_ldp_2021 .et_ldp_2021_5 h2,
.dodatkowe.et_ldp_2021 .et_ldp_2021_5 h3 {
    font-size: 64px;
    line-height: 1.5;
    font-weight: 500;
    margin-bottom: 30px;
    clear: both;
    display: block; }

@media (max-width: 1399px) {
  .dodatkowe.et_ldp_2021 .et_ldp_2021_5 h2,
.dodatkowe.et_ldp_2021 .et_ldp_2021_5 h3 {
    font-size: 48px;
    text-align: center; } }

@media (max-width: 991px) {
  .dodatkowe.et_ldp_2021 .et_ldp_2021_5 h2,
.dodatkowe.et_ldp_2021 .et_ldp_2021_5 h3 {
    font-size: 36px; } }
  .dodatkowe.et_ldp_2021 .et_ldp_2021_5 h3 {
    font-size: 36px;
    text-transform: uppercase; }

@media (max-width: 1199px) {
  .dodatkowe.et_ldp_2021 .et_ldp_2021_5 h3 {
    font-size: 32px; } }

@media (max-width: 991px) {
  .dodatkowe.et_ldp_2021 .et_ldp_2021_5 h3 {
    font-size: 24px; } }
  .dodatkowe.et_ldp_2021 .et_ldp_2021_5 ul {
    display: block;
    padding: 0; }
    .dodatkowe.et_ldp_2021 .et_ldp_2021_5 ul li {
      float: left;
      margin: 0;
      padding: 10px;
      list-style: none;
      width: calc(100% / 5); }

@media (max-width: 991px) {
  .dodatkowe.et_ldp_2021 .et_ldp_2021_5 ul li {
    width: calc(100% / 3); } }

@media (max-width: 575px) {
  .dodatkowe.et_ldp_2021 .et_ldp_2021_5 ul li {
    width: calc(100% / 2); } }
      .dodatkowe.et_ldp_2021 .et_ldp_2021_5 ul li img {
        width: auto;
        height: 60px;
        display: block;
        margin: 0 auto 5px auto; }
      .dodatkowe.et_ldp_2021 .et_ldp_2021_5 ul li span {
        text-align: center;
        display: block; }

@media (min-width: 575px) and (max-width: 991px) {
  .dodatkowe.et_ldp_2021 .et_ldp_2021_5 ul li:nth-child(3n + 1) {
    clear: both; } }

@media (max-width: 574px) {
  .dodatkowe.et_ldp_2021 .et_ldp_2021_5 ul li:nth-child(2n + 1) {
    clear: both; } }
  .dodatkowe.et_ldp_2021 .et_ldp_2021_6 {
    padding-top: 50px; }
    .dodatkowe.et_ldp_2021 .et_ldp_2021_6 .container img {
      width: 100%;
      height: auto;
      display: block;
      margin: 0 auto 30px auto;
      max-width: 400px; }
    .dodatkowe.et_ldp_2021 .et_ldp_2021_6 .container h2,
.dodatkowe.et_ldp_2021 .et_ldp_2021_6 .container h3 {
      display: block;
      width: 100%;
      text-align: center;
      font-size: 32px;
      line-height: 1.5;
      font-weight: 500;
      margin-bottom: 30px;
      clear: both;
      display: block; }

@media (max-width: 991px) {
  .dodatkowe.et_ldp_2021 .et_ldp_2021_6 .container h2,
.dodatkowe.et_ldp_2021 .et_ldp_2021_6 .container h3 {
    font-size: 24px; } }
      .dodatkowe.et_ldp_2021 .et_ldp_2021_6 .container h2 strong,
.dodatkowe.et_ldp_2021 .et_ldp_2021_6 .container h3 strong {
        display: block;
        font-size: 42px; }

@media (max-width: 991px) {
  .dodatkowe.et_ldp_2021 .et_ldp_2021_6 .container h2 strong,
.dodatkowe.et_ldp_2021 .et_ldp_2021_6 .container h3 strong {
    font-size: 32px; } }
    .dodatkowe.et_ldp_2021 .et_ldp_2021_6 .container .et_ldp_2021_6_oddzial {
      display: block;
      overflow: hidden;
      position: relative; }

@media (max-width: 1399px) {
  .dodatkowe.et_ldp_2021 .et_ldp_2021_6 .container .et_ldp_2021_6_oddzial {
    margin-bottom: 50px; } }
      .dodatkowe.et_ldp_2021 .et_ldp_2021_6 .container .et_ldp_2021_6_oddzial .left {
        width: 49%;
        float: left;
        display: block;
        margin-right: 2%;
        background-color: #b2b2b2;
        color: #ffffff;
        font-size: 18px;
        font-weight: 500;
        padding: 30px 30px 15px 30px; }

@media (max-width: 1199px) {
  .dodatkowe.et_ldp_2021 .et_ldp_2021_6 .container .et_ldp_2021_6_oddzial .left {
    width: 100%;
    float: none;
    margin: 0 0 10px 0; } }
        .dodatkowe.et_ldp_2021 .et_ldp_2021_6 .container .et_ldp_2021_6_oddzial .left a {
          transition: 300ms; }
          .dodatkowe.et_ldp_2021 .et_ldp_2021_6 .container .et_ldp_2021_6_oddzial .left a:hover {
            color: #d3222a; }
        .dodatkowe.et_ldp_2021 .et_ldp_2021_6 .container .et_ldp_2021_6_oddzial .left a,
.dodatkowe.et_ldp_2021 .et_ldp_2021_6 .container .et_ldp_2021_6_oddzial .left p {
          display: block;
          padding: 0 0 0 30px;
          position: relative;
          color: #ffffff;
          text-decoration: none;
          font-weight: 500;
          font-size: 16px;
          margin: 0 0 15px 0; }

@media (min-width: 992px) and (max-width: 1399px) {
  .dodatkowe.et_ldp_2021 .et_ldp_2021_6 .container .et_ldp_2021_6_oddzial .left a,
.dodatkowe.et_ldp_2021 .et_ldp_2021_6 .container .et_ldp_2021_6_oddzial .left p {
    font-size: 22px;
    padding: 0 0 0 40px; } }
          .dodatkowe.et_ldp_2021 .et_ldp_2021_6 .container .et_ldp_2021_6_oddzial .left a::before,
.dodatkowe.et_ldp_2021 .et_ldp_2021_6 .container .et_ldp_2021_6_oddzial .left p::before {
            position: absolute;
            display: block;
            width: 20px;
            height: 20px;
            left: 0;
            top: 5px;
            content: ""; }

@media (min-width: 992px) and (max-width: 1399px) {
  .dodatkowe.et_ldp_2021 .et_ldp_2021_6 .container .et_ldp_2021_6_oddzial .left a::before,
.dodatkowe.et_ldp_2021 .et_ldp_2021_6 .container .et_ldp_2021_6_oddzial .left p::before {
    width: 30px;
    height: 30px; } }
          .dodatkowe.et_ldp_2021 .et_ldp_2021_6 .container .et_ldp_2021_6_oddzial .left a.phone::before,
.dodatkowe.et_ldp_2021 .et_ldp_2021_6 .container .et_ldp_2021_6_oddzial .left p.phone::before {
            background-image: url("https://static.euroterm24.pl/cms/5999090311e24cc3bda71f0817991e93/ico_phone.svg"); }
          .dodatkowe.et_ldp_2021 .et_ldp_2021_6 .container .et_ldp_2021_6_oddzial .left a.place::before,
.dodatkowe.et_ldp_2021 .et_ldp_2021_6 .container .et_ldp_2021_6_oddzial .left p.place::before {
            background-image: url("https://static.euroterm24.pl/cms/90a1fa6e828a42219016c23a3d72b0e2/ico_place.svg"); }
          .dodatkowe.et_ldp_2021 .et_ldp_2021_6 .container .et_ldp_2021_6_oddzial .left a.hours::before,
.dodatkowe.et_ldp_2021 .et_ldp_2021_6 .container .et_ldp_2021_6_oddzial .left p.hours::before {
            background-image: url("https://static.euroterm24.pl/cms/d51a0662193d4a65aeab39afc33fecca/ico_clock.svg"); }
      .dodatkowe.et_ldp_2021 .et_ldp_2021_6 .container .et_ldp_2021_6_oddzial .right {
        height: 100%;
        width: 49%;
        position: absolute;
        right: 0;
        top: 0; }

@media (max-width: 1199px) {
  .dodatkowe.et_ldp_2021 .et_ldp_2021_6 .container .et_ldp_2021_6_oddzial .right {
    width: 100%;
    position: relative;
    height: 250px; } }
        .dodatkowe.et_ldp_2021 .et_ldp_2021_6 .container .et_ldp_2021_6_oddzial .right iframe {
          width: 100%;
          height: 100%;
          display: block; }
    .dodatkowe.et_ldp_2021 .et_ldp_2021_6_button {
      display: block;
      text-decoration: none;
      width: 100%;
      padding: 60px;
      height: auto;
      text-align: center;
      font-size: 64px;
      background-color: #d3222a;
      color: #ffffff;
      transition: 300ms;
      font-weight: 600; }
      .dodatkowe.et_ldp_2021 .et_ldp_2021_6_button:hover {
        background-color: #db9736; }

@media (max-width: 1199px) {
  .dodatkowe.et_ldp_2021 .et_ldp_2021_6_button {
    font-size: 48px;
    padding: 30px; } }

@media (max-width: 991px) {
  .dodatkowe.et_ldp_2021 .et_ldp_2021_6_button {
    font-size: 36px; } }

@media (max-width: 575px) {
  .dodatkowe.et_ldp_2021 .et_ldp_2021_6_button {
    font-size: 24px; } }

.landingpage_b2b_partner {
  /*
  Theme Name: 
  Author: Tojekmek
  Author URI: https://www.tojekmek.pl
  Version: 1.0
  */
  /*!
  * Bootstrap Grid v5.1.1 (https://getbootstrap.com/)
  * Copyright 2011-2021 The Bootstrap Authors
  * Copyright 2011-2021 Twitter, Inc.
  * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
  */ }
  .landingpage_b2b_partner .accordion {
    margin-top: 0.5rem;
    padding-left: 20px;
    position: relative; }
  .landingpage_b2b_partner .accordion:nth-of-type(1) {
    margin-top: 0; }

@media (min-width: 992px) {
  .landingpage_b2b_partner .accordion--mobileOnly {
    padding-left: 0; }
  .landingpage_b2b_partner .accordion--mobileOnly::before {
    display: none; }
  .landingpage_b2b_partner .accordion--mobileOnly .accordion__content {
    max-height: unset; }
  .landingpage_b2b_partner .accordion--mobileOnly .accordion__text {
    cursor: unset; } }
  .landingpage_b2b_partner .accordion.active::before {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg); }
  .landingpage_b2b_partner .accordion::before {
    content: "";
    position: absolute;
    top: 4px;
    left: 0;
    width: 7px;
    height: 7px;
    background: #d3222a;
    -webkit-transition: 0.2s linear;
    transition: 0.2s linear;
    -webkit-clip-path: polygon(100% 50%, 0 0, 0 100%);
    clip-path: polygon(100% 50%, 0 0, 0 100%); }
  .landingpage_b2b_partner .accordion__text {
    cursor: pointer;
    font-weight: 500; }
  .landingpage_b2b_partner .accordion__content {
    max-height: 0;
    overflow: hidden;
    -webkit-transition: 0.2s linear;
    transition: 0.2s linear; }
  .landingpage_b2b_partner .ico-link {
    padding-left: 30px;
    position: relative; }
  .landingpage_b2b_partner .ico-link:nth-child(1) {
    margin-top: 0; }
  .landingpage_b2b_partner .ico-link:hover span::before {
    width: 100%; }
  .landingpage_b2b_partner .ico-link img {
    display: block;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    height: 20px;
    width: 20px;
    -o-object-fit: contain;
    object-fit: contain; }
  .landingpage_b2b_partner .ico-link span {
    position: relative;
    color: black; }
  .landingpage_b2b_partner .ico-link span:hover::before {
    width: 100%; }
  .landingpage_b2b_partner .ico-link span::before {
    content: "";
    position: absolute;
    bottom: -4px;
    width: 0%;
    height: 1px;
    background-color: orange;
    -webkit-transition: 0.3s linear;
    transition: 0.3s linear;
    left: 0%; }
  .landingpage_b2b_partner a,
.landingpage_b2b_partner abbr,
.landingpage_b2b_partner acronym,
.landingpage_b2b_partner address,
.landingpage_b2b_partner applet,
.landingpage_b2b_partner article,
.landingpage_b2b_partner aside,
.landingpage_b2b_partner audio,
.landingpage_b2b_partner b,
.landingpage_b2b_partner big,
.landingpage_b2b_partner blockquote,
.landingpage_b2b_partner body,
.landingpage_b2b_partner canvas,
.landingpage_b2b_partner caption,
.landingpage_b2b_partner center,
.landingpage_b2b_partner cite,
.landingpage_b2b_partner code,
.landingpage_b2b_partner dd,
.landingpage_b2b_partner del,
.landingpage_b2b_partner details,
.landingpage_b2b_partner dfn,
.landingpage_b2b_partner div,
.landingpage_b2b_partner dl,
.landingpage_b2b_partner dt,
.landingpage_b2b_partner em,
.landingpage_b2b_partner embed,
.landingpage_b2b_partner fieldset,
.landingpage_b2b_partner figcaption,
.landingpage_b2b_partner figure,
.landingpage_b2b_partner footer,
.landingpage_b2b_partner form,
.landingpage_b2b_partner h1,
.landingpage_b2b_partner h2,
.landingpage_b2b_partner h3,
.landingpage_b2b_partner h4,
.landingpage_b2b_partner h5,
.landingpage_b2b_partner h6,
.landingpage_b2b_partner header,
.landingpage_b2b_partner hgroup,
.landingpage_b2b_partner html,
.landingpage_b2b_partner i,
.landingpage_b2b_partner iframe,
.landingpage_b2b_partner img,
.landingpage_b2b_partner ins,
.landingpage_b2b_partner kbd,
.landingpage_b2b_partner label,
.landingpage_b2b_partner legend,
.landingpage_b2b_partner li,
.landingpage_b2b_partner mark,
.landingpage_b2b_partner menu,
.landingpage_b2b_partner nav,
.landingpage_b2b_partner object,
.landingpage_b2b_partner ol,
.landingpage_b2b_partner output,
.landingpage_b2b_partner p,
.landingpage_b2b_partner pre,
.landingpage_b2b_partner q,
.landingpage_b2b_partner ruby,
.landingpage_b2b_partner s,
.landingpage_b2b_partner samp,
.landingpage_b2b_partner section,
.landingpage_b2b_partner small,
.landingpage_b2b_partner span,
.landingpage_b2b_partner strike,
.landingpage_b2b_partner strong,
.landingpage_b2b_partner sub,
.landingpage_b2b_partner summary,
.landingpage_b2b_partner sup,
.landingpage_b2b_partner table,
.landingpage_b2b_partner tbody,
.landingpage_b2b_partner td,
.landingpage_b2b_partner tfoot,
.landingpage_b2b_partner th,
.landingpage_b2b_partner thead,
.landingpage_b2b_partner time,
.landingpage_b2b_partner tr,
.landingpage_b2b_partner tt,
.landingpage_b2b_partner u,
.landingpage_b2b_partner ul,
.landingpage_b2b_partner var,
.landingpage_b2b_partner video {
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    vertical-align: baseline;
    -webkit-box-sizing: border-box;
    box-sizing: border-box; }
  .landingpage_b2b_partner .container,
.landingpage_b2b_partner .container-fluid {
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px; }
  .landingpage_b2b_partner article,
.landingpage_b2b_partner aside,
.landingpage_b2b_partner details,
.landingpage_b2b_partner figcaption,
.landingpage_b2b_partner figure,
.landingpage_b2b_partner footer,
.landingpage_b2b_partner header,
.landingpage_b2b_partner hgroup,
.landingpage_b2b_partner menu,
.landingpage_b2b_partner nav,
.landingpage_b2b_partner section {
    display: block; }
  .landingpage_b2b_partner body {
    line-height: 1; }
  .landingpage_b2b_partner ol,
.landingpage_b2b_partner ul {
    list-style: none; }
  .landingpage_b2b_partner blockquote,
.landingpage_b2b_partner q {
    quotes: none; }
  .landingpage_b2b_partner blockquote:after,
.landingpage_b2b_partner blockquote:before,
.landingpage_b2b_partner q:after,
.landingpage_b2b_partner q:before {
    content: "";
    content: none; }
  .landingpage_b2b_partner table {
    border-collapse: collapse;
    border-spacing: 0; }
  .landingpage_b2b_partner a {
    color: inherit;
    text-decoration: inherit; }
  .landingpage_b2b_partner body *,
.landingpage_b2b_partner button:focus,
.landingpage_b2b_partner input:focus,
.landingpage_b2b_partner select:focus,
.landingpage_b2b_partner textarea:focus {
    outline: 0; }
  .landingpage_b2b_partner input::-ms-clear {
    display: none; }

@-ms-viewport {
  .landingpage_b2b_partner {
    width: device-width; } }
  .landingpage_b2b_partner .container,
.landingpage_b2b_partner .container-fluid,
.landingpage_b2b_partner .container-xxl,
.landingpage_b2b_partner .container-xl,
.landingpage_b2b_partner .container-lg,
.landingpage_b2b_partner .container-md,
.landingpage_b2b_partner .container-sm {
    width: 100%;
    padding-right: var(--bs-gutter-x, 0.75rem);
    padding-left: var(--bs-gutter-x, 0.75rem);
    margin-right: auto;
    margin-left: auto; }

@media (min-width: 576px) {
  .landingpage_b2b_partner .container-sm,
.landingpage_b2b_partner .container {
    max-width: 540px; } }

@media (min-width: 768px) {
  .landingpage_b2b_partner .container-md,
.landingpage_b2b_partner .container-sm,
.landingpage_b2b_partner .container {
    max-width: 720px; } }

@media (min-width: 992px) {
  .landingpage_b2b_partner .container-lg,
.landingpage_b2b_partner .container-md,
.landingpage_b2b_partner .container-sm,
.landingpage_b2b_partner .container {
    max-width: 960px; } }

@media (min-width: 1200px) {
  .landingpage_b2b_partner .container-xl,
.landingpage_b2b_partner .container-lg,
.landingpage_b2b_partner .container-md,
.landingpage_b2b_partner .container-sm,
.landingpage_b2b_partner .container {
    max-width: 1140px; } }

@media (min-width: 1400px) {
  .landingpage_b2b_partner .container-xxl,
.landingpage_b2b_partner .container-xl,
.landingpage_b2b_partner .container-lg,
.landingpage_b2b_partner .container-md,
.landingpage_b2b_partner .container-sm,
.landingpage_b2b_partner .container {
    max-width: 1554px; } }
  .landingpage_b2b_partner .row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: calc(var(--bs-gutter-y) * -1);
    margin-right: calc(var(--bs-gutter-x) * -0.5);
    margin-left: calc(var(--bs-gutter-x) * -0.5); }
  .landingpage_b2b_partner .row > * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    margin-top: var(--bs-gutter-y); }
  .landingpage_b2b_partner .col {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%; }
  .landingpage_b2b_partner .row-cols-auto > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto; }
  .landingpage_b2b_partner .row-cols-1 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%; }
  .landingpage_b2b_partner .row-cols-2 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%; }
  .landingpage_b2b_partner .row-cols-3 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.3333333333%; }
  .landingpage_b2b_partner .row-cols-4 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%; }
  .landingpage_b2b_partner .row-cols-5 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 20%; }
  .landingpage_b2b_partner .row-cols-6 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.6666666667%; }
  .landingpage_b2b_partner .col-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto; }
  .landingpage_b2b_partner .col-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 8.33333333%; }
  .landingpage_b2b_partner .col-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66666667%; }
  .landingpage_b2b_partner .col-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%; }
  .landingpage_b2b_partner .col-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333333%; }
  .landingpage_b2b_partner .col-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 41.66666667%; }
  .landingpage_b2b_partner .col-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%; }
  .landingpage_b2b_partner .col-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 58.33333333%; }
  .landingpage_b2b_partner .col-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 66.66666667%; }
  .landingpage_b2b_partner .col-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 75%; }
  .landingpage_b2b_partner .col-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 83.33333333%; }
  .landingpage_b2b_partner .col-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 91.66666667%; }
  .landingpage_b2b_partner .col-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%; }
  .landingpage_b2b_partner .offset-1 {
    margin-left: 8.33333333%; }
  .landingpage_b2b_partner .offset-2 {
    margin-left: 16.66666667%; }
  .landingpage_b2b_partner .offset-3 {
    margin-left: 25%; }
  .landingpage_b2b_partner .offset-4 {
    margin-left: 33.33333333%; }
  .landingpage_b2b_partner .offset-5 {
    margin-left: 41.66666667%; }
  .landingpage_b2b_partner .offset-6 {
    margin-left: 50%; }
  .landingpage_b2b_partner .offset-7 {
    margin-left: 58.33333333%; }
  .landingpage_b2b_partner .offset-8 {
    margin-left: 66.66666667%; }
  .landingpage_b2b_partner .offset-9 {
    margin-left: 75%; }
  .landingpage_b2b_partner .offset-10 {
    margin-left: 83.33333333%; }
  .landingpage_b2b_partner .offset-11 {
    margin-left: 91.66666667%; }
  .landingpage_b2b_partner .g-0,
.landingpage_b2b_partner .gx-0 {
    --bs-gutter-x: 0; }
  .landingpage_b2b_partner .g-0,
.landingpage_b2b_partner .gy-0 {
    --bs-gutter-y: 0; }
  .landingpage_b2b_partner .g-1,
.landingpage_b2b_partner .gx-1 {
    --bs-gutter-x: 0.25rem; }
  .landingpage_b2b_partner .g-1,
.landingpage_b2b_partner .gy-1 {
    --bs-gutter-y: 0.25rem; }
  .landingpage_b2b_partner .g-2,
.landingpage_b2b_partner .gx-2 {
    --bs-gutter-x: 0.5rem; }
  .landingpage_b2b_partner .g-2,
.landingpage_b2b_partner .gy-2 {
    --bs-gutter-y: 0.5rem; }
  .landingpage_b2b_partner .g-3,
.landingpage_b2b_partner .gx-3 {
    --bs-gutter-x: 1rem; }
  .landingpage_b2b_partner .g-3,
.landingpage_b2b_partner .gy-3 {
    --bs-gutter-y: 1rem; }
  .landingpage_b2b_partner .g-4,
.landingpage_b2b_partner .gx-4 {
    --bs-gutter-x: 1.5rem; }
  .landingpage_b2b_partner .g-4,
.landingpage_b2b_partner .gy-4 {
    --bs-gutter-y: 1.5rem; }
  .landingpage_b2b_partner .g-5,
.landingpage_b2b_partner .gx-5 {
    --bs-gutter-x: 3rem; }
  .landingpage_b2b_partner .g-5,
.landingpage_b2b_partner .gy-5 {
    --bs-gutter-y: 3rem; }

@media (min-width: 576px) {
  .landingpage_b2b_partner .col-sm {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%; }
  .landingpage_b2b_partner .row-cols-sm-auto > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto; }
  .landingpage_b2b_partner .row-cols-sm-1 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%; }
  .landingpage_b2b_partner .row-cols-sm-2 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%; }
  .landingpage_b2b_partner .row-cols-sm-3 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.3333333333%; }
  .landingpage_b2b_partner .row-cols-sm-4 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%; }
  .landingpage_b2b_partner .row-cols-sm-5 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 20%; }
  .landingpage_b2b_partner .row-cols-sm-6 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.6666666667%; }
  .landingpage_b2b_partner .col-sm-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto; }
  .landingpage_b2b_partner .col-sm-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 8.33333333%; }
  .landingpage_b2b_partner .col-sm-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66666667%; }
  .landingpage_b2b_partner .col-sm-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%; }
  .landingpage_b2b_partner .col-sm-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333333%; }
  .landingpage_b2b_partner .col-sm-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 41.66666667%; }
  .landingpage_b2b_partner .col-sm-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%; }
  .landingpage_b2b_partner .col-sm-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 58.33333333%; }
  .landingpage_b2b_partner .col-sm-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 66.66666667%; }
  .landingpage_b2b_partner .col-sm-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 75%; }
  .landingpage_b2b_partner .col-sm-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 83.33333333%; }
  .landingpage_b2b_partner .col-sm-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 91.66666667%; }
  .landingpage_b2b_partner .col-sm-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%; }
  .landingpage_b2b_partner .offset-sm-0 {
    margin-left: 0; }
  .landingpage_b2b_partner .offset-sm-1 {
    margin-left: 8.33333333%; }
  .landingpage_b2b_partner .offset-sm-2 {
    margin-left: 16.66666667%; }
  .landingpage_b2b_partner .offset-sm-3 {
    margin-left: 25%; }
  .landingpage_b2b_partner .offset-sm-4 {
    margin-left: 33.33333333%; }
  .landingpage_b2b_partner .offset-sm-5 {
    margin-left: 41.66666667%; }
  .landingpage_b2b_partner .offset-sm-6 {
    margin-left: 50%; }
  .landingpage_b2b_partner .offset-sm-7 {
    margin-left: 58.33333333%; }
  .landingpage_b2b_partner .offset-sm-8 {
    margin-left: 66.66666667%; }
  .landingpage_b2b_partner .offset-sm-9 {
    margin-left: 75%; }
  .landingpage_b2b_partner .offset-sm-10 {
    margin-left: 83.33333333%; }
  .landingpage_b2b_partner .offset-sm-11 {
    margin-left: 91.66666667%; }
  .landingpage_b2b_partner .g-sm-0,
.landingpage_b2b_partner .gx-sm-0 {
    --bs-gutter-x: 0; }
  .landingpage_b2b_partner .g-sm-0,
.landingpage_b2b_partner .gy-sm-0 {
    --bs-gutter-y: 0; }
  .landingpage_b2b_partner .g-sm-1,
.landingpage_b2b_partner .gx-sm-1 {
    --bs-gutter-x: 0.25rem; }
  .landingpage_b2b_partner .g-sm-1,
.landingpage_b2b_partner .gy-sm-1 {
    --bs-gutter-y: 0.25rem; }
  .landingpage_b2b_partner .g-sm-2,
.landingpage_b2b_partner .gx-sm-2 {
    --bs-gutter-x: 0.5rem; }
  .landingpage_b2b_partner .g-sm-2,
.landingpage_b2b_partner .gy-sm-2 {
    --bs-gutter-y: 0.5rem; }
  .landingpage_b2b_partner .g-sm-3,
.landingpage_b2b_partner .gx-sm-3 {
    --bs-gutter-x: 1rem; }
  .landingpage_b2b_partner .g-sm-3,
.landingpage_b2b_partner .gy-sm-3 {
    --bs-gutter-y: 1rem; }
  .landingpage_b2b_partner .g-sm-4,
.landingpage_b2b_partner .gx-sm-4 {
    --bs-gutter-x: 1.5rem; }
  .landingpage_b2b_partner .g-sm-4,
.landingpage_b2b_partner .gy-sm-4 {
    --bs-gutter-y: 1.5rem; }
  .landingpage_b2b_partner .g-sm-5,
.landingpage_b2b_partner .gx-sm-5 {
    --bs-gutter-x: 3rem; }
  .landingpage_b2b_partner .g-sm-5,
.landingpage_b2b_partner .gy-sm-5 {
    --bs-gutter-y: 3rem; } }

@media (min-width: 768px) {
  .landingpage_b2b_partner .col-md {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%; }
  .landingpage_b2b_partner .row-cols-md-auto > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto; }
  .landingpage_b2b_partner .row-cols-md-1 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%; }
  .landingpage_b2b_partner .row-cols-md-2 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%; }
  .landingpage_b2b_partner .row-cols-md-3 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.3333333333%; }
  .landingpage_b2b_partner .row-cols-md-4 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%; }
  .landingpage_b2b_partner .row-cols-md-5 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 20%; }
  .landingpage_b2b_partner .row-cols-md-6 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.6666666667%; }
  .landingpage_b2b_partner .col-md-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto; }
  .landingpage_b2b_partner .col-md-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 8.33333333%; }
  .landingpage_b2b_partner .col-md-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66666667%; }
  .landingpage_b2b_partner .col-md-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%; }
  .landingpage_b2b_partner .col-md-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333333%; }
  .landingpage_b2b_partner .col-md-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 41.66666667%; }
  .landingpage_b2b_partner .col-md-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%; }
  .landingpage_b2b_partner .col-md-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 58.33333333%; }
  .landingpage_b2b_partner .col-md-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 66.66666667%; }
  .landingpage_b2b_partner .col-md-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 75%; }
  .landingpage_b2b_partner .col-md-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 83.33333333%; }
  .landingpage_b2b_partner .col-md-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 91.66666667%; }
  .landingpage_b2b_partner .col-md-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%; }
  .landingpage_b2b_partner .offset-md-0 {
    margin-left: 0; }
  .landingpage_b2b_partner .offset-md-1 {
    margin-left: 8.33333333%; }
  .landingpage_b2b_partner .offset-md-2 {
    margin-left: 16.66666667%; }
  .landingpage_b2b_partner .offset-md-3 {
    margin-left: 25%; }
  .landingpage_b2b_partner .offset-md-4 {
    margin-left: 33.33333333%; }
  .landingpage_b2b_partner .offset-md-5 {
    margin-left: 41.66666667%; }
  .landingpage_b2b_partner .offset-md-6 {
    margin-left: 50%; }
  .landingpage_b2b_partner .offset-md-7 {
    margin-left: 58.33333333%; }
  .landingpage_b2b_partner .offset-md-8 {
    margin-left: 66.66666667%; }
  .landingpage_b2b_partner .offset-md-9 {
    margin-left: 75%; }
  .landingpage_b2b_partner .offset-md-10 {
    margin-left: 83.33333333%; }
  .landingpage_b2b_partner .offset-md-11 {
    margin-left: 91.66666667%; }
  .landingpage_b2b_partner .g-md-0,
.landingpage_b2b_partner .gx-md-0 {
    --bs-gutter-x: 0; }
  .landingpage_b2b_partner .g-md-0,
.landingpage_b2b_partner .gy-md-0 {
    --bs-gutter-y: 0; }
  .landingpage_b2b_partner .g-md-1,
.landingpage_b2b_partner .gx-md-1 {
    --bs-gutter-x: 0.25rem; }
  .landingpage_b2b_partner .g-md-1,
.landingpage_b2b_partner .gy-md-1 {
    --bs-gutter-y: 0.25rem; }
  .landingpage_b2b_partner .g-md-2,
.landingpage_b2b_partner .gx-md-2 {
    --bs-gutter-x: 0.5rem; }
  .landingpage_b2b_partner .g-md-2,
.landingpage_b2b_partner .gy-md-2 {
    --bs-gutter-y: 0.5rem; }
  .landingpage_b2b_partner .g-md-3,
.landingpage_b2b_partner .gx-md-3 {
    --bs-gutter-x: 1rem; }
  .landingpage_b2b_partner .g-md-3,
.landingpage_b2b_partner .gy-md-3 {
    --bs-gutter-y: 1rem; }
  .landingpage_b2b_partner .g-md-4,
.landingpage_b2b_partner .gx-md-4 {
    --bs-gutter-x: 1.5rem; }
  .landingpage_b2b_partner .g-md-4,
.landingpage_b2b_partner .gy-md-4 {
    --bs-gutter-y: 1.5rem; }
  .landingpage_b2b_partner .g-md-5,
.landingpage_b2b_partner .gx-md-5 {
    --bs-gutter-x: 3rem; }
  .landingpage_b2b_partner .g-md-5,
.landingpage_b2b_partner .gy-md-5 {
    --bs-gutter-y: 3rem; } }

@media (min-width: 992px) {
  .landingpage_b2b_partner .col-lg {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%; }
  .landingpage_b2b_partner .row-cols-lg-auto > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto; }
  .landingpage_b2b_partner .row-cols-lg-1 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%; }
  .landingpage_b2b_partner .row-cols-lg-2 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%; }
  .landingpage_b2b_partner .row-cols-lg-3 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.3333333333%; }
  .landingpage_b2b_partner .row-cols-lg-4 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%; }
  .landingpage_b2b_partner .row-cols-lg-5 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 20%; }
  .landingpage_b2b_partner .row-cols-lg-6 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.6666666667%; }
  .landingpage_b2b_partner .col-lg-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto; }
  .landingpage_b2b_partner .col-lg-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 8.33333333%; }
  .landingpage_b2b_partner .col-lg-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66666667%; }
  .landingpage_b2b_partner .col-lg-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%; }
  .landingpage_b2b_partner .col-lg-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333333%; }
  .landingpage_b2b_partner .col-lg-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 41.66666667%; }
  .landingpage_b2b_partner .col-lg-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%; }
  .landingpage_b2b_partner .col-lg-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 58.33333333%; }
  .landingpage_b2b_partner .col-lg-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 66.66666667%; }
  .landingpage_b2b_partner .col-lg-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 75%; }
  .landingpage_b2b_partner .col-lg-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 83.33333333%; }
  .landingpage_b2b_partner .col-lg-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 91.66666667%; }
  .landingpage_b2b_partner .col-lg-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%; }
  .landingpage_b2b_partner .offset-lg-0 {
    margin-left: 0; }
  .landingpage_b2b_partner .offset-lg-1 {
    margin-left: 8.33333333%; }
  .landingpage_b2b_partner .offset-lg-2 {
    margin-left: 16.66666667%; }
  .landingpage_b2b_partner .offset-lg-3 {
    margin-left: 25%; }
  .landingpage_b2b_partner .offset-lg-4 {
    margin-left: 33.33333333%; }
  .landingpage_b2b_partner .offset-lg-5 {
    margin-left: 41.66666667%; }
  .landingpage_b2b_partner .offset-lg-6 {
    margin-left: 50%; }
  .landingpage_b2b_partner .offset-lg-7 {
    margin-left: 58.33333333%; }
  .landingpage_b2b_partner .offset-lg-8 {
    margin-left: 66.66666667%; }
  .landingpage_b2b_partner .offset-lg-9 {
    margin-left: 75%; }
  .landingpage_b2b_partner .offset-lg-10 {
    margin-left: 83.33333333%; }
  .landingpage_b2b_partner .offset-lg-11 {
    margin-left: 91.66666667%; }
  .landingpage_b2b_partner .g-lg-0,
.landingpage_b2b_partner .gx-lg-0 {
    --bs-gutter-x: 0; }
  .landingpage_b2b_partner .g-lg-0,
.landingpage_b2b_partner .gy-lg-0 {
    --bs-gutter-y: 0; }
  .landingpage_b2b_partner .g-lg-1,
.landingpage_b2b_partner .gx-lg-1 {
    --bs-gutter-x: 0.25rem; }
  .landingpage_b2b_partner .g-lg-1,
.landingpage_b2b_partner .gy-lg-1 {
    --bs-gutter-y: 0.25rem; }
  .landingpage_b2b_partner .g-lg-2,
.landingpage_b2b_partner .gx-lg-2 {
    --bs-gutter-x: 0.5rem; }
  .landingpage_b2b_partner .g-lg-2,
.landingpage_b2b_partner .gy-lg-2 {
    --bs-gutter-y: 0.5rem; }
  .landingpage_b2b_partner .g-lg-3,
.landingpage_b2b_partner .gx-lg-3 {
    --bs-gutter-x: 1rem; }
  .landingpage_b2b_partner .g-lg-3,
.landingpage_b2b_partner .gy-lg-3 {
    --bs-gutter-y: 1rem; }
  .landingpage_b2b_partner .g-lg-4,
.landingpage_b2b_partner .gx-lg-4 {
    --bs-gutter-x: 1.5rem; }
  .landingpage_b2b_partner .g-lg-4,
.landingpage_b2b_partner .gy-lg-4 {
    --bs-gutter-y: 1.5rem; }
  .landingpage_b2b_partner .g-lg-5,
.landingpage_b2b_partner .gx-lg-5 {
    --bs-gutter-x: 3rem; }
  .landingpage_b2b_partner .g-lg-5,
.landingpage_b2b_partner .gy-lg-5 {
    --bs-gutter-y: 3rem; } }

@media (min-width: 1200px) {
  .landingpage_b2b_partner .col-xl {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%; }
  .landingpage_b2b_partner .row-cols-xl-auto > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto; }
  .landingpage_b2b_partner .row-cols-xl-1 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%; }
  .landingpage_b2b_partner .row-cols-xl-2 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%; }
  .landingpage_b2b_partner .row-cols-xl-3 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.3333333333%; }
  .landingpage_b2b_partner .row-cols-xl-4 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%; }
  .landingpage_b2b_partner .row-cols-xl-5 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 20%; }
  .landingpage_b2b_partner .row-cols-xl-6 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.6666666667%; }
  .landingpage_b2b_partner .col-xl-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto; }
  .landingpage_b2b_partner .col-xl-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 8.33333333%; }
  .landingpage_b2b_partner .col-xl-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66666667%; }
  .landingpage_b2b_partner .col-xl-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%; }
  .landingpage_b2b_partner .col-xl-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333333%; }
  .landingpage_b2b_partner .col-xl-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 41.66666667%; }
  .landingpage_b2b_partner .col-xl-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%; }
  .landingpage_b2b_partner .col-xl-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 58.33333333%; }
  .landingpage_b2b_partner .col-xl-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 66.66666667%; }
  .landingpage_b2b_partner .col-xl-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 75%; }
  .landingpage_b2b_partner .col-xl-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 83.33333333%; }
  .landingpage_b2b_partner .col-xl-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 91.66666667%; }
  .landingpage_b2b_partner .col-xl-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%; }
  .landingpage_b2b_partner .offset-xl-0 {
    margin-left: 0; }
  .landingpage_b2b_partner .offset-xl-1 {
    margin-left: 8.33333333%; }
  .landingpage_b2b_partner .offset-xl-2 {
    margin-left: 16.66666667%; }
  .landingpage_b2b_partner .offset-xl-3 {
    margin-left: 25%; }
  .landingpage_b2b_partner .offset-xl-4 {
    margin-left: 33.33333333%; }
  .landingpage_b2b_partner .offset-xl-5 {
    margin-left: 41.66666667%; }
  .landingpage_b2b_partner .offset-xl-6 {
    margin-left: 50%; }
  .landingpage_b2b_partner .offset-xl-7 {
    margin-left: 58.33333333%; }
  .landingpage_b2b_partner .offset-xl-8 {
    margin-left: 66.66666667%; }
  .landingpage_b2b_partner .offset-xl-9 {
    margin-left: 75%; }
  .landingpage_b2b_partner .offset-xl-10 {
    margin-left: 83.33333333%; }
  .landingpage_b2b_partner .offset-xl-11 {
    margin-left: 91.66666667%; }
  .landingpage_b2b_partner .g-xl-0,
.landingpage_b2b_partner .gx-xl-0 {
    --bs-gutter-x: 0; }
  .landingpage_b2b_partner .g-xl-0,
.landingpage_b2b_partner .gy-xl-0 {
    --bs-gutter-y: 0; }
  .landingpage_b2b_partner .g-xl-1,
.landingpage_b2b_partner .gx-xl-1 {
    --bs-gutter-x: 0.25rem; }
  .landingpage_b2b_partner .g-xl-1,
.landingpage_b2b_partner .gy-xl-1 {
    --bs-gutter-y: 0.25rem; }
  .landingpage_b2b_partner .g-xl-2,
.landingpage_b2b_partner .gx-xl-2 {
    --bs-gutter-x: 0.5rem; }
  .landingpage_b2b_partner .g-xl-2,
.landingpage_b2b_partner .gy-xl-2 {
    --bs-gutter-y: 0.5rem; }
  .landingpage_b2b_partner .g-xl-3,
.landingpage_b2b_partner .gx-xl-3 {
    --bs-gutter-x: 1rem; }
  .landingpage_b2b_partner .g-xl-3,
.landingpage_b2b_partner .gy-xl-3 {
    --bs-gutter-y: 1rem; }
  .landingpage_b2b_partner .g-xl-4,
.landingpage_b2b_partner .gx-xl-4 {
    --bs-gutter-x: 1.5rem; }
  .landingpage_b2b_partner .g-xl-4,
.landingpage_b2b_partner .gy-xl-4 {
    --bs-gutter-y: 1.5rem; }
  .landingpage_b2b_partner .g-xl-5,
.landingpage_b2b_partner .gx-xl-5 {
    --bs-gutter-x: 3rem; }
  .landingpage_b2b_partner .g-xl-5,
.landingpage_b2b_partner .gy-xl-5 {
    --bs-gutter-y: 3rem; } }

@media (min-width: 1400px) {
  .landingpage_b2b_partner .col-xxl {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%; }
  .landingpage_b2b_partner .row-cols-xxl-auto > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto; }
  .landingpage_b2b_partner .row-cols-xxl-1 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%; }
  .landingpage_b2b_partner .row-cols-xxl-2 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%; }
  .landingpage_b2b_partner .row-cols-xxl-3 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.3333333333%; }
  .landingpage_b2b_partner .row-cols-xxl-4 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%; }
  .landingpage_b2b_partner .row-cols-xxl-5 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 20%; }
  .landingpage_b2b_partner .row-cols-xxl-6 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.6666666667%; }
  .landingpage_b2b_partner .col-xxl-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto; }
  .landingpage_b2b_partner .col-xxl-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 8.33333333%; }
  .landingpage_b2b_partner .col-xxl-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66666667%; }
  .landingpage_b2b_partner .col-xxl-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%; }
  .landingpage_b2b_partner .col-xxl-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333333%; }
  .landingpage_b2b_partner .col-xxl-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 41.66666667%; }
  .landingpage_b2b_partner .col-xxl-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%; }
  .landingpage_b2b_partner .col-xxl-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 58.33333333%; }
  .landingpage_b2b_partner .col-xxl-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 66.66666667%; }
  .landingpage_b2b_partner .col-xxl-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 75%; }
  .landingpage_b2b_partner .col-xxl-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 83.33333333%; }
  .landingpage_b2b_partner .col-xxl-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 91.66666667%; }
  .landingpage_b2b_partner .col-xxl-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%; }
  .landingpage_b2b_partner .offset-xxl-0 {
    margin-left: 0; }
  .landingpage_b2b_partner .offset-xxl-1 {
    margin-left: 8.33333333%; }
  .landingpage_b2b_partner .offset-xxl-2 {
    margin-left: 16.66666667%; }
  .landingpage_b2b_partner .offset-xxl-3 {
    margin-left: 25%; }
  .landingpage_b2b_partner .offset-xxl-4 {
    margin-left: 33.33333333%; }
  .landingpage_b2b_partner .offset-xxl-5 {
    margin-left: 41.66666667%; }
  .landingpage_b2b_partner .offset-xxl-6 {
    margin-left: 50%; }
  .landingpage_b2b_partner .offset-xxl-7 {
    margin-left: 58.33333333%; }
  .landingpage_b2b_partner .offset-xxl-8 {
    margin-left: 66.66666667%; }
  .landingpage_b2b_partner .offset-xxl-9 {
    margin-left: 75%; }
  .landingpage_b2b_partner .offset-xxl-10 {
    margin-left: 83.33333333%; }
  .landingpage_b2b_partner .offset-xxl-11 {
    margin-left: 91.66666667%; }
  .landingpage_b2b_partner .g-xxl-0,
.landingpage_b2b_partner .gx-xxl-0 {
    --bs-gutter-x: 0; }
  .landingpage_b2b_partner .g-xxl-0,
.landingpage_b2b_partner .gy-xxl-0 {
    --bs-gutter-y: 0; }
  .landingpage_b2b_partner .g-xxl-1,
.landingpage_b2b_partner .gx-xxl-1 {
    --bs-gutter-x: 0.25rem; }
  .landingpage_b2b_partner .g-xxl-1,
.landingpage_b2b_partner .gy-xxl-1 {
    --bs-gutter-y: 0.25rem; }
  .landingpage_b2b_partner .g-xxl-2,
.landingpage_b2b_partner .gx-xxl-2 {
    --bs-gutter-x: 0.5rem; }
  .landingpage_b2b_partner .g-xxl-2,
.landingpage_b2b_partner .gy-xxl-2 {
    --bs-gutter-y: 0.5rem; }
  .landingpage_b2b_partner .g-xxl-3,
.landingpage_b2b_partner .gx-xxl-3 {
    --bs-gutter-x: 1rem; }
  .landingpage_b2b_partner .g-xxl-3,
.landingpage_b2b_partner .gy-xxl-3 {
    --bs-gutter-y: 1rem; }
  .landingpage_b2b_partner .g-xxl-4,
.landingpage_b2b_partner .gx-xxl-4 {
    --bs-gutter-x: 1.5rem; }
  .landingpage_b2b_partner .g-xxl-4,
.landingpage_b2b_partner .gy-xxl-4 {
    --bs-gutter-y: 1.5rem; }
  .landingpage_b2b_partner .g-xxl-5,
.landingpage_b2b_partner .gx-xxl-5 {
    --bs-gutter-x: 3rem; }
  .landingpage_b2b_partner .g-xxl-5,
.landingpage_b2b_partner .gy-xxl-5 {
    --bs-gutter-y: 3rem; } }
  .landingpage_b2b_partner .d-inline {
    display: inline !important; }
  .landingpage_b2b_partner .d-inline-block {
    display: inline-block !important; }
  .landingpage_b2b_partner .d-block {
    display: block !important; }
  .landingpage_b2b_partner .d-grid {
    display: -ms-grid !important;
    display: grid !important; }
  .landingpage_b2b_partner .d-table {
    display: table !important; }
  .landingpage_b2b_partner .d-table-row {
    display: table-row !important; }
  .landingpage_b2b_partner .d-table-cell {
    display: table-cell !important; }
  .landingpage_b2b_partner .d-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important; }
  .landingpage_b2b_partner .d-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important; }
  .landingpage_b2b_partner .d-none {
    display: none !important; }
  .landingpage_b2b_partner .flex-fill {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important; }
  .landingpage_b2b_partner .flex-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important; }
  .landingpage_b2b_partner .flex-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important; }
  .landingpage_b2b_partner .flex-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important; }
  .landingpage_b2b_partner .flex-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important; }
  .landingpage_b2b_partner .flex-grow-0 {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important; }
  .landingpage_b2b_partner .flex-grow-1 {
    -webkit-box-flex: 1 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important; }
  .landingpage_b2b_partner .flex-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important; }
  .landingpage_b2b_partner .flex-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important; }
  .landingpage_b2b_partner .flex-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important; }
  .landingpage_b2b_partner .flex-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important; }
  .landingpage_b2b_partner .flex-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important; }
  .landingpage_b2b_partner .justify-content-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important; }
  .landingpage_b2b_partner .justify-content-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important; }
  .landingpage_b2b_partner .justify-content-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important; }
  .landingpage_b2b_partner .justify-content-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important; }
  .landingpage_b2b_partner .justify-content-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important; }
  .landingpage_b2b_partner .justify-content-evenly {
    -webkit-box-pack: space-evenly !important;
    -ms-flex-pack: space-evenly !important;
    justify-content: space-evenly !important; }
  .landingpage_b2b_partner .align-items-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important; }
  .landingpage_b2b_partner .align-items-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important; }
  .landingpage_b2b_partner .align-items-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important; }
  .landingpage_b2b_partner .align-items-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important; }
  .landingpage_b2b_partner .align-items-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important; }
  .landingpage_b2b_partner .align-content-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important; }
  .landingpage_b2b_partner .align-content-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important; }
  .landingpage_b2b_partner .align-content-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important; }
  .landingpage_b2b_partner .align-content-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important; }
  .landingpage_b2b_partner .align-content-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important; }
  .landingpage_b2b_partner .align-content-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important; }
  .landingpage_b2b_partner .align-self-auto {
    -ms-flex-item-align: auto !important;
    -ms-grid-row-align: auto !important;
    align-self: auto !important; }
  .landingpage_b2b_partner .align-self-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important; }
  .landingpage_b2b_partner .align-self-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important; }
  .landingpage_b2b_partner .align-self-center {
    -ms-flex-item-align: center !important;
    -ms-grid-row-align: center !important;
    align-self: center !important; }
  .landingpage_b2b_partner .align-self-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important; }
  .landingpage_b2b_partner .align-self-stretch {
    -ms-flex-item-align: stretch !important;
    -ms-grid-row-align: stretch !important;
    align-self: stretch !important; }
  .landingpage_b2b_partner .order-first {
    -webkit-box-ordinal-group: 0 !important;
    -ms-flex-order: -1 !important;
    order: -1 !important; }
  .landingpage_b2b_partner .order-0 {
    -webkit-box-ordinal-group: 1 !important;
    -ms-flex-order: 0 !important;
    order: 0 !important; }
  .landingpage_b2b_partner .order-1 {
    -webkit-box-ordinal-group: 2 !important;
    -ms-flex-order: 1 !important;
    order: 1 !important; }
  .landingpage_b2b_partner .order-2 {
    -webkit-box-ordinal-group: 3 !important;
    -ms-flex-order: 2 !important;
    order: 2 !important; }
  .landingpage_b2b_partner .order-3 {
    -webkit-box-ordinal-group: 4 !important;
    -ms-flex-order: 3 !important;
    order: 3 !important; }
  .landingpage_b2b_partner .order-4 {
    -webkit-box-ordinal-group: 5 !important;
    -ms-flex-order: 4 !important;
    order: 4 !important; }
  .landingpage_b2b_partner .order-5 {
    -webkit-box-ordinal-group: 6 !important;
    -ms-flex-order: 5 !important;
    order: 5 !important; }
  .landingpage_b2b_partner .order-last {
    -webkit-box-ordinal-group: 7 !important;
    -ms-flex-order: 6 !important;
    order: 6 !important; }
  .landingpage_b2b_partner .m-0 {
    margin: 0 !important; }
  .landingpage_b2b_partner .m-1 {
    margin: 0.25rem !important; }
  .landingpage_b2b_partner .m-2 {
    margin: 0.5rem !important; }
  .landingpage_b2b_partner .m-3 {
    margin: 1rem !important; }
  .landingpage_b2b_partner .m-4 {
    margin: 1.5rem !important; }
  .landingpage_b2b_partner .m-5 {
    margin: 3rem !important; }
  .landingpage_b2b_partner .m-auto {
    margin: auto !important; }
  .landingpage_b2b_partner .mx-0 {
    margin-right: 0 !important;
    margin-left: 0 !important; }
  .landingpage_b2b_partner .mx-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important; }
  .landingpage_b2b_partner .mx-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important; }
  .landingpage_b2b_partner .mx-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important; }
  .landingpage_b2b_partner .mx-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important; }
  .landingpage_b2b_partner .mx-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important; }
  .landingpage_b2b_partner .mx-auto {
    margin-right: auto !important;
    margin-left: auto !important; }
  .landingpage_b2b_partner .my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important; }
  .landingpage_b2b_partner .my-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important; }
  .landingpage_b2b_partner .my-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important; }
  .landingpage_b2b_partner .my-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important; }
  .landingpage_b2b_partner .my-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important; }
  .landingpage_b2b_partner .my-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important; }
  .landingpage_b2b_partner .my-auto {
    margin-top: auto !important;
    margin-bottom: auto !important; }
  .landingpage_b2b_partner .mt-0 {
    margin-top: 0 !important; }
  .landingpage_b2b_partner .mt-1 {
    margin-top: 0.25rem !important; }
  .landingpage_b2b_partner .mt-2 {
    margin-top: 0.5rem !important; }
  .landingpage_b2b_partner .mt-3 {
    margin-top: 1rem !important; }
  .landingpage_b2b_partner .mt-4 {
    margin-top: 1.5rem !important; }
  .landingpage_b2b_partner .mt-5 {
    margin-top: 3rem !important; }
  .landingpage_b2b_partner .mt-auto {
    margin-top: auto !important; }
  .landingpage_b2b_partner .me-0 {
    margin-right: 0 !important; }
  .landingpage_b2b_partner .me-1 {
    margin-right: 0.25rem !important; }
  .landingpage_b2b_partner .me-2 {
    margin-right: 0.5rem !important; }
  .landingpage_b2b_partner .me-3 {
    margin-right: 1rem !important; }
  .landingpage_b2b_partner .me-4 {
    margin-right: 1.5rem !important; }
  .landingpage_b2b_partner .me-5 {
    margin-right: 3rem !important; }
  .landingpage_b2b_partner .me-auto {
    margin-right: auto !important; }
  .landingpage_b2b_partner .mb-0 {
    margin-bottom: 0 !important; }
  .landingpage_b2b_partner .mb-1 {
    margin-bottom: 0.25rem !important; }
  .landingpage_b2b_partner .mb-2 {
    margin-bottom: 0.5rem !important; }
  .landingpage_b2b_partner .mb-3 {
    margin-bottom: 1rem !important; }
  .landingpage_b2b_partner .mb-4 {
    margin-bottom: 1.5rem !important; }
  .landingpage_b2b_partner .mb-5 {
    margin-bottom: 3rem !important; }
  .landingpage_b2b_partner .mb-auto {
    margin-bottom: auto !important; }
  .landingpage_b2b_partner .ms-0 {
    margin-left: 0 !important; }
  .landingpage_b2b_partner .ms-1 {
    margin-left: 0.25rem !important; }
  .landingpage_b2b_partner .ms-2 {
    margin-left: 0.5rem !important; }
  .landingpage_b2b_partner .ms-3 {
    margin-left: 1rem !important; }
  .landingpage_b2b_partner .ms-4 {
    margin-left: 1.5rem !important; }
  .landingpage_b2b_partner .ms-5 {
    margin-left: 3rem !important; }
  .landingpage_b2b_partner .ms-auto {
    margin-left: auto !important; }
  .landingpage_b2b_partner .p-0 {
    padding: 0 !important; }
  .landingpage_b2b_partner .p-1 {
    padding: 0.25rem !important; }
  .landingpage_b2b_partner .p-2 {
    padding: 0.5rem !important; }
  .landingpage_b2b_partner .p-3 {
    padding: 1rem !important; }
  .landingpage_b2b_partner .p-4 {
    padding: 1.5rem !important; }
  .landingpage_b2b_partner .p-5 {
    padding: 3rem !important; }
  .landingpage_b2b_partner .px-0 {
    padding-right: 0 !important;
    padding-left: 0 !important; }
  .landingpage_b2b_partner .px-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important; }
  .landingpage_b2b_partner .px-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important; }
  .landingpage_b2b_partner .px-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important; }
  .landingpage_b2b_partner .px-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important; }
  .landingpage_b2b_partner .px-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important; }
  .landingpage_b2b_partner .py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important; }
  .landingpage_b2b_partner .py-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important; }
  .landingpage_b2b_partner .py-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important; }
  .landingpage_b2b_partner .py-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important; }
  .landingpage_b2b_partner .py-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important; }
  .landingpage_b2b_partner .py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important; }
  .landingpage_b2b_partner .pt-0 {
    padding-top: 0 !important; }
  .landingpage_b2b_partner .pt-1 {
    padding-top: 0.25rem !important; }
  .landingpage_b2b_partner .pt-2 {
    padding-top: 0.5rem !important; }
  .landingpage_b2b_partner .pt-3 {
    padding-top: 1rem !important; }
  .landingpage_b2b_partner .pt-4 {
    padding-top: 1.5rem !important; }
  .landingpage_b2b_partner .pt-5 {
    padding-top: 3rem !important; }
  .landingpage_b2b_partner .pe-0 {
    padding-right: 0 !important; }
  .landingpage_b2b_partner .pe-1 {
    padding-right: 0.25rem !important; }
  .landingpage_b2b_partner .pe-2 {
    padding-right: 0.5rem !important; }
  .landingpage_b2b_partner .pe-3 {
    padding-right: 1rem !important; }
  .landingpage_b2b_partner .pe-4 {
    padding-right: 1.5rem !important; }
  .landingpage_b2b_partner .pe-5 {
    padding-right: 3rem !important; }
  .landingpage_b2b_partner .pb-0 {
    padding-bottom: 0 !important; }
  .landingpage_b2b_partner .pb-1 {
    padding-bottom: 0.25rem !important; }
  .landingpage_b2b_partner .pb-2 {
    padding-bottom: 0.5rem !important; }
  .landingpage_b2b_partner .pb-3 {
    padding-bottom: 1rem !important; }
  .landingpage_b2b_partner .pb-4 {
    padding-bottom: 1.5rem !important; }
  .landingpage_b2b_partner .pb-5 {
    padding-bottom: 3rem !important; }
  .landingpage_b2b_partner .ps-0 {
    padding-left: 0 !important; }
  .landingpage_b2b_partner .ps-1 {
    padding-left: 0.25rem !important; }
  .landingpage_b2b_partner .ps-2 {
    padding-left: 0.5rem !important; }
  .landingpage_b2b_partner .ps-3 {
    padding-left: 1rem !important; }
  .landingpage_b2b_partner .ps-4 {
    padding-left: 1.5rem !important; }
  .landingpage_b2b_partner .ps-5 {
    padding-left: 3rem !important; }

@media (min-width: 576px) {
  .landingpage_b2b_partner .d-sm-inline {
    display: inline !important; }
  .landingpage_b2b_partner .d-sm-inline-block {
    display: inline-block !important; }
  .landingpage_b2b_partner .d-sm-block {
    display: block !important; }
  .landingpage_b2b_partner .d-sm-grid {
    display: -ms-grid !important;
    display: grid !important; }
  .landingpage_b2b_partner .d-sm-table {
    display: table !important; }
  .landingpage_b2b_partner .d-sm-table-row {
    display: table-row !important; }
  .landingpage_b2b_partner .d-sm-table-cell {
    display: table-cell !important; }
  .landingpage_b2b_partner .d-sm-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important; }
  .landingpage_b2b_partner .d-sm-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important; }
  .landingpage_b2b_partner .d-sm-none {
    display: none !important; }
  .landingpage_b2b_partner .flex-sm-fill {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important; }
  .landingpage_b2b_partner .flex-sm-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important; }
  .landingpage_b2b_partner .flex-sm-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important; }
  .landingpage_b2b_partner .flex-sm-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important; }
  .landingpage_b2b_partner .flex-sm-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important; }
  .landingpage_b2b_partner .flex-sm-grow-0 {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important; }
  .landingpage_b2b_partner .flex-sm-grow-1 {
    -webkit-box-flex: 1 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important; }
  .landingpage_b2b_partner .flex-sm-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important; }
  .landingpage_b2b_partner .flex-sm-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important; }
  .landingpage_b2b_partner .flex-sm-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important; }
  .landingpage_b2b_partner .flex-sm-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important; }
  .landingpage_b2b_partner .flex-sm-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important; }
  .landingpage_b2b_partner .justify-content-sm-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important; }
  .landingpage_b2b_partner .justify-content-sm-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important; }
  .landingpage_b2b_partner .justify-content-sm-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important; }
  .landingpage_b2b_partner .justify-content-sm-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important; }
  .landingpage_b2b_partner .justify-content-sm-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important; }
  .landingpage_b2b_partner .justify-content-sm-evenly {
    -webkit-box-pack: space-evenly !important;
    -ms-flex-pack: space-evenly !important;
    justify-content: space-evenly !important; }
  .landingpage_b2b_partner .align-items-sm-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important; }
  .landingpage_b2b_partner .align-items-sm-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important; }
  .landingpage_b2b_partner .align-items-sm-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important; }
  .landingpage_b2b_partner .align-items-sm-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important; }
  .landingpage_b2b_partner .align-items-sm-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important; }
  .landingpage_b2b_partner .align-content-sm-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important; }
  .landingpage_b2b_partner .align-content-sm-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important; }
  .landingpage_b2b_partner .align-content-sm-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important; }
  .landingpage_b2b_partner .align-content-sm-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important; }
  .landingpage_b2b_partner .align-content-sm-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important; }
  .landingpage_b2b_partner .align-content-sm-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important; }
  .landingpage_b2b_partner .align-self-sm-auto {
    -ms-flex-item-align: auto !important;
    -ms-grid-row-align: auto !important;
    align-self: auto !important; }
  .landingpage_b2b_partner .align-self-sm-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important; }
  .landingpage_b2b_partner .align-self-sm-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important; }
  .landingpage_b2b_partner .align-self-sm-center {
    -ms-flex-item-align: center !important;
    -ms-grid-row-align: center !important;
    align-self: center !important; }
  .landingpage_b2b_partner .align-self-sm-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important; }
  .landingpage_b2b_partner .align-self-sm-stretch {
    -ms-flex-item-align: stretch !important;
    -ms-grid-row-align: stretch !important;
    align-self: stretch !important; }
  .landingpage_b2b_partner .order-sm-first {
    -webkit-box-ordinal-group: 0 !important;
    -ms-flex-order: -1 !important;
    order: -1 !important; }
  .landingpage_b2b_partner .order-sm-0 {
    -webkit-box-ordinal-group: 1 !important;
    -ms-flex-order: 0 !important;
    order: 0 !important; }
  .landingpage_b2b_partner .order-sm-1 {
    -webkit-box-ordinal-group: 2 !important;
    -ms-flex-order: 1 !important;
    order: 1 !important; }
  .landingpage_b2b_partner .order-sm-2 {
    -webkit-box-ordinal-group: 3 !important;
    -ms-flex-order: 2 !important;
    order: 2 !important; }
  .landingpage_b2b_partner .order-sm-3 {
    -webkit-box-ordinal-group: 4 !important;
    -ms-flex-order: 3 !important;
    order: 3 !important; }
  .landingpage_b2b_partner .order-sm-4 {
    -webkit-box-ordinal-group: 5 !important;
    -ms-flex-order: 4 !important;
    order: 4 !important; }
  .landingpage_b2b_partner .order-sm-5 {
    -webkit-box-ordinal-group: 6 !important;
    -ms-flex-order: 5 !important;
    order: 5 !important; }
  .landingpage_b2b_partner .order-sm-last {
    -webkit-box-ordinal-group: 7 !important;
    -ms-flex-order: 6 !important;
    order: 6 !important; }
  .landingpage_b2b_partner .m-sm-0 {
    margin: 0 !important; }
  .landingpage_b2b_partner .m-sm-1 {
    margin: 0.25rem !important; }
  .landingpage_b2b_partner .m-sm-2 {
    margin: 0.5rem !important; }
  .landingpage_b2b_partner .m-sm-3 {
    margin: 1rem !important; }
  .landingpage_b2b_partner .m-sm-4 {
    margin: 1.5rem !important; }
  .landingpage_b2b_partner .m-sm-5 {
    margin: 3rem !important; }
  .landingpage_b2b_partner .m-sm-auto {
    margin: auto !important; }
  .landingpage_b2b_partner .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important; }
  .landingpage_b2b_partner .mx-sm-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important; }
  .landingpage_b2b_partner .mx-sm-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important; }
  .landingpage_b2b_partner .mx-sm-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important; }
  .landingpage_b2b_partner .mx-sm-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important; }
  .landingpage_b2b_partner .mx-sm-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important; }
  .landingpage_b2b_partner .mx-sm-auto {
    margin-right: auto !important;
    margin-left: auto !important; }
  .landingpage_b2b_partner .my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important; }
  .landingpage_b2b_partner .my-sm-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important; }
  .landingpage_b2b_partner .my-sm-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important; }
  .landingpage_b2b_partner .my-sm-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important; }
  .landingpage_b2b_partner .my-sm-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important; }
  .landingpage_b2b_partner .my-sm-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important; }
  .landingpage_b2b_partner .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important; }
  .landingpage_b2b_partner .mt-sm-0 {
    margin-top: 0 !important; }
  .landingpage_b2b_partner .mt-sm-1 {
    margin-top: 0.25rem !important; }
  .landingpage_b2b_partner .mt-sm-2 {
    margin-top: 0.5rem !important; }
  .landingpage_b2b_partner .mt-sm-3 {
    margin-top: 1rem !important; }
  .landingpage_b2b_partner .mt-sm-4 {
    margin-top: 1.5rem !important; }
  .landingpage_b2b_partner .mt-sm-5 {
    margin-top: 3rem !important; }
  .landingpage_b2b_partner .mt-sm-auto {
    margin-top: auto !important; }
  .landingpage_b2b_partner .me-sm-0 {
    margin-right: 0 !important; }
  .landingpage_b2b_partner .me-sm-1 {
    margin-right: 0.25rem !important; }
  .landingpage_b2b_partner .me-sm-2 {
    margin-right: 0.5rem !important; }
  .landingpage_b2b_partner .me-sm-3 {
    margin-right: 1rem !important; }
  .landingpage_b2b_partner .me-sm-4 {
    margin-right: 1.5rem !important; }
  .landingpage_b2b_partner .me-sm-5 {
    margin-right: 3rem !important; }
  .landingpage_b2b_partner .me-sm-auto {
    margin-right: auto !important; }
  .landingpage_b2b_partner .mb-sm-0 {
    margin-bottom: 0 !important; }
  .landingpage_b2b_partner .mb-sm-1 {
    margin-bottom: 0.25rem !important; }
  .landingpage_b2b_partner .mb-sm-2 {
    margin-bottom: 0.5rem !important; }
  .landingpage_b2b_partner .mb-sm-3 {
    margin-bottom: 1rem !important; }
  .landingpage_b2b_partner .mb-sm-4 {
    margin-bottom: 1.5rem !important; }
  .landingpage_b2b_partner .mb-sm-5 {
    margin-bottom: 3rem !important; }
  .landingpage_b2b_partner .mb-sm-auto {
    margin-bottom: auto !important; }
  .landingpage_b2b_partner .ms-sm-0 {
    margin-left: 0 !important; }
  .landingpage_b2b_partner .ms-sm-1 {
    margin-left: 0.25rem !important; }
  .landingpage_b2b_partner .ms-sm-2 {
    margin-left: 0.5rem !important; }
  .landingpage_b2b_partner .ms-sm-3 {
    margin-left: 1rem !important; }
  .landingpage_b2b_partner .ms-sm-4 {
    margin-left: 1.5rem !important; }
  .landingpage_b2b_partner .ms-sm-5 {
    margin-left: 3rem !important; }
  .landingpage_b2b_partner .ms-sm-auto {
    margin-left: auto !important; }
  .landingpage_b2b_partner .p-sm-0 {
    padding: 0 !important; }
  .landingpage_b2b_partner .p-sm-1 {
    padding: 0.25rem !important; }
  .landingpage_b2b_partner .p-sm-2 {
    padding: 0.5rem !important; }
  .landingpage_b2b_partner .p-sm-3 {
    padding: 1rem !important; }
  .landingpage_b2b_partner .p-sm-4 {
    padding: 1.5rem !important; }
  .landingpage_b2b_partner .p-sm-5 {
    padding: 3rem !important; }
  .landingpage_b2b_partner .px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important; }
  .landingpage_b2b_partner .px-sm-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important; }
  .landingpage_b2b_partner .px-sm-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important; }
  .landingpage_b2b_partner .px-sm-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important; }
  .landingpage_b2b_partner .px-sm-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important; }
  .landingpage_b2b_partner .px-sm-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important; }
  .landingpage_b2b_partner .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important; }
  .landingpage_b2b_partner .py-sm-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important; }
  .landingpage_b2b_partner .py-sm-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important; }
  .landingpage_b2b_partner .py-sm-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important; }
  .landingpage_b2b_partner .py-sm-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important; }
  .landingpage_b2b_partner .py-sm-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important; }
  .landingpage_b2b_partner .pt-sm-0 {
    padding-top: 0 !important; }
  .landingpage_b2b_partner .pt-sm-1 {
    padding-top: 0.25rem !important; }
  .landingpage_b2b_partner .pt-sm-2 {
    padding-top: 0.5rem !important; }
  .landingpage_b2b_partner .pt-sm-3 {
    padding-top: 1rem !important; }
  .landingpage_b2b_partner .pt-sm-4 {
    padding-top: 1.5rem !important; }
  .landingpage_b2b_partner .pt-sm-5 {
    padding-top: 3rem !important; }
  .landingpage_b2b_partner .pe-sm-0 {
    padding-right: 0 !important; }
  .landingpage_b2b_partner .pe-sm-1 {
    padding-right: 0.25rem !important; }
  .landingpage_b2b_partner .pe-sm-2 {
    padding-right: 0.5rem !important; }
  .landingpage_b2b_partner .pe-sm-3 {
    padding-right: 1rem !important; }
  .landingpage_b2b_partner .pe-sm-4 {
    padding-right: 1.5rem !important; }
  .landingpage_b2b_partner .pe-sm-5 {
    padding-right: 3rem !important; }
  .landingpage_b2b_partner .pb-sm-0 {
    padding-bottom: 0 !important; }
  .landingpage_b2b_partner .pb-sm-1 {
    padding-bottom: 0.25rem !important; }
  .landingpage_b2b_partner .pb-sm-2 {
    padding-bottom: 0.5rem !important; }
  .landingpage_b2b_partner .pb-sm-3 {
    padding-bottom: 1rem !important; }
  .landingpage_b2b_partner .pb-sm-4 {
    padding-bottom: 1.5rem !important; }
  .landingpage_b2b_partner .pb-sm-5 {
    padding-bottom: 3rem !important; }
  .landingpage_b2b_partner .ps-sm-0 {
    padding-left: 0 !important; }
  .landingpage_b2b_partner .ps-sm-1 {
    padding-left: 0.25rem !important; }
  .landingpage_b2b_partner .ps-sm-2 {
    padding-left: 0.5rem !important; }
  .landingpage_b2b_partner .ps-sm-3 {
    padding-left: 1rem !important; }
  .landingpage_b2b_partner .ps-sm-4 {
    padding-left: 1.5rem !important; }
  .landingpage_b2b_partner .ps-sm-5 {
    padding-left: 3rem !important; } }

@media (min-width: 768px) {
  .landingpage_b2b_partner .d-md-inline {
    display: inline !important; }
  .landingpage_b2b_partner .d-md-inline-block {
    display: inline-block !important; }
  .landingpage_b2b_partner .d-md-block {
    display: block !important; }
  .landingpage_b2b_partner .d-md-grid {
    display: -ms-grid !important;
    display: grid !important; }
  .landingpage_b2b_partner .d-md-table {
    display: table !important; }
  .landingpage_b2b_partner .d-md-table-row {
    display: table-row !important; }
  .landingpage_b2b_partner .d-md-table-cell {
    display: table-cell !important; }
  .landingpage_b2b_partner .d-md-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important; }
  .landingpage_b2b_partner .d-md-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important; }
  .landingpage_b2b_partner .d-md-none {
    display: none !important; }
  .landingpage_b2b_partner .flex-md-fill {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important; }
  .landingpage_b2b_partner .flex-md-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important; }
  .landingpage_b2b_partner .flex-md-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important; }
  .landingpage_b2b_partner .flex-md-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important; }
  .landingpage_b2b_partner .flex-md-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important; }
  .landingpage_b2b_partner .flex-md-grow-0 {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important; }
  .landingpage_b2b_partner .flex-md-grow-1 {
    -webkit-box-flex: 1 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important; }
  .landingpage_b2b_partner .flex-md-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important; }
  .landingpage_b2b_partner .flex-md-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important; }
  .landingpage_b2b_partner .flex-md-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important; }
  .landingpage_b2b_partner .flex-md-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important; }
  .landingpage_b2b_partner .flex-md-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important; }
  .landingpage_b2b_partner .justify-content-md-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important; }
  .landingpage_b2b_partner .justify-content-md-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important; }
  .landingpage_b2b_partner .justify-content-md-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important; }
  .landingpage_b2b_partner .justify-content-md-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important; }
  .landingpage_b2b_partner .justify-content-md-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important; }
  .landingpage_b2b_partner .justify-content-md-evenly {
    -webkit-box-pack: space-evenly !important;
    -ms-flex-pack: space-evenly !important;
    justify-content: space-evenly !important; }
  .landingpage_b2b_partner .align-items-md-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important; }
  .landingpage_b2b_partner .align-items-md-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important; }
  .landingpage_b2b_partner .align-items-md-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important; }
  .landingpage_b2b_partner .align-items-md-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important; }
  .landingpage_b2b_partner .align-items-md-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important; }
  .landingpage_b2b_partner .align-content-md-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important; }
  .landingpage_b2b_partner .align-content-md-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important; }
  .landingpage_b2b_partner .align-content-md-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important; }
  .landingpage_b2b_partner .align-content-md-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important; }
  .landingpage_b2b_partner .align-content-md-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important; }
  .landingpage_b2b_partner .align-content-md-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important; }
  .landingpage_b2b_partner .align-self-md-auto {
    -ms-flex-item-align: auto !important;
    -ms-grid-row-align: auto !important;
    align-self: auto !important; }
  .landingpage_b2b_partner .align-self-md-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important; }
  .landingpage_b2b_partner .align-self-md-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important; }
  .landingpage_b2b_partner .align-self-md-center {
    -ms-flex-item-align: center !important;
    -ms-grid-row-align: center !important;
    align-self: center !important; }
  .landingpage_b2b_partner .align-self-md-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important; }
  .landingpage_b2b_partner .align-self-md-stretch {
    -ms-flex-item-align: stretch !important;
    -ms-grid-row-align: stretch !important;
    align-self: stretch !important; }
  .landingpage_b2b_partner .order-md-first {
    -webkit-box-ordinal-group: 0 !important;
    -ms-flex-order: -1 !important;
    order: -1 !important; }
  .landingpage_b2b_partner .order-md-0 {
    -webkit-box-ordinal-group: 1 !important;
    -ms-flex-order: 0 !important;
    order: 0 !important; }
  .landingpage_b2b_partner .order-md-1 {
    -webkit-box-ordinal-group: 2 !important;
    -ms-flex-order: 1 !important;
    order: 1 !important; }
  .landingpage_b2b_partner .order-md-2 {
    -webkit-box-ordinal-group: 3 !important;
    -ms-flex-order: 2 !important;
    order: 2 !important; }
  .landingpage_b2b_partner .order-md-3 {
    -webkit-box-ordinal-group: 4 !important;
    -ms-flex-order: 3 !important;
    order: 3 !important; }
  .landingpage_b2b_partner .order-md-4 {
    -webkit-box-ordinal-group: 5 !important;
    -ms-flex-order: 4 !important;
    order: 4 !important; }
  .landingpage_b2b_partner .order-md-5 {
    -webkit-box-ordinal-group: 6 !important;
    -ms-flex-order: 5 !important;
    order: 5 !important; }
  .landingpage_b2b_partner .order-md-last {
    -webkit-box-ordinal-group: 7 !important;
    -ms-flex-order: 6 !important;
    order: 6 !important; }
  .landingpage_b2b_partner .m-md-0 {
    margin: 0 !important; }
  .landingpage_b2b_partner .m-md-1 {
    margin: 0.25rem !important; }
  .landingpage_b2b_partner .m-md-2 {
    margin: 0.5rem !important; }
  .landingpage_b2b_partner .m-md-3 {
    margin: 1rem !important; }
  .landingpage_b2b_partner .m-md-4 {
    margin: 1.5rem !important; }
  .landingpage_b2b_partner .m-md-5 {
    margin: 3rem !important; }
  .landingpage_b2b_partner .m-md-auto {
    margin: auto !important; }
  .landingpage_b2b_partner .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important; }
  .landingpage_b2b_partner .mx-md-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important; }
  .landingpage_b2b_partner .mx-md-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important; }
  .landingpage_b2b_partner .mx-md-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important; }
  .landingpage_b2b_partner .mx-md-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important; }
  .landingpage_b2b_partner .mx-md-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important; }
  .landingpage_b2b_partner .mx-md-auto {
    margin-right: auto !important;
    margin-left: auto !important; }
  .landingpage_b2b_partner .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important; }
  .landingpage_b2b_partner .my-md-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important; }
  .landingpage_b2b_partner .my-md-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important; }
  .landingpage_b2b_partner .my-md-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important; }
  .landingpage_b2b_partner .my-md-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important; }
  .landingpage_b2b_partner .my-md-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important; }
  .landingpage_b2b_partner .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important; }
  .landingpage_b2b_partner .mt-md-0 {
    margin-top: 0 !important; }
  .landingpage_b2b_partner .mt-md-1 {
    margin-top: 0.25rem !important; }
  .landingpage_b2b_partner .mt-md-2 {
    margin-top: 0.5rem !important; }
  .landingpage_b2b_partner .mt-md-3 {
    margin-top: 1rem !important; }
  .landingpage_b2b_partner .mt-md-4 {
    margin-top: 1.5rem !important; }
  .landingpage_b2b_partner .mt-md-5 {
    margin-top: 3rem !important; }
  .landingpage_b2b_partner .mt-md-auto {
    margin-top: auto !important; }
  .landingpage_b2b_partner .me-md-0 {
    margin-right: 0 !important; }
  .landingpage_b2b_partner .me-md-1 {
    margin-right: 0.25rem !important; }
  .landingpage_b2b_partner .me-md-2 {
    margin-right: 0.5rem !important; }
  .landingpage_b2b_partner .me-md-3 {
    margin-right: 1rem !important; }
  .landingpage_b2b_partner .me-md-4 {
    margin-right: 1.5rem !important; }
  .landingpage_b2b_partner .me-md-5 {
    margin-right: 3rem !important; }
  .landingpage_b2b_partner .me-md-auto {
    margin-right: auto !important; }
  .landingpage_b2b_partner .mb-md-0 {
    margin-bottom: 0 !important; }
  .landingpage_b2b_partner .mb-md-1 {
    margin-bottom: 0.25rem !important; }
  .landingpage_b2b_partner .mb-md-2 {
    margin-bottom: 0.5rem !important; }
  .landingpage_b2b_partner .mb-md-3 {
    margin-bottom: 1rem !important; }
  .landingpage_b2b_partner .mb-md-4 {
    margin-bottom: 1.5rem !important; }
  .landingpage_b2b_partner .mb-md-5 {
    margin-bottom: 3rem !important; }
  .landingpage_b2b_partner .mb-md-auto {
    margin-bottom: auto !important; }
  .landingpage_b2b_partner .ms-md-0 {
    margin-left: 0 !important; }
  .landingpage_b2b_partner .ms-md-1 {
    margin-left: 0.25rem !important; }
  .landingpage_b2b_partner .ms-md-2 {
    margin-left: 0.5rem !important; }
  .landingpage_b2b_partner .ms-md-3 {
    margin-left: 1rem !important; }
  .landingpage_b2b_partner .ms-md-4 {
    margin-left: 1.5rem !important; }
  .landingpage_b2b_partner .ms-md-5 {
    margin-left: 3rem !important; }
  .landingpage_b2b_partner .ms-md-auto {
    margin-left: auto !important; }
  .landingpage_b2b_partner .p-md-0 {
    padding: 0 !important; }
  .landingpage_b2b_partner .p-md-1 {
    padding: 0.25rem !important; }
  .landingpage_b2b_partner .p-md-2 {
    padding: 0.5rem !important; }
  .landingpage_b2b_partner .p-md-3 {
    padding: 1rem !important; }
  .landingpage_b2b_partner .p-md-4 {
    padding: 1.5rem !important; }
  .landingpage_b2b_partner .p-md-5 {
    padding: 3rem !important; }
  .landingpage_b2b_partner .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important; }
  .landingpage_b2b_partner .px-md-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important; }
  .landingpage_b2b_partner .px-md-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important; }
  .landingpage_b2b_partner .px-md-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important; }
  .landingpage_b2b_partner .px-md-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important; }
  .landingpage_b2b_partner .px-md-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important; }
  .landingpage_b2b_partner .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important; }
  .landingpage_b2b_partner .py-md-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important; }
  .landingpage_b2b_partner .py-md-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important; }
  .landingpage_b2b_partner .py-md-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important; }
  .landingpage_b2b_partner .py-md-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important; }
  .landingpage_b2b_partner .py-md-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important; }
  .landingpage_b2b_partner .pt-md-0 {
    padding-top: 0 !important; }
  .landingpage_b2b_partner .pt-md-1 {
    padding-top: 0.25rem !important; }
  .landingpage_b2b_partner .pt-md-2 {
    padding-top: 0.5rem !important; }
  .landingpage_b2b_partner .pt-md-3 {
    padding-top: 1rem !important; }
  .landingpage_b2b_partner .pt-md-4 {
    padding-top: 1.5rem !important; }
  .landingpage_b2b_partner .pt-md-5 {
    padding-top: 3rem !important; }
  .landingpage_b2b_partner .pe-md-0 {
    padding-right: 0 !important; }
  .landingpage_b2b_partner .pe-md-1 {
    padding-right: 0.25rem !important; }
  .landingpage_b2b_partner .pe-md-2 {
    padding-right: 0.5rem !important; }
  .landingpage_b2b_partner .pe-md-3 {
    padding-right: 1rem !important; }
  .landingpage_b2b_partner .pe-md-4 {
    padding-right: 1.5rem !important; }
  .landingpage_b2b_partner .pe-md-5 {
    padding-right: 3rem !important; }
  .landingpage_b2b_partner .pb-md-0 {
    padding-bottom: 0 !important; }
  .landingpage_b2b_partner .pb-md-1 {
    padding-bottom: 0.25rem !important; }
  .landingpage_b2b_partner .pb-md-2 {
    padding-bottom: 0.5rem !important; }
  .landingpage_b2b_partner .pb-md-3 {
    padding-bottom: 1rem !important; }
  .landingpage_b2b_partner .pb-md-4 {
    padding-bottom: 1.5rem !important; }
  .landingpage_b2b_partner .pb-md-5 {
    padding-bottom: 3rem !important; }
  .landingpage_b2b_partner .ps-md-0 {
    padding-left: 0 !important; }
  .landingpage_b2b_partner .ps-md-1 {
    padding-left: 0.25rem !important; }
  .landingpage_b2b_partner .ps-md-2 {
    padding-left: 0.5rem !important; }
  .landingpage_b2b_partner .ps-md-3 {
    padding-left: 1rem !important; }
  .landingpage_b2b_partner .ps-md-4 {
    padding-left: 1.5rem !important; }
  .landingpage_b2b_partner .ps-md-5 {
    padding-left: 3rem !important; } }

@media (min-width: 992px) {
  .landingpage_b2b_partner .d-lg-inline {
    display: inline !important; }
  .landingpage_b2b_partner .d-lg-inline-block {
    display: inline-block !important; }
  .landingpage_b2b_partner .d-lg-block {
    display: block !important; }
  .landingpage_b2b_partner .d-lg-grid {
    display: -ms-grid !important;
    display: grid !important; }
  .landingpage_b2b_partner .d-lg-table {
    display: table !important; }
  .landingpage_b2b_partner .d-lg-table-row {
    display: table-row !important; }
  .landingpage_b2b_partner .d-lg-table-cell {
    display: table-cell !important; }
  .landingpage_b2b_partner .d-lg-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important; }
  .landingpage_b2b_partner .d-lg-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important; }
  .landingpage_b2b_partner .d-lg-none {
    display: none !important; }
  .landingpage_b2b_partner .flex-lg-fill {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important; }
  .landingpage_b2b_partner .flex-lg-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important; }
  .landingpage_b2b_partner .flex-lg-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important; }
  .landingpage_b2b_partner .flex-lg-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important; }
  .landingpage_b2b_partner .flex-lg-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important; }
  .landingpage_b2b_partner .flex-lg-grow-0 {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important; }
  .landingpage_b2b_partner .flex-lg-grow-1 {
    -webkit-box-flex: 1 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important; }
  .landingpage_b2b_partner .flex-lg-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important; }
  .landingpage_b2b_partner .flex-lg-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important; }
  .landingpage_b2b_partner .flex-lg-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important; }
  .landingpage_b2b_partner .flex-lg-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important; }
  .landingpage_b2b_partner .flex-lg-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important; }
  .landingpage_b2b_partner .justify-content-lg-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important; }
  .landingpage_b2b_partner .justify-content-lg-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important; }
  .landingpage_b2b_partner .justify-content-lg-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important; }
  .landingpage_b2b_partner .justify-content-lg-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important; }
  .landingpage_b2b_partner .justify-content-lg-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important; }
  .landingpage_b2b_partner .justify-content-lg-evenly {
    -webkit-box-pack: space-evenly !important;
    -ms-flex-pack: space-evenly !important;
    justify-content: space-evenly !important; }
  .landingpage_b2b_partner .align-items-lg-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important; }
  .landingpage_b2b_partner .align-items-lg-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important; }
  .landingpage_b2b_partner .align-items-lg-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important; }
  .landingpage_b2b_partner .align-items-lg-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important; }
  .landingpage_b2b_partner .align-items-lg-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important; }
  .landingpage_b2b_partner .align-content-lg-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important; }
  .landingpage_b2b_partner .align-content-lg-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important; }
  .landingpage_b2b_partner .align-content-lg-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important; }
  .landingpage_b2b_partner .align-content-lg-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important; }
  .landingpage_b2b_partner .align-content-lg-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important; }
  .landingpage_b2b_partner .align-content-lg-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important; }
  .landingpage_b2b_partner .align-self-lg-auto {
    -ms-flex-item-align: auto !important;
    -ms-grid-row-align: auto !important;
    align-self: auto !important; }
  .landingpage_b2b_partner .align-self-lg-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important; }
  .landingpage_b2b_partner .align-self-lg-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important; }
  .landingpage_b2b_partner .align-self-lg-center {
    -ms-flex-item-align: center !important;
    -ms-grid-row-align: center !important;
    align-self: center !important; }
  .landingpage_b2b_partner .align-self-lg-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important; }
  .landingpage_b2b_partner .align-self-lg-stretch {
    -ms-flex-item-align: stretch !important;
    -ms-grid-row-align: stretch !important;
    align-self: stretch !important; }
  .landingpage_b2b_partner .order-lg-first {
    -webkit-box-ordinal-group: 0 !important;
    -ms-flex-order: -1 !important;
    order: -1 !important; }
  .landingpage_b2b_partner .order-lg-0 {
    -webkit-box-ordinal-group: 1 !important;
    -ms-flex-order: 0 !important;
    order: 0 !important; }
  .landingpage_b2b_partner .order-lg-1 {
    -webkit-box-ordinal-group: 2 !important;
    -ms-flex-order: 1 !important;
    order: 1 !important; }
  .landingpage_b2b_partner .order-lg-2 {
    -webkit-box-ordinal-group: 3 !important;
    -ms-flex-order: 2 !important;
    order: 2 !important; }
  .landingpage_b2b_partner .order-lg-3 {
    -webkit-box-ordinal-group: 4 !important;
    -ms-flex-order: 3 !important;
    order: 3 !important; }
  .landingpage_b2b_partner .order-lg-4 {
    -webkit-box-ordinal-group: 5 !important;
    -ms-flex-order: 4 !important;
    order: 4 !important; }
  .landingpage_b2b_partner .order-lg-5 {
    -webkit-box-ordinal-group: 6 !important;
    -ms-flex-order: 5 !important;
    order: 5 !important; }
  .landingpage_b2b_partner .order-lg-last {
    -webkit-box-ordinal-group: 7 !important;
    -ms-flex-order: 6 !important;
    order: 6 !important; }
  .landingpage_b2b_partner .m-lg-0 {
    margin: 0 !important; }
  .landingpage_b2b_partner .m-lg-1 {
    margin: 0.25rem !important; }
  .landingpage_b2b_partner .m-lg-2 {
    margin: 0.5rem !important; }
  .landingpage_b2b_partner .m-lg-3 {
    margin: 1rem !important; }
  .landingpage_b2b_partner .m-lg-4 {
    margin: 1.5rem !important; }
  .landingpage_b2b_partner .m-lg-5 {
    margin: 3rem !important; }
  .landingpage_b2b_partner .m-lg-auto {
    margin: auto !important; }
  .landingpage_b2b_partner .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important; }
  .landingpage_b2b_partner .mx-lg-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important; }
  .landingpage_b2b_partner .mx-lg-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important; }
  .landingpage_b2b_partner .mx-lg-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important; }
  .landingpage_b2b_partner .mx-lg-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important; }
  .landingpage_b2b_partner .mx-lg-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important; }
  .landingpage_b2b_partner .mx-lg-auto {
    margin-right: auto !important;
    margin-left: auto !important; }
  .landingpage_b2b_partner .my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important; }
  .landingpage_b2b_partner .my-lg-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important; }
  .landingpage_b2b_partner .my-lg-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important; }
  .landingpage_b2b_partner .my-lg-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important; }
  .landingpage_b2b_partner .my-lg-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important; }
  .landingpage_b2b_partner .my-lg-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important; }
  .landingpage_b2b_partner .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important; }
  .landingpage_b2b_partner .mt-lg-0 {
    margin-top: 0 !important; }
  .landingpage_b2b_partner .mt-lg-1 {
    margin-top: 0.25rem !important; }
  .landingpage_b2b_partner .mt-lg-2 {
    margin-top: 0.5rem !important; }
  .landingpage_b2b_partner .mt-lg-3 {
    margin-top: 1rem !important; }
  .landingpage_b2b_partner .mt-lg-4 {
    margin-top: 1.5rem !important; }
  .landingpage_b2b_partner .mt-lg-5 {
    margin-top: 3rem !important; }
  .landingpage_b2b_partner .mt-lg-auto {
    margin-top: auto !important; }
  .landingpage_b2b_partner .me-lg-0 {
    margin-right: 0 !important; }
  .landingpage_b2b_partner .me-lg-1 {
    margin-right: 0.25rem !important; }
  .landingpage_b2b_partner .me-lg-2 {
    margin-right: 0.5rem !important; }
  .landingpage_b2b_partner .me-lg-3 {
    margin-right: 1rem !important; }
  .landingpage_b2b_partner .me-lg-4 {
    margin-right: 1.5rem !important; }
  .landingpage_b2b_partner .me-lg-5 {
    margin-right: 3rem !important; }
  .landingpage_b2b_partner .me-lg-auto {
    margin-right: auto !important; }
  .landingpage_b2b_partner .mb-lg-0 {
    margin-bottom: 0 !important; }
  .landingpage_b2b_partner .mb-lg-1 {
    margin-bottom: 0.25rem !important; }
  .landingpage_b2b_partner .mb-lg-2 {
    margin-bottom: 0.5rem !important; }
  .landingpage_b2b_partner .mb-lg-3 {
    margin-bottom: 1rem !important; }
  .landingpage_b2b_partner .mb-lg-4 {
    margin-bottom: 1.5rem !important; }
  .landingpage_b2b_partner .mb-lg-5 {
    margin-bottom: 3rem !important; }
  .landingpage_b2b_partner .mb-lg-auto {
    margin-bottom: auto !important; }
  .landingpage_b2b_partner .ms-lg-0 {
    margin-left: 0 !important; }
  .landingpage_b2b_partner .ms-lg-1 {
    margin-left: 0.25rem !important; }
  .landingpage_b2b_partner .ms-lg-2 {
    margin-left: 0.5rem !important; }
  .landingpage_b2b_partner .ms-lg-3 {
    margin-left: 1rem !important; }
  .landingpage_b2b_partner .ms-lg-4 {
    margin-left: 1.5rem !important; }
  .landingpage_b2b_partner .ms-lg-5 {
    margin-left: 3rem !important; }
  .landingpage_b2b_partner .ms-lg-auto {
    margin-left: auto !important; }
  .landingpage_b2b_partner .p-lg-0 {
    padding: 0 !important; }
  .landingpage_b2b_partner .p-lg-1 {
    padding: 0.25rem !important; }
  .landingpage_b2b_partner .p-lg-2 {
    padding: 0.5rem !important; }
  .landingpage_b2b_partner .p-lg-3 {
    padding: 1rem !important; }
  .landingpage_b2b_partner .p-lg-4 {
    padding: 1.5rem !important; }
  .landingpage_b2b_partner .p-lg-5 {
    padding: 3rem !important; }
  .landingpage_b2b_partner .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important; }
  .landingpage_b2b_partner .px-lg-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important; }
  .landingpage_b2b_partner .px-lg-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important; }
  .landingpage_b2b_partner .px-lg-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important; }
  .landingpage_b2b_partner .px-lg-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important; }
  .landingpage_b2b_partner .px-lg-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important; }
  .landingpage_b2b_partner .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important; }
  .landingpage_b2b_partner .py-lg-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important; }
  .landingpage_b2b_partner .py-lg-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important; }
  .landingpage_b2b_partner .py-lg-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important; }
  .landingpage_b2b_partner .py-lg-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important; }
  .landingpage_b2b_partner .py-lg-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important; }
  .landingpage_b2b_partner .pt-lg-0 {
    padding-top: 0 !important; }
  .landingpage_b2b_partner .pt-lg-1 {
    padding-top: 0.25rem !important; }
  .landingpage_b2b_partner .pt-lg-2 {
    padding-top: 0.5rem !important; }
  .landingpage_b2b_partner .pt-lg-3 {
    padding-top: 1rem !important; }
  .landingpage_b2b_partner .pt-lg-4 {
    padding-top: 1.5rem !important; }
  .landingpage_b2b_partner .pt-lg-5 {
    padding-top: 3rem !important; }
  .landingpage_b2b_partner .pe-lg-0 {
    padding-right: 0 !important; }
  .landingpage_b2b_partner .pe-lg-1 {
    padding-right: 0.25rem !important; }
  .landingpage_b2b_partner .pe-lg-2 {
    padding-right: 0.5rem !important; }
  .landingpage_b2b_partner .pe-lg-3 {
    padding-right: 1rem !important; }
  .landingpage_b2b_partner .pe-lg-4 {
    padding-right: 1.5rem !important; }
  .landingpage_b2b_partner .pe-lg-5 {
    padding-right: 3rem !important; }
  .landingpage_b2b_partner .pb-lg-0 {
    padding-bottom: 0 !important; }
  .landingpage_b2b_partner .pb-lg-1 {
    padding-bottom: 0.25rem !important; }
  .landingpage_b2b_partner .pb-lg-2 {
    padding-bottom: 0.5rem !important; }
  .landingpage_b2b_partner .pb-lg-3 {
    padding-bottom: 1rem !important; }
  .landingpage_b2b_partner .pb-lg-4 {
    padding-bottom: 1.5rem !important; }
  .landingpage_b2b_partner .pb-lg-5 {
    padding-bottom: 3rem !important; }
  .landingpage_b2b_partner .ps-lg-0 {
    padding-left: 0 !important; }
  .landingpage_b2b_partner .ps-lg-1 {
    padding-left: 0.25rem !important; }
  .landingpage_b2b_partner .ps-lg-2 {
    padding-left: 0.5rem !important; }
  .landingpage_b2b_partner .ps-lg-3 {
    padding-left: 1rem !important; }
  .landingpage_b2b_partner .ps-lg-4 {
    padding-left: 1.5rem !important; }
  .landingpage_b2b_partner .ps-lg-5 {
    padding-left: 3rem !important; } }

@media (min-width: 1200px) {
  .landingpage_b2b_partner .d-xl-inline {
    display: inline !important; }
  .landingpage_b2b_partner .d-xl-inline-block {
    display: inline-block !important; }
  .landingpage_b2b_partner .d-xl-block {
    display: block !important; }
  .landingpage_b2b_partner .d-xl-grid {
    display: -ms-grid !important;
    display: grid !important; }
  .landingpage_b2b_partner .d-xl-table {
    display: table !important; }
  .landingpage_b2b_partner .d-xl-table-row {
    display: table-row !important; }
  .landingpage_b2b_partner .d-xl-table-cell {
    display: table-cell !important; }
  .landingpage_b2b_partner .d-xl-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important; }
  .landingpage_b2b_partner .d-xl-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important; }
  .landingpage_b2b_partner .d-xl-none {
    display: none !important; }
  .landingpage_b2b_partner .flex-xl-fill {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important; }
  .landingpage_b2b_partner .flex-xl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important; }
  .landingpage_b2b_partner .flex-xl-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important; }
  .landingpage_b2b_partner .flex-xl-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important; }
  .landingpage_b2b_partner .flex-xl-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important; }
  .landingpage_b2b_partner .flex-xl-grow-0 {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important; }
  .landingpage_b2b_partner .flex-xl-grow-1 {
    -webkit-box-flex: 1 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important; }
  .landingpage_b2b_partner .flex-xl-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important; }
  .landingpage_b2b_partner .flex-xl-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important; }
  .landingpage_b2b_partner .flex-xl-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important; }
  .landingpage_b2b_partner .flex-xl-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important; }
  .landingpage_b2b_partner .flex-xl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important; }
  .landingpage_b2b_partner .justify-content-xl-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important; }
  .landingpage_b2b_partner .justify-content-xl-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important; }
  .landingpage_b2b_partner .justify-content-xl-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important; }
  .landingpage_b2b_partner .justify-content-xl-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important; }
  .landingpage_b2b_partner .justify-content-xl-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important; }
  .landingpage_b2b_partner .justify-content-xl-evenly {
    -webkit-box-pack: space-evenly !important;
    -ms-flex-pack: space-evenly !important;
    justify-content: space-evenly !important; }
  .landingpage_b2b_partner .align-items-xl-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important; }
  .landingpage_b2b_partner .align-items-xl-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important; }
  .landingpage_b2b_partner .align-items-xl-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important; }
  .landingpage_b2b_partner .align-items-xl-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important; }
  .landingpage_b2b_partner .align-items-xl-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important; }
  .landingpage_b2b_partner .align-content-xl-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important; }
  .landingpage_b2b_partner .align-content-xl-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important; }
  .landingpage_b2b_partner .align-content-xl-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important; }
  .landingpage_b2b_partner .align-content-xl-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important; }
  .landingpage_b2b_partner .align-content-xl-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important; }
  .landingpage_b2b_partner .align-content-xl-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important; }
  .landingpage_b2b_partner .align-self-xl-auto {
    -ms-flex-item-align: auto !important;
    -ms-grid-row-align: auto !important;
    align-self: auto !important; }
  .landingpage_b2b_partner .align-self-xl-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important; }
  .landingpage_b2b_partner .align-self-xl-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important; }
  .landingpage_b2b_partner .align-self-xl-center {
    -ms-flex-item-align: center !important;
    -ms-grid-row-align: center !important;
    align-self: center !important; }
  .landingpage_b2b_partner .align-self-xl-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important; }
  .landingpage_b2b_partner .align-self-xl-stretch {
    -ms-flex-item-align: stretch !important;
    -ms-grid-row-align: stretch !important;
    align-self: stretch !important; }
  .landingpage_b2b_partner .order-xl-first {
    -webkit-box-ordinal-group: 0 !important;
    -ms-flex-order: -1 !important;
    order: -1 !important; }
  .landingpage_b2b_partner .order-xl-0 {
    -webkit-box-ordinal-group: 1 !important;
    -ms-flex-order: 0 !important;
    order: 0 !important; }
  .landingpage_b2b_partner .order-xl-1 {
    -webkit-box-ordinal-group: 2 !important;
    -ms-flex-order: 1 !important;
    order: 1 !important; }
  .landingpage_b2b_partner .order-xl-2 {
    -webkit-box-ordinal-group: 3 !important;
    -ms-flex-order: 2 !important;
    order: 2 !important; }
  .landingpage_b2b_partner .order-xl-3 {
    -webkit-box-ordinal-group: 4 !important;
    -ms-flex-order: 3 !important;
    order: 3 !important; }
  .landingpage_b2b_partner .order-xl-4 {
    -webkit-box-ordinal-group: 5 !important;
    -ms-flex-order: 4 !important;
    order: 4 !important; }
  .landingpage_b2b_partner .order-xl-5 {
    -webkit-box-ordinal-group: 6 !important;
    -ms-flex-order: 5 !important;
    order: 5 !important; }
  .landingpage_b2b_partner .order-xl-last {
    -webkit-box-ordinal-group: 7 !important;
    -ms-flex-order: 6 !important;
    order: 6 !important; }
  .landingpage_b2b_partner .m-xl-0 {
    margin: 0 !important; }
  .landingpage_b2b_partner .m-xl-1 {
    margin: 0.25rem !important; }
  .landingpage_b2b_partner .m-xl-2 {
    margin: 0.5rem !important; }
  .landingpage_b2b_partner .m-xl-3 {
    margin: 1rem !important; }
  .landingpage_b2b_partner .m-xl-4 {
    margin: 1.5rem !important; }
  .landingpage_b2b_partner .m-xl-5 {
    margin: 3rem !important; }
  .landingpage_b2b_partner .m-xl-auto {
    margin: auto !important; }
  .landingpage_b2b_partner .mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important; }
  .landingpage_b2b_partner .mx-xl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important; }
  .landingpage_b2b_partner .mx-xl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important; }
  .landingpage_b2b_partner .mx-xl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important; }
  .landingpage_b2b_partner .mx-xl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important; }
  .landingpage_b2b_partner .mx-xl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important; }
  .landingpage_b2b_partner .mx-xl-auto {
    margin-right: auto !important;
    margin-left: auto !important; }
  .landingpage_b2b_partner .my-xl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important; }
  .landingpage_b2b_partner .my-xl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important; }
  .landingpage_b2b_partner .my-xl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important; }
  .landingpage_b2b_partner .my-xl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important; }
  .landingpage_b2b_partner .my-xl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important; }
  .landingpage_b2b_partner .my-xl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important; }
  .landingpage_b2b_partner .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important; }
  .landingpage_b2b_partner .mt-xl-0 {
    margin-top: 0 !important; }
  .landingpage_b2b_partner .mt-xl-1 {
    margin-top: 0.25rem !important; }
  .landingpage_b2b_partner .mt-xl-2 {
    margin-top: 0.5rem !important; }
  .landingpage_b2b_partner .mt-xl-3 {
    margin-top: 1rem !important; }
  .landingpage_b2b_partner .mt-xl-4 {
    margin-top: 1.5rem !important; }
  .landingpage_b2b_partner .mt-xl-5 {
    margin-top: 3rem !important; }
  .landingpage_b2b_partner .mt-xl-auto {
    margin-top: auto !important; }
  .landingpage_b2b_partner .me-xl-0 {
    margin-right: 0 !important; }
  .landingpage_b2b_partner .me-xl-1 {
    margin-right: 0.25rem !important; }
  .landingpage_b2b_partner .me-xl-2 {
    margin-right: 0.5rem !important; }
  .landingpage_b2b_partner .me-xl-3 {
    margin-right: 1rem !important; }
  .landingpage_b2b_partner .me-xl-4 {
    margin-right: 1.5rem !important; }
  .landingpage_b2b_partner .me-xl-5 {
    margin-right: 3rem !important; }
  .landingpage_b2b_partner .me-xl-auto {
    margin-right: auto !important; }
  .landingpage_b2b_partner .mb-xl-0 {
    margin-bottom: 0 !important; }
  .landingpage_b2b_partner .mb-xl-1 {
    margin-bottom: 0.25rem !important; }
  .landingpage_b2b_partner .mb-xl-2 {
    margin-bottom: 0.5rem !important; }
  .landingpage_b2b_partner .mb-xl-3 {
    margin-bottom: 1rem !important; }
  .landingpage_b2b_partner .mb-xl-4 {
    margin-bottom: 1.5rem !important; }
  .landingpage_b2b_partner .mb-xl-5 {
    margin-bottom: 3rem !important; }
  .landingpage_b2b_partner .mb-xl-auto {
    margin-bottom: auto !important; }
  .landingpage_b2b_partner .ms-xl-0 {
    margin-left: 0 !important; }
  .landingpage_b2b_partner .ms-xl-1 {
    margin-left: 0.25rem !important; }
  .landingpage_b2b_partner .ms-xl-2 {
    margin-left: 0.5rem !important; }
  .landingpage_b2b_partner .ms-xl-3 {
    margin-left: 1rem !important; }
  .landingpage_b2b_partner .ms-xl-4 {
    margin-left: 1.5rem !important; }
  .landingpage_b2b_partner .ms-xl-5 {
    margin-left: 3rem !important; }
  .landingpage_b2b_partner .ms-xl-auto {
    margin-left: auto !important; }
  .landingpage_b2b_partner .p-xl-0 {
    padding: 0 !important; }
  .landingpage_b2b_partner .p-xl-1 {
    padding: 0.25rem !important; }
  .landingpage_b2b_partner .p-xl-2 {
    padding: 0.5rem !important; }
  .landingpage_b2b_partner .p-xl-3 {
    padding: 1rem !important; }
  .landingpage_b2b_partner .p-xl-4 {
    padding: 1.5rem !important; }
  .landingpage_b2b_partner .p-xl-5 {
    padding: 3rem !important; }
  .landingpage_b2b_partner .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important; }
  .landingpage_b2b_partner .px-xl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important; }
  .landingpage_b2b_partner .px-xl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important; }
  .landingpage_b2b_partner .px-xl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important; }
  .landingpage_b2b_partner .px-xl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important; }
  .landingpage_b2b_partner .px-xl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important; }
  .landingpage_b2b_partner .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important; }
  .landingpage_b2b_partner .py-xl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important; }
  .landingpage_b2b_partner .py-xl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important; }
  .landingpage_b2b_partner .py-xl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important; }
  .landingpage_b2b_partner .py-xl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important; }
  .landingpage_b2b_partner .py-xl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important; }
  .landingpage_b2b_partner .pt-xl-0 {
    padding-top: 0 !important; }
  .landingpage_b2b_partner .pt-xl-1 {
    padding-top: 0.25rem !important; }
  .landingpage_b2b_partner .pt-xl-2 {
    padding-top: 0.5rem !important; }
  .landingpage_b2b_partner .pt-xl-3 {
    padding-top: 1rem !important; }
  .landingpage_b2b_partner .pt-xl-4 {
    padding-top: 1.5rem !important; }
  .landingpage_b2b_partner .pt-xl-5 {
    padding-top: 3rem !important; }
  .landingpage_b2b_partner .pe-xl-0 {
    padding-right: 0 !important; }
  .landingpage_b2b_partner .pe-xl-1 {
    padding-right: 0.25rem !important; }
  .landingpage_b2b_partner .pe-xl-2 {
    padding-right: 0.5rem !important; }
  .landingpage_b2b_partner .pe-xl-3 {
    padding-right: 1rem !important; }
  .landingpage_b2b_partner .pe-xl-4 {
    padding-right: 1.5rem !important; }
  .landingpage_b2b_partner .pe-xl-5 {
    padding-right: 3rem !important; }
  .landingpage_b2b_partner .pb-xl-0 {
    padding-bottom: 0 !important; }
  .landingpage_b2b_partner .pb-xl-1 {
    padding-bottom: 0.25rem !important; }
  .landingpage_b2b_partner .pb-xl-2 {
    padding-bottom: 0.5rem !important; }
  .landingpage_b2b_partner .pb-xl-3 {
    padding-bottom: 1rem !important; }
  .landingpage_b2b_partner .pb-xl-4 {
    padding-bottom: 1.5rem !important; }
  .landingpage_b2b_partner .pb-xl-5 {
    padding-bottom: 3rem !important; }
  .landingpage_b2b_partner .ps-xl-0 {
    padding-left: 0 !important; }
  .landingpage_b2b_partner .ps-xl-1 {
    padding-left: 0.25rem !important; }
  .landingpage_b2b_partner .ps-xl-2 {
    padding-left: 0.5rem !important; }
  .landingpage_b2b_partner .ps-xl-3 {
    padding-left: 1rem !important; }
  .landingpage_b2b_partner .ps-xl-4 {
    padding-left: 1.5rem !important; }
  .landingpage_b2b_partner .ps-xl-5 {
    padding-left: 3rem !important; } }

@media (min-width: 1400px) {
  .landingpage_b2b_partner .d-xxl-inline {
    display: inline !important; }
  .landingpage_b2b_partner .d-xxl-inline-block {
    display: inline-block !important; }
  .landingpage_b2b_partner .d-xxl-block {
    display: block !important; }
  .landingpage_b2b_partner .d-xxl-grid {
    display: -ms-grid !important;
    display: grid !important; }
  .landingpage_b2b_partner .d-xxl-table {
    display: table !important; }
  .landingpage_b2b_partner .d-xxl-table-row {
    display: table-row !important; }
  .landingpage_b2b_partner .d-xxl-table-cell {
    display: table-cell !important; }
  .landingpage_b2b_partner .d-xxl-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important; }
  .landingpage_b2b_partner .d-xxl-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important; }
  .landingpage_b2b_partner .d-xxl-none {
    display: none !important; }
  .landingpage_b2b_partner .flex-xxl-fill {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important; }
  .landingpage_b2b_partner .flex-xxl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important; }
  .landingpage_b2b_partner .flex-xxl-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important; }
  .landingpage_b2b_partner .flex-xxl-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important; }
  .landingpage_b2b_partner .flex-xxl-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important; }
  .landingpage_b2b_partner .flex-xxl-grow-0 {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important; }
  .landingpage_b2b_partner .flex-xxl-grow-1 {
    -webkit-box-flex: 1 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important; }
  .landingpage_b2b_partner .flex-xxl-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important; }
  .landingpage_b2b_partner .flex-xxl-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important; }
  .landingpage_b2b_partner .flex-xxl-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important; }
  .landingpage_b2b_partner .flex-xxl-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important; }
  .landingpage_b2b_partner .flex-xxl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important; }
  .landingpage_b2b_partner .justify-content-xxl-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important; }
  .landingpage_b2b_partner .justify-content-xxl-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important; }
  .landingpage_b2b_partner .justify-content-xxl-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important; }
  .landingpage_b2b_partner .justify-content-xxl-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important; }
  .landingpage_b2b_partner .justify-content-xxl-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important; }
  .landingpage_b2b_partner .justify-content-xxl-evenly {
    -webkit-box-pack: space-evenly !important;
    -ms-flex-pack: space-evenly !important;
    justify-content: space-evenly !important; }
  .landingpage_b2b_partner .align-items-xxl-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important; }
  .landingpage_b2b_partner .align-items-xxl-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important; }
  .landingpage_b2b_partner .align-items-xxl-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important; }
  .landingpage_b2b_partner .align-items-xxl-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important; }
  .landingpage_b2b_partner .align-items-xxl-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important; }
  .landingpage_b2b_partner .align-content-xxl-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important; }
  .landingpage_b2b_partner .align-content-xxl-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important; }
  .landingpage_b2b_partner .align-content-xxl-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important; }
  .landingpage_b2b_partner .align-content-xxl-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important; }
  .landingpage_b2b_partner .align-content-xxl-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important; }
  .landingpage_b2b_partner .align-content-xxl-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important; }
  .landingpage_b2b_partner .align-self-xxl-auto {
    -ms-flex-item-align: auto !important;
    -ms-grid-row-align: auto !important;
    align-self: auto !important; }
  .landingpage_b2b_partner .align-self-xxl-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important; }
  .landingpage_b2b_partner .align-self-xxl-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important; }
  .landingpage_b2b_partner .align-self-xxl-center {
    -ms-flex-item-align: center !important;
    -ms-grid-row-align: center !important;
    align-self: center !important; }
  .landingpage_b2b_partner .align-self-xxl-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important; }
  .landingpage_b2b_partner .align-self-xxl-stretch {
    -ms-flex-item-align: stretch !important;
    -ms-grid-row-align: stretch !important;
    align-self: stretch !important; }
  .landingpage_b2b_partner .order-xxl-first {
    -webkit-box-ordinal-group: 0 !important;
    -ms-flex-order: -1 !important;
    order: -1 !important; }
  .landingpage_b2b_partner .order-xxl-0 {
    -webkit-box-ordinal-group: 1 !important;
    -ms-flex-order: 0 !important;
    order: 0 !important; }
  .landingpage_b2b_partner .order-xxl-1 {
    -webkit-box-ordinal-group: 2 !important;
    -ms-flex-order: 1 !important;
    order: 1 !important; }
  .landingpage_b2b_partner .order-xxl-2 {
    -webkit-box-ordinal-group: 3 !important;
    -ms-flex-order: 2 !important;
    order: 2 !important; }
  .landingpage_b2b_partner .order-xxl-3 {
    -webkit-box-ordinal-group: 4 !important;
    -ms-flex-order: 3 !important;
    order: 3 !important; }
  .landingpage_b2b_partner .order-xxl-4 {
    -webkit-box-ordinal-group: 5 !important;
    -ms-flex-order: 4 !important;
    order: 4 !important; }
  .landingpage_b2b_partner .order-xxl-5 {
    -webkit-box-ordinal-group: 6 !important;
    -ms-flex-order: 5 !important;
    order: 5 !important; }
  .landingpage_b2b_partner .order-xxl-last {
    -webkit-box-ordinal-group: 7 !important;
    -ms-flex-order: 6 !important;
    order: 6 !important; }
  .landingpage_b2b_partner .m-xxl-0 {
    margin: 0 !important; }
  .landingpage_b2b_partner .m-xxl-1 {
    margin: 0.25rem !important; }
  .landingpage_b2b_partner .m-xxl-2 {
    margin: 0.5rem !important; }
  .landingpage_b2b_partner .m-xxl-3 {
    margin: 1rem !important; }
  .landingpage_b2b_partner .m-xxl-4 {
    margin: 1.5rem !important; }
  .landingpage_b2b_partner .m-xxl-5 {
    margin: 3rem !important; }
  .landingpage_b2b_partner .m-xxl-auto {
    margin: auto !important; }
  .landingpage_b2b_partner .mx-xxl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important; }
  .landingpage_b2b_partner .mx-xxl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important; }
  .landingpage_b2b_partner .mx-xxl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important; }
  .landingpage_b2b_partner .mx-xxl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important; }
  .landingpage_b2b_partner .mx-xxl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important; }
  .landingpage_b2b_partner .mx-xxl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important; }
  .landingpage_b2b_partner .mx-xxl-auto {
    margin-right: auto !important;
    margin-left: auto !important; }
  .landingpage_b2b_partner .my-xxl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important; }
  .landingpage_b2b_partner .my-xxl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important; }
  .landingpage_b2b_partner .my-xxl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important; }
  .landingpage_b2b_partner .my-xxl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important; }
  .landingpage_b2b_partner .my-xxl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important; }
  .landingpage_b2b_partner .my-xxl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important; }
  .landingpage_b2b_partner .my-xxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important; }
  .landingpage_b2b_partner .mt-xxl-0 {
    margin-top: 0 !important; }
  .landingpage_b2b_partner .mt-xxl-1 {
    margin-top: 0.25rem !important; }
  .landingpage_b2b_partner .mt-xxl-2 {
    margin-top: 0.5rem !important; }
  .landingpage_b2b_partner .mt-xxl-3 {
    margin-top: 1rem !important; }
  .landingpage_b2b_partner .mt-xxl-4 {
    margin-top: 1.5rem !important; }
  .landingpage_b2b_partner .mt-xxl-5 {
    margin-top: 3rem !important; }
  .landingpage_b2b_partner .mt-xxl-auto {
    margin-top: auto !important; }
  .landingpage_b2b_partner .me-xxl-0 {
    margin-right: 0 !important; }
  .landingpage_b2b_partner .me-xxl-1 {
    margin-right: 0.25rem !important; }
  .landingpage_b2b_partner .me-xxl-2 {
    margin-right: 0.5rem !important; }
  .landingpage_b2b_partner .me-xxl-3 {
    margin-right: 1rem !important; }
  .landingpage_b2b_partner .me-xxl-4 {
    margin-right: 1.5rem !important; }
  .landingpage_b2b_partner .me-xxl-5 {
    margin-right: 3rem !important; }
  .landingpage_b2b_partner .me-xxl-auto {
    margin-right: auto !important; }
  .landingpage_b2b_partner .mb-xxl-0 {
    margin-bottom: 0 !important; }
  .landingpage_b2b_partner .mb-xxl-1 {
    margin-bottom: 0.25rem !important; }
  .landingpage_b2b_partner .mb-xxl-2 {
    margin-bottom: 0.5rem !important; }
  .landingpage_b2b_partner .mb-xxl-3 {
    margin-bottom: 1rem !important; }
  .landingpage_b2b_partner .mb-xxl-4 {
    margin-bottom: 1.5rem !important; }
  .landingpage_b2b_partner .mb-xxl-5 {
    margin-bottom: 3rem !important; }
  .landingpage_b2b_partner .mb-xxl-auto {
    margin-bottom: auto !important; }
  .landingpage_b2b_partner .ms-xxl-0 {
    margin-left: 0 !important; }
  .landingpage_b2b_partner .ms-xxl-1 {
    margin-left: 0.25rem !important; }
  .landingpage_b2b_partner .ms-xxl-2 {
    margin-left: 0.5rem !important; }
  .landingpage_b2b_partner .ms-xxl-3 {
    margin-left: 1rem !important; }
  .landingpage_b2b_partner .ms-xxl-4 {
    margin-left: 1.5rem !important; }
  .landingpage_b2b_partner .ms-xxl-5 {
    margin-left: 3rem !important; }
  .landingpage_b2b_partner .ms-xxl-auto {
    margin-left: auto !important; }
  .landingpage_b2b_partner .p-xxl-0 {
    padding: 0 !important; }
  .landingpage_b2b_partner .p-xxl-1 {
    padding: 0.25rem !important; }
  .landingpage_b2b_partner .p-xxl-2 {
    padding: 0.5rem !important; }
  .landingpage_b2b_partner .p-xxl-3 {
    padding: 1rem !important; }
  .landingpage_b2b_partner .p-xxl-4 {
    padding: 1.5rem !important; }
  .landingpage_b2b_partner .p-xxl-5 {
    padding: 3rem !important; }
  .landingpage_b2b_partner .px-xxl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important; }
  .landingpage_b2b_partner .px-xxl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important; }
  .landingpage_b2b_partner .px-xxl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important; }
  .landingpage_b2b_partner .px-xxl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important; }
  .landingpage_b2b_partner .px-xxl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important; }
  .landingpage_b2b_partner .px-xxl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important; }
  .landingpage_b2b_partner .py-xxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important; }
  .landingpage_b2b_partner .py-xxl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important; }
  .landingpage_b2b_partner .py-xxl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important; }
  .landingpage_b2b_partner .py-xxl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important; }
  .landingpage_b2b_partner .py-xxl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important; }
  .landingpage_b2b_partner .py-xxl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important; }
  .landingpage_b2b_partner .pt-xxl-0 {
    padding-top: 0 !important; }
  .landingpage_b2b_partner .pt-xxl-1 {
    padding-top: 0.25rem !important; }
  .landingpage_b2b_partner .pt-xxl-2 {
    padding-top: 0.5rem !important; }
  .landingpage_b2b_partner .pt-xxl-3 {
    padding-top: 1rem !important; }
  .landingpage_b2b_partner .pt-xxl-4 {
    padding-top: 1.5rem !important; }
  .landingpage_b2b_partner .pt-xxl-5 {
    padding-top: 3rem !important; }
  .landingpage_b2b_partner .pe-xxl-0 {
    padding-right: 0 !important; }
  .landingpage_b2b_partner .pe-xxl-1 {
    padding-right: 0.25rem !important; }
  .landingpage_b2b_partner .pe-xxl-2 {
    padding-right: 0.5rem !important; }
  .landingpage_b2b_partner .pe-xxl-3 {
    padding-right: 1rem !important; }
  .landingpage_b2b_partner .pe-xxl-4 {
    padding-right: 1.5rem !important; }
  .landingpage_b2b_partner .pe-xxl-5 {
    padding-right: 3rem !important; }
  .landingpage_b2b_partner .pb-xxl-0 {
    padding-bottom: 0 !important; }
  .landingpage_b2b_partner .pb-xxl-1 {
    padding-bottom: 0.25rem !important; }
  .landingpage_b2b_partner .pb-xxl-2 {
    padding-bottom: 0.5rem !important; }
  .landingpage_b2b_partner .pb-xxl-3 {
    padding-bottom: 1rem !important; }
  .landingpage_b2b_partner .pb-xxl-4 {
    padding-bottom: 1.5rem !important; }
  .landingpage_b2b_partner .pb-xxl-5 {
    padding-bottom: 3rem !important; }
  .landingpage_b2b_partner .ps-xxl-0 {
    padding-left: 0 !important; }
  .landingpage_b2b_partner .ps-xxl-1 {
    padding-left: 0.25rem !important; }
  .landingpage_b2b_partner .ps-xxl-2 {
    padding-left: 0.5rem !important; }
  .landingpage_b2b_partner .ps-xxl-3 {
    padding-left: 1rem !important; }
  .landingpage_b2b_partner .ps-xxl-4 {
    padding-left: 1.5rem !important; }
  .landingpage_b2b_partner .ps-xxl-5 {
    padding-left: 3rem !important; } }

@media print {
  .landingpage_b2b_partner .d-print-inline {
    display: inline !important; }
  .landingpage_b2b_partner .d-print-inline-block {
    display: inline-block !important; }
  .landingpage_b2b_partner .d-print-block {
    display: block !important; }
  .landingpage_b2b_partner .d-print-grid {
    display: -ms-grid !important;
    display: grid !important; }
  .landingpage_b2b_partner .d-print-table {
    display: table !important; }
  .landingpage_b2b_partner .d-print-table-row {
    display: table-row !important; }
  .landingpage_b2b_partner .d-print-table-cell {
    display: table-cell !important; }
  .landingpage_b2b_partner .d-print-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important; }
  .landingpage_b2b_partner .d-print-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important; }
  .landingpage_b2b_partner .d-print-none {
    display: none !important; } }
  .landingpage_b2b_partner * {
    scroll-behavior: smooth;
    -webkit-box-sizing: border-box;
    box-sizing: border-box; }
  .landingpage_b2b_partner body {
    margin: 0;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.3;
    overflow-x: hidden;
    position: relative;
    font-family: "Rubik", sans-serif;
    line-height: 1.3;
    background-color: white !important; }
  .landingpage_b2b_partner .one-cookie-banner.py-2.is-platform-closed {
    top: 0 !important;
    z-index: 9999999 !important;
    max-height: 100% !important;
    overflow: auto !important; }
  .landingpage_b2b_partner .bg-gray {
    background-color: rgba(124, 124, 124, 0.05); }
  .landingpage_b2b_partner .height-100 {
    height: 100%; }
  .landingpage_b2b_partner .content {
    padding: 0 !important; }
  .landingpage_b2b_partner html {
    font-size: 16px; }
  .landingpage_b2b_partner .layout {
    overflow-x: hidden; }
  .landingpage_b2b_partner .content {
    margin: 0 !important; }
  .landingpage_b2b_partner .padding-7 {
    padding-left: 7px;
    padding-right: 7px; }
  .landingpage_b2b_partner #warunki_dostaw {
    color: #000000;
    background: white; }
  .landingpage_b2b_partner .header-container__middle-header__logo-container img {
    max-width: 200px; }
  .landingpage_b2b_partner :root {
    --primary-color: #d3222a;
    --badges-color: #d3222a;
    --btn-color: #d3222a;
    --btnColor: #d3222a;
    --border-color: #efefef;
    --header-color: #b48484; }
  .landingpage_b2b_partner a:hover {
    text-decoration: none; }
  .landingpage_b2b_partner .hero__content {
    z-index: 1;
    position: relative; }
  .landingpage_b2b_partner .hero__img {
    display: block;
    width: 100%;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
    z-index: 0; }
  .landingpage_b2b_partner .hero__logo {
    position: absolute;
    top: 12px;
    left: 24px;
    max-height: 80px;
    width: auto; }
  .landingpage_b2b_partner .hero__heading {
    position: relative;
    top: -35px;
    font-size: calc(1.4375rem + 2.25vw);
    text-align: center;
    font-weight: 500;
    line-height: 1.05;
    color: white;
    background-color: #d3222a;
    border-radius: 10px;
    padding: 26px;
    margin-left: 56px;
    margin-right: 56px;
    -webkit-box-shadow: 0px 0px 23px 0px rgba(51, 51, 51, 0.28);
    box-shadow: 0px 0px 23px 0px rgba(51, 51, 51, 0.28);
    z-index: 5; }

@media (min-width: 1200px) {
  .landingpage_b2b_partner .hero__heading {
    font-size: 3.125rem; } }

@media (max-width: 991px) {
  .landingpage_b2b_partner .hero__heading {
    font-size: calc(1.35rem + 1.2vw);
    margin-left: 24px;
    margin-right: 24px; } }

@media (max-width: 991px) and (min-width: 1200px) {
  .landingpage_b2b_partner .hero__heading {
    font-size: 2.25rem; } }

@media (max-width: 767px) {
  .landingpage_b2b_partner .hero__heading {
    font-size: calc(1.275rem + 0.3vw);
    margin-left: 24px;
    margin-right: 24px; } }

@media (max-width: 767px) and (min-width: 1200px) {
  .landingpage_b2b_partner .hero__heading {
    font-size: 1.5rem; } }
  .landingpage_b2b_partner .hero__paragraph {
    font-size: 1rem;
    line-height: 1.48;
    text-align: center; }
  .landingpage_b2b_partner .benefits {
    margin-top: calc(1.75rem + 6vw);
    margin-bottom: calc(1.4375rem + 2.25vw); }

@media (min-width: 1200px) {
  .landingpage_b2b_partner .benefits {
    margin-top: 6.25rem; } }

@media (min-width: 1200px) {
  .landingpage_b2b_partner .benefits {
    margin-bottom: 3.125rem; } }
  .landingpage_b2b_partner .benefits__heading {
    font-size: 1.25rem;
    font-weight: bold;
    line-height: 1.04;
    margin-bottom: calc(1.44375rem + 2.325vw); }

@media (min-width: 1200px) {
  .landingpage_b2b_partner .benefits__heading {
    margin-bottom: 3.1875rem; } }
  .landingpage_b2b_partner .benefits__box {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }

@media (max-width: 1199px) {
  .landingpage_b2b_partner .benefits__box {
    margin-top: 24px; } }
  .landingpage_b2b_partner .benefits__ico {
    width: 45%;
    height: auto; }

@media (max-width: 991px) {
  .landingpage_b2b_partner .benefits__ico {
    width: 34%; } }

@media (max-width: 767px) {
  .landingpage_b2b_partner .benefits__ico {
    width: 30%; } }
  .landingpage_b2b_partner .benefits__description {
    padding-top: 22px;
    font-size: 1rem;
    line-height: 1.48;
    text-align: center; }
  .landingpage_b2b_partner .aboutUs__images {
    height: auto;
    width: 100%; }
  .landingpage_b2b_partner .aboutUs .col-lg-7 {
    display: table; }
    .landingpage_b2b_partner .aboutUs .col-lg-7 .aboutUs__content {
      display: table-cell;
      vertical-align: middle; }
  .landingpage_b2b_partner .aboutUs__images img {
    width: 100%;
    height: auto;
    margin-bottom: 6px; }
  .landingpage_b2b_partner .aboutUs__content {
    padding: 12px; }

@media (max-width: 991px) {
  .landingpage_b2b_partner .aboutUs__content {
    margin-top: 24px; } }
  .landingpage_b2b_partner .aboutUs__content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.33;
    margin-bottom: 30px; }
  .landingpage_b2b_partner .aboutUs__content p {
    font-size: 1.25rem;
    line-height: 1.33;
    margin-bottom: 30px; }
  .landingpage_b2b_partner .contact__background {
    background-color: #e0e9f3;
    padding: 112px 20px 0 64px;
    margin-top: -56px; }

@media (max-width: 1199px) {
  .landingpage_b2b_partner .contact__background {
    margin-top: -0px;
    padding: 50px 30px 0 30px; } }

@media (max-width: 767px) {
  .landingpage_b2b_partner .contact__background {
    margin-top: -0px;
    padding: 40px 24px 0 24px; } }
  .landingpage_b2b_partner .contact__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
  .landingpage_b2b_partner .contact__info h2 {
    font-size: calc(1.35rem + 1.2vw);
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 37px; }

@media (min-width: 1200px) {
  .landingpage_b2b_partner .contact__info h2 {
    font-size: 2.25rem; } }
  .landingpage_b2b_partner .contact__info p {
    font-size: 20px;
    line-height: 1.3;
    text-align: center;
    margin-bottom: 80px; }
  .landingpage_b2b_partner .contact__ways {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    margin-bottom: 20px; }

@media (max-width: 767px) {
  .landingpage_b2b_partner .contact__ways {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column; } }
  .landingpage_b2b_partner .contact__phone {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 15px; }

@media (max-width: 767px) {
  .landingpage_b2b_partner .contact__phone {
    padding: 0px; } }
  .landingpage_b2b_partner .contact__phone img {
    width: 100px;
    height: 100px; }
  .landingpage_b2b_partner .contact__phone a {
    margin-top: 35px;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.24; }

@media (max-width: 991px) {
  .landingpage_b2b_partner .contact__phone a {
    font-size: 18px; } }
  .landingpage_b2b_partner .contact__mail {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 15px 0 15px 0; }

@media (max-width: 767px) {
  .landingpage_b2b_partner .contact__mail {
    padding: 0px; } }
  .landingpage_b2b_partner .contact__mail img {
    width: 90px;
    height: 86px; }
  .landingpage_b2b_partner .contact__mail a {
    margin-top: 35px;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.24; }

@media (max-width: 991px) {
  .landingpage_b2b_partner .contact__mail a {
    font-size: 18px; } }
  .landingpage_b2b_partner .contact__form h2 {
    font-size: calc(1.35rem + 1.2vw);
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 37px;
    text-align: center; }

@media (min-width: 1200px) {
  .landingpage_b2b_partner .contact__form h2 {
    font-size: 2.25rem; } }
  .landingpage_b2b_partner .contact__form p {
    font-size: 18px;
    line-height: 1.3; }

.wspolpraca_wyroznienie li:first-child a {
  font-weight: bold;
  padding: 4px;
  background-color: rgba(0, 0, 0, 0.1); }

.route-landing {
  display: block;
  position: relative;
  max-width: 1554px;
  margin: 0 auto;
  width: 100%; }
  .route-landing__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; }
    .route-landing__bg img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
  .route-landing .route-landing-1 {
    padding-top: 24px; }
    .route-landing .route-landing-1__left {
      width: 100%;
      height: 100%;
      display: block;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column; }
    .route-landing .route-landing-1__logos {
      display: flex;
      align-items: center;
      gap: 24px; }

@media (max-width: 1199px) {
  .route-landing .route-landing-1__logos {
    margin-top: 24px;
    flex-direction: column; } }
    .route-landing .route-landing-1__right {
      display: flex;
      align-items: center;
      justify-content: center; }

@media (max-width: 991px) {
  .route-landing .route-landing-1__right {
    margin-top: 24px; } }
    .route-landing .route-landing-1__logo {
      display: block;
      max-width: 250px;
      width: 100%;
      object-fit: contain; }
    .route-landing .route-landing-1__photo {
      max-width: 100%;
      object-fit: contain;
      height: 400px; }
    .route-landing .route-landing-1__heading {
      font-size: calc(1.5rem + 3 vw);
      color: #505661;
      text-align: center;
      font-weight: 700; }

@media (min-width: 1200px) {
  .route-landing .route-landing-1__heading {
    font-size: 3.75rem; } }
      .route-landing .route-landing-1__heading strong {
        display: block;
        color: #000;
        font-weight: 800;
        text-transform: uppercase; }
    .route-landing .route-landing-1__span {
      font-size: calc(1.325rem + 0.9 vw);
      color: #505661;
      text-align: center;
      font-weight: 500; }

@media (min-width: 1200px) {
  .route-landing .route-landing-1__span {
    font-size: 2rem; } }
  .route-landing .route-landing-2 {
    position: relative; }
    .route-landing .route-landing-2__img {
      width: 100%;
      height: auto;
      object-fit: cover; }
  .route-landing .route-landing-3 {
    margin-top: 24px; }

@media (min-width: 1200px) {
  .route-landing .route-landing-3__left {
    margin-right: 50px; } }

@media (max-width: 1199px) {
  .route-landing .route-landing-3__left {
    margin-top: 24px; } }
    .route-landing .route-landing-3__left img {
      max-width: 100%;
      object-fit: contain; }

@media (min-width: 1200px) {
  .route-landing .route-landing-3__right {
    margin-left: 50px; } }

@media (max-width: 1199px) {
  .route-landing .route-landing-3__right {
    margin-top: 24px; } }
    .route-landing .route-landing-3__right img {
      max-width: 100%;
      object-fit: contain; }
  .route-landing .route-landing-4 {
    margin-top: 24px; }
    .route-landing .route-landing-4__left {
      max-width: 100%;
      object-fit: contain;
      display: block; }
      .route-landing .route-landing-4__left img {
        display: block;
        max-width: 100%; }
    .route-landing .route-landing-4__right {
      margin-top: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 100%; }
    .route-landing .route-landing-4__heading {
      font-size: calc(1.4375rem + 2.25 vw);
      color: #505661;
      font-weight: 500;
      text-transform: uppercase; }

@media (min-width: 1200px) {
  .route-landing .route-landing-4__heading {
    font-size: 3.125rem; } }
  .route-landing .route-landing-5 {
    margin-top: 24px; }
    .route-landing .route-landing-5__left {
      float: right;
      right: -15px;
      position: relative; }

@media (max-width: 1199px) {
  .route-landing .route-landing-5__left {
    float: none;
    right: 0; } }
      .route-landing .route-landing-5__left img {
        display: block;
        max-width: 100%;
        object-fit: contain;
        height: 500px; }
    .route-landing .route-landing-5__right {
      float: left;
      left: -15px;
      position: relative; }

@media (max-width: 1199px) {
  .route-landing .route-landing-5__right {
    margin-top: 24px;
    float: none;
    left: auto; } }
      .route-landing .route-landing-5__right img {
        display: block;
        max-width: 100%;
        object-fit: contain;
        height: 595px;
        top: -28px;
        position: relative; }
  .route-landing .meeting {
    margin-top: 48px;
    margin-bottom: 0; }
    .route-landing .meeting__content {
      background-color: #686464;
      height: 450px; }

@media (max-width: 991px) {
  .route-landing .meeting__content {
    height: 750px; } }
  .route-landing iframe {
    width: 100%;
    height: 100%; }

.one-breadcrumbs__col {
  overflow: hidden !important; }

.footer_hidden_checkbox {
  display: none; }

.footer_hidden_checkbox[type="checkbox"]:checked + label > .accordion__content {
  max-height: unset; }

body.account-users .button {
  background-color: transparent !important; }
  body.account-users .button i {
    color: #d3222a; }

body.account-users .avatar {
  margin-right: 15px; }

body.registration .one-breadcrumbs {
  display: none !important; }

.bhr-contact-form,
.bhr-thank-you-message {
  padding: 30px 0 0 0; }

.one-suggests {
  width: 100% !important; }

@media (max-width: 1199px) {
  .one-footer__mobile {
    display: flex !important; } }

@media (max-width: 991px) {
  .one-sidebar {
    overflow: scroll !important; } }

.one-sidebar .one-catalog-view-list__sidebar-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 9;
  background: #d3222a;
  width: 100%; }
  .one-sidebar .one-catalog-view-list__sidebar-footer:hover {
    background: #019dd9; }

.maintainers {
  padding: calc(1.75rem + 6 vw) 0 calc(1.75rem + 6 vw) 0; }

@media (min-width: 1200px) {
  .maintainers {
    padding: 6.25rem 0 6.25rem 0; } }
  .maintainers__col {
    margin-top: 24px; }
  .maintainers__topText {
    font-size: 1rem;
    color: #3a3a3a;
    display: block; }
  .maintainers .region-1:hover {
    background-color: #ff00f7; }
  .maintainers svg {
    position: absolute;
    top: 0;
    left: 0;
    max-width: 100%;
    width: auto;
    height: auto;
    border: none; }
  .maintainers__map {
    max-width: 100%; }
  .maintainers__map-container {
    position: relative; }

.maintainer-info {
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 24px; }
  .maintainer-info.active {
    display: flex; }
  .maintainer-info__img {
    position: relative;
    top: unset;
    left: unset;
    display: block;
    width: 250px;
    height: auto;
    object-fit: cover; }
  .maintainer-info__name {
    margin-top: 24px;
    color: #6e6e6e;
    font-size: calc(1.35rem + 1.2 vw);
    font-weight: 400; }

@media (min-width: 1200px) {
  .maintainer-info__name {
    font-size: 2.25rem; } }
  .maintainer-info__job {
    color: #6e6e6e;
    font-size: 1rem;
    margin-bottom: 48px; }

@media (max-width: 991px) {
  .maintainer-info__job {
    margin-bottom: 24px; } }

.maintainers-ico-link {
  margin-top: 24px;
  padding-left: 50px;
  position: relative;
  display: block; }

@media (max-width: 991px) {
  .maintainers-ico-link {
    padding-left: 40px; } }
  .maintainers-ico-link:nth-of-type(1) {
    margin-top: 0; }
  .maintainers-ico-link:hover span::before {
    width: 100%; }
  .maintainers-ico-link img {
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    height: 40px;
    width: 40px;
    object-fit: contain; }

@media (max-width: 991px) {
  .maintainers-ico-link img {
    height: 24px;
    width: 24px; } }
  .maintainers-ico-link span {
    position: relative;
    color: #6e6e6e;
    font-size: calc(1.275rem + 0.3 vw); }
    .maintainers-ico-link span:hover::before {
      width: 100%; }
    .maintainers-ico-link span::before {
      content: "";
      position: absolute;
      bottom: -4px;
      width: 0%;
      height: 2px;
      background-color: #6e6e6e;
      transition: 0.3s linear;
      left: 0%; }

@media (min-width: 1200px) {
  .maintainers-ico-link span {
    font-size: 1.5rem; } }

@media (max-width: 991px) {
  .maintainers-ico-link span {
    font-size: 1.25rem; } }

.mapRegion {
  cursor: pointer;
  opacity: 0; }
  .mapRegion:hover {
    fill: #5ac0f6;
    opacity: 0.33; }
  .mapRegion.active {
    fill: #5ac0f6;
    opacity: 0.33; }

.banner {
  width: 100%;
  height: 100%;
  background-color: #9e9e9e; }
  .banner__contener {
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px; }

@media (max-width: 576px) {
  .banner__contener {
    padding-left: 15px;
    padding-right: 15px; } }

@media (min-width: 576px) {
  .banner__contener {
    max-width: 540px; } }

@media (min-width: 768px) {
  .banner__contener {
    max-width: 720px; } }

@media (min-width: 992px) {
  .banner__contener {
    max-width: 960px; } }

@media (min-width: 1200px) {
  .banner__contener {
    max-width: 1140px; } }

@media (min-width: 1400px) {
  .banner__contener {
    max-width: 1320px; } }

@media (min-width: 1600px) {
  .banner__contener {
    max-width: 1500px; } }
    .banner__contener-paragraph {
      margin-top: 220px;
      margin-bottom: 24px;
      text-transform: uppercase;
      color: white;
      font-size: calc(1.625rem + 4.5 vw);
      font-weight: bold;
      line-height: 1.5;
      grid-column: span 9; }

@media (min-width: 1200px) {
  .banner__contener-paragraph {
    font-size: 5rem; } }

@media (max-width: 1399px) {
  .banner__contener-paragraph {
    margin-top: 50px;
    grid-column: span 12;
    font-size: calc(1.625rem + 4.5vw);
    text-align: center; } }

@media (max-width: 767px) {
  .banner__contener-paragraph {
    font-size: calc(1.4375rem + 2.25 vw);
    font-size: calc(1.4375rem + 2.25vw); } }

@media (max-width: 767px) and (min-width: 1200px) {
  .banner__contener-paragraph {
    font-size: 3.125rem; } }
    .banner__contener-logo {
      grid-column: span 4; }

@media (max-width: 1399px) {
  .banner__contener-logo {
    grid-column: span 7;
    text-align: center; } }
      .banner__contener-logo-img {
        width: auto; }

@media (max-width: 1399px) {
  .banner__contener-logo-img {
    width: 75%; } }
    .banner__contener-logo-2 {
      grid-column: span 4;
      margin-bottom: -35%; }

@media (max-width: 1399px) {
  .banner__contener-logo-2 {
    margin-bottom: -46%; } }
      .banner__contener-logo-2-img {
        width: auto;
        margin-top: -35%; }

@media (max-width: 1399px) {
  .banner__contener-logo-2-img {
    width: 100%; } }

.info__contener {
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px; }

@media (max-width: 576px) {
  .info__contener {
    padding-left: 15px;
    padding-right: 15px; } }

@media (min-width: 576px) {
  .info__contener {
    max-width: 540px; } }

@media (min-width: 768px) {
  .info__contener {
    max-width: 720px; } }

@media (min-width: 992px) {
  .info__contener {
    max-width: 960px; } }

@media (min-width: 1200px) {
  .info__contener {
    max-width: 1140px; } }

@media (min-width: 1400px) {
  .info__contener {
    max-width: 1320px; } }

@media (min-width: 1600px) {
  .info__contener {
    max-width: 1500px; } }
  .info__contener-paragraph {
    margin-top: 96px;
    color: #313534;
    font-size: calc(1.275rem + 0.3 vw);
    font-weight: bold;
    grid-column: span 8;
    line-height: 1.5; }

@media (min-width: 1200px) {
  .info__contener-paragraph {
    font-size: 1.5rem; } }

@media (max-width: 1399px) {
  .info__contener-paragraph {
    grid-column: span 12;
    font-size: calc(1.275rem + 0.3vw); } }
  .info__contener-logo {
    margin-top: 96px;
    grid-column: span 6; }

@media (max-width: 1399px) {
  .info__contener-logo {
    margin-top: 48px; } }

@media (max-width: 991px) {
  .info__contener-logo {
    grid-column: span 12;
    margin-top: 0; } }
    .info__contener-logo-img {
      width: 100%; }
  .info__contener-2 {
    margin-top: 96px;
    grid-column: span 6; }

@media (max-width: 1399px) {
  .info__contener-2 {
    margin-top: 48px; } }

@media (max-width: 991px) {
  .info__contener-2 {
    grid-column: span 12;
    margin-top: 0; } }
    .info__contener-2-paragraph {
      color: #313534;
      font-size: calc(1.35rem + 1.2 vw);
      font-weight: bold;
      line-height: 1.5;
      text-transform: capitalize; }

@media (min-width: 1200px) {
  .info__contener-2-paragraph {
    font-size: 2.25rem; } }

@media (max-width: 1399px) {
  .info__contener-2-paragraph {
    font-size: calc(1.35rem + 1.2vw); } }
    .info__contener-2-ul {
      margin-top: 24px;
      margin-left: 48px; }
    .info__contener-2-li {
      text-transform: capitalize;
      font-size: calc(1.275rem + 0.3 vw);
      padding: 5px 0;
      position: relative; }

@media (min-width: 1200px) {
  .info__contener-2-li {
    font-size: 1.5rem; } }

@media (max-width: 1399px) {
  .info__contener-2-li {
    font-size: calc(1.275rem + 0.3vw); } }
      .info__contener-2-li::before {
        content: "";
        position: absolute;
        bottom: 32%;
        left: -25px;
        width: 15px;
        height: 15px;
        background-color: #d3222a;
        border-radius: 50px; }

.schedule {
  margin-top: 48px; }
  .schedule__line {
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px; }

@media (max-width: 576px) {
  .schedule__line {
    padding-left: 15px;
    padding-right: 15px; } }

@media (min-width: 576px) {
  .schedule__line {
    max-width: 540px; } }

@media (min-width: 768px) {
  .schedule__line {
    max-width: 720px; } }

@media (min-width: 992px) {
  .schedule__line {
    max-width: 960px; } }

@media (min-width: 1200px) {
  .schedule__line {
    max-width: 1140px; } }

@media (min-width: 1400px) {
  .schedule__line {
    max-width: 1320px; } }

@media (min-width: 1600px) {
  .schedule__line {
    max-width: 1500px; } }
    .schedule__line-img {
      grid-column: span 1; }
    .schedule__line-paragraph {
      margin-left: -10%;
      grid-column: span 3;
      font-size: calc(1.275rem + 0.3 vw);
      color: #313534;
      text-transform: capitalize;
      font-weight: bold; }

@media (min-width: 1200px) {
  .schedule__line-paragraph {
    font-size: 1.5rem; } }

@media (max-width: 1399px) {
  .schedule__line-paragraph {
    font-size: calc(1.4375rem + 2.25vw); } }
  .schedule__contener {
    margin-top: 24px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
    background-color: #9e9e9e; }

@media (max-width: 576px) {
  .schedule__contener {
    padding-left: 15px;
    padding-right: 15px; } }

@media (min-width: 576px) {
  .schedule__contener {
    max-width: 540px; } }

@media (min-width: 768px) {
  .schedule__contener {
    max-width: 720px; } }

@media (min-width: 992px) {
  .schedule__contener {
    max-width: 960px; } }

@media (min-width: 1200px) {
  .schedule__contener {
    max-width: 1140px; } }

@media (min-width: 1400px) {
  .schedule__contener {
    max-width: 1320px; } }

@media (min-width: 1600px) {
  .schedule__contener {
    max-width: 1500px; } }
    .schedule__contener-date {
      margin-bottom: -1%;
      grid-column: 7/13; }
      .schedule__contener-date-1 {
        padding: 35px 0;
        grid-column: span 6; }
        .schedule__contener-date-1-left {
          position: relative;
          display: flex;
          justify-content: space-around; }
          .schedule__contener-date-1-left::before {
            content: "";
            position: absolute;
            bottom: 0;
            left: 17%;
            width: 90%;
            height: 3px;
            background-image: linear-gradient(to right, white, #9e9e9e); }
          .schedule__contener-date-1-left-paragraph {
            width: 16%;
            font-size: calc(1.275rem + 0.3 vw);
            color: white; }

@media (min-width: 1200px) {
  .schedule__contener-date-1-left-paragraph {
    font-size: 1.5rem; } }

@media (max-width: 1399px) {
  .schedule__contener-date-1-left-paragraph {
    font-size: calc(1.275rem + 0.3 vw);
    font-size: calc(1.275rem + 0.3vw); } }

@media (max-width: 1399px) and (min-width: 1200px) {
  .schedule__contener-date-1-left-paragraph {
    font-size: 1.5rem; } }
        .schedule__contener-date-1-left:nth-last-child(1)::before {
          display: none; }
      .schedule__contener-date-img {
        width: 100%;
        height: 100%;
        object-fit: cover; }
      .schedule__contener-date-deadline {
        grid-column: span 6; }
  .schedule__certification {
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px; }

@media (max-width: 576px) {
  .schedule__certification {
    padding-left: 15px;
    padding-right: 15px; } }

@media (min-width: 576px) {
  .schedule__certification {
    max-width: 540px; } }

@media (min-width: 768px) {
  .schedule__certification {
    max-width: 720px; } }

@media (min-width: 992px) {
  .schedule__certification {
    max-width: 960px; } }

@media (min-width: 1200px) {
  .schedule__certification {
    max-width: 1140px; } }

@media (min-width: 1400px) {
  .schedule__certification {
    max-width: 1320px; } }

@media (min-width: 1600px) {
  .schedule__certification {
    max-width: 1500px; } }
    .schedule__certification-paragraph {
      margin-top: 48px;
      font-size: calc(1.275rem + 0.3 vw);
      grid-column: span 12;
      text-align: center; }

@media (min-width: 1200px) {
  .schedule__certification-paragraph {
    font-size: 1.5rem; } }

@media (max-width: 1399px) {
  .schedule__certification-paragraph {
    font-size: calc(1.275rem + 1.2vw); } }
      .schedule__certification-paragraph-link {
        color: #019dd9;
        transition: 0.5s; }
      .schedule__certification-paragraph-link:hover {
        color: #d3222a; }
    .schedule__certification-button {
      background-color: #d3222a;
      color: white;
      border: none;
      font-size: calc(1.35rem + 1.2 vw);
      text-transform: uppercase;
      grid-column: 5/9;
      padding: 30px 0;
      margin-bottom: 96px;
      text-align: center;
      font-weight: 400;
      transition: linear 0.4s; }

@media (min-width: 1200px) {
  .schedule__certification-button {
    font-size: 2.25rem; } }

@media (max-width: 991px) {
  .schedule__certification-button {
    font-size: calc(1.275rem + 0.3 vw); } }

@media (max-width: 991px) and (min-width: 1200px) {
  .schedule__certification-button {
    font-size: 1.5rem; } }

@media (max-width: 767px) {
  .schedule__certification-button {
    grid-column: span 12; } }
    .schedule__certification-button:hover {
      background-color: #019dd9;
      color: white; }

.serwis2022about__content h6 {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
  color: #313534;
  text-transform: uppercase;
  margin-top: 12px; }

.serwis2022about__content h5 {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.5;
  color: #313534;
  text-transform: uppercase;
  margin-top: 12px; }

.serwis2022about__content h4 {
  font-size: 32px;
  font-weight: bold;
  line-height: 1.5;
  color: #313534;
  text-transform: uppercase; }

.serwis2022about__content h3 {
  font-size: 40px;
  font-weight: bold;
  line-height: 1.5;
  color: #313534;
  text-transform: uppercase;
  margin-top: 12px; }

.serwis2022about__content h2 {
  font-size: 48px;
  font-weight: bold;
  line-height: 1.5;
  color: #313534;
  text-transform: uppercase;
  margin-top: 12px; }

.serwis2022about__content h1 {
  font-size: 56px;
  font-weight: bold;
  line-height: 1.5;
  color: #313534;
  margin-top: 12px;
  text-transform: uppercase; }

.serwis2022about__content p {
  margin-bottom: 24px;
  line-height: 1.5;
  font-size: 18px;
  text-align: left;
  color: #000; }

.serwis2022about__content strong {
  font-weight: 600;
  text-transform: uppercase; }

.serwis2022about__content ul {
  margin-top: 35px;
  margin-bottom: 25px; }
  .serwis2022about__content ul li {
    font-size: 18px;
    line-height: 1.5;
    color: #313534;
    font-weight: bold;
    margin-top: 6px;
    margin-left: 18px;
    position: relative; }
    .serwis2022about__content ul li:nth-child(1) {
      margin-top: 0; }
    .serwis2022about__content ul li::before {
      content: "";
      background-color: #019dd9;
      position: absolute;
      left: -18px;
      top: 12px;
      width: 8px;
      height: 8px;
      border-radius: 50%; }

.serwis2022about__content ol {
  margin-top: 35px;
  margin-bottom: 25px; }
  .serwis2022about__content ol li {
    font-size: 16px;
    line-height: 1.5;
    font-weight: bold;
    margin-top: 5px;
    margin-left: 15px;
    list-style-type: decimal; }
    .serwis2022about__content ol li:nth-child(1) {
      margin-top: 0; }

.serwis2022about__items {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap; }

@media (max-width: 991px) {
  .serwis2022about__items {
    flex-direction: column; } }
  .serwis2022about__items p {
    margin-top: 6px;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.5;
    text-align: left;
    color: #000;
    position: relative;
    margin-left: 25px; }
    .serwis2022about__items p::before {
      content: "";
      position: absolute;
      left: -17px;
      bottom: 7px;
      width: 8px;
      height: 8px;
      display: block;
      border-radius: 50%;
      background-color: #019dd9; }

.serwis2022hero {
  position: relative;
  width: 100%; }
  .serwis2022hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; }
    .serwis2022hero__background img {
      height: 100%;
      width: 100%;
      object-fit: cover;
      object-position: top; }
  .serwis2022hero__logo {
    margin-top: 75px;
    margin-bottom: 48px;
    width: 250px; }
    .serwis2022hero__logo img {
      height: 100%;
      width: 100%;
      object-fit: contain; }
  .serwis2022hero__content {
    margin-bottom: 24px;
    padding-right: 200px;
    text-align: left;
    color: #000; }

@media (max-width: 1199px) {
  .serwis2022hero__content {
    padding-right: 60px; } }

@media (max-width: 991px) {
  .serwis2022hero__content {
    padding-right: 280px; } }

@media (max-width: 991px) {
  .serwis2022hero__content {
    padding-right: 180px; } }
    .serwis2022hero__content h4 {
      font-size: 20px;
      font-weight: bold; }
    .serwis2022hero__content h3 {
      font-size: 24px;
      font-weight: bold;
      margin-bottom: 24px; }
    .serwis2022hero__content strong {
      font-weight: bold; }
    .serwis2022hero__content p {
      font-size: 18px;
      line-height: 1.5; }
  .serwis2022hero__icons {
    padding-right: 200px;
    margin-bottom: 12px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center; }

@media (max-width: 1199px) {
  .serwis2022hero__icons {
    padding-right: 60px; } }

@media (max-width: 991px) {
  .serwis2022hero__icons {
    padding-right: 280px; } }

@media (max-width: 991px) {
  .serwis2022hero__icons {
    padding-right: 180px; } }
    .serwis2022hero__icons img {
      width: 40px;
      height: 40px;
      object-fit: contain; }

.serwis2022title {
  margin-top: 72px;
  margin-bottom: 48px; }
  .serwis2022title h2 {
    position: relative;
    font-weight: bold;
    font-size: 22px;
    line-height: 1.5;
    text-align: left; }
    .serwis2022title h2::before {
      content: "";
      position: absolute;
      display: block;
      left: 0;
      bottom: -5px;
      background-image: url("data:image/gif;base64,iVBORw0KGgoAAAANSUhEUgAAAK8AAAADCAMAAADSkq/SAAAAV1BMVEUCAgLAwMDt7e3Nzc0ZGRnT09Pa2toICAj9/f0QEBD19fUvLy/g4ODHx8ckJCS4uLivr687OztHR0d0dHSLi4unp6eWlpbm5uaAgIBTU1NoaGienp5eXl6sRJKdAAAApElEQVQoz3XQCRKDIBAFUdlcCGg0rpj7nzN/GCNSiX2CV10U/6suNVUT042mWt2iR6xHA7WhNwohvNCKRjSjHU3oiTpKxHxMUUYZVJoy5tBCScpKi2pbczfaCzhpmauZ257e/uIN7F0P8Dyyl7TsJbEgsSew8ol7gF30Elguv9wbb8Y9yfyX9ybu0H+5W/Z3PP7uAE/7lLjsFWkvg7O9Lv21GfgDiwMWmznydCgAAAAASUVORK5CYII=");
      background-repeat: no-repeat;
      background-size: contain;
      background-position: center;
      width: 150px;
      height: 3px; }

.serwis2022contact {
  position: relative;
  width: 100%; }
  .serwis2022contact__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; }
    .serwis2022contact__background img {
      height: 100%;
      width: 100%;
      object-fit: cover; }
  .serwis2022contact__logo {
    margin-top: 75px;
    margin-bottom: 48px;
    width: 250px; }
    .serwis2022contact__logo img {
      height: 100%;
      width: 100%;
      object-fit: contain; }
  .serwis2022contact__content {
    margin-bottom: 36px; }
    .serwis2022contact__content h6 {
      font-size: 20px;
      font-weight: bold;
      line-height: 1.5;
      color: #313534;
      margin-top: 24px; }
    .serwis2022contact__content h5 {
      font-size: 24px;
      font-weight: bold;
      line-height: 1.5;
      color: #313534;
      text-transform: uppercase;
      margin-top: 12px; }
    .serwis2022contact__content h4 {
      font-size: 32px;
      font-weight: bold;
      line-height: 1.5;
      color: #313534;
      text-transform: uppercase; }
    .serwis2022contact__content h3 {
      font-size: 40px;
      font-weight: bold;
      line-height: 1.5;
      color: #313534;
      text-transform: uppercase;
      margin-top: 12px; }
    .serwis2022contact__content h2 {
      font-size: 48px;
      font-weight: bold;
      line-height: 1.5;
      color: #313534;
      text-transform: uppercase;
      margin-top: 12px; }
    .serwis2022contact__content h1 {
      font-size: 56px;
      font-weight: bold;
      line-height: 1.5;
      color: #313534;
      margin-top: 12px;
      text-transform: uppercase; }
    .serwis2022contact__content p {
      font-size: 18px;
      margin-top: 24px;
      margin-bottom: 7px;
      text-align: left;
      color: #000; }
      .serwis2022contact__content p:nth-child(2) {
        margin-top: 0px; }
    .serwis2022contact__content strong {
      font-weight: 600;
      text-transform: uppercase; }
    .serwis2022contact__content ul {
      margin-top: 35px;
      margin-bottom: 25px; }
      .serwis2022contact__content ul li {
        font-size: 18px;
        line-height: 1.5;
        color: #313534;
        font-weight: bold;
        margin-top: 6px;
        margin-left: 18px;
        position: relative; }
        .serwis2022contact__content ul li:nth-child(1) {
          margin-top: 0; }
        .serwis2022contact__content ul li::before {
          content: "";
          background-color: #019dd9;
          position: absolute;
          left: -18px;
          top: 12px;
          width: 8px;
          height: 8px;
          border-radius: 50%; }
    .serwis2022contact__content ol {
      margin-top: 35px;
      margin-bottom: 25px; }
      .serwis2022contact__content ol li {
        font-size: 16px;
        line-height: 1.5;
        font-weight: bold;
        margin-top: 5px;
        margin-left: 15px;
        list-style-type: decimal; }
        .serwis2022contact__content ol li:nth-child(1) {
          margin-top: 0; }
  .serwis2022contact__tel a {
    display: inline-block;
    margin-bottom: 12px;
    margin-bottom: 12px;
    font-size: 18px;
    text-align: left;
    font-weight: bold;
    color: #000;
    position: relative;
    padding-left: 25px;
    margin-right: 20px; }
    .serwis2022contact__tel a::before {
      content: "";
      display: block;
      background-image: url("data:image/gif;base64,iVBORw0KGgoAAAANSUhEUgAAAC0AAAAtCAMAAAANxBKoAAAATlBMVEUAAACsrKzIyMiKiord3d1JSUlhYWH///8YGBgPDw+Tk5Px8fEkJCR7e3tvb2/5+fk/Pz8GBgbm5uadnZ0xMTHS0tJUVFSkpKS1tbW/v7/OCzS+AAACOElEQVRIx4VVV4KFIAyMggpiA/v9L7qhg/JcvjSMcTJp0JUP3YZ2pU8r/ECfoM+yltH1eWX2mTRM44f+jVaNvrhzR/PVcjRv9QNNjRuA6slH9PpmzNAKTcdF0H6++IsJzccc0RrcusCqd7w3Xm8BLRy466oyXCwBDt3mwZn3u2lP5fGoQWPRl3/y3q0y6ANk69OzuFDhAC6ypEhlfRudnBwzvuwaPSSu8fQAxNGt0CM0Vo4d06HRPLC2Rybv1xDiGwEwq8By9JUmw8ix2EcGHNGLf7V/lABZ5fn4uhVg7aAFPoe7WmpbVizMf86ROaxJRm6Z8bAOvMJYAhRUTA4G7gXJuSj3Wa9z6am0Ju7nubyVYW40/TNofRXaiDsqDepn6duIOMi5K1BhzhkHI3wVnLdvdN24f587ogW4j00trd3H0b1DghQokKmeLzQyBxFKVqp/0FWscQyCiW+0bg6vNKZsiJVCybiKJ1rIyBdzxP0IWXVHsPo5q240zhHulCF2zED9nGwTxMpF7tAKIz9UdAy9mkxNpH6EZkZi/OydnCR6jzMWu2oKwS2GgawDofqB1lNoit3MEr4BnsxvxdMymclE00lgOiid9nrUHnMxLcQ2f7Yb1JClJj2T4ZJvEtHAjyrcTc/A2wcchbo6jJqvLWW0JgUiTXGn0UMvm+oJNrO1tAFXrfWS4HUZ05/7UoxS77ipDp6Z+tquauJmWx7T2KKsnH7v4k6QDfwZ9n82txkN5NgYZ00cYH+qCDaHFncZ+QAAAABJRU5ErkJggg==");
      background-repeat: no-repeat;
      background-size: contain;
      background-position: center;
      width: 20px;
      height: 20px;
      position: absolute;
      left: 0px;
      top: 2px; }

.serwis2022klima__content h6 {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
  color: #313534;
  text-transform: uppercase;
  margin-top: 12px; }

.serwis2022klima__content h5 {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.5;
  color: #313534;
  text-transform: uppercase;
  margin-top: 12px; }

.serwis2022klima__content h4 {
  font-size: 32px;
  font-weight: bold;
  line-height: 1.5;
  color: #313534;
  text-transform: uppercase; }

.serwis2022klima__content h3 {
  font-size: 40px;
  font-weight: bold;
  line-height: 1.5;
  color: #313534;
  text-transform: uppercase;
  margin-top: 12px; }

.serwis2022klima__content h2 {
  font-size: 48px;
  font-weight: bold;
  line-height: 1.5;
  color: #313534;
  text-transform: uppercase;
  margin-top: 12px; }

.serwis2022klima__content h1 {
  font-size: 56px;
  font-weight: bold;
  line-height: 1.5;
  color: #313534;
  margin-top: 12px;
  text-transform: uppercase; }

.serwis2022klima__content p {
  margin-bottom: 24px;
  padding-right: 200px;
  font-size: 18px;
  text-align: left;
  color: #000; }

.serwis2022klima__content strong {
  font-weight: 600;
  text-transform: uppercase; }

.serwis2022klima__content ul {
  margin-top: 35px;
  margin-bottom: 25px; }
  .serwis2022klima__content ul li {
    font-size: 18px;
    line-height: 1.75;
    color: #313534;
    font-weight: bold;
    margin-top: 6px;
    margin-left: 18px;
    position: relative; }
    .serwis2022klima__content ul li:nth-child(1) {
      margin-top: 0; }
    .serwis2022klima__content ul li::before {
      content: "";
      background-color: #019dd9;
      position: absolute;
      left: -18px;
      top: 12px;
      width: 8px;
      height: 8px;
      border-radius: 50%; }

.serwis2022klima__content ol {
  margin-top: 35px;
  margin-bottom: 25px; }
  .serwis2022klima__content ol li {
    font-size: 16px;
    line-height: 1.5;
    font-weight: bold;
    margin-top: 5px;
    margin-left: 15px;
    list-style-type: decimal; }
    .serwis2022klima__content ol li:nth-child(1) {
      margin-top: 0; }

.serwis2022klima__image {
  width: 100%;
  height: auto; }
  .serwis2022klima__image img {
    height: auto;
    width: 100%;
    object-fit: contain; }

.serwis2022kotly__content p {
  margin-bottom: 24px;
  font-size: 18px;
  text-align: left;
  color: #000; }

.serwis2022kotly__products {
  margin-top: 36px;
  margin-bottom: 36px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  row-gap: 24px; }
  .serwis2022kotly__products img {
    height: 40px;
    width: auto;
    object-fit: contain;
    display: block; }

.serwis2022services__items h6 {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
  color: #313534;
  text-transform: uppercase;
  margin-top: 12px; }

.serwis2022services__items h5 {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.5;
  color: #313534;
  text-transform: uppercase;
  margin-top: 12px; }

.serwis2022services__items h4 {
  font-size: 32px;
  font-weight: bold;
  line-height: 1.5;
  color: #313534;
  text-transform: uppercase; }

.serwis2022services__items h3 {
  font-size: 40px;
  font-weight: bold;
  line-height: 1.5;
  color: #313534;
  text-transform: uppercase;
  margin-top: 12px; }

.serwis2022services__items h2 {
  font-size: 48px;
  font-weight: bold;
  line-height: 1.5;
  color: #313534;
  text-transform: uppercase;
  margin-top: 12px; }

.serwis2022services__items h1 {
  font-size: 56px;
  font-weight: bold;
  line-height: 1.5;
  color: #313534;
  margin-top: 12px;
  text-transform: uppercase; }

.serwis2022services__items p {
  font-size: 16px;
  line-height: 1.5;
  color: #313534;
  margin-top: 12px; }
  .serwis2022services__items p:nth-child(n + 3) {
    margin-top: 24px; }

.serwis2022services__items strong {
  font-weight: 600;
  text-transform: uppercase; }

.serwis2022services__items ul {
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  align-items: center; }

@media (max-width: 991px) {
  .serwis2022services__items ul {
    align-items: flex-start; } }
  .serwis2022services__items ul li {
    font-size: 18px;
    line-height: 1.75;
    color: #313534;
    font-weight: bold;
    margin-top: 6px;
    margin-left: 18px;
    position: relative; }
    .serwis2022services__items ul li:nth-child(1) {
      margin-top: 0; }
    .serwis2022services__items ul li::before {
      content: "";
      background-color: #019dd9;
      position: absolute;
      left: -18px;
      top: 12px;
      width: 8px;
      height: 8px;
      border-radius: 50%; }

.serwis2022services__items ol {
  margin-top: 35px;
  margin-bottom: 25px; }
  .serwis2022services__items ol li {
    font-size: 16px;
    line-height: 1.5;
    font-weight: bold;
    margin-top: 5px;
    margin-left: 15px;
    list-style-type: decimal; }
    .serwis2022services__items ol li:nth-child(1) {
      margin-top: 0; }

.header-container {
  position: fixed !important;
  top: 0;
  left: 0;
  background: white;
  width: 100%;
  display: block;
  z-index: 9; }

.layout {
  padding-top: 159px !important; }

@media (max-width: 1299px) {
  .layout {
    padding-top: 142px !important; } }

.banner-image {
  min-height: unset !important; }

/*
.one-iframe-plugin-container {
  height: 1600px!important;
  @media(max-width:991px){
      height: 2000px!important;
  }
  @media(max-width:767px){
      height: 2700px!important;
  }
  @media(max-width:565px){
      height: 3500px!important;
  }
}
*/
.one-cookie-banner.py-2.is-platform-closed {
  top: auto !important;
  padding: 30px 0 !important; }

@media (max-width: 575px) {
  .one-cookie-banner.py-2.is-platform-closed {
    font-size: 0.7rem;
    padding: 15px 0 !important; } }

body.account-roles .one-roles-list-element__button.button {
  position: unset !important;
  top: unset !important;
  right: unset !important;
  cursor: unset !important;
  display: unset !important;
  align-items: unset !important;
  justify-content: center;
  padding: unset !important;
  background: unset !important;
  border: unset !important;
  border-radius: unset !important;
  color: unset !important;
  font-size: unset !important;
  transition: unset !important;
  height: unset !important; }
  body.account-roles .one-roles-list-element__button.button:hover {
    color: unset !important;
    background-color: unset !important; }

.et2022_product_buybox .one-product-stocks-info .one-product-stocks-popup-dialog .one-product-stocks-popup-dialog__more-stocks .grid-table {
  flex-direction: unset; }

.one_et_kalkulatorbanner {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 24px; }
  .one_et_kalkulatorbanner img {
    display: block;
    width: 100%;
    height: auto; }

* {
  scroll-behavior: smooth;
  box-sizing: border-box; }

body {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  overflow-x: hidden;
  position: relative;
  font-family: "Lato", sans-serif;
  height: 100vh;
  gap: 24px; }

.page {
  overflow: hidden;
  padding-bottom: 60px; }

.gray {
  background-color: #e8ecef; }

.thermoval .header {
  width: 100%;
  display: block;
  z-index: 10;
  padding-top: 30px;
  padding-bottom: 30px;
  background: white;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1); }

@media (max-width: 767px) {
  .thermoval .header {
    padding-top: 25px;
    padding-bottom: 25px; } }
  .thermoval .header__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between; }
  .thermoval .header__logo {
    display: flex;
    align-items: center;
    justify-content: center; }
    .thermoval .header__logo img {
      max-width: 200px;
      width: 100%;
      height: 40px;
      object-fit: contain; }

@media (max-width: 991px) {
  .thermoval .header__nav {
    background-color: rgba(255, 255, 255, 0.9);
    margin-left: 0;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 0vh;
    max-height: 100vh;
    overflow: hidden;
    transition: 0.2s linear; }
    .thermoval .header__nav.open {
      height: calc(100vh - 60px); } }
  .thermoval .header__list {
    display: flex;
    align-items: center;
    justify-content: flex-end; }

@media (max-width: 991px) {
  .thermoval .header__list {
    justify-content: space-evenly;
    flex-direction: column; } }
  .thermoval .header__list-item {
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    color: black;
    display: block;
    margin-right: 50px; }
    .thermoval .header__list-item:nth-last-child(1) {
      margin-right: 0; }
    .thermoval .header__list-item--link {
      transition: 0.2s linear;
      padding: 10px 15px; }
      .thermoval .header__list-item--link:hover {
        background-color: #d1181c;
        color: white; }

@media (max-width: 991px) {
  .thermoval .header__list-item {
    margin-top: 24px;
    margin-right: 0; } }

.thermoval .menu-btn {
  margin-left: 15px;
  cursor: pointer;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
  overflow: hidden; }

@media (max-width: 991px) {
  .thermoval .menu-btn {
    display: flex; } }
  .thermoval .menu-btn__burger {
    display: none;
    width: 30px;
    height: 2px;
    background-color: black;
    border-radius: 5px;
    transition: 0.2s ease-in-out; }

@media (max-width: 991px) {
  .thermoval .menu-btn__burger {
    display: block; } }
    .thermoval .menu-btn__burger::before, .thermoval .menu-btn__burger::after {
      content: "";
      position: absolute;
      width: 30px;
      height: 2px;
      background-color: black;
      border-radius: 5px;
      transition: 0.2s all ease-in-out; }
    .thermoval .menu-btn__burger::before {
      transform: translateY(-12px); }
    .thermoval .menu-btn__burger::after {
      transform: translateY(12px); }
  .thermoval .menu-btn.open .thermoval .menu-btn__burger {
    transform: translateX(-50px);
    background: transparent; }
  .thermoval .menu-btn.open .thermoval .menu-btn__burger::before {
    transform: rotate(45deg) translate(35px, -35px); }
  .thermoval .menu-btn.open .thermoval .menu-btn__burger::after {
    transform: rotate(-45deg) translate(35px, 35px); }

.thermoval .text {
  margin-top: 60px; }
  .thermoval .text h2 {
    font-size: calc(1.3875rem + 1.65 vw); }

@media (min-width: 1200px) {
  .thermoval .text h2 {
    font-size: 2.625rem; } }
  .thermoval .text h3 {
    font-size: calc(1.325rem + 0.9 vw); }

@media (min-width: 1200px) {
  .thermoval .text h3 {
    font-size: 2rem; } }
  .thermoval .text strong {
    font-weight: bold; }
  .thermoval .text h1,
.thermoval .text h2,
.thermoval .text h3,
.thermoval .text h4,
.thermoval .text h5,
.thermoval .text h6 {
    margin-top: 30px; }
    .thermoval .text h1:nth-child(1),
.thermoval .text h2:nth-child(1),
.thermoval .text h3:nth-child(1),
.thermoval .text h4:nth-child(1),
.thermoval .text h5:nth-child(1),
.thermoval .text h6:nth-child(1) {
      margin-top: 0; }

@media (min-width: 992px) {
  .thermoval .text h1,
.thermoval .text h2,
.thermoval .text h3,
.thermoval .text h4,
.thermoval .text h5,
.thermoval .text h6 {
    margin-top: 60px; } }
  .thermoval .text img,
.thermoval .text iframe {
    margin-top: 30px;
    max-width: 100%;
    width: 100%;
    object-fit: cover; }

@media (min-width: 992px) {
  .thermoval .text img,
.thermoval .text iframe {
    margin-top: 60px; } }
    .thermoval .text img.logo,
.thermoval .text iframe.logo {
      width: auto;
      object-fit: unset;
      height: auto;
      display: block;
      margin-left: auto;
      margin-right: auto;
      display: block; }
  .thermoval .text iframe {
    height: 600px; }

@media (max-width: 991px) {
  .thermoval .text iframe {
    height: 450px; } }
  .thermoval .text p {
    color: black;
    margin-top: 20px; }
    .thermoval .text p:nth-child(1) {
      margin-top: 0; }
  .thermoval .text ol {
    margin-top: 30px; }
    .thermoval .text ol li {
      list-style: decimal;
      list-style-position: inside;
      margin-top: 15px;
      color: black; }
      .thermoval .text ol li:nth-child(1) {
        margin-top: 0; }
  .thermoval .text ul {
    margin-top: 30px; }
    .thermoval .text ul li {
      position: relative;
      padding-left: 17px;
      margin-top: 5px;
      color: black; }
      .thermoval .text ul li:nth-child(1) {
        margin-top: 0; }
      .thermoval .text ul li::before {
        content: "";
        position: absolute;
        top: 11px;
        left: 0;
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background-color: black; }
  .thermoval .text--bg {
    background-color: #e8ecef;
    padding: 60px 0; }

@media (max-width: 1199px) {
  .thermoval .text--bg {
    padding: 50px 0; } }

@media (max-width: 991px) {
  .thermoval .text--bg {
    padding: 40px 0; } }

@media (max-width: 767px) {
  .thermoval .text--bg {
    padding: 30px 0; } }

.thermoval .two-box {
  margin-top: calc(60px + 48px);
  margin-bottom: 96px;
  position: relative;
  background-color: #e8ecef; }
  .thermoval .two-box__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center; }

@media (max-width: 767px) {
  .thermoval .two-box__content {
    padding: 24px 24px; }
    .thermoval .two-box__content:nth-child(1) {
      margin-top: 0; } }
  .thermoval .two-box__img {
    margin-top: -63px;
    width: 100%;
    height: 126px;
    -o-object-fit: contain;
    object-fit: contain; }
    .thermoval .two-box__img_bigger {
      height: auto !important;
      margin: 0 !important; }

@media (max-width: 767px) {
  .thermoval .two-box__img {
    margin-top: 24px; } }
  .thermoval .two-box__title {
    margin-top: 24px;
    font-size: 24px; }
  .thermoval .two-box p {
    margin-top: 24px; }
  .thermoval .two-box__btn-container {
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: center; }
  .thermoval .two-box__btn {
    height: 72px;
    margin-bottom: -36px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    text-transform: uppercase;
    text-align: center;
    padding: 12px 20px;
    position: relative;
    overflow: hidden;
    font-size: 16px;
    line-height: 26px;
    font-weight: bold;
    color: white;
    background-color: #d1181c;
    transition: 0.2s linear; }

@media (max-width: 767px) {
  .thermoval .two-box__btn {
    margin-bottom: 0; } }
    .thermoval .two-box__btn:hover {
      filter: brightness(0.8); }

.thermoval .big-button {
  margin-top: 60px; }
  .thermoval .big-button__btn-container {
    display: flex;
    align-items: center;
    justify-content: center; }
  .thermoval .big-button__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    text-transform: uppercase;
    text-align: center;
    padding: 25px 50px;
    position: relative;
    overflow: hidden;
    font-size: 16px;
    line-height: 26px;
    font-weight: bold;
    color: white;
    background-color: #d1181c;
    transition: 0.2s linear; }
    .thermoval .big-button__btn:hover {
      filter: brightness(0.8); }

.thermoval .files {
  margin-top: 60px; }
  .thermoval .files__title {
    font-size: 32px;
    font-weight: 500; }
  .thermoval .files__list {
    margin-top: 24px; }
  .thermoval .files__list-item a {
    margin-top: 10px;
    font-size: 20px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative; }
    .thermoval .files__list-item a svg {
      display: block;
      width: 24px;
      height: 24px;
      margin-right: 12px; }
    .thermoval .files__list-item a::before {
      content: "";
      display: block;
      box-sizing: border-box;
      border: 1px solid black;
      width: 24px;
      height: 24px;
      margin-right: 24px; }
    .thermoval .files__list-item a:hover {
      text-decoration: underline; }

.thermoval .hero {
  position: relative; }
  .thermoval .hero__row {
    position: relative;
    padding-top: 220px;
    padding-bottom: 220px; }

@media (max-width: 767px) {
  .thermoval .hero__row {
    padding-top: 120px;
    padding-bottom: 120px; } }
  .thermoval .hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1; }
  .thermoval .hero__title {
    text-transform: uppercase;
    font-weight: bold;
    font-size: calc(1.425rem + 2.1 vw); }

@media (min-width: 1200px) {
  .thermoval .hero__title {
    font-size: 3rem; } }
  .thermoval .hero__text {
    margin-top: 48px;
    font-size: 24px;
    line-height: 34px; }
  .thermoval .hero__bottom-text {
    text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
    width: 100%;
    max-width: 100%;
    display: block;
    word-break: break-all;
    position: absolute;
    bottom: 24px;
    font-weight: 600;
    right: 0;
    color: white;
    text-align: right;
    font-size: calc(1.35rem + 1.2 vw); }

@media (min-width: 1200px) {
  .thermoval .hero__bottom-text {
    font-size: 2.25rem; } }

@media (max-width: 991px) {
  .thermoval .hero__bottom-text {
    text-align: left; } }

.thermoval .learn-more {
  margin-top: 60px; }

.thermoval .learn-more-box {
  text-align: center; }

@media (max-width: 767px) {
  .thermoval .learn-more-box__col {
    margin-top: 24px; }
    .thermoval .learn-more-box__col:nth-child(1) {
      margin-top: 0; } }
  .thermoval .learn-more-box__img {
    height: 250px;
    width: 100%;
    object-fit: cover; }

@media (max-width: 767px) {
  .thermoval .learn-more-box__img {
    height: 200px; } }
  .thermoval .learn-more-box__title {
    margin-top: 24px;
    font-size: 24px;
    font-weight: 500; }
  .thermoval .learn-more-box__paragraph {
    margin-top: 24px;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400; }
  .thermoval .learn-more-box__btn-container {
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: center; }
  .thermoval .learn-more-box__btn {
    width: 75%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    text-transform: uppercase;
    text-align: center;
    padding: 12px 20px;
    position: relative;
    overflow: hidden;
    font-size: 16px;
    line-height: 26px;
    font-weight: bold;
    color: white;
    background-color: #3eabe3;
    transition: 0.2s linear; }
    .thermoval .learn-more-box__btn:hover {
      filter: brightness(0.8); }

.thermoval .text-column {
  margin-top: 60px;
  overflow: hidden; }
  .thermoval .text-column__content h2 {
    font-size: calc(1.3875rem + 1.65 vw); }

@media (min-width: 1200px) {
  .thermoval .text-column__content h2 {
    font-size: 2.625rem; } }
  .thermoval .text-column__content h3 {
    font-size: calc(1.325rem + 0.9 vw); }

@media (min-width: 1200px) {
  .thermoval .text-column__content h3 {
    font-size: 2rem; } }
  .thermoval .text-column__content strong {
    font-weight: bold; }
  .thermoval .text-column__content h1,
.thermoval .text-column__content h2,
.thermoval .text-column__content h3,
.thermoval .text-column__content h4,
.thermoval .text-column__content h5,
.thermoval .text-column__content h6 {
    margin-top: 30px; }
    .thermoval .text-column__content h1:nth-child(1),
.thermoval .text-column__content h2:nth-child(1),
.thermoval .text-column__content h3:nth-child(1),
.thermoval .text-column__content h4:nth-child(1),
.thermoval .text-column__content h5:nth-child(1),
.thermoval .text-column__content h6:nth-child(1) {
      margin-top: 0; }

@media (min-width: 992px) {
  .thermoval .text-column__content h1,
.thermoval .text-column__content h2,
.thermoval .text-column__content h3,
.thermoval .text-column__content h4,
.thermoval .text-column__content h5,
.thermoval .text-column__content h6 {
    margin-top: 60px; } }
  .thermoval .text-column__content img,
.thermoval .text-column__content iframe {
    margin-top: 30px;
    max-width: 100%;
    width: 100%;
    object-fit: cover; }

@media (min-width: 992px) {
  .thermoval .text-column__content img,
.thermoval .text-column__content iframe {
    margin-top: 60px; } }
    .thermoval .text-column__content img.logo,
.thermoval .text-column__content iframe.logo {
      width: auto;
      object-fit: unset;
      height: auto;
      display: block;
      margin-left: auto;
      margin-right: auto;
      display: block; }
  .thermoval .text-column__content iframe {
    height: 600px; }

@media (max-width: 991px) {
  .thermoval .text-column__content iframe {
    height: 450px; } }
  .thermoval .text-column__content p {
    color: black;
    margin-top: 20px; }
    .thermoval .text-column__content p:nth-child(1) {
      margin-top: 0; }
  .thermoval .text-column__content ol {
    margin-top: 30px; }
    .thermoval .text-column__content ol li {
      list-style: decimal;
      list-style-position: inside;
      margin-top: 15px;
      color: black; }
      .thermoval .text-column__content ol li:nth-child(1) {
        margin-top: 0; }
  .thermoval .text-column__content ul {
    margin-top: 30px; }
    .thermoval .text-column__content ul li {
      position: relative;
      padding-left: 17px;
      margin-top: 5px;
      color: black; }
      .thermoval .text-column__content ul li:nth-child(1) {
        margin-top: 0; }
      .thermoval .text-column__content ul li::before {
        content: "";
        position: absolute;
        top: 11px;
        left: 0;
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background-color: black; }
  .thermoval .text-column__form {
    height: 100%;
    width: 100%;
    border: 2px solid #d1181c;
    padding: 24px;
    border: 2px solid #d1181c;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background-color: white;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    height: 323px; }

@media (max-width: 767px) {
  .thermoval .text-column__form {
    margin-top: 24px; } }
    .thermoval .text-column__form h3 {
      text-align: center;
      font-size: calc(1.2875rem + 0.45vw);
      font-weight: bold;
      margin-bottom: 14px; }

@media (max-width: 1199px) {
  .thermoval .text-column__form {
    height: 100%; } }

@media (max-width: 991px) {
  .thermoval .text-column__form {
    height: 323px; } }
    .thermoval .text-column__form iframe {
      max-width: 100%;
      height: 100%;
      width: 100%; }
  .thermoval .text-column__image {
    position: relative;
    width: 100%;
    height: 100%; }

@media (max-width: 767px) {
  .thermoval .text-column__image {
    margin-top: 24px; } }
    .thermoval .text-column__image img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover; }

@media (max-width: 1599px) {
  .thermoval .text-column__image img {
    width: 100%; } }

@media (max-width: 767px) {
  .thermoval .text-column__image img {
    position: unset;
    top: unset;
    left: unset;
    width: 100%; } }

.thermoval .text-btn {
  background-color: #e8ecef;
  margin-top: 60px;
  padding: 60px 0; }
  .thermoval .text-btn__content h2 {
    font-size: calc(1.3875rem + 1.65 vw); }

@media (min-width: 1200px) {
  .thermoval .text-btn__content h2 {
    font-size: 2.625rem; } }
  .thermoval .text-btn__content h3 {
    font-size: calc(1.325rem + 0.9 vw); }

@media (min-width: 1200px) {
  .thermoval .text-btn__content h3 {
    font-size: 2rem; } }
  .thermoval .text-btn__content strong {
    font-weight: bold; }
  .thermoval .text-btn__content h1,
.thermoval .text-btn__content h2,
.thermoval .text-btn__content h3,
.thermoval .text-btn__content h4,
.thermoval .text-btn__content h5,
.thermoval .text-btn__content h6 {
    margin-top: 30px; }
    .thermoval .text-btn__content h1:nth-child(1),
.thermoval .text-btn__content h2:nth-child(1),
.thermoval .text-btn__content h3:nth-child(1),
.thermoval .text-btn__content h4:nth-child(1),
.thermoval .text-btn__content h5:nth-child(1),
.thermoval .text-btn__content h6:nth-child(1) {
      margin-top: 0; }

@media (min-width: 992px) {
  .thermoval .text-btn__content h1,
.thermoval .text-btn__content h2,
.thermoval .text-btn__content h3,
.thermoval .text-btn__content h4,
.thermoval .text-btn__content h5,
.thermoval .text-btn__content h6 {
    margin-top: 60px; } }
  .thermoval .text-btn__content img,
.thermoval .text-btn__content iframe {
    margin-top: 30px;
    max-width: 100%;
    width: 100%;
    object-fit: cover; }

@media (min-width: 992px) {
  .thermoval .text-btn__content img,
.thermoval .text-btn__content iframe {
    margin-top: 60px; } }
    .thermoval .text-btn__content img.logo,
.thermoval .text-btn__content iframe.logo {
      width: auto;
      object-fit: unset;
      height: auto;
      display: block;
      margin-left: auto;
      margin-right: auto;
      display: block; }
  .thermoval .text-btn__content iframe {
    height: 600px; }

@media (max-width: 991px) {
  .thermoval .text-btn__content iframe {
    height: 450px; } }
  .thermoval .text-btn__content p {
    color: black;
    margin-top: 20px; }
    .thermoval .text-btn__content p:nth-child(1) {
      margin-top: 0; }
  .thermoval .text-btn__content ol {
    margin-top: 30px; }
    .thermoval .text-btn__content ol li {
      list-style: decimal;
      list-style-position: inside;
      margin-top: 15px;
      color: black; }
      .thermoval .text-btn__content ol li:nth-child(1) {
        margin-top: 0; }
  .thermoval .text-btn__content ul {
    margin-top: 30px; }
    .thermoval .text-btn__content ul li {
      position: relative;
      padding-left: 17px;
      margin-top: 5px;
      color: black; }
      .thermoval .text-btn__content ul li:nth-child(1) {
        margin-top: 0; }
      .thermoval .text-btn__content ul li::before {
        content: "";
        position: absolute;
        top: 11px;
        left: 0;
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background-color: black; }
  .thermoval .text-btn__btn-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center; }

@media (max-width: 991px) {
  .thermoval .text-btn__btn-container {
    margin-top: 24px; } }
  .thermoval .text-btn__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    text-transform: uppercase;
    text-align: center;
    padding: 12px 20px;
    position: relative;
    overflow: hidden;
    font-size: 16px;
    line-height: 26px;
    font-weight: bold;
    color: white;
    background-color: #d1181c;
    transition: 0.2s linear; }
    .thermoval .text-btn__btn:hover {
      filter: brightness(0.8); }

.thermoval .spec {
  margin-top: 120px;
  overflow: hidden; }
  .thermoval .spec table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%; }
  .thermoval .spec .table-container {
    overflow-x: auto; }
  .thermoval .spec th,
.thermoval .spec td {
    text-align: left;
    padding: 8px; }
  .thermoval .spec tr:nth-child(even) {
    background-color: #f2f2f2; }
  .thermoval .spec__top {
    display: flex;
    align-items: center;
    justify-content: flex-end; }
    .thermoval .spec__top ul {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      gap: 150px;
      width: 60%; }
      .thermoval .spec__top ul li {
        font-size: 24px; }
  .thermoval .spec__list-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 10px 0;
    background-color: #e8ecef;
    position: relative; }
    .thermoval .spec__list-item:nth-child(odd) {
      background-color: #fff; }
      .thermoval .spec__list-item:nth-child(odd)::before {
        background-color: white; }
    .thermoval .spec__list-item::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 200vw;
      height: 100%;
      left: -100vw;
      background-color: #e8ecef;
      z-index: -1; }
    .thermoval .spec__list-item ul {
      display: flex;
      align-items: flex-start; }
  .thermoval .spec__left {
    width: 40%;
    margin-right: 24px; }

@media (max-width: 767px) {
  .thermoval .spec__left {
    width: 20%; } }
  .thermoval .spec__right {
    width: 60%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start; }

@media (max-width: 767px) {
  .thermoval .spec__right {
    width: 80%; } }
    .thermoval .spec__right ul {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: flex-start;
      gap: 24px; }
      .thermoval .spec__right ul li {
        width: 150px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center; }

@media (max-width: 767px) {
  .thermoval .spec__right ul li {
    width: 100px; } }
  .thermoval .spec__name {
    font-size: 24px; }

@media (max-width: 767px) {
  .thermoval .spec__name {
    font-size: 16px;
    line-height: 26px; } }
  .thermoval .spec__point {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #d1181c; }

.thermoval .btn-form {
  margin-top: 60px; }
  .thermoval .btn-form__content {
    padding: 48px 24px;
    color: black;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 100%;
    margin-top: 0; }
    .thermoval .btn-form__content img {
      margin-top: 0; }

@media (max-width: 767px) {
  .thermoval .btn-form__content {
    padding: 0 12px;
    margin-bottom: 24px; } }
    .thermoval .btn-form__content h2 {
      margin-top: 0; }

@media (max-width: 1199px) {
  .thermoval .btn-form__content h2 {
    font-size: 24px; } }
  .thermoval .btn-form .form {
    padding: 24px;
    border: 2px solid #d1181c;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background-color: white;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    height: 323px; }
    .thermoval .btn-form .form h3 {
      text-align: center;
      font-size: calc(1.2875rem + 0.45vw);
      font-weight: bold;
      margin-bottom: 14px; }

@media (max-width: 1199px) {
  .thermoval .btn-form .form {
    height: 100%; } }

@media (max-width: 991px) {
  .thermoval .btn-form .form {
    height: 323px; } }
    .thermoval .btn-form .form iframe {
      max-width: 100%;
      width: 100%;
      height: 100%; }
    .thermoval .btn-form .form--second {
      height: 567px; }

@media (max-width: 1199px) {
  .thermoval .btn-form .form--second {
    height: 100%; } }

@media (max-width: 991px) {
  .thermoval .btn-form .form--second {
    height: 567px; } }
  .thermoval .btn-form__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1; }

@media (min-width: 768px) {
  .thermoval .btn-form__col-left {
    padding-right: 0; }
  .thermoval .btn-form__col-right {
    padding-left: 0; } }
  .thermoval .btn-form__title {
    font-size: 32px;
    font-weight: 500;
    text-align: center; }
  .thermoval .btn-form__btn {
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    text-transform: uppercase;
    text-align: center;
    padding: 12px 96px;
    position: relative;
    overflow: hidden;
    font-size: 16px;
    line-height: 26px;
    font-weight: bold;
    color: white;
    background-color: #d1181c;
    transition: 0.2s linear; }
    .thermoval .btn-form__btn:hover {
      filter: brightness(0.8); }

.thermoval .form {
  height: 100%;
  width: 100%;
  background-color: #d1181c; }

.one-category-tree__scroll-area ul li[data-v-1f4a3490][data-index="9"] {
  display: none; }

.one-product-overview__inventory,
.one-product-page .one-product-stocks-info .grid-table {
  font-size: 16px !important; }

.one-product-list-view .one-product-stocks-info .grid-table:nth-child(1) .one-product-stocks-info__warehouse::before,
.one-product-list-view .one-product-stocks-info .grid-table .d-flex span:nth-child(1),
.one-product-list-view .one-product-stocks-info .grid-table .ml {
  font-size: 12px !important; }

.thermoval .hero_onlyphotos {
  display: block; }

.thermoval .hero_onlyphotos img.hero_desktop,
.thermoval .hero_onlyphotos img.hero_mobile {
  display: block;
  width: 100%;
  height: auto; }

.thermoval .hero_onlyphotos img.hero_mobile {
  display: none; }

@media (max-width: 585px) {
  .thermoval .hero_onlyphotos img.hero_desktop {
    display: none; }
  .thermoval .hero_onlyphotos img.hero_mobile {
    display: block; } }

.one-agreements-list a {
  color: #d1181c;
  transition: 300ms; }
  .one-agreements-list a:hover {
    color: black; }

.one-agreements-list strong {
  font-weight: bold; }

.ofertownik_baner {
  display: none;
  width: 100%;
  height: auto; }
  .ofertownik_baner img {
    display: block;
    width: 100%;
    height: auto; }

body.ofertownik .ofertownik_baner {
  display: block !important; }

.header_sidebar {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  width: auto;
  height: 168px;
  margin: auto; }
  .header_sidebar_element,
.header_sidebar li {
    position: absolute;
    right: 0;
    margin: auto;
    width: auto;
    height: 48px; }
    .header_sidebar_element:nth-child(1),
.header_sidebar li:nth-child(1) {
      top: 0; }
    .header_sidebar_element:nth-child(2),
.header_sidebar li:nth-child(2) {
      top: 0;
      bottom: 0; }
    .header_sidebar_element:nth-child(3),
.header_sidebar li:nth-child(3) {
      bottom: 0; }
    .header_sidebar_element.mobileonly,
.header_sidebar li.mobileonly {
      display: none; }

@media (max-width: 1199px) {
  .header_sidebar_element.mobileonly,
.header_sidebar li.mobileonly {
    display: block; } }
    .header_sidebar_element .one-barcode-scanner,
.header_sidebar_element a,
.header_sidebar li .one-barcode-scanner,
.header_sidebar li a {
      display: block;
      width: 48px;
      height: 48px;
      transition: 300ms;
      overflow: hidden;
      background-color: #d3222a;
      position: relative;
      padding: 12px; }
      .header_sidebar_element .one-barcode-scanner img,
.header_sidebar_element a img,
.header_sidebar li .one-barcode-scanner img,
.header_sidebar li a img {
        display: block;
        width: auto;
        height: 24px;
        right: 12px;
        top: 12px;
        bottom: 12px;
        position: absolute;
        z-index: 2; }
      .header_sidebar_element .one-barcode-scanner span,
.header_sidebar_element a span,
.header_sidebar li .one-barcode-scanner span,
.header_sidebar li a span {
        color: white;
        line-height: 24px;
        text-align: right;
        visibility: hidden;
        opacity: 0;
        transition-delay: 300ms;
        transition: 300ms;
        position: relative;
        z-index: 1; }
      .header_sidebar_element .one-barcode-scanner:hover,
.header_sidebar_element a:hover,
.header_sidebar li .one-barcode-scanner:hover,
.header_sidebar li a:hover {
        width: auto;
        padding: 12px 60px 12px 12px; }
        .header_sidebar_element .one-barcode-scanner:hover span,
.header_sidebar_element a:hover span,
.header_sidebar li .one-barcode-scanner:hover span,
.header_sidebar li a:hover span {
          visibility: visible;
          opacity: 1; }
    .header_sidebar_element .one-barcode-scanner,
.header_sidebar li .one-barcode-scanner {
      padding: 6px;
      color: white; }
      .header_sidebar_element .one-barcode-scanner:hover,
.header_sidebar li .one-barcode-scanner:hover {
        width: 48px;
        padding: 6px; }

.blackweekbutton {
  background-color: #d3222a;
  color: white; }
  .blackweekbutton:hover {
    background-color: black; }

.buttonstandard {
  background-color: #d3222a;
  display: inline-block;
  padding: 15px 30px !important;
  transition: 300ms;
  color: white; }
  .buttonstandard:hover {
    background-color: black;
    color: white; }

.thermoval .btn-form .form--second {
  height: 800px; }

@media (max-width: 1199px) {
  .thermoval .btn-form .form--second {
    height: 900px; } }

@media (max-width: 767px) {
  .thermoval .btn-form .form--second {
    height: 1100px; } }

.wpcf7 .wpcf7-form-control-wrap {
  margin-bottom: 15px; }

body.loyalty .zawodowcy_footer,
body.loyalty .zawodowcy_baner {
  display: block !important; }
  body.loyalty .zawodowcy_footer .zawodowcy_baner_inside,
body.loyalty .zawodowcy_footer .zawodowcy_footer_inside,
body.loyalty .zawodowcy_baner .zawodowcy_baner_inside,
body.loyalty .zawodowcy_baner .zawodowcy_footer_inside {
    display: block;
    width: 100%;
    height: auto;
    margin: 24px 0; }
    body.loyalty .zawodowcy_footer .zawodowcy_baner_inside img,
body.loyalty .zawodowcy_footer .zawodowcy_footer_inside img,
body.loyalty .zawodowcy_baner .zawodowcy_baner_inside img,
body.loyalty .zawodowcy_baner .zawodowcy_footer_inside img {
      display: block;
      width: 100%;
      height: auto; }
  body.loyalty .zawodowcy_footer .main-heading,
body.loyalty .zawodowcy_baner .main-heading {
    margin-top: 30px; }
  body.loyalty .zawodowcy_footer .zawodowcy_produkt,
body.loyalty .zawodowcy_baner .zawodowcy_produkt {
    display: block;
    width: 100%;
    height: 250px;
    margin-top: 30px; }
    body.loyalty .zawodowcy_footer .zawodowcy_produkt img,
body.loyalty .zawodowcy_baner .zawodowcy_produkt img {
      display: block;
      width: auto;
      height: 170px;
      max-width: 100%;
      object-fit: contain;
      margin: 0 auto 30px auto; }
    body.loyalty .zawodowcy_footer .zawodowcy_produkt span,
body.loyalty .zawodowcy_baner .zawodowcy_produkt span {
      display: block;
      width: 100%;
      height: 50px;
      line-height: 46px;
      background-color: #d1181c;
      border: solid 2px #d1181c;
      transition: 300ms;
      color: white;
      font-weight: bold;
      text-align: center;
      box-sizing: border-box; }
    body.loyalty .zawodowcy_footer .zawodowcy_produkt:hover span,
body.loyalty .zawodowcy_baner .zawodowcy_produkt:hover span {
      background-color: transparent;
      color: #d1181c; }
  body.loyalty .zawodowcy_footer .zawodowcy_partner,
body.loyalty .zawodowcy_baner .zawodowcy_partner {
    display: block;
    width: 100%;
    height: 150px;
    border: solid 1px transparent;
    transition: 300ms;
    position: relative; }

@media (max-width: 1199px) {
  body.loyalty .zawodowcy_footer .zawodowcy_partner,
body.loyalty .zawodowcy_baner .zawodowcy_partner {
    height: 100px; } }

@media (max-width: 767px) {
  body.loyalty .zawodowcy_footer .zawodowcy_partner,
body.loyalty .zawodowcy_baner .zawodowcy_partner {
    height: 75px; } }
    body.loyalty .zawodowcy_footer .zawodowcy_partner img,
body.loyalty .zawodowcy_baner .zawodowcy_partner img {
      display: block;
      width: auto;
      height: auto;
      max-width: 90%;
      max-height: 70%;
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      margin: auto; }

@media (max-width: 1199px) {
  body.loyalty .zawodowcy_footer .zawodowcy_partner img,
body.loyalty .zawodowcy_baner .zawodowcy_partner img {
    max-width: 95%;
    max-height: 80%; } }
    body.loyalty .zawodowcy_footer .zawodowcy_partner:hover,
body.loyalty .zawodowcy_baner .zawodowcy_partner:hover {
      border: solid 1px #d1181c; }

.big-banner {
  display: block; }

.one-product-overview {
  padding-bottom: 30px !important; }
  .one-product-overview .one-product-overview-loyalty-points-container {
    position: absolute;
    bottom: 0;
    font-size: 14px;
    line-height: 20px;
    font-weight: bold; }
    .one-product-overview .one-product-overview-loyalty-points-container::before {
      font-weight: normal;
      margin-right: 3px;
      content: 'Punkty: '; }

.one-product-list-view .one-product-overview-loyalty-points-container {
  margin-top: 10px !important;
  margin-bottom: 0 !important;
  border-left: 2px solid #d3222a !important;
  color: #313534;
  border-left: 2px solid var(--primary-color);
  padding-left: 10px;
  position: relative;
  font-size: .75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: bold; }
  .one-product-list-view .one-product-overview-loyalty-points-container::before {
    font-weight: normal;
    margin-right: 3px;
    content: 'Punkty: '; }

.one-catalog-view-list .one-product-tile-view .one-product-tile-view__titles {
  flex-wrap: wrap; }

.one-catalog-view-list .one-product-tile-view .one-product-overview-loyalty-points-container {
  border-left: 1px solid var(--primary-color);
  padding-left: 0.25rem;
  margin-left: 0.25rem;
  position: relative;
  font-size: .6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #606060;
  font-weight: 400; }
  .one-catalog-view-list .one-product-tile-view .one-product-overview-loyalty-points-container::before {
    font-weight: normal;
    margin-right: 3px;
    content: 'Punkty: '; }

.row.one-product-minilist-view__title::before {
  display: none; }

.one-product-minilist-view .one-product-overview-loyalty-points-container {
  color: #7c7c7c;
  padding: 0 !important;
  margin: 0 !important;
  padding-left: 17px !important;
  margin-right: 15px !important;
  position: relative;
  font-size: 0.875rem;
  margin-top: 10px !important;
  font-weight: bold; }
  .one-product-minilist-view .one-product-overview-loyalty-points-container::after {
    content: "";
    position: absolute;
    top: 9px;
    left: 0;
    width: 12px;
    height: 1px;
    background-color: #d3222a; }
  .one-product-minilist-view .one-product-overview-loyalty-points-container::before {
    font-weight: normal;
    margin-right: 3px;
    content: 'Punkty: '; }

.et2022_product_togglebox.zawodowcy_oneeuroterm {
  background-color: #0f1525;
  color: white;
  padding-right: 15px;
  display: none; }
  .et2022_product_togglebox.zawodowcy_oneeuroterm .et2022_product_togglebox-name {
    display: inline; }
  .et2022_product_togglebox.zawodowcy_oneeuroterm .et2022_product_togglebox-points {
    display: inline;
    font-weight: bold; }
    .et2022_product_togglebox.zawodowcy_oneeuroterm .et2022_product_togglebox-points::after {
      margin-left: 3px;
      content: 'pkt'; }
  .et2022_product_togglebox.zawodowcy_oneeuroterm a {
    display: block;
    text-decoration: underline;
    font-size: 12px;
    transition: 300ms; }
    .et2022_product_togglebox.zawodowcy_oneeuroterm a:hover {
      text-decoration: none;
      color: white; }

.et2022_product_values_second {
  width: 100%;
  display: block; }
  .et2022_product_values_second .et2022_product_togglebox-points {
    position: relative;
    padding-left: 12px;
    margin-bottom: 10px;
    font-weight: bold; }
    .et2022_product_values_second .et2022_product_togglebox-points::before {
      font-weight: normal;
      margin-right: 3px;
      content: 'Punkty: '; }
    .et2022_product_values_second .et2022_product_togglebox-points::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 2px;
      height: 100%;
      background-color: #d3222a; }

.zawodowcy_baner .thermoval .header__list {
  justify-content: flex-start; }

.tabelazpartnerami {
  display: block;
  margin-bottom: 50px; }

.tabelazpartnerami_grafika {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 6px; }

.tabelazpartnerami_partner {
  display: block;
  width: 50%;
  height: auto;
  padding: 6px;
  box-sizing: border-box;
  float: left; }

.tabelazpartnerami_partner img {
  display: block;
  width: 100%;
  height: auto; }

.tabelazpartnerami.partnerowmamy-3 .tabelazpartnerami_partner {
  width: auto;
  max-width: 396px;
  float: unset;
  margin: auto; }

.tabelazpartnerami.partnerowmamy-5 .tabelazpartnerami_partner {
  width: 50%; }

.tabelazpartnerami.partnerowmamy-10 .tabelazpartnerami_partner {
  width: 33%; }

@media (min-width: 992px) {
  .thermoval .text img {
    margin-top: 30px; } }

@media (max-width: 767px) {
  .tabelazpartnerami_grafika {
    margin-bottom: 24px; } }

@media (max-width: 991px) {
  .thermoval .header__nav {
    position: relative;
    top: auto;
    background: transparent;
    height: auto;
    text-align: center;
    width: 100%; } }

@media (max-width: 991px) {
  .thermoval .menu-btn {
    display: none !important; } }

.thermoval .text--bg.tabelazfilmami {
  padding: 60px 0 30px 0; }

.thermoval .text--bg.tabelazfilmami p {
  text-align: center;
  margin-bottom: 15px; }

.thermoval .text--bg.tabelazfilmami iframe {
  margin: 0; }

@media (min-width: 1200px) {
  .thermoval .text--bg.tabelazfilmami .col-lg-jednapiata.col-12 {
    width: 20%; } }

.thermoval .text--bg.tabelazfilmami .col-lg-jednapiata.col-12 iframe {
  height: 200px; }

.thermoval .text--bg.tabelazfilmami .col-lg-3.col-12 iframe {
  height: 250px; }

.thermoval .text--bg.tabelazfilmami .col-lg-4.col-12 iframe {
  height: 300px; }

.thermoval .text--bg.tabelazfilmami .col-lg-6.col-12 iframe {
  height: 400px; }

.thermoval .text--bg.tabelazfilmami .col-12 iframe {
  height: 500px; }

.one-new-mobile-menu-item[data-testid="account:menu:orders-history:button"],
.one-new-mobile-menu-item[data-testid="account:menu:invoices-goods-issued_notes:button"],
.one-new-mobile-menu-item[data-testid="account:menu:complains:button"] {
  display: flex; }

.zawodowcy_footer .col-4 {
  width: 20%; }

.tnc_menu_button {
  background-color: #d1181c;
  color: white;
  font-weight: bold !important; }
  .tnc_menu_button:hover {
    background-color: #3eabe3; }

.header-bottom__link {
  padding: 12px 12px;
  font-size: 15px; }

.one-cms-products-rotator.swiper-button-white {
  color: #d1181c; }
  .one-cms-products-rotator.swiper-button-white::after {
    font-size: 25px; }

.et24_products_rotator {
  display: block;
  width: 100%;
  background-color: white;
  margin-bottom: 70px; }
  .et24_products_rotator_image img {
    display: block;
    width: 100%;
    height: auto; }
  .et24_products_rotator_name {
    font-weight: bold;
    font-size: 14px;
    max-height: 66px;
    overflow: hidden; }
  .et24_products_rotator_price h3 {
    font-weight: bold;
    margin-bottom: 6px;
    font-size: 14px; }
  .et24_products_rotator_price h4 {
    color: #d1181c;
    text-decoration: line-through;
    margin-bottom: 6px;
    font-size: 12px; }
  .et24_products_rotator_price h5 {
    margin-bottom: 12px;
    font-size: 12px; }
  .et24_products_rotator_addtocart {
    background-color: #d1181c;
    color: white;
    font-weight: bold;
    font-size: 12px;
    text-transform: uppercase;
    text-align: center;
    width: 100%;
    height: auto;
    padding: 8px 4px;
    display: block;
    border: none;
    background-image: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    transition: 300ms; }
    .et24_products_rotator_addtocart:hover {
      background-color: black; }

.engocontrolslp.thermoval .text-column__image img {
  object-fit: contain; }

.engocontrolslp.thermoval .text img {
  object-fit: contain; }

.listabanerow {
  max-height: 1200px;
  overflow: hidden;
  position: relative;
  display: block; }

.listabanerow_nakladka {
  z-index: 9;
  width: 100%;
  height: 100px;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+0,ffffff+98&0+0,1+100 */
  background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.98) 98%, white 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.98) 98%, white 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.98) 98%, white 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00ffffff", endColorstr="#ffffff", GradientType=0);
  /* IE6-9 */
  position: absolute;
  bottom: 0;
  left: 0; }

.listabanerow_nakladka_button {
  background-color: #d1181c;
  width: 200px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  color: white;
  font-weight: bold;
  font-size: 12px;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  height: auto;
  padding: 8px 4px;
  display: block;
  border: none;
  background-image: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  transition: 300ms; }

.listabanerow_nakladka_button:hover {
  background-color: black;
  color: white; }

.listabanerow.showall {
  max-height: unset; }

.listabanerow.showall .listabanerow_nakladka {
  display: none; }

.listabanerow_box {
  display: block;
  margin-top: 24px;
  width: 100%;
  height: auto; }

.listabanerow_box img {
  display: block;
  width: 100%;
  height: auto; }

.footer-bmc {
  display: block;
  width: auto;
  height: 50px;
  box-sizing: border-box; }
  .footer-bmc img {
    display: block;
    width: auto;
    height: 100%;
    object-fit: contain; }

.header__list-item.header__list-item--withtooltip {
  position: relative;
  padding-right: 12px; }
  .header__list-item.header__list-item--withtooltip::after {
    position: absolute;
    display: block;
    content: "";
    width: 16px;
    height: 16px;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    background-size: contain;
    background-image: url("https://static.euroterm24.pl/cms/767b0bbcbc534433af4cc2566a6cf955-et2022-ico-6.png");
    background-repeat: no-repeat; }
  .header__list-item.header__list-item--withtooltip .header__list-item--tooltip {
    position: absolute;
    width: 200px;
    font-size: 12px;
    background-color: #fff;
    border: solid 1px #ccc;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    z-index: 2;
    opacity: 0;
    right: -16px;
    top: 0px;
    visibility: hidden;
    text-align: left;
    color: black;
    line-height: 1.4;
    padding: 12px; }
  .header__list-item.header__list-item--withtooltip:hover .header__list-item--tooltip {
    visibility: visible;
    opacity: 1;
    color: black;
    line-height: 1.4;
    padding: 12px; }

.two-banners__img,
.banners__img {
  z-index: 0; }

.banners__btn {
  z-index: 1; }

.kalkulator .layout .addone-plugin-container {
  height: max-content; }

@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important; } }

@media (min-width: 992px) and (max-width: 1200px) {
  .hidden-md {
    display: none !important; } }

@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important; } }

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

.text-column__image.zdjeciewyrownane {
  height: auto; }
  .text-column__image.zdjeciewyrownane img {
    position: relative;
    object-fit: unset; }

.login_baner,
.registration_baner_footer {
  display: none !important; }
  .login_baner_headline,
.registration_baner_footer_headline {
    display: block;
    text-align: center;
    color: black;
    font-weight: bold;
    font-size: 36px;
    margin-top: 24px; }

@media (max-width: 1199px) {
  .login_baner_headline,
.registration_baner_footer_headline {
    font-size: 32px; } }

@media (max-width: 991px) {
  .login_baner_headline,
.registration_baner_footer_headline {
    font-size: 28px; } }

@media (max-width: 767px) {
  .login_baner_headline,
.registration_baner_footer_headline {
    font-size: 24px; } }

@media (max-width: 585px) {
  .login_baner_headline,
.registration_baner_footer_headline {
    font-size: 20px; } }
  .login_baner_list,
.registration_baner_footer_list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center; }
    .login_baner_list li,
.registration_baner_footer_list li {
      display: block;
      width: 33.3333%;
      padding: 0 12px;
      list-style: none;
      margin-top: 24px; }

@media (max-width: 1199px) {
  .login_baner_list li,
.registration_baner_footer_list li {
    width: 50%; } }

@media (max-width: 767px) {
  .login_baner_list li,
.registration_baner_footer_list li {
    width: 100%; } }
    .login_baner_list_item,
.registration_baner_footer_list_item {
      display: block;
      width: 100%;
      height: auto; }
      .login_baner_list_item img,
.registration_baner_footer_list_item img {
        display: block;
        width: 100%;
        height: auto; }

.registration_baner {
  display: none !important;
  width: 100%;
  height: auto; }
  .registration_baner img {
    display: block;
    width: 100%;
    height: auto; }

body.login .login_baner {
  display: block !important; }

body.login .one-breadcrumbs {
  display: none !important; }

body.registration .registration_baner,
body.registration .registration_baner_footer {
  display: block !important; }

body.registration .registration_baner_footer_list_item {
  margin: 0 0 24px 0; }

body.registration .one-breadcrumbs {
  display: none !important; }

body.registration .my-3.d-flex.justify-content-end.col {
  justify-content: center !important; }

.one-tab.active, .one-tab:hover {
  border-bottom-color: #d1181c !important; }
  .one-tab.active .one-tab__icon,
.one-tab.active .one-tab__label, .one-tab:hover .one-tab__icon,
.one-tab:hover .one-tab__label {
    color: #d1181c !important; }

.thermoval input[type=checkbox]:checked + label {
  max-height: unset; }

.modnewsletter {
  background-color: #f6f6f6;
  padding: 48px 0 0 0;
  display: block; }
  .modnewsletter h2 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 12px;
    text-transform: uppercase;
    font-weight: bold; }

@media (max-width: 991px) {
  .modnewsletter h2 {
    font-size: 20px; } }
  .modnewsletter p {
    text-align: center; }
  .modnewsletter iframe {
    width: 100%;
    height: 310px; }

@media (max-width: 1199px) {
  .modnewsletter iframe {
    height: 330px; } }

@media (max-width: 991px) {
  .modnewsletter iframe {
    height: 340px; } }

@media (max-width: 767px) {
  .modnewsletter iframe {
    height: 430px; } }

@media (max-width: 767px) {
  .modnewsletter iframe {
    height: 430px; } }

@media (max-width: 585px) {
  .modnewsletter iframe {
    height: 530px; } }

/*
.one-new-mobile-menu-item:nth-child(4) {
  background: $black;
  color: $white;
  font-weight: bold;
  @include animate;
  &:hover {
    background-color: $main-color;
  }
}
*/
.one-product-description__text h3 {
  display: block; }

.one-product-description__text .box {
  display: block; }

.one-product-description__text ul {
  margin-bottom: 12px; }
  .one-product-description__text ul li {
    color: black;
    font-size: 1rem;
    padding-left: 15px !important;
    margin-top: 12px !important;
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap; }
    .one-product-description__text ul li:nth-child(1) {
      margin-top: 15px !important; }
    .one-product-description__text ul li.inner {
      height: auto;
      left: auto;
      position: relative;
      top: auto;
      width: auto;
      font-weight: bold;
      padding-right: 12px; }
      .one-product-description__text ul li.inner .value {
        font-weight: normal; }
    .one-product-description__text ul li::before {
      content: "";
      position: absolute;
      top: 10px;
      left: 0;
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background-color: #d3222a; }

.addone-plugin-container:not(.one-iframe-plugin-container) {
  height: auto !important; }

.addone-plugin-container .one-iframe-plugin-container {
  margin: 0 !important;
  overflow: hidden; }

@media (max-width: 767px) {
  .addone-plugin-container .one-iframe-plugin-container {
    height: 3000px !important; } }

@media (max-width: 575px) {
  .addone-plugin-container .one-iframe-plugin-container {
    height: 4900px !important; } }

.blackweek_countdown {
  display: block;
  position: relative; }
  .blackweek_countdown_grafikadesktop, .blackweek_countdown_grafikamobile {
    display: none;
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1; }

@media (min-width: 992px) {
  .blackweek_countdown_grafikadesktop {
    display: block; } }

@media (max-width: 991px) {
  .blackweek_countdown_grafikamobile {
    display: block; } }
  .blackweek_countdown_napiscontainer {
    height: 110px;
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    display: block; }

@media (max-width: 1399px) {
  .blackweek_countdown_napiscontainer {
    height: 105px; } }

@media (max-width: 1199px) {
  .blackweek_countdown_napiscontainer {
    height: 100px; } }

@media (max-width: 991px) {
  .blackweek_countdown_napiscontainer {
    height: 95px;
    bottom: 15%;
    top: auto; } }

@media (max-width: 767px) {
  .blackweek_countdown_napiscontainer {
    height: 90px;
    bottom: 12%; } }

@media (max-width: 585px) {
  .blackweek_countdown_napiscontainer {
    height: 80px;
    bottom: 12%; } }

@media (max-width: 399px) {
  .blackweek_countdown_napiscontainer {
    bottom: 9%;
    height: 70px; } }
  .blackweek_countdown_napis {
    width: 100%;
    height: 80px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    margin: auto; }

@media (max-width: 1399px) {
  .blackweek_countdown_napis {
    height: 75px; } }

@media (max-width: 1199px) {
  .blackweek_countdown_napis {
    height: 70px; } }

@media (max-width: 991px) {
  .blackweek_countdown_napis {
    height: 65px; } }

@media (max-width: 767px) {
  .blackweek_countdown_napis {
    height: 60px; } }

@media (max-width: 585px) {
  .blackweek_countdown_napis {
    height: 50px; } }

@media (max-width: 399px) {
  .blackweek_countdown_napis {
    height: 40px; } }
    .blackweek_countdown_napis span {
      display: block;
      color: white;
      font-size: 48px;
      line-height: 80px;
      width: 80px;
      height: 80px;
      border-radius: 6px;
      -webkit-border-radius: 6px;
      -moz-border-radius: 6px;
      margin: 0 6px;
      position: relative;
      overflow: hidden;
      text-align: center;
      z-index: 2; }

@media (max-width: 1399px) {
  .blackweek_countdown_napis span {
    font-size: 42px;
    line-height: 80px;
    width: 75px;
    height: 75px; } }

@media (max-width: 1199px) {
  .blackweek_countdown_napis span {
    font-size: 32px;
    line-height: 50px;
    width: 50px;
    height: 50px; } }

@media (max-width: 767px) {
  .blackweek_countdown_napis span {
    font-size: 28px;
    line-height: 60px;
    width: 60px;
    height: 60px; } }

@media (max-width: 585px) {
  .blackweek_countdown_napis span {
    font-size: 24px;
    line-height: 50px;
    width: 50px;
    height: 50px; } }

@media (max-width: 399px) {
  .blackweek_countdown_napis span {
    font-size: 18px;
    line-height: 40px;
    width: 40px;
    height: 40px; } }
      .blackweek_countdown_napis span::before, .blackweek_countdown_napis span::after {
        content: "";
        background-color: black;
        width: 100%;
        height: calc(50% - 1px);
        display: block;
        left: 0;
        position: absolute;
        z-index: -1; }
      .blackweek_countdown_napis span::before {
        top: 0; }
      .blackweek_countdown_napis span::after {
        bottom: 0; }
  .blackweek_countdown_podnapis {
    width: 100%;
    height: 30px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    margin: auto; }
    .blackweek_countdown_podnapis span {
      display: block;
      color: black;
      font-size: 16px;
      line-height: 30px;
      width: 92px;
      height: 30px;
      text-align: center;
      text-transform: uppercase; }

@media (max-width: 1399px) {
  .blackweek_countdown_podnapis span {
    font-size: 15px;
    width: 87px; } }

@media (max-width: 1199px) {
  .blackweek_countdown_podnapis span {
    font-size: 14px;
    width: 64px; } }

@media (max-width: 991px) {
  .blackweek_countdown_podnapis span {
    font-size: 13px;
    width: 77px; } }

@media (max-width: 767px) {
  .blackweek_countdown_podnapis span {
    font-size: 12px;
    width: 72px; } }

@media (max-width: 585px) {
  .blackweek_countdown_podnapis span {
    font-size: 11px;
    width: 62px; } }

@media (max-width: 399px) {
  .blackweek_countdown_podnapis span {
    font-size: 10px;
    height: 52px;
    width: 50px; } }

.text-column .row_brak {
  align-items: center; }

.wyrownaniezdjecia_brak img {
  width: 100%;
  height: auto; }

.wyrownaniezdjecia_wypelnienie img {
  width: 100%;
  height: 100%;
  object-fit: cover; }

.wyrownaniezdjecia_dopasowanie img {
  width: 100%;
  height: 100%;
  object-fit: contain; }

@media (max-width: 767px) {
  body.registration .row.mb-large .col-lg-4 {
    display: none; } }

body.registration .col-lg-4,
body.registration .my-2.col-lg-5 {
  width: 50%; }

@media (max-width: 767px) {
  body.registration .col-lg-4,
body.registration .my-2.col-lg-5 {
    width: 100%; } }

@media (max-width: 1199px) {
  body.registration .border-bottom.col-lg-5 {
    margin-left: 50%;
    width: 50%; } }

@media (max-width: 767px) {
  body.registration .border-bottom.col-lg-5 {
    margin-left: 0;
    width: 100%; } }

body.registration fieldset {
  padding-left: calc(50% + 12px); }

@media (max-width: 767px) {
  body.registration fieldset {
    padding-left: 12px; } }
  body.registration fieldset .row.one-form-container-input {
    width: 100%; }
    body.registration fieldset .row.one-form-container-input .col-md-4 {
      width: 35%; }
    body.registration fieldset .row.one-form-container-input .col-md-5,
body.registration fieldset .row.one-form-container-input .col-md-2 {
      width: 65%; }

body.registration .registration-form {
  position: relative; }
  body.registration .registration-form::before {
    background-image: url("https://static.euroterm24.pl/cms/7a3de8cb77ca4406bbfe31e2cee33e6a-register-2000x2000-1.webp");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top;
    content: '';
    display: block;
    width: 50%;
    left: 0;
    top: -120px;
    position: absolute;
    height: calc(100% + 120px);
    z-index: 1; }

@media (max-width: 767px) {
  body.registration .registration-form::before {
    width: 100%;
    height: 400px;
    position: relative;
    top: 0;
    background-size: contain;
    background-position: center; } }

@media (max-width: 585px) {
  body.registration .registration-form::before {
    height: 350px; } }

@media (max-width: 585px) {
  body.registration .registration-form::before {
    height: 300px; } }
  body.registration .registration-form.company::before {
    background-image: url("https://static.euroterm24.pl/cms/7a3de8cb77ca4406bbfe31e2cee33e6a-register-2000x2000-1.webp"); }

body.registration .row.border-bottom.mb-small {
  border-bottom: none !important; }
  body.registration .row.border-bottom.mb-small h4.header.py-3 {
    margin: 24px 0;
    background-color: #cccccc;
    color: black;
    font-size: calc(1.30625rem + 0.675 vw);
    padding: 24px 0 24px 80px;
    font-weight: normal;
    text-transform: uppercase; }

@media (min-width: 1200px) {
  body.registration .row.border-bottom.mb-small h4.header.py-3 {
    font-size: 1.8125rem; } }

@media (max-width: 991px) {
  body.registration .row.border-bottom.mb-small h4.header.py-3 {
    padding-left: 0; } }

@media (max-width: 767px) {
  body.registration .row.border-bottom.mb-small h4.header.py-3 {
    text-align: center; } }

@media (min-width: 1200px) {
  body.registration .row.border-bottom.mb-small h4.header.py-3 {
    font-size: calc(1.30625rem + 0.675 vw); } }

@media (min-width: 1200px) and (min-width: 1200px) {
  body.registration .row.border-bottom.mb-small h4.header.py-3 {
    font-size: 1.8125rem; } }

.et2022_product_togglebox_kupon {
  padding: 12px;
  background-color: #d1181c;
  color: white;
  border: 0;
  position: relative; }
  .et2022_product_togglebox_kupon::before {
    content: '%';
    position: absolute;
    z-index: 1;
    left: 12px;
    top: 0;
    bottom: 0;
    margin: auto;
    line-height: 100%;
    font-size: 72px;
    font-weight: bold;
    text-align: center;
    color: white;
    width: auto;
    height: 72px;
    opacity: 0.2; }
  .et2022_product_togglebox_kupon p {
    position: relative;
    z-index: 2;
    text-align: center; }
    .et2022_product_togglebox_kupon p strong {
      font-size: 18px;
      font-weight: bold; }

.one-suggests.suggest .row.h-100 {
  flex-direction: row-reverse; }

body .layout .dodatkowe h1,
body .layout .dodatkowe h2,
.thermoval .text h1 {
  color: #d1181c;
  font-weight: bold;
  text-align: left;
  font-size: calc(1.3875rem + 1.65 vw); }

@media (min-width: 1200px) {
  body .layout .dodatkowe h1,
body .layout .dodatkowe h2,
.thermoval .text h1 {
    font-size: 2.625rem; } }

.big-banner {
  margin-top: 0; }

.blackweek_countdown_napiscontainer.blackweek_countdown_napiscontainer_small {
  zoom: 0.6;
  top: auto;
  bottom: 5%; }

@media (max-width: 767px) {
  .blackweek_countdown_napiscontainer.blackweek_countdown_napiscontainer_small {
    zoom: 1; } }

@media (max-width: 399px) {
  .blackweek_countdown_napiscontainer.blackweek_countdown_napiscontainer_small {
    zoom: 0.7; } }

.one-listing-banner .thermoval.targi_baner_zalogowany, .one-listing-banner .thermoval.targi_baner_niezalogowany {
  display: none;
  width: 100%;
  height: auto; }
  .one-listing-banner .thermoval.targi_baner_zalogowany img, .one-listing-banner .thermoval.targi_baner_niezalogowany img {
    display: block;
    width: 100%;
    height: auto; }

.thermoval.targi-2024-technika-grzewcza-produkty-red-pakiet-1 {
  display: none; }

body.targi-2024-technika-grzewcza-produkty-red-pakiet-1 .thermoval.targi-2024-technika-grzewcza-produkty-red-pakiet-1 {
  display: block; }

.thermoval.targi-2024-technika-grzewcza-pompy-ciepla-baxi-pakiet-2 {
  display: none; }

body.targi-2024-technika-grzewcza-pompy-ciepla-baxi-pakiet-2 .thermoval.targi-2024-technika-grzewcza-pompy-ciepla-baxi-pakiet-2 {
  display: block; }

.thermoval.targi-2024-technika-grzewcza-pompy-ciepla-bosch-junkers-pakiet-3 {
  display: none; }

body.targi-2024-technika-grzewcza-pompy-ciepla-bosch-junkers-pakiet-3 .thermoval.targi-2024-technika-grzewcza-pompy-ciepla-bosch-junkers-pakiet-3 {
  display: block; }

.thermoval.targi-2024-technika-grzewcza-kotly-bosch-junkers-pakiet-4 {
  display: none; }

body.targi-2024-technika-grzewcza-kotly-bosch-junkers-pakiet-4 .thermoval.targi-2024-technika-grzewcza-kotly-bosch-junkers-pakiet-4 {
  display: block; }

.thermoval.targi-2024-technika-grzewcza-zbiorniki-galmet-pakiet-5 {
  display: none; }

body.targi-2024-technika-grzewcza-zbiorniki-galmet-pakiet-5 .thermoval.targi-2024-technika-grzewcza-zbiorniki-galmet-pakiet-5 {
  display: block; }

.thermoval.targi-2024-technika-grzewcza-pompy-ciepla-galmet-pakiet-6 {
  display: none; }

body.targi-2024-technika-grzewcza-pompy-ciepla-galmet-pakiet-6 .thermoval.targi-2024-technika-grzewcza-pompy-ciepla-galmet-pakiet-6 {
  display: block; }

.thermoval.targi-2024-technika-grzewcza-produkty-galmet-pakiet-7 {
  display: none; }

body.targi-2024-technika-grzewcza-produkty-galmet-pakiet-7 .thermoval.targi-2024-technika-grzewcza-produkty-galmet-pakiet-7 {
  display: block; }

.thermoval.targi-2024-technika-grzewcza-pompy-ciepla-cwu-immergas-pakiet-8 {
  display: none; }

body.targi-2024-technika-grzewcza-pompy-ciepla-cwu-immergas-pakiet-8 .thermoval.targi-2024-technika-grzewcza-pompy-ciepla-cwu-immergas-pakiet-8 {
  display: block; }

.thermoval.targi-2024-technika-grzewcza-kotly-immergas-pakiet-9 {
  display: none; }

body.targi-2024-technika-grzewcza-kotly-immergas-pakiet-9 .thermoval.targi-2024-technika-grzewcza-kotly-immergas-pakiet-9 {
  display: block; }

.thermoval.targi-2024-technika-grzewcza-pakiety-kotlow-immergas-pakiet-10 {
  display: none; }

body.targi-2024-technika-grzewcza-pakiety-kotlow-immergas-pakiet-10 .thermoval.targi-2024-technika-grzewcza-pakiety-kotlow-immergas-pakiet-10 {
  display: block; }

.thermoval.targi-2024-technika-grzewcza-pompy-ciepla-immergas-pakiet-11 {
  display: none; }

body.targi-2024-technika-grzewcza-pompy-ciepla-immergas-pakiet-11 .thermoval.targi-2024-technika-grzewcza-pompy-ciepla-immergas-pakiet-11 {
  display: block; }

.thermoval.targi-2024-technika-grzewcza-zbiorniki-joule-pakiet-12 {
  display: none; }

body.targi-2024-technika-grzewcza-zbiorniki-joule-pakiet-12 .thermoval.targi-2024-technika-grzewcza-zbiorniki-joule-pakiet-12 {
  display: block; }

.thermoval.targi-2024-technika-grzewcza-grzejniki-kermi-pakiet-13 {
  display: none; }

body.targi-2024-technika-grzewcza-grzejniki-kermi-pakiet-13 .thermoval.targi-2024-technika-grzewcza-grzejniki-kermi-pakiet-13 {
  display: block; }

.thermoval.targi-2024-technika-grzewcza-zbiorniki-kospel-pakiet-14 {
  display: none; }

body.targi-2024-technika-grzewcza-zbiorniki-kospel-pakiet-14 .thermoval.targi-2024-technika-grzewcza-zbiorniki-kospel-pakiet-14 {
  display: block; }

.thermoval.targi-2024-technika-grzewcza-kotly-elektryczne-kospel-pakiet-15 {
  display: none; }

body.targi-2024-technika-grzewcza-kotly-elektryczne-kospel-pakiet-15 .thermoval.targi-2024-technika-grzewcza-kotly-elektryczne-kospel-pakiet-15 {
  display: block; }

.thermoval.targi-2024-technika-grzewcza-produkty-kospel-pakiet-16 {
  display: none; }

body.targi-2024-technika-grzewcza-produkty-kospel-pakiet-16 .thermoval.targi-2024-technika-grzewcza-produkty-kospel-pakiet-16 {
  display: block; }

.thermoval.targi-2024-technika-grzewcza-kotly-saunier-duval-pakiet-17 {
  display: none; }

body.targi-2024-technika-grzewcza-kotly-saunier-duval-pakiet-17 .thermoval.targi-2024-technika-grzewcza-kotly-saunier-duval-pakiet-17 {
  display: block; }

.thermoval.targi-2024-technika-grzewcza-pompy-ciepla-termet-pakiet-18 {
  display: none; }

body.targi-2024-technika-grzewcza-pompy-ciepla-termet-pakiet-18 .thermoval.targi-2024-technika-grzewcza-pompy-ciepla-termet-pakiet-18 {
  display: block; }

.thermoval.targi_baner_zalogowany {
  display: none; }

body.targi_baner_zalogowany .thermoval.targi_baner_zalogowany {
  display: block; }

.thermoval.targi-2024-technika-grzewcza-kotly-termet-pakiet-19-i-20 {
  display: none; }

body.targi-2024-technika-grzewcza-kotly-termet-pakiet-19-i-20 .thermoval.targi-2024-technika-grzewcza-kotly-termet-pakiet-19-i-20 {
  display: block; }

.thermoval.targi-2024-technika-grzewcza-ogrzewacze-thermoval-pakiet-21 {
  display: none; }

body.targi-2024-technika-grzewcza-ogrzewacze-thermoval-pakiet-21 .thermoval.targi-2024-technika-grzewcza-ogrzewacze-thermoval-pakiet-21 {
  display: block; }

.thermoval.targi-2024-technika-grzewcza-pompy-ciepla-thermoval-pakiet-22 {
  display: none; }

body.targi-2024-technika-grzewcza-pompy-ciepla-thermoval-pakiet-22 .thermoval.targi-2024-technika-grzewcza-pompy-ciepla-thermoval-pakiet-22 {
  display: block; }

.thermoval.targi-2024-technika-grzewcza-pompy-ciepla-vaillant-pakiet-23 {
  display: none; }

body.targi-2024-technika-grzewcza-pompy-ciepla-vaillant-pakiet-23 .thermoval.targi-2024-technika-grzewcza-pompy-ciepla-vaillant-pakiet-23 {
  display: block; }

.thermoval.targi-2024-technika-grzewcza-kotly-vaillant-pakiet-24 {
  display: none; }

body.targi-2024-technika-grzewcza-kotly-vaillant-pakiet-24 .thermoval.targi-2024-technika-grzewcza-kotly-vaillant-pakiet-24 {
  display: block; }

.thermoval.targi-2024-technika-grzewcza-produkty-viessmann-pakiet-25 {
  display: none; }

body.targi-2024-technika-grzewcza-produkty-viessmann-pakiet-25 .thermoval.targi-2024-technika-grzewcza-produkty-viessmann-pakiet-25 {
  display: block; }

.thermoval.targi-2024-technika-grzewcza-produkty-viessmann-pakiet-26 {
  display: none; }

body.targi-2024-technika-grzewcza-produkty-viessmann-pakiet-26 .thermoval.targi-2024-technika-grzewcza-produkty-viessmann-pakiet-26 {
  display: block; }

.thermoval.targi-2024-technika-grzewcza-produkty-viessmann-pakiet-27 {
  display: none; }

body.targi-2024-technika-grzewcza-produkty-viessmann-pakiet-27 .thermoval.targi-2024-technika-grzewcza-produkty-viessmann-pakiet-27 {
  display: block; }

.thermoval.targi-2024-technika-grzewcza-nagrzewnice-vts-pakiet-28 {
  display: none; }

body.targi-2024-technika-grzewcza-nagrzewnice-vts-pakiet-28 .thermoval.targi-2024-technika-grzewcza-nagrzewnice-vts-pakiet-28 {
  display: block; }

.thermoval.targi-2024-technika-grzewcza-nagrzewnice-vts-pakiet-29 {
  display: none; }

body.targi-2024-technika-grzewcza-nagrzewnice-vts-pakiet-29 .thermoval.targi-2024-technika-grzewcza-nagrzewnice-vts-pakiet-29 {
  display: block; }

.thermoval.targi-2024-technika-grzewcza-nagrzewnice-vts-pakiet-30 {
  display: none; }

body.targi-2024-technika-grzewcza-nagrzewnice-vts-pakiet-30 .thermoval.targi-2024-technika-grzewcza-nagrzewnice-vts-pakiet-30 {
  display: block; }

.thermoval.targi-2024-technika-grzewcza-pompy-wilo-pakiet-31 {
  display: none; }

body.targi-2024-technika-grzewcza-pompy-wilo-pakiet-31 .thermoval.targi-2024-technika-grzewcza-pompy-wilo-pakiet-31 {
  display: block; }

.thermoval.targi-2024-technika-grzewcza-pompy-wilo-pakiet-32 {
  display: none; }

body.targi-2024-technika-grzewcza-pompy-wilo-pakiet-32 .thermoval.targi-2024-technika-grzewcza-pompy-wilo-pakiet-32 {
  display: block; }

.thermoval.targi-2024-technika-grzewcza-pompy-wilo-pakiet-33 {
  display: none; }

body.targi-2024-technika-grzewcza-pompy-wilo-pakiet-33 .thermoval.targi-2024-technika-grzewcza-pompy-wilo-pakiet-33 {
  display: block; }

.thermoval.targi-2024-technika-grzewcza-kotly-wolf-fgb-pakiet-34-i-35 {
  display: none; }

body.targi-2024-technika-grzewcza-kotly-wolf-fgb-pakiet-34-i-35 .thermoval.targi-2024-technika-grzewcza-kotly-wolf-fgb-pakiet-34-i-35 {
  display: block; }

.thermoval.targi-2024-technika-grzewcza-kotly-wolf-cgb-pakiety-36-i-37 {
  display: none; }

body.targi-2024-technika-grzewcza-kotly-wolf-cgb-pakiety-36-i-37 .thermoval.targi-2024-technika-grzewcza-kotly-wolf-cgb-pakiety-36-i-37 {
  display: block; }

.thermoval.targi-2024-technika-grzewcza-pompy-ciepla-wolf-pakiety-38-i-39 {
  display: none; }

body.targi-2024-technika-grzewcza-pompy-ciepla-wolf-pakiety-38-i-39 .thermoval.targi-2024-technika-grzewcza-pompy-ciepla-wolf-pakiety-38-i-39 {
  display: block; }

.thermoval.targi-2024-armatura-grzewcza-produkty-afriso-pakiet-40-41-42-43 {
  display: none; }

body.targi-2024-armatura-grzewcza-produkty-afriso-pakiet-40-41-42-43 .thermoval.targi-2024-armatura-grzewcza-produkty-afriso-pakiet-40-41-42-43 {
  display: block; }

.thermoval.targi-2024-armatura-grzewcza-produkty-arco-pakiet-44-45 {
  display: none; }

body.targi-2024-armatura-grzewcza-produkty-arco-pakiet-44-45 .thermoval.targi-2024-armatura-grzewcza-produkty-arco-pakiet-44-45 {
  display: block; }

.thermoval.targi-2024-armatura-grzewcza-produkty-caleffi-pakiet-46 {
  display: none; }

body.targi-2024-armatura-grzewcza-produkty-caleffi-pakiet-46 .thermoval.targi-2024-armatura-grzewcza-produkty-caleffi-pakiet-46 {
  display: block; }

.thermoval.targi-2024-armatura-grzewcza-produkty-caleffi-pakiet-47 {
  display: none; }

body.targi-2024-armatura-grzewcza-produkty-caleffi-pakiet-47 .thermoval.targi-2024-armatura-grzewcza-produkty-caleffi-pakiet-47 {
  display: block; }

.thermoval.targi-2024-armatura-grzewcza-produkty-caleffi-pakiety-48-i-49 {
  display: none; }

body.targi-2024-armatura-grzewcza-produkty-caleffi-pakiety-48-i-49 .thermoval.targi-2024-armatura-grzewcza-produkty-caleffi-pakiety-48-i-49 {
  display: block; }

.thermoval.targi-2024-armatura-grzewcza-produkty-engo-pakiet-50-51 {
  display: none; }

body.targi-2024-armatura-grzewcza-produkty-engo-pakiet-50-51 .thermoval.targi-2024-armatura-grzewcza-produkty-engo-pakiet-50-51 {
  display: block; }

.thermoval.targi-2024-armatura-grzewcza-pompy-ferro-red-pakiet-52 {
  display: none; }

body.targi-2024-armatura-grzewcza-pompy-ferro-red-pakiet-52 .thermoval.targi-2024-armatura-grzewcza-pompy-ferro-red-pakiet-52 {
  display: block; }

.thermoval.targi-2024-armatura-grzewcza-produkty-ferro-pakiet-53 {
  display: none; }

body.targi-2024-armatura-grzewcza-produkty-ferro-pakiet-53 .thermoval.targi-2024-armatura-grzewcza-produkty-ferro-pakiet-53 {
  display: block; }

.thermoval.targi-2024-armatura-grzewcza-separatory-flamco-pakiet-54 {
  display: none; }

body.targi-2024-armatura-grzewcza-separatory-flamco-pakiet-54 .thermoval.targi-2024-armatura-grzewcza-separatory-flamco-pakiet-54 {
  display: block; }

.thermoval.targi-2024-armatura-grzewcza-grupy-pompowe-flamco-pakiet-55 {
  display: none; }

body.targi-2024-armatura-grzewcza-grupy-pompowe-flamco-pakiet-55 .thermoval.targi-2024-armatura-grzewcza-grupy-pompowe-flamco-pakiet-55 {
  display: block; }

.thermoval.targi-2024-armatura-grzewcza-grupy-pompowe-flamco-pakiet-56 {
  display: none; }

body.targi-2024-armatura-grzewcza-grupy-pompowe-flamco-pakiet-56 .thermoval.targi-2024-armatura-grzewcza-grupy-pompowe-flamco-pakiet-56 {
  display: block; }

.thermoval.targi-2024-armatura-grzewcza-pompy-grundfos-pakiet-57 {
  display: none; }

body.targi-2024-armatura-grzewcza-pompy-grundfos-pakiet-57 .thermoval.targi-2024-armatura-grzewcza-pompy-grundfos-pakiet-57 {
  display: block; }

.thermoval.targi-2024-armatura-grzewcza-produkty-lfp-pakiety-58-59 {
  display: none; }

body.targi-2024-armatura-grzewcza-produkty-lfp-pakiety-58-59 .thermoval.targi-2024-armatura-grzewcza-produkty-lfp-pakiety-58-59 {
  display: block; }

.thermoval.targi-2024-armatura-grzewcza-produkty-samee-pakiet-60 {
  display: none; }

body.targi-2024-armatura-grzewcza-produkty-samee-pakiet-60 .thermoval.targi-2024-armatura-grzewcza-produkty-samee-pakiet-60 {
  display: block; }

.thermoval.targi-2024-armatura-grzewcza-produkty-schlosser-de-pakiet-61 {
  display: none; }

body.targi-2024-armatura-grzewcza-produkty-schlosser-de-pakiet-61 .thermoval.targi-2024-armatura-grzewcza-produkty-schlosser-de-pakiet-61 {
  display: block; }

.thermoval.targi-2024-armatura-grzewcza-produkty-tech-sterowniki-pakiet-62 {
  display: none; }

body.targi-2024-armatura-grzewcza-produkty-tech-sterowniki-pakiet-62 .thermoval.targi-2024-armatura-grzewcza-produkty-tech-sterowniki-pakiet-62 {
  display: block; }

.thermoval.targi-2024-armatura-grzewcza-produkty-tech-sterowniki-pakiety-63-i-64 {
  display: none; }

body.targi-2024-armatura-grzewcza-produkty-tech-sterowniki-pakiety-63-i-64 .thermoval.targi-2024-armatura-grzewcza-produkty-tech-sterowniki-pakiety-63-i-64 {
  display: block; }

.thermoval.targi-2024-armatura-grzewcza-produkty-vario-term-pakiet-65-66-67-68 {
  display: none; }

body.targi-2024-armatura-grzewcza-produkty-vario-term-pakiet-65-66-67-68 .thermoval.targi-2024-armatura-grzewcza-produkty-vario-term-pakiet-65-66-67-68 {
  display: block; }

.thermoval.targi-2024-sieci-produkty-magnaplast-pakiet-69 {
  display: none; }

body.targi-2024-sieci-produkty-magnaplast-pakiet-69 .thermoval.targi-2024-sieci-produkty-magnaplast-pakiet-69 {
  display: block; }

.thermoval.targi-2024-systemy-instalacyjne-produkty-base-pakiet-70 {
  display: none; }

body.targi-2024-systemy-instalacyjne-produkty-base-pakiet-70 .thermoval.targi-2024-systemy-instalacyjne-produkty-base-pakiet-70 {
  display: block; }

.thermoval.targi-2024-systemy-instalacyjne-produkty-almeva-pakiet-71 {
  display: none; }

body.targi-2024-systemy-instalacyjne-produkty-almeva-pakiet-71 .thermoval.targi-2024-systemy-instalacyjne-produkty-almeva-pakiet-71 {
  display: block; }

.thermoval.targi-2024-systemy-instalacyjne-otuliny-kauczukowe-k-flex-pakiet-72 {
  display: none; }

body.targi-2024-systemy-instalacyjne-otuliny-kauczukowe-k-flex-pakiet-72 .thermoval.targi-2024-systemy-instalacyjne-otuliny-kauczukowe-k-flex-pakiet-72 {
  display: block; }

.thermoval.targi-2024-systemy-instalacyjne-produkty-kan-therm-pakiety-73-74 {
  display: none; }

body.targi-2024-systemy-instalacyjne-produkty-kan-therm-pakiety-73-74 .thermoval.targi-2024-systemy-instalacyjne-produkty-kan-therm-pakiety-73-74 {
  display: block; }

.thermoval.targi_baner_zalogowany {
  display: none; }

body.targi_baner_zalogowany .thermoval.targi_baner_zalogowany {
  display: block; }

.thermoval.targi-2024-technika-sanitarna-produkty-oras-pakiety-101-i-102 {
  display: none; }

body.targi-2024-technika-sanitarna-produkty-oras-pakiety-101-i-102 .thermoval.targi-2024-technika-sanitarna-produkty-oras-pakiety-101-i-102 {
  display: block; }

.thermoval.targi-2024-technika-sanitarna-produkty-wiper-pakiet-103-104-105 {
  display: none; }

body.targi-2024-technika-sanitarna-produkty-wiper-pakiet-103-104-105 .thermoval.targi-2024-technika-sanitarna-produkty-wiper-pakiet-103-104-105 {
  display: block; }

.thermoval.targi-2024-technika-sanitarna-produkty-wiper-pakiet-106-107-108 {
  display: none; }

body.targi-2024-technika-sanitarna-produkty-wiper-pakiet-106-107-108 .thermoval.targi-2024-technika-sanitarna-produkty-wiper-pakiet-106-107-108 {
  display: block; }

.thermoval.targi-2024-systemy-instalacyjne-produkty-niczyk-thale-pakiet-75-76 {
  display: none; }

body.targi-2024-systemy-instalacyjne-produkty-niczyk-thale-pakiet-75-76 .thermoval.targi-2024-systemy-instalacyjne-produkty-niczyk-thale-pakiet-75-76 {
  display: block; }

.thermoval.targi-2024-systemy-instalacyjne-produkty-sanha-pakiet-77-78 {
  display: none; }

body.targi-2024-systemy-instalacyjne-produkty-sanha-pakiet-77-78 .thermoval.targi-2024-systemy-instalacyjne-produkty-sanha-pakiet-77-78 {
  display: block; }

.thermoval.targi-2024-systemy-instalacyjne-produkty-sigma-li-pakiet-79 {
  display: none; }

body.targi-2024-systemy-instalacyjne-produkty-sigma-li-pakiet-79 .thermoval.targi-2024-systemy-instalacyjne-produkty-sigma-li-pakiet-79 {
  display: block; }

.thermoval.targi-2024-systemy-instalacyjne-rekuperacja-spiroflex-pakiet-81 {
  display: none; }

body.targi-2024-systemy-instalacyjne-rekuperacja-spiroflex-pakiet-81 .thermoval.targi-2024-systemy-instalacyjne-rekuperacja-spiroflex-pakiet-81 {
  display: block; }

.thermoval.targi-2024-systemy-instalacyjne-system-rekuperacji-spiroflex-pakiet-82 {
  display: none; }

body.targi-2024-systemy-instalacyjne-system-rekuperacji-spiroflex-pakiet-82 .thermoval.targi-2024-systemy-instalacyjne-system-rekuperacji-spiroflex-pakiet-82 {
  display: block; }

.thermoval.targi-2024-systemy-instalacyjne-klimatyzacja-thermoval-pakiet-83 {
  display: none; }

body.targi-2024-systemy-instalacyjne-klimatyzacja-thermoval-pakiet-83 .thermoval.targi-2024-systemy-instalacyjne-klimatyzacja-thermoval-pakiet-83 {
  display: block; }

.thermoval.targi-2024-systemy-instalacyjne-system-profi-press-viega-pakiet-84 {
  display: none; }

body.targi-2024-systemy-instalacyjne-system-profi-press-viega-pakiet-84 .thermoval.targi-2024-systemy-instalacyjne-system-profi-press-viega-pakiet-84 {
  display: block; }

.thermoval.targi-2024-systemy-instalacyjne-produkty-weba-pakiet-85-86 {
  display: none; }

body.targi-2024-systemy-instalacyjne-produkty-weba-pakiet-85-86 .thermoval.targi-2024-systemy-instalacyjne-produkty-weba-pakiet-85-86 {
  display: block; }

.thermoval.targi-2024-technika-sanitarna-produkty-blue-pakiet-87 {
  display: none; }

body.targi-2024-technika-sanitarna-produkty-blue-pakiet-87 .thermoval.targi-2024-technika-sanitarna-produkty-blue-pakiet-87 {
  display: block; }

.thermoval.targi-2024-technika-sanitarna-produkty-alcadrain-pakiet-88 {
  display: none; }

body.targi-2024-technika-sanitarna-produkty-alcadrain-pakiet-88 .thermoval.targi-2024-technika-sanitarna-produkty-alcadrain-pakiet-88 {
  display: block; }

.thermoval.targi-2024-technika-sanitarna-komory-gospodarcze-deante-pakiet-89 {
  display: none; }

body.targi-2024-technika-sanitarna-komory-gospodarcze-deante-pakiet-89 .thermoval.targi-2024-technika-sanitarna-komory-gospodarcze-deante-pakiet-89 {
  display: block; }

.thermoval.targi-2024-technika-sanitarna-zestawy-podtynkowe-deante-pakiet-90 {
  display: none; }

body.targi-2024-technika-sanitarna-zestawy-podtynkowe-deante-pakiet-90 .thermoval.targi-2024-technika-sanitarna-zestawy-podtynkowe-deante-pakiet-90 {
  display: block; }

.thermoval.targi-2024-technika-sanitarna-produkty-deante-pakiet-91-92 {
  display: none; }

body.targi-2024-technika-sanitarna-produkty-deante-pakiet-91-92 .thermoval.targi-2024-technika-sanitarna-produkty-deante-pakiet-91-92 {
  display: block; }

.thermoval.targi-2024-technika-sanitarna-baterie-ferro-pakiet-93 {
  display: none; }

body.targi-2024-technika-sanitarna-baterie-ferro-pakiet-93 .thermoval.targi-2024-technika-sanitarna-baterie-ferro-pakiet-93 {
  display: block; }

.thermoval.targi-2024-technika-sanitarna-produkty-geberit-pakiet-94 {
  display: none; }

body.targi-2024-technika-sanitarna-produkty-geberit-pakiet-94 .thermoval.targi-2024-technika-sanitarna-produkty-geberit-pakiet-94 {
  display: block; }

.thermoval.targi-2024-technika-sanitarna-produkty-geberit-pakiet-95 {
  display: none; }

body.targi-2024-technika-sanitarna-produkty-geberit-pakiet-95 .thermoval.targi-2024-technika-sanitarna-produkty-geberit-pakiet-95 {
  display: block; }

.thermoval.targi-2024-technika-sanitarna-grzejniki-instal-projekt-pakiet-96 {
  display: none; }

body.targi-2024-technika-sanitarna-grzejniki-instal-projekt-pakiet-96 .thermoval.targi-2024-technika-sanitarna-grzejniki-instal-projekt-pakiet-96 {
  display: block; }

.thermoval.targi-2024-technika-sanitarna-produkty-mcalpine-pakiet-97-98-99-100 {
  display: none; }

body.targi-2024-technika-sanitarna-produkty-mcalpine-pakiet-97-98-99-100 .thermoval.targi-2024-technika-sanitarna-produkty-mcalpine-pakiet-97-98-99-100 {
  display: block; }

.thermoval.targi-2024-systemy-instalacyjne-szafki-sigma-li-pakiet-80 {
  display: none; }

body.targi-2024-systemy-instalacyjne-szafki-sigma-li-pakiet-80 .thermoval.targi-2024-systemy-instalacyjne-szafki-sigma-li-pakiet-80 {
  display: block; }

.thermoval.targi-2024 {
  display: none; }

body.targi-2024 .thermoval.targi-2024 {
  display: block; }

img.euroterm_ue20 {
  height: 40px;
  margin: 0 12px; }

.etim {
  background: linear-gradient(90deg, #cccccc30 66%, white 100%) !important; }
  .etim strong, .etim b {
    font-weight: bolder; }
  .etim h1, .etim h2, .etim h3, .etim h4, .etim h5, .etim h6 {
    margin-bottom: 0.5rem;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: 0.5px;
    word-spacing: 0.1rem;
    -webkit-transition: all 300ms ease-in-o ut;
    -moz-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out; }
  .etim p {
    margin-top: 0;
    margin-bottom: 1rem;
    text-align: justify;
    padding-left: 0.5rem;
    border-left: solid #d1181c;
    -webkit-transition: all 300ms ease-in-o ut;
    -moz-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out; }
    .etim p:hover {
      border-left: solid #3eabe3; }
  .etim h2 {
    font-size: 1rem;
    color: #d1181c;
    text-align: center;
    text-transform: uppercase; }
    .etim h2:hover {
      transform: scale(1.1); }
  .etim h3 {
    font-size: 1.2rem;
    padding: 5px 15px;
    background: #e4e4e4;
    background: linear-gradient(90deg, #e4e4e4 66%, white 100%);
    border-radius: 5px; }
    .etim h3:hover {
      background: #e4e4e4; }
  .etim ul li {
    display: block;
    margin-top: 0.3rem !important; }
  .etim ol {
    margin-bottom: 1rem; }
    .etim ol li {
      margin-top: 0.3rem; }
    .etim ol strong {
      color: #3eabe3; }

.img-scale img {
  transition: 0.2s linear; }
  .img-scale img:hover {
    transform: scale(1.1); }

.bg-red {
  background-color: #d1181c; }

.bg-zysk {
  background-color: black; }
  .bg-zysk span {
    color: yellow !important; }

.btn-blue {
  background: #019dd9 linear-gradient(180deg, #2a9ac7, #019dd9) repeat-x;
  border-color: #3eabe3;
  color: #fff; }
  .btn-blue:hover {
    background: #d3222a linear-gradient(180deg, #c2383f, #d3222a) repeat-x;
    border-color: #d1181c;
    color: #fff; }
  .btn-blue:focus {
    border-color: #d1181c;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15); }
