html {
  font-size: 62.5%;
}

body {
  font-family: var(--font-family);
  font-weight: normal;
  font-style: normal;
  overflow-x: hidden;
  font-size: 1.6rem;
  color: var(--body_font_color, #000000);
  opacity: 0;
}

body.show-page {
  opacity: 1;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0rem;
  padding: 0rem;
  font-weight: normal;
}

h1,
h2,
h3 {
  font-weight: 600;
  margin-bottom: 2rem;
}

h4,
h5,
h6 {
  font-weight: 500;
  margin-bottom: 2rem;
}

ul,
ol {
  margin: 0rem;
  padding: 0rem;
  list-style: none;
}

.d-flex-w {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.d-new {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  flex-wrap: wrap;
}

.d-align {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  flex-wrap: wrap;
}

.d-new-a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  flex-wrap: wrap;
}

a {
  transition: all 0.3s linear;
  text-decoration: none !important;
  outline: none !important;
}

p {
  line-height: 3.2rem;
  margin-top: 3.2rem;
}

ul {
  margin-top: 2rem;
}

ul li {
  font-size: 1.6rem;
  line-height: 3.2rem;
  position: relative;
  padding-left: 2.8rem;
}

ul li::after {
  position: absolute;
  content: "";
  height: 1rem;
  width: 1rem;
  background: #000;
  left: 0rem;
  top: 1rem;
}

ul>li {
  position: relative;
  padding-left: 2.4rem;
  margin-bottom: 0.9rem;
}

ul>li:last-child {
  /* TO JEST ZBĘDNE W MENU GŁÓWNYM 1 POZIOM !*/
  /* margin-bottom: 0; */
}

ul>li:after {
  position: absolute;
  content: "";
  height: 0.6rem;
  width: 0.6rem;
  border: 0.1rem solid #646464;
  border-radius: 50%;
  left: 0;
  top: 0.9rem;
}

ol {
  counter-reset: number;
  margin-top: 2rem;
}

ol li {
  position: relative;
  font-size: 1.6rem;
  line-height: 3.2rem;
  padding-left: 2.7rem;
  counter-increment: number;
  margin-bottom: 0.9rem;
}

ol li:last-child {
  margin-bottom: 0;
}

ol li:after {
  content: none;
}

ol li::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  content: counter(number) ". ";
}

.no-point {
  margin: 0;
}

.no-point li {
  margin: 0;
  padding: 0;
}

.no-point li:after {
  content: none;
}

.fw-semibold,
.fw-semibold * {
  font-weight: 600;
}

.fw-medium,
.fw-medium * {
  font-weight: 500;
}

.fw-normal,
.fw-normal * {
  font-weight: normal;
}

.fw-metropolis{
  font-family: Metropolis !important;
}

.text-black,
.text-black * {
  color: #111111 !important;
}

.text-white,
.text-white * {
  color: #fff !important;
}

.bg-red {
  background: #DF0000;
}

.bg-black {
  background: #000000;
}

.bg-green {
  background: #40A72D;
}

.bg-gray {
  background: #F6F6F6;
}

h1 {
  font-size: 3.2rem;
  line-height: 4.4rem;
}

h2 {
  font-size: 2.1rem;
  line-height: 3rem;
}

h3 {
  font-size: 1.8rem;
  line-height: 2.4rem;
}

h4 {
  font-size: 1.6rem;
  line-height: 2.1rem;
}

h5 {
  font-size: 1.4rem;
  line-height: 2.1rem;
}

.fw-52,
.fw-52 * {
  margin: 0 !important;
  font-size: 5.2rem !important;
  line-height: 5.2rem !important;
}

.fw-46,
.fw-46 * {
  margin: 0 !important;
  font-size: 4.6rem !important;
  line-height: 4.6rem !important;
}

.fw-38,
.fw-38 * {
  margin: 0 !important;
  font-size: 3.8rem !important;
  line-height: 4.4rem !important;
}

.fw-32,
.fw-32 * {
  margin: 0 !important;
  font-size: 3.2rem !important;
  line-height: 4.4rem !important;
}

.fw-24,
.fw-24 * {
  margin: 0 !important;
  font-size: 2.4rem !important;
  line-height: 3.2rem !important;
}

.fw-21,
.fw-21 * {
  margin: 0 !important;
  font-size: 2.1rem !important;
  line-height: 3rem !important;
}

.fw-18,
.fw-18 * {
  margin: 0 !important;
  font-size: 1.8rem !important;
  line-height: 2.1rem !important;
}

.fw-16,
.fw-16 * {
  margin: 0 !important;
  font-size: 1.6rem !important;
  line-height: 2.1rem !important;
}

.fw-14,
.fw-14 * {
  margin: 0 !important;
  font-size: 1.4rem !important;
  line-height: 2.1rem !important;
}

.ls-4,
.ls-4 * {
  letter-spacing: 0.004rem !important;
}

.btn,
.form-control {
  box-shadow: none !important;
  border-radius: var(--border_radius);
}

.stars {
  --percent: calc(var(--rating) / 5 * 100%);
  display: inline-block;
  font-size: 2.3rem;
  line-height: 1.7rem;
  height: 1.7rem;
}

.stars::before {
  content: "★★★★★";
  letter-spacing: 0.1rem;
  line-height: 1.7rem;
  background: linear-gradient(90deg, #FEC423 var(--percent), #E5E5E5 var(--percent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  height: 1.7rem;
  /* display: block; */
}

.owl-nav button {
  position: absolute;
  display: flex !important;
  align-items: center;
  justify-content: center;
  height: 4.9rem;
  width: 4.9rem;
  top: calc(50% - 2.4rem);
  outline: none !important;
  background: #ffffff !important;
  box-shadow: 0rem 1rem 2.4rem #0000001A;
  border-radius: 50%;
  left: -2.4rem;
}

.owl-nav button.owl-next {
  left: auto !important;
  right: -2.4rem;
}

.owl-nav button.disabled {
  display: none !important;
}

.owl-nav button:hover {
  background: #00C2FF !important;
}

.owl-nav button img {
  max-width: 100%;
  max-height: 100%;
}

.owl-nav button:hover img {
  -webkit-filter: invert(100%);
  filter: invert(100%);
}

.m-t-0 {
  margin-top: 0rem !important;
}

.m-b-0 {
  margin-bottom: 0rem !important;
}

.m-l-0 {
  margin-left: 0rem !important;
}

.m-r-0 {
  margin-right: 0rem !important;
}

.p-t-0 {
  padding-top: 0rem !important;
}

.p-b-0 {
  padding-bottom: 0rem !important;
}

.p-l-0 {
  padding-left: 0rem !important;
}

.p-r-0 {
  padding-right: 0rem !important;
}

.m-t-1 {
  margin-top: 0.1rem !important;
}

.m-b-1 {
  margin-bottom: 0.1rem !important;
}

.m-l-1 {
  margin-left: 0.1rem !important;
}

.m-r-1 {
  margin-right: 0.1rem !important;
}

.p-t-1 {
  padding-top: 0.1rem !important;
}

.p-b-1 {
  padding-bottom: 0.1rem !important;
}

.p-l-1 {
  padding-left: 0.1rem !important;
}

.p-r-1 {
  padding-right: 0.1rem !important;
}

.m-t-2 {
  margin-top: 0.2rem !important;
}

.m-b-2 {
  margin-bottom: 0.2rem !important;
}

.m-l-2 {
  margin-left: 0.2rem !important;
}

.m-r-2 {
  margin-right: 0.2rem !important;
}

.p-t-2 {
  padding-top: 0.2rem !important;
}

.p-b-2 {
  padding-bottom: 0.2rem !important;
}

.p-l-2 {
  padding-left: 0.2rem !important;
}

.p-r-2 {
  padding-right: 0.2rem !important;
}

.m-t-3 {
  margin-top: 0.3rem !important;
}

.m-b-3 {
  margin-bottom: 0.3rem !important;
}

.m-l-3 {
  margin-left: 0.3rem !important;
}

.m-r-3 {
  margin-right: 0.3rem !important;
}

.p-t-3 {
  padding-top: 0.3rem !important;
}

.p-b-3 {
  padding-bottom: 0.3rem !important;
}

.p-l-3 {
  padding-left: 0.3rem !important;
}

.p-r-3 {
  padding-right: 0.3rem !important;
}

.m-t-4 {
  margin-top: 0.4rem !important;
}

.m-b-4 {
  margin-bottom: 0.4rem !important;
}

.m-l-4 {
  margin-left: 0.4rem !important;
}

.m-r-4 {
  margin-right: 0.4rem !important;
}

.p-t-4 {
  padding-top: 0.4rem !important;
}

.p-b-4 {
  padding-bottom: 0.4rem !important;
}

.p-l-4 {
  padding-left: 0.4rem !important;
}

.p-r-4 {
  padding-right: 0.4rem !important;
}

.m-t-5 {
  margin-top: 0.5rem !important;
}

.m-b-5 {
  margin-bottom: 0.5rem !important;
}

.m-l-5 {
  margin-left: 0.5rem !important;
}

.m-r-5 {
  margin-right: 0.5rem !important;
}

.p-t-5 {
  padding-top: 0.5rem !important;
}

.p-b-5 {
  padding-bottom: 0.5rem !important;
}

.p-l-5 {
  padding-left: 0.5rem !important;
}

.p-r-5 {
  padding-right: 0.5rem !important;
}

.m-t-6 {
  margin-top: 0.6rem !important;
}

.m-b-6 {
  margin-bottom: 0.6rem !important;
}

.m-l-6 {
  margin-left: 0.6rem !important;
}

.m-r-6 {
  margin-right: 0.6rem !important;
}

.p-t-6 {
  padding-top: 0.6rem !important;
}

.p-b-6 {
  padding-bottom: 0.6rem !important;
}

.p-l-6 {
  padding-left: 0.6rem !important;
}

.p-r-6 {
  padding-right: 0.6rem !important;
}

.m-t-7 {
  margin-top: 0.7rem !important;
}

.m-b-7 {
  margin-bottom: 0.7rem !important;
}

.m-l-7 {
  margin-left: 0.7rem !important;
}

.m-r-7 {
  margin-right: 0.7rem !important;
}

.p-t-7 {
  padding-top: 0.7rem !important;
}

.p-b-7 {
  padding-bottom: 0.7rem !important;
}

.p-l-7 {
  padding-left: 0.7rem !important;
}

.p-r-7 {
  padding-right: 0.7rem !important;
}

.m-t-8 {
  margin-top: 0.8rem !important;
}

.m-b-8 {
  margin-bottom: 0.8rem !important;
}

.m-l-8 {
  margin-left: 0.8rem !important;
}

.m-r-8 {
  margin-right: 0.8rem !important;
}

.p-t-8 {
  padding-top: 0.8rem !important;
}

.p-b-8 {
  padding-bottom: 0.8rem !important;
}

.p-l-8 {
  padding-left: 0.8rem !important;
}

.p-r-8 {
  padding-right: 0.8rem !important;
}

.m-t-9 {
  margin-top: 0.9rem !important;
}

.m-b-9 {
  margin-bottom: 0.9rem !important;
}

.m-l-9 {
  margin-left: 0.9rem !important;
}

.m-r-9 {
  margin-right: 0.9rem !important;
}

.p-t-9 {
  padding-top: 0.9rem !important;
}

.p-b-9 {
  padding-bottom: 0.9rem !important;
}

.p-l-9 {
  padding-left: 0.9rem !important;
}

.p-r-9 {
  padding-right: 0.9rem !important;
}

.m-t-10 {
  margin-top: 1rem !important;
}

.m-b-10 {
  margin-bottom: 1rem !important;
}

.m-l-10 {
  margin-left: 1rem !important;
}

.m-r-10 {
  margin-right: 1rem !important;
}

.p-t-10 {
  padding-top: 1rem !important;
}

.p-b-10 {
  padding-bottom: 1rem !important;
}

.p-l-10 {
  padding-left: 1rem !important;
}

.p-r-10 {
  padding-right: 1rem !important;
}

.m-t-11 {
  margin-top: 1.1rem !important;
}

.m-b-11 {
  margin-bottom: 1.1rem !important;
}

.m-l-11 {
  margin-left: 1.1rem !important;
}

.m-r-11 {
  margin-right: 1.1rem !important;
}

.p-t-11 {
  padding-top: 1.1rem !important;
}

.p-b-11 {
  padding-bottom: 1.1rem !important;
}

.p-l-11 {
  padding-left: 1.1rem !important;
}

.p-r-11 {
  padding-right: 1.1rem !important;
}

.m-t-12 {
  margin-top: 1.2rem !important;
}

.m-b-12 {
  margin-bottom: 1.2rem !important;
}

.m-l-12 {
  margin-left: 1.2rem !important;
}

.m-r-12 {
  margin-right: 1.2rem !important;
}

.p-t-12 {
  padding-top: 1.2rem !important;
}

.p-b-12 {
  padding-bottom: 1.2rem !important;
}

.p-l-12 {
  padding-left: 1.2rem !important;
}

.p-r-12 {
  padding-right: 1.2rem !important;
}

.m-t-13 {
  margin-top: 1.3rem !important;
}

.m-b-13 {
  margin-bottom: 1.3rem !important;
}

.m-l-13 {
  margin-left: 1.3rem !important;
}

.m-r-13 {
  margin-right: 1.3rem !important;
}

.p-t-13 {
  padding-top: 1.3rem !important;
}

.p-b-13 {
  padding-bottom: 1.3rem !important;
}

.p-l-13 {
  padding-left: 1.3rem !important;
}

.p-r-13 {
  padding-right: 1.3rem !important;
}

.m-t-14 {
  margin-top: 1.4rem !important;
}

.m-b-14 {
  margin-bottom: 1.4rem !important;
}

.m-l-14 {
  margin-left: 1.4rem !important;
}

.m-r-14 {
  margin-right: 1.4rem !important;
}

.p-t-14 {
  padding-top: 1.4rem !important;
}

.p-b-14 {
  padding-bottom: 1.4rem !important;
}

.p-l-14 {
  padding-left: 1.4rem !important;
}

.p-r-14 {
  padding-right: 1.4rem !important;
}

.m-t-15 {
  margin-top: 1.5rem !important;
}

.m-b-15 {
  margin-bottom: 1.5rem !important;
}

.m-l-15 {
  margin-left: 1.5rem !important;
}

.m-r-15 {
  margin-right: 1.5rem !important;
}

.p-t-15 {
  padding-top: 1.5rem !important;
}

.p-b-15 {
  padding-bottom: 1.5rem !important;
}

.p-l-15 {
  padding-left: 1.5rem !important;
}

.p-r-15 {
  padding-right: 1.5rem !important;
}

.m-t-16 {
  margin-top: 1.6rem !important;
}

.m-b-16 {
  margin-bottom: 1.6rem !important;
}

.m-l-16 {
  margin-left: 1.6rem !important;
}

.m-r-16 {
  margin-right: 1.6rem !important;
}

.p-t-16 {
  padding-top: 1.6rem !important;
}

.p-b-16 {
  padding-bottom: 1.6rem !important;
}

.p-l-16 {
  padding-left: 1.6rem !important;
}

.p-r-16 {
  padding-right: 1.6rem !important;
}

.m-t-17 {
  margin-top: 1.7rem !important;
}

.m-b-17 {
  margin-bottom: 1.7rem !important;
}

.m-l-17 {
  margin-left: 1.7rem !important;
}

.m-r-17 {
  margin-right: 1.7rem !important;
}

.p-t-17 {
  padding-top: 1.7rem !important;
}

.p-b-17 {
  padding-bottom: 1.7rem !important;
}

.p-l-17 {
  padding-left: 1.7rem !important;
}

.p-r-17 {
  padding-right: 1.7rem !important;
}

.m-t-18 {
  margin-top: 1.8rem !important;
}

.m-b-18 {
  margin-bottom: 1.8rem !important;
}

.m-l-18 {
  margin-left: 1.8rem !important;
}

.m-r-18 {
  margin-right: 1.8rem !important;
}

.p-t-18 {
  padding-top: 1.8rem !important;
}

.p-b-18 {
  padding-bottom: 1.8rem !important;
}

.p-l-18 {
  padding-left: 1.8rem !important;
}

.p-r-18 {
  padding-right: 1.8rem !important;
}

.m-t-19 {
  margin-top: 1.9rem !important;
}

.m-b-19 {
  margin-bottom: 1.9rem !important;
}

.m-l-19 {
  margin-left: 1.9rem !important;
}

.m-r-19 {
  margin-right: 1.9rem !important;
}

.p-t-19 {
  padding-top: 1.9rem !important;
}

.p-b-19 {
  padding-bottom: 1.9rem !important;
}

.p-l-19 {
  padding-left: 1.9rem !important;
}

.p-r-19 {
  padding-right: 1.9rem !important;
}

.m-t-20 {
  margin-top: 2rem !important;
}

.m-b-20 {
  margin-bottom: 2rem !important;
}

.m-l-20 {
  margin-left: 2rem !important;
}

.m-r-20 {
  margin-right: 2rem !important;
}

.p-t-20 {
  padding-top: 2rem !important;
}

.p-b-20 {
  padding-bottom: 2rem !important;
}

.p-l-20 {
  padding-left: 2rem !important;
}

.p-r-20 {
  padding-right: 2rem !important;
}

.m-t-21 {
  margin-top: 2.1rem !important;
}

.m-b-21 {
  margin-bottom: 2.1rem !important;
}

.m-l-21 {
  margin-left: 2.1rem !important;
}

.m-r-21 {
  margin-right: 2.1rem !important;
}

.p-t-21 {
  padding-top: 2.1rem !important;
}

.p-b-21 {
  padding-bottom: 2.1rem !important;
}

.p-l-21 {
  padding-left: 2.1rem !important;
}

.p-r-21 {
  padding-right: 2.1rem !important;
}

.m-t-22 {
  margin-top: 2.2rem !important;
}

.m-b-22 {
  margin-bottom: 2.2rem !important;
}

.m-l-22 {
  margin-left: 2.2rem !important;
}

.m-r-22 {
  margin-right: 2.2rem !important;
}

.p-t-22 {
  padding-top: 2.2rem !important;
}

.p-b-22 {
  padding-bottom: 2.2rem !important;
}

.p-l-22 {
  padding-left: 2.2rem !important;
}

.p-r-22 {
  padding-right: 2.2rem !important;
}

.m-t-23 {
  margin-top: 2.3rem !important;
}

.m-b-23 {
  margin-bottom: 2.3rem !important;
}

.m-l-23 {
  margin-left: 2.3rem !important;
}

.m-r-23 {
  margin-right: 2.3rem !important;
}

.p-t-23 {
  padding-top: 2.3rem !important;
}

.p-b-23 {
  padding-bottom: 2.3rem !important;
}

.p-l-23 {
  padding-left: 2.3rem !important;
}

.p-r-23 {
  padding-right: 2.3rem !important;
}

.m-t-24 {
  margin-top: 2.4rem !important;
}

.m-b-24 {
  margin-bottom: 2.4rem !important;
}

.m-l-24 {
  margin-left: 2.4rem !important;
}

.m-r-24 {
  margin-right: 2.4rem !important;
}

.p-t-24 {
  padding-top: 2.4rem !important;
}

.p-b-24 {
  padding-bottom: 2.4rem !important;
}

.p-l-24 {
  padding-left: 2.4rem !important;
}

.p-r-24 {
  padding-right: 2.4rem !important;
}

.m-t-25 {
  margin-top: 2.5rem !important;
}

.m-b-25 {
  margin-bottom: 2.5rem !important;
}

.m-l-25 {
  margin-left: 2.5rem !important;
}

.m-r-25 {
  margin-right: 2.5rem !important;
}

.p-t-25 {
  padding-top: 2.5rem !important;
}

.p-b-25 {
  padding-bottom: 2.5rem !important;
}

.p-l-25 {
  padding-left: 2.5rem !important;
}

.p-r-25 {
  padding-right: 2.5rem !important;
}

.m-t-26 {
  margin-top: 2.6rem !important;
}

.m-b-26 {
  margin-bottom: 2.6rem !important;
}

.m-l-26 {
  margin-left: 2.6rem !important;
}

.m-r-26 {
  margin-right: 2.6rem !important;
}

.p-t-26 {
  padding-top: 2.6rem !important;
}

.p-b-26 {
  padding-bottom: 2.6rem !important;
}

.p-l-26 {
  padding-left: 2.6rem !important;
}

.p-r-26 {
  padding-right: 2.6rem !important;
}

.m-t-27 {
  margin-top: 2.7rem !important;
}

.m-b-27 {
  margin-bottom: 2.7rem !important;
}

.m-l-27 {
  margin-left: 2.7rem !important;
}

.m-r-27 {
  margin-right: 2.7rem !important;
}

.p-t-27 {
  padding-top: 2.7rem !important;
}

.p-b-27 {
  padding-bottom: 2.7rem !important;
}

.p-l-27 {
  padding-left: 2.7rem !important;
}

.p-r-27 {
  padding-right: 2.7rem !important;
}

.m-t-28 {
  margin-top: 2.8rem !important;
}

.m-b-28 {
  margin-bottom: 2.8rem !important;
}

.m-l-28 {
  margin-left: 2.8rem !important;
}

.m-r-28 {
  margin-right: 2.8rem !important;
}

.p-t-28 {
  padding-top: 2.8rem !important;
}

.p-b-28 {
  padding-bottom: 2.8rem !important;
}

.p-l-28 {
  padding-left: 2.8rem !important;
}

.p-r-28 {
  padding-right: 2.8rem !important;
}

.m-t-29 {
  margin-top: 2.9rem !important;
}

.m-b-29 {
  margin-bottom: 2.9rem !important;
}

.m-l-29 {
  margin-left: 2.9rem !important;
}

.m-r-29 {
  margin-right: 2.9rem !important;
}

.p-t-29 {
  padding-top: 2.9rem !important;
}

.p-b-29 {
  padding-bottom: 2.9rem !important;
}

.p-l-29 {
  padding-left: 2.9rem !important;
}

.p-r-29 {
  padding-right: 2.9rem !important;
}

.m-t-30 {
  margin-top: 3rem !important;
}

.m-b-30 {
  margin-bottom: 3rem !important;
}

.m-l-30 {
  margin-left: 3rem !important;
}

.m-r-30 {
  margin-right: 3rem !important;
}

.p-t-30 {
  padding-top: 3rem !important;
}

.p-b-30 {
  padding-bottom: 3rem !important;
}

.p-l-30 {
  padding-left: 3rem !important;
}

.p-r-30 {
  padding-right: 3rem !important;
}

.m-t-31 {
  margin-top: 3.1rem !important;
}

.m-b-31 {
  margin-bottom: 3.1rem !important;
}

.m-l-31 {
  margin-left: 3.1rem !important;
}

.m-r-31 {
  margin-right: 3.1rem !important;
}

.p-t-31 {
  padding-top: 3.1rem !important;
}

.p-b-31 {
  padding-bottom: 3.1rem !important;
}

.p-l-31 {
  padding-left: 3.1rem !important;
}

.p-r-31 {
  padding-right: 3.1rem !important;
}

.m-t-32 {
  margin-top: 3.2rem !important;
}

.m-b-32 {
  margin-bottom: 3.2rem !important;
}

.m-l-32 {
  margin-left: 3.2rem !important;
}

.m-r-32 {
  margin-right: 3.2rem !important;
}

.p-t-32 {
  padding-top: 3.2rem !important;
}

.p-b-32 {
  padding-bottom: 3.2rem !important;
}

.p-l-32 {
  padding-left: 3.2rem !important;
}

.p-r-32 {
  padding-right: 3.2rem !important;
}

.m-t-33 {
  margin-top: 3.3rem !important;
}

.m-b-33 {
  margin-bottom: 3.3rem !important;
}

.m-l-33 {
  margin-left: 3.3rem !important;
}

.m-r-33 {
  margin-right: 3.3rem !important;
}

.p-t-33 {
  padding-top: 3.3rem !important;
}

.p-b-33 {
  padding-bottom: 3.3rem !important;
}

.p-l-33 {
  padding-left: 3.3rem !important;
}

.p-r-33 {
  padding-right: 3.3rem !important;
}

.m-t-34 {
  margin-top: 3.4rem !important;
}

.m-b-34 {
  margin-bottom: 3.4rem !important;
}

.m-l-34 {
  margin-left: 3.4rem !important;
}

.m-r-34 {
  margin-right: 3.4rem !important;
}

.p-t-34 {
  padding-top: 3.4rem !important;
}

.p-b-34 {
  padding-bottom: 3.4rem !important;
}

.p-l-34 {
  padding-left: 3.4rem !important;
}

.p-r-34 {
  padding-right: 3.4rem !important;
}

.m-t-35 {
  margin-top: 3.5rem !important;
}

.m-b-35 {
  margin-bottom: 3.5rem !important;
}

.m-l-35 {
  margin-left: 3.5rem !important;
}

.m-r-35 {
  margin-right: 3.5rem !important;
}

.p-t-35 {
  padding-top: 3.5rem !important;
}

.p-b-35 {
  padding-bottom: 3.5rem !important;
}

.p-l-35 {
  padding-left: 3.5rem !important;
}

.p-r-35 {
  padding-right: 3.5rem !important;
}

.m-t-36 {
  margin-top: 3.6rem !important;
}

.m-b-36 {
  margin-bottom: 3.6rem !important;
}

.m-l-36 {
  margin-left: 3.6rem !important;
}

.m-r-36 {
  margin-right: 3.6rem !important;
}

.p-t-36 {
  padding-top: 3.6rem !important;
}

.p-b-36 {
  padding-bottom: 3.6rem !important;
}

.p-l-36 {
  padding-left: 3.6rem !important;
}

.p-r-36 {
  padding-right: 3.6rem !important;
}

.m-t-37 {
  margin-top: 3.7rem !important;
}

.m-b-37 {
  margin-bottom: 3.7rem !important;
}

.m-l-37 {
  margin-left: 3.7rem !important;
}

.m-r-37 {
  margin-right: 3.7rem !important;
}

.p-t-37 {
  padding-top: 3.7rem !important;
}

.p-b-37 {
  padding-bottom: 3.7rem !important;
}

.p-l-37 {
  padding-left: 3.7rem !important;
}

.p-r-37 {
  padding-right: 3.7rem !important;
}

.m-t-38 {
  margin-top: 3.8rem !important;
}

.m-b-38 {
  margin-bottom: 3.8rem !important;
}

.m-l-38 {
  margin-left: 3.8rem !important;
}

.m-r-38 {
  margin-right: 3.8rem !important;
}

.p-t-38 {
  padding-top: 3.8rem !important;
}

.p-b-38 {
  padding-bottom: 3.8rem !important;
}

.p-l-38 {
  padding-left: 3.8rem !important;
}

.p-r-38 {
  padding-right: 3.8rem !important;
}

.m-t-39 {
  margin-top: 3.9rem !important;
}

.m-b-39 {
  margin-bottom: 3.9rem !important;
}

.m-l-39 {
  margin-left: 3.9rem !important;
}

.m-r-39 {
  margin-right: 3.9rem !important;
}

.p-t-39 {
  padding-top: 3.9rem !important;
}

.p-b-39 {
  padding-bottom: 3.9rem !important;
}

.p-l-39 {
  padding-left: 3.9rem !important;
}

.p-r-39 {
  padding-right: 3.9rem !important;
}

.m-t-40 {
  margin-top: 4rem !important;
}

.m-b-40 {
  margin-bottom: 4rem !important;
}

.m-l-40 {
  margin-left: 4rem !important;
}

.m-r-40 {
  margin-right: 4rem !important;
}

.p-t-40 {
  padding-top: 4rem !important;
}

.p-b-40 {
  padding-bottom: 4rem !important;
}

.p-l-40 {
  padding-left: 4rem !important;
}

.p-r-40 {
  padding-right: 4rem !important;
}

.m-t-41 {
  margin-top: 4.1rem !important;
}

.m-b-41 {
  margin-bottom: 4.1rem !important;
}

.m-l-41 {
  margin-left: 4.1rem !important;
}

.m-r-41 {
  margin-right: 4.1rem !important;
}

.p-t-41 {
  padding-top: 4.1rem !important;
}

.p-b-41 {
  padding-bottom: 4.1rem !important;
}

.p-l-41 {
  padding-left: 4.1rem !important;
}

.p-r-41 {
  padding-right: 4.1rem !important;
}

.m-t-42 {
  margin-top: 4.2rem !important;
}

.m-b-42 {
  margin-bottom: 4.2rem !important;
}

.m-l-42 {
  margin-left: 4.2rem !important;
}

.m-r-42 {
  margin-right: 4.2rem !important;
}

.p-t-42 {
  padding-top: 4.2rem !important;
}

.p-b-42 {
  padding-bottom: 4.2rem !important;
}

.p-l-42 {
  padding-left: 4.2rem !important;
}

.p-r-42 {
  padding-right: 4.2rem !important;
}

.m-t-43 {
  margin-top: 4.3rem !important;
}

.m-b-43 {
  margin-bottom: 4.3rem !important;
}

.m-l-43 {
  margin-left: 4.3rem !important;
}

.m-r-43 {
  margin-right: 4.3rem !important;
}

.p-t-43 {
  padding-top: 4.3rem !important;
}

.p-b-43 {
  padding-bottom: 4.3rem !important;
}

.p-l-43 {
  padding-left: 4.3rem !important;
}

.p-r-43 {
  padding-right: 4.3rem !important;
}

.m-t-44 {
  margin-top: 4.4rem !important;
}

.m-b-44 {
  margin-bottom: 4.4rem !important;
}

.m-l-44 {
  margin-left: 4.4rem !important;
}

.m-r-44 {
  margin-right: 4.4rem !important;
}

.p-t-44 {
  padding-top: 4.4rem !important;
}

.p-b-44 {
  padding-bottom: 4.4rem !important;
}

.p-l-44 {
  padding-left: 4.4rem !important;
}

.p-r-44 {
  padding-right: 4.4rem !important;
}

.m-t-45 {
  margin-top: 4.5rem !important;
}

.m-b-45 {
  margin-bottom: 4.5rem !important;
}

.m-l-45 {
  margin-left: 4.5rem !important;
}

.m-r-45 {
  margin-right: 4.5rem !important;
}

.p-t-45 {
  padding-top: 4.5rem !important;
}

.p-b-45 {
  padding-bottom: 4.5rem !important;
}

.p-l-45 {
  padding-left: 4.5rem !important;
}

.p-r-45 {
  padding-right: 4.5rem !important;
}

.m-t-46 {
  margin-top: 4.6rem !important;
}

.m-b-46 {
  margin-bottom: 4.6rem !important;
}

.m-l-46 {
  margin-left: 4.6rem !important;
}

.m-r-46 {
  margin-right: 4.6rem !important;
}

.p-t-46 {
  padding-top: 4.6rem !important;
}

.p-b-46 {
  padding-bottom: 4.6rem !important;
}

.p-l-46 {
  padding-left: 4.6rem !important;
}

.p-r-46 {
  padding-right: 4.6rem !important;
}

.m-t-47 {
  margin-top: 4.7rem !important;
}

.m-b-47 {
  margin-bottom: 4.7rem !important;
}

.m-l-47 {
  margin-left: 4.7rem !important;
}

.m-r-47 {
  margin-right: 4.7rem !important;
}

.p-t-47 {
  padding-top: 4.7rem !important;
}

.p-b-47 {
  padding-bottom: 4.7rem !important;
}

.p-l-47 {
  padding-left: 4.7rem !important;
}

.p-r-47 {
  padding-right: 4.7rem !important;
}

.m-t-48 {
  margin-top: 4.8rem !important;
}

.m-b-48 {
  margin-bottom: 4.8rem !important;
}

.m-l-48 {
  margin-left: 4.8rem !important;
}

.m-r-48 {
  margin-right: 4.8rem !important;
}

.p-t-48 {
  padding-top: 4.8rem !important;
}

.p-b-48 {
  padding-bottom: 4.8rem !important;
}

.p-l-48 {
  padding-left: 4.8rem !important;
}

.p-r-48 {
  padding-right: 4.8rem !important;
}

.m-t-49 {
  margin-top: 4.9rem !important;
}

.m-b-49 {
  margin-bottom: 4.9rem !important;
}

.m-l-49 {
  margin-left: 4.9rem !important;
}

.m-r-49 {
  margin-right: 4.9rem !important;
}

.p-t-49 {
  padding-top: 4.9rem !important;
}

.p-b-49 {
  padding-bottom: 4.9rem !important;
}

.p-l-49 {
  padding-left: 4.9rem !important;
}

.p-r-49 {
  padding-right: 4.9rem !important;
}

.m-t-50 {
  margin-top: 5rem !important;
}

.m-b-50 {
  margin-bottom: 5rem !important;
}

.m-l-50 {
  margin-left: 5rem !important;
}

.m-r-50 {
  margin-right: 5rem !important;
}

.p-t-50 {
  padding-top: 5rem !important;
}

.p-b-50 {
  padding-bottom: 5rem !important;
}

.p-l-50 {
  padding-left: 5rem !important;
}

.p-r-50 {
  padding-right: 5rem !important;
}

.m-t-51 {
  margin-top: 5.1rem !important;
}

.m-b-51 {
  margin-bottom: 5.1rem !important;
}

.m-l-51 {
  margin-left: 5.1rem !important;
}

.m-r-51 {
  margin-right: 5.1rem !important;
}

.p-t-51 {
  padding-top: 5.1rem !important;
}

.p-b-51 {
  padding-bottom: 5.1rem !important;
}

.p-l-51 {
  padding-left: 5.1rem !important;
}

.p-r-51 {
  padding-right: 5.1rem !important;
}

.m-t-52 {
  margin-top: 5.2rem !important;
}

.m-b-52 {
  margin-bottom: 5.2rem !important;
}

.m-l-52 {
  margin-left: 5.2rem !important;
}

.m-r-52 {
  margin-right: 5.2rem !important;
}

.p-t-52 {
  padding-top: 5.2rem !important;
}

.p-b-52 {
  padding-bottom: 5.2rem !important;
}

.p-l-52 {
  padding-left: 5.2rem !important;
}

.p-r-52 {
  padding-right: 5.2rem !important;
}

.m-t-53 {
  margin-top: 5.3rem !important;
}

.m-b-53 {
  margin-bottom: 5.3rem !important;
}

.m-l-53 {
  margin-left: 5.3rem !important;
}

.m-r-53 {
  margin-right: 5.3rem !important;
}

.p-t-53 {
  padding-top: 5.3rem !important;
}

.p-b-53 {
  padding-bottom: 5.3rem !important;
}

.p-l-53 {
  padding-left: 5.3rem !important;
}

.p-r-53 {
  padding-right: 5.3rem !important;
}

.m-t-54 {
  margin-top: 5.4rem !important;
}

.m-b-54 {
  margin-bottom: 5.4rem !important;
}

.m-l-54 {
  margin-left: 5.4rem !important;
}

.m-r-54 {
  margin-right: 5.4rem !important;
}

.p-t-54 {
  padding-top: 5.4rem !important;
}

.p-b-54 {
  padding-bottom: 5.4rem !important;
}

.p-l-54 {
  padding-left: 5.4rem !important;
}

.p-r-54 {
  padding-right: 5.4rem !important;
}

.m-t-55 {
  margin-top: 5.5rem !important;
}

.m-b-55 {
  margin-bottom: 5.5rem !important;
}

.m-l-55 {
  margin-left: 5.5rem !important;
}

.m-r-55 {
  margin-right: 5.5rem !important;
}

.p-t-55 {
  padding-top: 5.5rem !important;
}

.p-b-55 {
  padding-bottom: 5.5rem !important;
}

.p-l-55 {
  padding-left: 5.5rem !important;
}

.p-r-55 {
  padding-right: 5.5rem !important;
}

.m-t-56 {
  margin-top: 5.6rem !important;
}

.m-b-56 {
  margin-bottom: 5.6rem !important;
}

.m-l-56 {
  margin-left: 5.6rem !important;
}

.m-r-56 {
  margin-right: 5.6rem !important;
}

.p-t-56 {
  padding-top: 5.6rem !important;
}

.p-b-56 {
  padding-bottom: 5.6rem !important;
}

.p-l-56 {
  padding-left: 5.6rem !important;
}

.p-r-56 {
  padding-right: 5.6rem !important;
}

.m-t-57 {
  margin-top: 5.7rem !important;
}

.m-b-57 {
  margin-bottom: 5.7rem !important;
}

.m-l-57 {
  margin-left: 5.7rem !important;
}

.m-r-57 {
  margin-right: 5.7rem !important;
}

.p-t-57 {
  padding-top: 5.7rem !important;
}

.p-b-57 {
  padding-bottom: 5.7rem !important;
}

.p-l-57 {
  padding-left: 5.7rem !important;
}

.p-r-57 {
  padding-right: 5.7rem !important;
}

.m-t-58 {
  margin-top: 5.8rem !important;
}

.m-b-58 {
  margin-bottom: 5.8rem !important;
}

.m-l-58 {
  margin-left: 5.8rem !important;
}

.m-r-58 {
  margin-right: 5.8rem !important;
}

.p-t-58 {
  padding-top: 5.8rem !important;
}

.p-b-58 {
  padding-bottom: 5.8rem !important;
}

.p-l-58 {
  padding-left: 5.8rem !important;
}

.p-r-58 {
  padding-right: 5.8rem !important;
}

.m-t-59 {
  margin-top: 5.9rem !important;
}

.m-b-59 {
  margin-bottom: 5.9rem !important;
}

.m-l-59 {
  margin-left: 5.9rem !important;
}

.m-r-59 {
  margin-right: 5.9rem !important;
}

.p-t-59 {
  padding-top: 5.9rem !important;
}

.p-b-59 {
  padding-bottom: 5.9rem !important;
}

.p-l-59 {
  padding-left: 5.9rem !important;
}

.p-r-59 {
  padding-right: 5.9rem !important;
}

.m-t-60 {
  margin-top: 6rem !important;
}

.m-b-60 {
  margin-bottom: 6rem !important;
}

.m-l-60 {
  margin-left: 6rem !important;
}

.m-r-60 {
  margin-right: 6rem !important;
}

.p-t-60 {
  padding-top: 6rem !important;
}

.p-b-60 {
  padding-bottom: 6rem !important;
}

.p-l-60 {
  padding-left: 6rem !important;
}

.p-r-60 {
  padding-right: 6rem !important;
}

.m-t-61 {
  margin-top: 6.1rem !important;
}

.m-b-61 {
  margin-bottom: 6.1rem !important;
}

.m-l-61 {
  margin-left: 6.1rem !important;
}

.m-r-61 {
  margin-right: 6.1rem !important;
}

.p-t-61 {
  padding-top: 6.1rem !important;
}

.p-b-61 {
  padding-bottom: 6.1rem !important;
}

.p-l-61 {
  padding-left: 6.1rem !important;
}

.p-r-61 {
  padding-right: 6.1rem !important;
}

.m-t-62 {
  margin-top: 6.2rem !important;
}

.m-b-62 {
  margin-bottom: 6.2rem !important;
}

.m-l-62 {
  margin-left: 6.2rem !important;
}

.m-r-62 {
  margin-right: 6.2rem !important;
}

.p-t-62 {
  padding-top: 6.2rem !important;
}

.p-b-62 {
  padding-bottom: 6.2rem !important;
}

.p-l-62 {
  padding-left: 6.2rem !important;
}

.p-r-62 {
  padding-right: 6.2rem !important;
}

.m-t-63 {
  margin-top: 6.3rem !important;
}

.m-b-63 {
  margin-bottom: 6.3rem !important;
}

.m-l-63 {
  margin-left: 6.3rem !important;
}

.m-r-63 {
  margin-right: 6.3rem !important;
}

.p-t-63 {
  padding-top: 6.3rem !important;
}

.p-b-63 {
  padding-bottom: 6.3rem !important;
}

.p-l-63 {
  padding-left: 6.3rem !important;
}

.p-r-63 {
  padding-right: 6.3rem !important;
}

.m-t-64 {
  margin-top: 6.4rem !important;
}

.m-b-64 {
  margin-bottom: 6.4rem !important;
}

.m-l-64 {
  margin-left: 6.4rem !important;
}

.m-r-64 {
  margin-right: 6.4rem !important;
}

.p-t-64 {
  padding-top: 6.4rem !important;
}

.p-b-64 {
  padding-bottom: 6.4rem !important;
}

.p-l-64 {
  padding-left: 6.4rem !important;
}

.p-r-64 {
  padding-right: 6.4rem !important;
}

.m-t-65 {
  margin-top: 6.5rem !important;
}

.m-b-65 {
  margin-bottom: 6.5rem !important;
}

.m-l-65 {
  margin-left: 6.5rem !important;
}

.m-r-65 {
  margin-right: 6.5rem !important;
}

.p-t-65 {
  padding-top: 6.5rem !important;
}

.p-b-65 {
  padding-bottom: 6.5rem !important;
}

.p-l-65 {
  padding-left: 6.5rem !important;
}

.p-r-65 {
  padding-right: 6.5rem !important;
}

.m-t-66 {
  margin-top: 6.6rem !important;
}

.m-b-66 {
  margin-bottom: 6.6rem !important;
}

.m-l-66 {
  margin-left: 6.6rem !important;
}

.m-r-66 {
  margin-right: 6.6rem !important;
}

.p-t-66 {
  padding-top: 6.6rem !important;
}

.p-b-66 {
  padding-bottom: 6.6rem !important;
}

.p-l-66 {
  padding-left: 6.6rem !important;
}

.p-r-66 {
  padding-right: 6.6rem !important;
}

.m-t-67 {
  margin-top: 6.7rem !important;
}

.m-b-67 {
  margin-bottom: 6.7rem !important;
}

.m-l-67 {
  margin-left: 6.7rem !important;
}

.m-r-67 {
  margin-right: 6.7rem !important;
}

.p-t-67 {
  padding-top: 6.7rem !important;
}

.p-b-67 {
  padding-bottom: 6.7rem !important;
}

.p-l-67 {
  padding-left: 6.7rem !important;
}

.p-r-67 {
  padding-right: 6.7rem !important;
}

.m-t-68 {
  margin-top: 6.8rem !important;
}

.m-b-68 {
  margin-bottom: 6.8rem !important;
}

.m-l-68 {
  margin-left: 6.8rem !important;
}

.m-r-68 {
  margin-right: 6.8rem !important;
}

.p-t-68 {
  padding-top: 6.8rem !important;
}

.p-b-68 {
  padding-bottom: 6.8rem !important;
}

.p-l-68 {
  padding-left: 6.8rem !important;
}

.p-r-68 {
  padding-right: 6.8rem !important;
}

.m-t-69 {
  margin-top: 6.9rem !important;
}

.m-b-69 {
  margin-bottom: 6.9rem !important;
}

.m-l-69 {
  margin-left: 6.9rem !important;
}

.m-r-69 {
  margin-right: 6.9rem !important;
}

.p-t-69 {
  padding-top: 6.9rem !important;
}

.p-b-69 {
  padding-bottom: 6.9rem !important;
}

.p-l-69 {
  padding-left: 6.9rem !important;
}

.p-r-69 {
  padding-right: 6.9rem !important;
}

.m-t-70 {
  margin-top: 7rem !important;
}

.m-b-70 {
  margin-bottom: 7rem !important;
}

.m-l-70 {
  margin-left: 7rem !important;
}

.m-r-70 {
  margin-right: 7rem !important;
}

.p-t-70 {
  padding-top: 7rem !important;
}

.p-b-70 {
  padding-bottom: 7rem !important;
}

.p-l-70 {
  padding-left: 7rem !important;
}

.p-r-70 {
  padding-right: 7rem !important;
}

.m-t-71 {
  margin-top: 7.1rem !important;
}

.m-b-71 {
  margin-bottom: 7.1rem !important;
}

.m-l-71 {
  margin-left: 7.1rem !important;
}

.m-r-71 {
  margin-right: 7.1rem !important;
}

.p-t-71 {
  padding-top: 7.1rem !important;
}

.p-b-71 {
  padding-bottom: 7.1rem !important;
}

.p-l-71 {
  padding-left: 7.1rem !important;
}

.p-r-71 {
  padding-right: 7.1rem !important;
}

.m-t-72 {
  margin-top: 7.2rem !important;
}

.m-b-72 {
  margin-bottom: 7.2rem !important;
}

.m-l-72 {
  margin-left: 7.2rem !important;
}

.m-r-72 {
  margin-right: 7.2rem !important;
}

.p-t-72 {
  padding-top: 7.2rem !important;
}

.p-b-72 {
  padding-bottom: 7.2rem !important;
}

.p-l-72 {
  padding-left: 7.2rem !important;
}

.p-r-72 {
  padding-right: 7.2rem !important;
}

.m-t-73 {
  margin-top: 7.3rem !important;
}

.m-b-73 {
  margin-bottom: 7.3rem !important;
}

.m-l-73 {
  margin-left: 7.3rem !important;
}

.m-r-73 {
  margin-right: 7.3rem !important;
}

.p-t-73 {
  padding-top: 7.3rem !important;
}

.p-b-73 {
  padding-bottom: 7.3rem !important;
}

.p-l-73 {
  padding-left: 7.3rem !important;
}

.p-r-73 {
  padding-right: 7.3rem !important;
}

.m-t-74 {
  margin-top: 7.4rem !important;
}

.m-b-74 {
  margin-bottom: 7.4rem !important;
}

.m-l-74 {
  margin-left: 7.4rem !important;
}

.m-r-74 {
  margin-right: 7.4rem !important;
}

.p-t-74 {
  padding-top: 7.4rem !important;
}

.p-b-74 {
  padding-bottom: 7.4rem !important;
}

.p-l-74 {
  padding-left: 7.4rem !important;
}

.p-r-74 {
  padding-right: 7.4rem !important;
}

.m-t-75 {
  margin-top: 7.5rem !important;
}

.m-b-75 {
  margin-bottom: 7.5rem !important;
}

.m-l-75 {
  margin-left: 7.5rem !important;
}

.m-r-75 {
  margin-right: 7.5rem !important;
}

.p-t-75 {
  padding-top: 7.5rem !important;
}

.p-b-75 {
  padding-bottom: 7.5rem !important;
}

.p-l-75 {
  padding-left: 7.5rem !important;
}

.p-r-75 {
  padding-right: 7.5rem !important;
}

.m-t-76 {
  margin-top: 7.6rem !important;
}

.m-b-76 {
  margin-bottom: 7.6rem !important;
}

.m-l-76 {
  margin-left: 7.6rem !important;
}

.m-r-76 {
  margin-right: 7.6rem !important;
}

.p-t-76 {
  padding-top: 7.6rem !important;
}

.p-b-76 {
  padding-bottom: 7.6rem !important;
}

.p-l-76 {
  padding-left: 7.6rem !important;
}

.p-r-76 {
  padding-right: 7.6rem !important;
}

.m-t-77 {
  margin-top: 7.7rem !important;
}

.m-b-77 {
  margin-bottom: 7.7rem !important;
}

.m-l-77 {
  margin-left: 7.7rem !important;
}

.m-r-77 {
  margin-right: 7.7rem !important;
}

.p-t-77 {
  padding-top: 7.7rem !important;
}

.p-b-77 {
  padding-bottom: 7.7rem !important;
}

.p-l-77 {
  padding-left: 7.7rem !important;
}

.p-r-77 {
  padding-right: 7.7rem !important;
}

.m-t-78 {
  margin-top: 7.8rem !important;
}

.m-b-78 {
  margin-bottom: 7.8rem !important;
}

.m-l-78 {
  margin-left: 7.8rem !important;
}

.m-r-78 {
  margin-right: 7.8rem !important;
}

.p-t-78 {
  padding-top: 7.8rem !important;
}

.p-b-78 {
  padding-bottom: 7.8rem !important;
}

.p-l-78 {
  padding-left: 7.8rem !important;
}

.p-r-78 {
  padding-right: 7.8rem !important;
}

.m-t-79 {
  margin-top: 7.9rem !important;
}

.m-b-79 {
  margin-bottom: 7.9rem !important;
}

.m-l-79 {
  margin-left: 7.9rem !important;
}

.m-r-79 {
  margin-right: 7.9rem !important;
}

.p-t-79 {
  padding-top: 7.9rem !important;
}

.p-b-79 {
  padding-bottom: 7.9rem !important;
}

.p-l-79 {
  padding-left: 7.9rem !important;
}

.p-r-79 {
  padding-right: 7.9rem !important;
}

.m-t-80 {
  margin-top: 8rem !important;
}

.m-b-80 {
  margin-bottom: 8rem !important;
}

.m-l-80 {
  margin-left: 8rem !important;
}

.m-r-80 {
  margin-right: 8rem !important;
}

.p-t-80 {
  padding-top: 8rem !important;
}

.p-b-80 {
  padding-bottom: 8rem !important;
}

.p-l-80 {
  padding-left: 8rem !important;
}

.p-r-80 {
  padding-right: 8rem !important;
}

.m-t-81 {
  margin-top: 8.1rem !important;
}

.m-b-81 {
  margin-bottom: 8.1rem !important;
}

.m-l-81 {
  margin-left: 8.1rem !important;
}

.m-r-81 {
  margin-right: 8.1rem !important;
}

.p-t-81 {
  padding-top: 8.1rem !important;
}

.p-b-81 {
  padding-bottom: 8.1rem !important;
}

.p-l-81 {
  padding-left: 8.1rem !important;
}

.p-r-81 {
  padding-right: 8.1rem !important;
}

.m-t-82 {
  margin-top: 8.2rem !important;
}

.m-b-82 {
  margin-bottom: 8.2rem !important;
}

.m-l-82 {
  margin-left: 8.2rem !important;
}

.m-r-82 {
  margin-right: 8.2rem !important;
}

.p-t-82 {
  padding-top: 8.2rem !important;
}

.p-b-82 {
  padding-bottom: 8.2rem !important;
}

.p-l-82 {
  padding-left: 8.2rem !important;
}

.p-r-82 {
  padding-right: 8.2rem !important;
}

.m-t-83 {
  margin-top: 8.3rem !important;
}

.m-b-83 {
  margin-bottom: 8.3rem !important;
}

.m-l-83 {
  margin-left: 8.3rem !important;
}

.m-r-83 {
  margin-right: 8.3rem !important;
}

.p-t-83 {
  padding-top: 8.3rem !important;
}

.p-b-83 {
  padding-bottom: 8.3rem !important;
}

.p-l-83 {
  padding-left: 8.3rem !important;
}

.p-r-83 {
  padding-right: 8.3rem !important;
}

.m-t-84 {
  margin-top: 8.4rem !important;
}

.m-b-84 {
  margin-bottom: 8.4rem !important;
}

.m-l-84 {
  margin-left: 8.4rem !important;
}

.m-r-84 {
  margin-right: 8.4rem !important;
}

.p-t-84 {
  padding-top: 8.4rem !important;
}

.p-b-84 {
  padding-bottom: 8.4rem !important;
}

.p-l-84 {
  padding-left: 8.4rem !important;
}

.p-r-84 {
  padding-right: 8.4rem !important;
}

.m-t-85 {
  margin-top: 8.5rem !important;
}

.m-b-85 {
  margin-bottom: 8.5rem !important;
}

.m-l-85 {
  margin-left: 8.5rem !important;
}

.m-r-85 {
  margin-right: 8.5rem !important;
}

.p-t-85 {
  padding-top: 8.5rem !important;
}

.p-b-85 {
  padding-bottom: 8.5rem !important;
}

.p-l-85 {
  padding-left: 8.5rem !important;
}

.p-r-85 {
  padding-right: 8.5rem !important;
}

.m-t-86 {
  margin-top: 8.6rem !important;
}

.m-b-86 {
  margin-bottom: 8.6rem !important;
}

.m-l-86 {
  margin-left: 8.6rem !important;
}

.m-r-86 {
  margin-right: 8.6rem !important;
}

.p-t-86 {
  padding-top: 8.6rem !important;
}

.p-b-86 {
  padding-bottom: 8.6rem !important;
}

.p-l-86 {
  padding-left: 8.6rem !important;
}

.p-r-86 {
  padding-right: 8.6rem !important;
}

.m-t-87 {
  margin-top: 8.7rem !important;
}

.m-b-87 {
  margin-bottom: 8.7rem !important;
}

.m-l-87 {
  margin-left: 8.7rem !important;
}

.m-r-87 {
  margin-right: 8.7rem !important;
}

.p-t-87 {
  padding-top: 8.7rem !important;
}

.p-b-87 {
  padding-bottom: 8.7rem !important;
}

.p-l-87 {
  padding-left: 8.7rem !important;
}

.p-r-87 {
  padding-right: 8.7rem !important;
}

.m-t-88 {
  margin-top: 8.8rem !important;
}

.m-b-88 {
  margin-bottom: 8.8rem !important;
}

.m-l-88 {
  margin-left: 8.8rem !important;
}

.m-r-88 {
  margin-right: 8.8rem !important;
}

.p-t-88 {
  padding-top: 8.8rem !important;
}

.p-b-88 {
  padding-bottom: 8.8rem !important;
}

.p-l-88 {
  padding-left: 8.8rem !important;
}

.p-r-88 {
  padding-right: 8.8rem !important;
}

.m-t-89 {
  margin-top: 8.9rem !important;
}

.m-b-89 {
  margin-bottom: 8.9rem !important;
}

.m-l-89 {
  margin-left: 8.9rem !important;
}

.m-r-89 {
  margin-right: 8.9rem !important;
}

.p-t-89 {
  padding-top: 8.9rem !important;
}

.p-b-89 {
  padding-bottom: 8.9rem !important;
}

.p-l-89 {
  padding-left: 8.9rem !important;
}

.p-r-89 {
  padding-right: 8.9rem !important;
}

.m-t-90 {
  margin-top: 9rem !important;
}

.m-b-90 {
  margin-bottom: 9rem !important;
}

.m-l-90 {
  margin-left: 9rem !important;
}

.m-r-90 {
  margin-right: 9rem !important;
}

.p-t-90 {
  padding-top: 9rem !important;
}

.p-b-90 {
  padding-bottom: 9rem !important;
}

.p-l-90 {
  padding-left: 9rem !important;
}

.p-r-90 {
  padding-right: 9rem !important;
}

.m-t-91 {
  margin-top: 9.1rem !important;
}

.m-b-91 {
  margin-bottom: 9.1rem !important;
}

.m-l-91 {
  margin-left: 9.1rem !important;
}

.m-r-91 {
  margin-right: 9.1rem !important;
}

.p-t-91 {
  padding-top: 9.1rem !important;
}

.p-b-91 {
  padding-bottom: 9.1rem !important;
}

.p-l-91 {
  padding-left: 9.1rem !important;
}

.p-r-91 {
  padding-right: 9.1rem !important;
}

.m-t-92 {
  margin-top: 9.2rem !important;
}

.m-b-92 {
  margin-bottom: 9.2rem !important;
}

.m-l-92 {
  margin-left: 9.2rem !important;
}

.m-r-92 {
  margin-right: 9.2rem !important;
}

.p-t-92 {
  padding-top: 9.2rem !important;
}

.p-b-92 {
  padding-bottom: 9.2rem !important;
}

.p-l-92 {
  padding-left: 9.2rem !important;
}

.p-r-92 {
  padding-right: 9.2rem !important;
}

.m-t-93 {
  margin-top: 9.3rem !important;
}

.m-b-93 {
  margin-bottom: 9.3rem !important;
}

.m-l-93 {
  margin-left: 9.3rem !important;
}

.m-r-93 {
  margin-right: 9.3rem !important;
}

.p-t-93 {
  padding-top: 9.3rem !important;
}

.p-b-93 {
  padding-bottom: 9.3rem !important;
}

.p-l-93 {
  padding-left: 9.3rem !important;
}

.p-r-93 {
  padding-right: 9.3rem !important;
}

.m-t-94 {
  margin-top: 9.4rem !important;
}

.m-b-94 {
  margin-bottom: 9.4rem !important;
}

.m-l-94 {
  margin-left: 9.4rem !important;
}

.m-r-94 {
  margin-right: 9.4rem !important;
}

.p-t-94 {
  padding-top: 9.4rem !important;
}

.p-b-94 {
  padding-bottom: 9.4rem !important;
}

.p-l-94 {
  padding-left: 9.4rem !important;
}

.p-r-94 {
  padding-right: 9.4rem !important;
}

.m-t-95 {
  margin-top: 9.5rem !important;
}

.m-b-95 {
  margin-bottom: 9.5rem !important;
}

.m-l-95 {
  margin-left: 9.5rem !important;
}

.m-r-95 {
  margin-right: 9.5rem !important;
}

.p-t-95 {
  padding-top: 9.5rem !important;
}

.p-b-95 {
  padding-bottom: 9.5rem !important;
}

.p-l-95 {
  padding-left: 9.5rem !important;
}

.p-r-95 {
  padding-right: 9.5rem !important;
}

.m-t-96 {
  margin-top: 9.6rem !important;
}

.m-b-96 {
  margin-bottom: 9.6rem !important;
}

.m-l-96 {
  margin-left: 9.6rem !important;
}

.m-r-96 {
  margin-right: 9.6rem !important;
}

.p-t-96 {
  padding-top: 9.6rem !important;
}

.p-b-96 {
  padding-bottom: 9.6rem !important;
}

.p-l-96 {
  padding-left: 9.6rem !important;
}

.p-r-96 {
  padding-right: 9.6rem !important;
}

.m-t-97 {
  margin-top: 9.7rem !important;
}

.m-b-97 {
  margin-bottom: 9.7rem !important;
}

.m-l-97 {
  margin-left: 9.7rem !important;
}

.m-r-97 {
  margin-right: 9.7rem !important;
}

.p-t-97 {
  padding-top: 9.7rem !important;
}

.p-b-97 {
  padding-bottom: 9.7rem !important;
}

.p-l-97 {
  padding-left: 9.7rem !important;
}

.p-r-97 {
  padding-right: 9.7rem !important;
}

.m-t-98 {
  margin-top: 9.8rem !important;
}

.m-b-98 {
  margin-bottom: 9.8rem !important;
}

.m-l-98 {
  margin-left: 9.8rem !important;
}

.m-r-98 {
  margin-right: 9.8rem !important;
}

.p-t-98 {
  padding-top: 9.8rem !important;
}

.p-b-98 {
  padding-bottom: 9.8rem !important;
}

.p-l-98 {
  padding-left: 9.8rem !important;
}

.p-r-98 {
  padding-right: 9.8rem !important;
}

.m-t-99 {
  margin-top: 9.9rem !important;
}

.m-b-99 {
  margin-bottom: 9.9rem !important;
}

.m-l-99 {
  margin-left: 9.9rem !important;
}

.m-r-99 {
  margin-right: 9.9rem !important;
}

.p-t-99 {
  padding-top: 9.9rem !important;
}

.p-b-99 {
  padding-bottom: 9.9rem !important;
}

.p-l-99 {
  padding-left: 9.9rem !important;
}

.p-r-99 {
  padding-right: 9.9rem !important;
}

.m-t-100 {
  margin-top: 10rem !important;
}

.m-b-100 {
  margin-bottom: 10rem !important;
}

.m-l-100 {
  margin-left: 10rem !important;
}

.m-r-100 {
  margin-right: 10rem !important;
}

.p-t-100 {
  padding-top: 10rem !important;
}

.p-b-100 {
  padding-bottom: 10rem !important;
}

.p-l-100 {
  padding-left: 10rem !important;
}

.p-r-100 {
  padding-right: 10rem !important;
}

.m-t-101 {
  margin-top: 10.1rem !important;
}

.m-b-101 {
  margin-bottom: 10.1rem !important;
}

.m-l-101 {
  margin-left: 10.1rem !important;
}

.m-r-101 {
  margin-right: 10.1rem !important;
}

.p-t-101 {
  padding-top: 10.1rem !important;
}

.p-b-101 {
  padding-bottom: 10.1rem !important;
}

.p-l-101 {
  padding-left: 10.1rem !important;
}

.p-r-101 {
  padding-right: 10.1rem !important;
}

.m-t-102 {
  margin-top: 10.2rem !important;
}

.m-b-102 {
  margin-bottom: 10.2rem !important;
}

.m-l-102 {
  margin-left: 10.2rem !important;
}

.m-r-102 {
  margin-right: 10.2rem !important;
}

.p-t-102 {
  padding-top: 10.2rem !important;
}

.p-b-102 {
  padding-bottom: 10.2rem !important;
}

.p-l-102 {
  padding-left: 10.2rem !important;
}

.p-r-102 {
  padding-right: 10.2rem !important;
}

.m-t-103 {
  margin-top: 10.3rem !important;
}

.m-b-103 {
  margin-bottom: 10.3rem !important;
}

.m-l-103 {
  margin-left: 10.3rem !important;
}

.m-r-103 {
  margin-right: 10.3rem !important;
}

.p-t-103 {
  padding-top: 10.3rem !important;
}

.p-b-103 {
  padding-bottom: 10.3rem !important;
}

.p-l-103 {
  padding-left: 10.3rem !important;
}

.p-r-103 {
  padding-right: 10.3rem !important;
}

.m-t-104 {
  margin-top: 10.4rem !important;
}

.m-b-104 {
  margin-bottom: 10.4rem !important;
}

.m-l-104 {
  margin-left: 10.4rem !important;
}

.m-r-104 {
  margin-right: 10.4rem !important;
}

.p-t-104 {
  padding-top: 10.4rem !important;
}

.p-b-104 {
  padding-bottom: 10.4rem !important;
}

.p-l-104 {
  padding-left: 10.4rem !important;
}

.p-r-104 {
  padding-right: 10.4rem !important;
}

.m-t-105 {
  margin-top: 10.5rem !important;
}

.m-b-105 {
  margin-bottom: 10.5rem !important;
}

.m-l-105 {
  margin-left: 10.5rem !important;
}

.m-r-105 {
  margin-right: 10.5rem !important;
}

.p-t-105 {
  padding-top: 10.5rem !important;
}

.p-b-105 {
  padding-bottom: 10.5rem !important;
}

.p-l-105 {
  padding-left: 10.5rem !important;
}

.p-r-105 {
  padding-right: 10.5rem !important;
}

.m-t-106 {
  margin-top: 10.6rem !important;
}

.m-b-106 {
  margin-bottom: 10.6rem !important;
}

.m-l-106 {
  margin-left: 10.6rem !important;
}

.m-r-106 {
  margin-right: 10.6rem !important;
}

.p-t-106 {
  padding-top: 10.6rem !important;
}

.p-b-106 {
  padding-bottom: 10.6rem !important;
}

.p-l-106 {
  padding-left: 10.6rem !important;
}

.p-r-106 {
  padding-right: 10.6rem !important;
}

.m-t-107 {
  margin-top: 10.7rem !important;
}

.m-b-107 {
  margin-bottom: 10.7rem !important;
}

.m-l-107 {
  margin-left: 10.7rem !important;
}

.m-r-107 {
  margin-right: 10.7rem !important;
}

.p-t-107 {
  padding-top: 10.7rem !important;
}

.p-b-107 {
  padding-bottom: 10.7rem !important;
}

.p-l-107 {
  padding-left: 10.7rem !important;
}

.p-r-107 {
  padding-right: 10.7rem !important;
}

.m-t-108 {
  margin-top: 10.8rem !important;
}

.m-b-108 {
  margin-bottom: 10.8rem !important;
}

.m-l-108 {
  margin-left: 10.8rem !important;
}

.m-r-108 {
  margin-right: 10.8rem !important;
}

.p-t-108 {
  padding-top: 10.8rem !important;
}

.p-b-108 {
  padding-bottom: 10.8rem !important;
}

.p-l-108 {
  padding-left: 10.8rem !important;
}

.p-r-108 {
  padding-right: 10.8rem !important;
}

.m-t-109 {
  margin-top: 10.9rem !important;
}

.m-b-109 {
  margin-bottom: 10.9rem !important;
}

.m-l-109 {
  margin-left: 10.9rem !important;
}

.m-r-109 {
  margin-right: 10.9rem !important;
}

.p-t-109 {
  padding-top: 10.9rem !important;
}

.p-b-109 {
  padding-bottom: 10.9rem !important;
}

.p-l-109 {
  padding-left: 10.9rem !important;
}

.p-r-109 {
  padding-right: 10.9rem !important;
}

.m-t-110 {
  margin-top: 11rem !important;
}

.m-b-110 {
  margin-bottom: 11rem !important;
}

.m-l-110 {
  margin-left: 11rem !important;
}

.m-r-110 {
  margin-right: 11rem !important;
}

.p-t-110 {
  padding-top: 11rem !important;
}

.p-b-110 {
  padding-bottom: 11rem !important;
}

.p-l-110 {
  padding-left: 11rem !important;
}

.p-r-110 {
  padding-right: 11rem !important;
}

.m-t-111 {
  margin-top: 11.1rem !important;
}

.m-b-111 {
  margin-bottom: 11.1rem !important;
}

.m-l-111 {
  margin-left: 11.1rem !important;
}

.m-r-111 {
  margin-right: 11.1rem !important;
}

.p-t-111 {
  padding-top: 11.1rem !important;
}

.p-b-111 {
  padding-bottom: 11.1rem !important;
}

.p-l-111 {
  padding-left: 11.1rem !important;
}

.p-r-111 {
  padding-right: 11.1rem !important;
}

.m-t-112 {
  margin-top: 11.2rem !important;
}

.m-b-112 {
  margin-bottom: 11.2rem !important;
}

.m-l-112 {
  margin-left: 11.2rem !important;
}

.m-r-112 {
  margin-right: 11.2rem !important;
}

.p-t-112 {
  padding-top: 11.2rem !important;
}

.p-b-112 {
  padding-bottom: 11.2rem !important;
}

.p-l-112 {
  padding-left: 11.2rem !important;
}

.p-r-112 {
  padding-right: 11.2rem !important;
}

.m-t-113 {
  margin-top: 11.3rem !important;
}

.m-b-113 {
  margin-bottom: 11.3rem !important;
}

.m-l-113 {
  margin-left: 11.3rem !important;
}

.m-r-113 {
  margin-right: 11.3rem !important;
}

.p-t-113 {
  padding-top: 11.3rem !important;
}

.p-b-113 {
  padding-bottom: 11.3rem !important;
}

.p-l-113 {
  padding-left: 11.3rem !important;
}

.p-r-113 {
  padding-right: 11.3rem !important;
}

.m-t-114 {
  margin-top: 11.4rem !important;
}

.m-b-114 {
  margin-bottom: 11.4rem !important;
}

.m-l-114 {
  margin-left: 11.4rem !important;
}

.m-r-114 {
  margin-right: 11.4rem !important;
}

.p-t-114 {
  padding-top: 11.4rem !important;
}

.p-b-114 {
  padding-bottom: 11.4rem !important;
}

.p-l-114 {
  padding-left: 11.4rem !important;
}

.p-r-114 {
  padding-right: 11.4rem !important;
}

.m-t-115 {
  margin-top: 11.5rem !important;
}

.m-b-115 {
  margin-bottom: 11.5rem !important;
}

.m-l-115 {
  margin-left: 11.5rem !important;
}

.m-r-115 {
  margin-right: 11.5rem !important;
}

.p-t-115 {
  padding-top: 11.5rem !important;
}

.p-b-115 {
  padding-bottom: 11.5rem !important;
}

.p-l-115 {
  padding-left: 11.5rem !important;
}

.p-r-115 {
  padding-right: 11.5rem !important;
}

.m-t-116 {
  margin-top: 11.6rem !important;
}

.m-b-116 {
  margin-bottom: 11.6rem !important;
}

.m-l-116 {
  margin-left: 11.6rem !important;
}

.m-r-116 {
  margin-right: 11.6rem !important;
}

.p-t-116 {
  padding-top: 11.6rem !important;
}

.p-b-116 {
  padding-bottom: 11.6rem !important;
}

.p-l-116 {
  padding-left: 11.6rem !important;
}

.p-r-116 {
  padding-right: 11.6rem !important;
}

.m-t-117 {
  margin-top: 11.7rem !important;
}

.m-b-117 {
  margin-bottom: 11.7rem !important;
}

.m-l-117 {
  margin-left: 11.7rem !important;
}

.m-r-117 {
  margin-right: 11.7rem !important;
}

.p-t-117 {
  padding-top: 11.7rem !important;
}

.p-b-117 {
  padding-bottom: 11.7rem !important;
}

.p-l-117 {
  padding-left: 11.7rem !important;
}

.p-r-117 {
  padding-right: 11.7rem !important;
}

.m-t-118 {
  margin-top: 11.8rem !important;
}

.m-b-118 {
  margin-bottom: 11.8rem !important;
}

.m-l-118 {
  margin-left: 11.8rem !important;
}

.m-r-118 {
  margin-right: 11.8rem !important;
}

.p-t-118 {
  padding-top: 11.8rem !important;
}

.p-b-118 {
  padding-bottom: 11.8rem !important;
}

.p-l-118 {
  padding-left: 11.8rem !important;
}

.p-r-118 {
  padding-right: 11.8rem !important;
}

.m-t-119 {
  margin-top: 11.9rem !important;
}

.m-b-119 {
  margin-bottom: 11.9rem !important;
}

.m-l-119 {
  margin-left: 11.9rem !important;
}

.m-r-119 {
  margin-right: 11.9rem !important;
}

.p-t-119 {
  padding-top: 11.9rem !important;
}

.p-b-119 {
  padding-bottom: 11.9rem !important;
}

.p-l-119 {
  padding-left: 11.9rem !important;
}

.p-r-119 {
  padding-right: 11.9rem !important;
}

.m-t-120 {
  margin-top: 12rem !important;
}

.m-b-120 {
  margin-bottom: 12rem !important;
}

.m-l-120 {
  margin-left: 12rem !important;
}

.m-r-120 {
  margin-right: 12rem !important;
}

.p-t-120 {
  padding-top: 12rem !important;
}

.p-b-120 {
  padding-bottom: 12rem !important;
}

.p-l-120 {
  padding-left: 12rem !important;
}

.p-r-120 {
  padding-right: 12rem !important;
}

.m-t-121 {
  margin-top: 12.1rem !important;
}

.m-b-121 {
  margin-bottom: 12.1rem !important;
}

.m-l-121 {
  margin-left: 12.1rem !important;
}

.m-r-121 {
  margin-right: 12.1rem !important;
}

.p-t-121 {
  padding-top: 12.1rem !important;
}

.p-b-121 {
  padding-bottom: 12.1rem !important;
}

.p-l-121 {
  padding-left: 12.1rem !important;
}

.p-r-121 {
  padding-right: 12.1rem !important;
}

.m-t-122 {
  margin-top: 12.2rem !important;
}

.m-b-122 {
  margin-bottom: 12.2rem !important;
}

.m-l-122 {
  margin-left: 12.2rem !important;
}

.m-r-122 {
  margin-right: 12.2rem !important;
}

.p-t-122 {
  padding-top: 12.2rem !important;
}

.p-b-122 {
  padding-bottom: 12.2rem !important;
}

.p-l-122 {
  padding-left: 12.2rem !important;
}

.p-r-122 {
  padding-right: 12.2rem !important;
}

.m-t-123 {
  margin-top: 12.3rem !important;
}

.m-b-123 {
  margin-bottom: 12.3rem !important;
}

.m-l-123 {
  margin-left: 12.3rem !important;
}

.m-r-123 {
  margin-right: 12.3rem !important;
}

.p-t-123 {
  padding-top: 12.3rem !important;
}

.p-b-123 {
  padding-bottom: 12.3rem !important;
}

.p-l-123 {
  padding-left: 12.3rem !important;
}

.p-r-123 {
  padding-right: 12.3rem !important;
}

.m-t-124 {
  margin-top: 12.4rem !important;
}

.m-b-124 {
  margin-bottom: 12.4rem !important;
}

.m-l-124 {
  margin-left: 12.4rem !important;
}

.m-r-124 {
  margin-right: 12.4rem !important;
}

.p-t-124 {
  padding-top: 12.4rem !important;
}

.p-b-124 {
  padding-bottom: 12.4rem !important;
}

.p-l-124 {
  padding-left: 12.4rem !important;
}

.p-r-124 {
  padding-right: 12.4rem !important;
}

.m-t-125 {
  margin-top: 12.5rem !important;
}

.m-b-125 {
  margin-bottom: 12.5rem !important;
}

.m-l-125 {
  margin-left: 12.5rem !important;
}

.m-r-125 {
  margin-right: 12.5rem !important;
}

.p-t-125 {
  padding-top: 12.5rem !important;
}

.p-b-125 {
  padding-bottom: 12.5rem !important;
}

.p-l-125 {
  padding-left: 12.5rem !important;
}

.p-r-125 {
  padding-right: 12.5rem !important;
}

.m-t-126 {
  margin-top: 12.6rem !important;
}

.m-b-126 {
  margin-bottom: 12.6rem !important;
}

.m-l-126 {
  margin-left: 12.6rem !important;
}

.m-r-126 {
  margin-right: 12.6rem !important;
}

.p-t-126 {
  padding-top: 12.6rem !important;
}

.p-b-126 {
  padding-bottom: 12.6rem !important;
}

.p-l-126 {
  padding-left: 12.6rem !important;
}

.p-r-126 {
  padding-right: 12.6rem !important;
}

.m-t-127 {
  margin-top: 12.7rem !important;
}

.m-b-127 {
  margin-bottom: 12.7rem !important;
}

.m-l-127 {
  margin-left: 12.7rem !important;
}

.m-r-127 {
  margin-right: 12.7rem !important;
}

.p-t-127 {
  padding-top: 12.7rem !important;
}

.p-b-127 {
  padding-bottom: 12.7rem !important;
}

.p-l-127 {
  padding-left: 12.7rem !important;
}

.p-r-127 {
  padding-right: 12.7rem !important;
}

.m-t-128 {
  margin-top: 12.8rem !important;
}

.m-b-128 {
  margin-bottom: 12.8rem !important;
}

.m-l-128 {
  margin-left: 12.8rem !important;
}

.m-r-128 {
  margin-right: 12.8rem !important;
}

.p-t-128 {
  padding-top: 12.8rem !important;
}

.p-b-128 {
  padding-bottom: 12.8rem !important;
}

.p-l-128 {
  padding-left: 12.8rem !important;
}

.p-r-128 {
  padding-right: 12.8rem !important;
}

.m-t-129 {
  margin-top: 12.9rem !important;
}

.m-b-129 {
  margin-bottom: 12.9rem !important;
}

.m-l-129 {
  margin-left: 12.9rem !important;
}

.m-r-129 {
  margin-right: 12.9rem !important;
}

.p-t-129 {
  padding-top: 12.9rem !important;
}

.p-b-129 {
  padding-bottom: 12.9rem !important;
}

.p-l-129 {
  padding-left: 12.9rem !important;
}

.p-r-129 {
  padding-right: 12.9rem !important;
}

.m-t-130 {
  margin-top: 13rem !important;
}

.m-b-130 {
  margin-bottom: 13rem !important;
}

.m-l-130 {
  margin-left: 13rem !important;
}

.m-r-130 {
  margin-right: 13rem !important;
}

.p-t-130 {
  padding-top: 13rem !important;
}

.p-b-130 {
  padding-bottom: 13rem !important;
}

.p-l-130 {
  padding-left: 13rem !important;
}

.p-r-130 {
  padding-right: 13rem !important;
}

.m-t-131 {
  margin-top: 13.1rem !important;
}

.m-b-131 {
  margin-bottom: 13.1rem !important;
}

.m-l-131 {
  margin-left: 13.1rem !important;
}

.m-r-131 {
  margin-right: 13.1rem !important;
}

.p-t-131 {
  padding-top: 13.1rem !important;
}

.p-b-131 {
  padding-bottom: 13.1rem !important;
}

.p-l-131 {
  padding-left: 13.1rem !important;
}

.p-r-131 {
  padding-right: 13.1rem !important;
}

.m-t-132 {
  margin-top: 13.2rem !important;
}

.m-b-132 {
  margin-bottom: 13.2rem !important;
}

.m-l-132 {
  margin-left: 13.2rem !important;
}

.m-r-132 {
  margin-right: 13.2rem !important;
}

.p-t-132 {
  padding-top: 13.2rem !important;
}

.p-b-132 {
  padding-bottom: 13.2rem !important;
}

.p-l-132 {
  padding-left: 13.2rem !important;
}

.p-r-132 {
  padding-right: 13.2rem !important;
}

.m-t-133 {
  margin-top: 13.3rem !important;
}

.m-b-133 {
  margin-bottom: 13.3rem !important;
}

.m-l-133 {
  margin-left: 13.3rem !important;
}

.m-r-133 {
  margin-right: 13.3rem !important;
}

.p-t-133 {
  padding-top: 13.3rem !important;
}

.p-b-133 {
  padding-bottom: 13.3rem !important;
}

.p-l-133 {
  padding-left: 13.3rem !important;
}

.p-r-133 {
  padding-right: 13.3rem !important;
}

.m-t-134 {
  margin-top: 13.4rem !important;
}

.m-b-134 {
  margin-bottom: 13.4rem !important;
}

.m-l-134 {
  margin-left: 13.4rem !important;
}

.m-r-134 {
  margin-right: 13.4rem !important;
}

.p-t-134 {
  padding-top: 13.4rem !important;
}

.p-b-134 {
  padding-bottom: 13.4rem !important;
}

.p-l-134 {
  padding-left: 13.4rem !important;
}

.p-r-134 {
  padding-right: 13.4rem !important;
}

.m-t-135 {
  margin-top: 13.5rem !important;
}

.m-b-135 {
  margin-bottom: 13.5rem !important;
}

.m-l-135 {
  margin-left: 13.5rem !important;
}

.m-r-135 {
  margin-right: 13.5rem !important;
}

.p-t-135 {
  padding-top: 13.5rem !important;
}

.p-b-135 {
  padding-bottom: 13.5rem !important;
}

.p-l-135 {
  padding-left: 13.5rem !important;
}

.p-r-135 {
  padding-right: 13.5rem !important;
}

.m-t-136 {
  margin-top: 13.6rem !important;
}

.m-b-136 {
  margin-bottom: 13.6rem !important;
}

.m-l-136 {
  margin-left: 13.6rem !important;
}

.m-r-136 {
  margin-right: 13.6rem !important;
}

.p-t-136 {
  padding-top: 13.6rem !important;
}

.p-b-136 {
  padding-bottom: 13.6rem !important;
}

.p-l-136 {
  padding-left: 13.6rem !important;
}

.p-r-136 {
  padding-right: 13.6rem !important;
}

.m-t-137 {
  margin-top: 13.7rem !important;
}

.m-b-137 {
  margin-bottom: 13.7rem !important;
}

.m-l-137 {
  margin-left: 13.7rem !important;
}

.m-r-137 {
  margin-right: 13.7rem !important;
}

.p-t-137 {
  padding-top: 13.7rem !important;
}

.p-b-137 {
  padding-bottom: 13.7rem !important;
}

.p-l-137 {
  padding-left: 13.7rem !important;
}

.p-r-137 {
  padding-right: 13.7rem !important;
}

.m-t-138 {
  margin-top: 13.8rem !important;
}

.m-b-138 {
  margin-bottom: 13.8rem !important;
}

.m-l-138 {
  margin-left: 13.8rem !important;
}

.m-r-138 {
  margin-right: 13.8rem !important;
}

.p-t-138 {
  padding-top: 13.8rem !important;
}

.p-b-138 {
  padding-bottom: 13.8rem !important;
}

.p-l-138 {
  padding-left: 13.8rem !important;
}

.p-r-138 {
  padding-right: 13.8rem !important;
}

.m-t-139 {
  margin-top: 13.9rem !important;
}

.m-b-139 {
  margin-bottom: 13.9rem !important;
}

.m-l-139 {
  margin-left: 13.9rem !important;
}

.m-r-139 {
  margin-right: 13.9rem !important;
}

.p-t-139 {
  padding-top: 13.9rem !important;
}

.p-b-139 {
  padding-bottom: 13.9rem !important;
}

.p-l-139 {
  padding-left: 13.9rem !important;
}

.p-r-139 {
  padding-right: 13.9rem !important;
}

.m-t-140 {
  margin-top: 14rem !important;
}

.m-b-140 {
  margin-bottom: 14rem !important;
}

.m-l-140 {
  margin-left: 14rem !important;
}

.m-r-140 {
  margin-right: 14rem !important;
}

.p-t-140 {
  padding-top: 14rem !important;
}

.p-b-140 {
  padding-bottom: 14rem !important;
}

.p-l-140 {
  padding-left: 14rem !important;
}

.p-r-140 {
  padding-right: 14rem !important;
}

.m-t-141 {
  margin-top: 14.1rem !important;
}

.m-b-141 {
  margin-bottom: 14.1rem !important;
}

.m-l-141 {
  margin-left: 14.1rem !important;
}

.m-r-141 {
  margin-right: 14.1rem !important;
}

.p-t-141 {
  padding-top: 14.1rem !important;
}

.p-b-141 {
  padding-bottom: 14.1rem !important;
}

.p-l-141 {
  padding-left: 14.1rem !important;
}

.p-r-141 {
  padding-right: 14.1rem !important;
}

.m-t-142 {
  margin-top: 14.2rem !important;
}

.m-b-142 {
  margin-bottom: 14.2rem !important;
}

.m-l-142 {
  margin-left: 14.2rem !important;
}

.m-r-142 {
  margin-right: 14.2rem !important;
}

.p-t-142 {
  padding-top: 14.2rem !important;
}

.p-b-142 {
  padding-bottom: 14.2rem !important;
}

.p-l-142 {
  padding-left: 14.2rem !important;
}

.p-r-142 {
  padding-right: 14.2rem !important;
}

.m-t-143 {
  margin-top: 14.3rem !important;
}

.m-b-143 {
  margin-bottom: 14.3rem !important;
}

.m-l-143 {
  margin-left: 14.3rem !important;
}

.m-r-143 {
  margin-right: 14.3rem !important;
}

.p-t-143 {
  padding-top: 14.3rem !important;
}

.p-b-143 {
  padding-bottom: 14.3rem !important;
}

.p-l-143 {
  padding-left: 14.3rem !important;
}

.p-r-143 {
  padding-right: 14.3rem !important;
}

.m-t-144 {
  margin-top: 14.4rem !important;
}

.m-b-144 {
  margin-bottom: 14.4rem !important;
}

.m-l-144 {
  margin-left: 14.4rem !important;
}

.m-r-144 {
  margin-right: 14.4rem !important;
}

.p-t-144 {
  padding-top: 14.4rem !important;
}

.p-b-144 {
  padding-bottom: 14.4rem !important;
}

.p-l-144 {
  padding-left: 14.4rem !important;
}

.p-r-144 {
  padding-right: 14.4rem !important;
}

.m-t-145 {
  margin-top: 14.5rem !important;
}

.m-b-145 {
  margin-bottom: 14.5rem !important;
}

.m-l-145 {
  margin-left: 14.5rem !important;
}

.m-r-145 {
  margin-right: 14.5rem !important;
}

.p-t-145 {
  padding-top: 14.5rem !important;
}

.p-b-145 {
  padding-bottom: 14.5rem !important;
}

.p-l-145 {
  padding-left: 14.5rem !important;
}

.p-r-145 {
  padding-right: 14.5rem !important;
}

.m-t-146 {
  margin-top: 14.6rem !important;
}

.m-b-146 {
  margin-bottom: 14.6rem !important;
}

.m-l-146 {
  margin-left: 14.6rem !important;
}

.m-r-146 {
  margin-right: 14.6rem !important;
}

.p-t-146 {
  padding-top: 14.6rem !important;
}

.p-b-146 {
  padding-bottom: 14.6rem !important;
}

.p-l-146 {
  padding-left: 14.6rem !important;
}

.p-r-146 {
  padding-right: 14.6rem !important;
}

.m-t-147 {
  margin-top: 14.7rem !important;
}

.m-b-147 {
  margin-bottom: 14.7rem !important;
}

.m-l-147 {
  margin-left: 14.7rem !important;
}

.m-r-147 {
  margin-right: 14.7rem !important;
}

.p-t-147 {
  padding-top: 14.7rem !important;
}

.p-b-147 {
  padding-bottom: 14.7rem !important;
}

.p-l-147 {
  padding-left: 14.7rem !important;
}

.p-r-147 {
  padding-right: 14.7rem !important;
}

.m-t-148 {
  margin-top: 14.8rem !important;
}

.m-b-148 {
  margin-bottom: 14.8rem !important;
}

.m-l-148 {
  margin-left: 14.8rem !important;
}

.m-r-148 {
  margin-right: 14.8rem !important;
}

.p-t-148 {
  padding-top: 14.8rem !important;
}

.p-b-148 {
  padding-bottom: 14.8rem !important;
}

.p-l-148 {
  padding-left: 14.8rem !important;
}

.p-r-148 {
  padding-right: 14.8rem !important;
}

.m-t-149 {
  margin-top: 14.9rem !important;
}

.m-b-149 {
  margin-bottom: 14.9rem !important;
}

.m-l-149 {
  margin-left: 14.9rem !important;
}

.m-r-149 {
  margin-right: 14.9rem !important;
}

.p-t-149 {
  padding-top: 14.9rem !important;
}

.p-b-149 {
  padding-bottom: 14.9rem !important;
}

.p-l-149 {
  padding-left: 14.9rem !important;
}

.p-r-149 {
  padding-right: 14.9rem !important;
}

.m-t-150 {
  margin-top: 15rem !important;
}

.m-b-150 {
  margin-bottom: 15rem !important;
}

.m-l-150 {
  margin-left: 15rem !important;
}

.m-r-150 {
  margin-right: 15rem !important;
}

.p-t-150 {
  padding-top: 15rem !important;
}

.p-b-150 {
  padding-bottom: 15rem !important;
}

.p-l-150 {
  padding-left: 15rem !important;
}

.p-r-150 {
  padding-right: 15rem !important;
}

.f-s-10 {
  font-size: 1rem !important;
}

.f-s-11 {
  font-size: 1.1rem !important;
}

.f-s-12 {
  font-size: 1.2rem !important;
}

.f-s-13 {
  font-size: 1.3rem !important;
}

.f-s-14 {
  font-size: 1.4rem !important;
}

.f-s-15 {
  font-size: 1.5rem !important;
}

.f-s-16 {
  font-size: 1.6rem !important;
}

.f-s-17 {
  font-size: 1.7rem !important;
}

.f-s-18 {
  font-size: 1.8rem !important;
}

.f-s-19 {
  font-size: 1.9rem !important;
}

.f-s-20 {
  font-size: 2rem !important;
}

.f-s-21 {
  font-size: 2.1rem !important;
}

.f-s-22 {
  font-size: 2.2rem !important;
}

.f-s-23 {
  font-size: 2.3rem !important;
}

/* TODO wygenerowanie pozostałych automatycznych */

.mt-135 {
  margin-top: 13.5rem;
}

.btn {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  height: 4.7rem;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0 !important;
  border-radius: var(--btn-border-radius);
  letter-spacing: 0.04rem;
  font-family: var(--font-family);
  font-weight: 600;
  margin-bottom: 1.5rem;
  padding: 0 2.7rem;
}

.btn:hover {
  opacity: 0.8;
}

.btn-blue {
  background: #00C2FF;
  color: #fff !important;
}

.btn-blue:hover {
  background: #1497c1;
}

.btn-black,
.btn-black-small {
  background: var(--body_active_color, #000);
  border-color: var(--body_active_color, #000);
  color: #fff;
  padding: 0rem 4rem;
}

.btn-black-small {
  height: 4.7rem;
  padding: 0rem 2.5rem;
}

.btn-black:hover,
.btn-black-small:hover {
  background: var(--body_active_color, #000);
  border-color: var(--body_active_color, #000);
  color: #fff;
}

.btn-white {
  background: #fff;
  color: var(--body_font_color, #000) !important;
  border-color: #fff;
  padding: 0rem 3.6rem;
}

.btn-white:hover {
  background: transparent;
  color: var(--body_active_color, #000) !important;
}

.btn-cus-primary {
  background: #fff;
  color: var(--body_font_color, #000);
  border-color: #fff;
  padding: 0rem 3.6rem;
}

.btn-cus-primary:hover {
  background: transparent;
  color: var(--body_active_color, #000);
}

.btn-white-o {
  background: transparent;
  color: #fff !important;
  border-color: #fff;
  padding: 0rem 3.6rem;
}

.btn-white-o:hover {
  background: #fff;
  color: var(--body_active_color, #000) !important;
}

.title * {
  color: #fff;
  font-weight: bold;
  font-size: 5.6rem;
  line-height: 6.2rem;
}

.sub-head * {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 2.4rem;
  letter-spacing: 0.04rem;
}

.small-head * {
  font-size: 1.4rem;
  font-family: var(--font-family);
  font-weight: 600;
  line-height: 1.7rem;
  letter-spacing: 0.028rem;
  color: var(--body_active_color, #AAAAAA);
  text-transform: uppercase;
}

.sub-title * {
  font-size: 3.8rem;
  font-family: var(--font-family);
  font-weight: 600;
  line-height: 4.4rem;
}

.sub-text {
  font-size: 2.1rem;
  font-family: var(--font-family);
  line-height: 4.4rem;
}

.sub-title-white * {
  color: #fff;
}

.heading * {
  font-size: 3.2rem;
  font-family: var(--font-family);
  line-height: 4.4rem;
  font-weight: 600;
}

.heading-42 * {
  font-size: 4.2rem;
  font-family: var(--font-family);
  line-height: 4.4rem;
  font-weight: 600;
}

.heading-28 * {
  font-size: 2.8rem;
  font-family: var(--font-family);
  line-height: 3.8rem;
  font-weight: 600;
}

.title-big * {
  font-size: 7.2rem;
  font-family: var(--font-family);
  line-height: 5.2rem;
  font-weight: 600;
}

.heading-small * {
  font-size: 1.4rem;
  text-transform: uppercase;
  font-family: var(--font-family);
  line-height: 2.4rem;
  letter-spacing: 0.035rem;
}

.heading-52 * {
  font-size: 5.2rem;
  font-family: var(--font-family);
  line-height: 5rem;
  font-weight: 600;
}

.title-24 * {
  font-size: 2.4rem;
  font-family: var(--font-family);
  line-height: 3.2rem;
  font-weight: 600;
}

.heading-64 * {
  font-size: 6.4rem;
  line-height: 5rem;
  font-weight: 600;
  font-family: var(--font-family);
}

.p-37 {
  padding: 0rem 3.7rem;
}

.p-40 {
  padding: 0rem 4rem;
}

.ml-25 {
  margin-left: 2.5rem;
}

.ml-135 {
  margin-left: 13.5rem;
}

.w-533 {
  max-width: 53.3rem;
}

.pr-135 {
  padding-right: 13.5rem;
}

.pl-10 {
  padding-left: 0.5rem;
}

.mt-110 {
  margin-top: 11rem;
}

.mlr-20 {
  margin: 0rem -2rem;
}

.plr-20 {
  padding: 0rem 2rem;
}

.mt-20 {
  margin-top: 2rem !important;
}

.pr-90 {
  padding-right: 9rem;
}

.mt-89 {
  margin-top: 8.9rem;
}

.mt-30 {
  margin-top: 3rem !important;
}

.mb-30 {
  margin-bottom: 3rem !important;
}

.mb-33 {
  margin-bottom: 3.3rem !important;
}

.mt-38 {
  margin-top: 3.8rem !important;
}

.link {
  display: inline-flex;
  color: var(--body_active_color, #000);
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 2.4rem;
  align-items: center;
  letter-spacing: 0.04rem;
  padding: 0;
  border: 0;
  background: transparent;
  outline: none !important;
}

.link:hover {
  color: #111111 !important;
}

.link:hover img {
  -webkit-filter: brightness(0%);
  filter: brightness(0%);
}

.link img, .link svg {
  margin-left: 1.4rem;
  margin-top: 0.1rem;
}

.border-bottom-2 {
  border-bottom: 0.2rem solid #ECECEC;
}

.bt-2-main {
  border-top: 0.2rem solid #ECECEC;
}

.link:hover {
  text-decoration: underline !important;
}

.ml-82 {
  margin-left: 8.2rem;
}

.pt-104 {
  padding-top: 10.4rem !important;
}

.pb-25 {
  padding-bottom: 2.5rem !important;
}

.mt-140 {
  margin-top: 14rem;
}

.mt-40 {
  margin-top: 4rem !important;
}

.mt-45 {
  margin-top: 4.5rem !important;
}

.mt-51 {
  margin-top: 5.1rem !important;
}

.mt-53 {
  margin-top: 5.3rem !important;
}

.mb-57 {
  margin-bottom: 5.7rem !important;
}

.mt-63 {
  margin-top: 6.3rem !important;
}

.mb-60 {
  margin-bottom: 6rem !important;
}

.pb-60 {
  padding-bottom: 5rem !important;
}

.mb-65 {
  margin-bottom: 6.5rem !important;
}

.mt-68 {
  margin-top: 6.8rem !important;
}

.mb-70 {
  margin-bottom: 7rem !important;
}

.mb-76 {
  margin-bottom: 7.6rem !important;
}

.mb-82 {
  margin-bottom: 8.2rem !important;
}

.mb-88 {
  margin-bottom: 8.8rem !important;
}

.pb-88 {
  padding-bottom: 8.8rem !important;
}

.mb-90 {
  margin-bottom: 9rem !important;
}

.mb-102 {
  margin-bottom: 10.2rem !important;
}

.mb-106 {
  margin-bottom: 10.6rem !important;
}

.pb-108 {
  padding-bottom: 10.8rem !important;
}

.mb-127 {
  margin-bottom: 12.7rem !important;
}

.mb-137 {
  margin-bottom: 13.7rem !important;
}

.mt-142 {
  margin-top: -14.2rem !important;
}

.pb-155 {
  padding-bottom: 15.5rem !important;
}

.mt-171 {
  margin-top: 17.1rem !important;
}

.p-62 {
  padding: 0rem 6.2rem;
}

.border-b-2 {
  border-bottom: 0.2rem solid #ECECEC;
}

.pb-84 {
  padding-bottom: 8.4rem;
}

.into-section p {
  margin-top: 3.2rem;
}

.into-section h1,
.into-section h2,
.into-section h3,
.into-section h4,
.into-section h5,
.into-section h6 {
  font-size: 1.8rem;
  line-height: 3.2rem;
  margin-top: 3rem;
  color: #000;
}

.into-section p:first-child {
  margin-top: 0rem;
}

.pb-93 {
  padding-bottom: 9.3rem;
}

.heading-box .row {
  margin-top: 4rem;
}

.heading-box .row:first-child {
  margin-top: 0rem;
}

.product-border {
  background-color: #E4E4E4;
  width: 12.4rem;
  height: 0.2rem;
  margin: 2rem auto;
  display: block;
}

.dis-active .product-border {
  background-color: transparent;
  display: none;
}

.breadcrumbs {
  flex-wrap: nowrap;
  overflow: hidden;
  overflow-x: auto;
  position: relative;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.breadcrumbs::-webkit-scrollbar {
  display: none;
}
.breadcrumbs * {
  white-space: nowrap;
  font-size: 1.4rem;
  line-height: 1.4rem;
}
.input-select{
  position: relative;
}
.input-select .form-control{
  height: 5rem;
  border: 0.1rem solid #DFDFDF;
  border-radius: 0.4rem;
  padding: 0.2rem 2rem 0;
  font-size: 1.4rem;
}
.input-select .input-control {
  background: url(../images/icon-select-down.png) no-repeat center right 1.7rem;
  padding-right: 4rem;
}
.input-select .form-control:focus{
  border-color: #808080;
}
@media (min-width: 1360px) {
  .breadcrumbs div:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
  }
}

@media (min-width: 1560px) and (max-width: 1629px) {
  .ml-135 {
    margin-left: 10rem;
  }

  .pr-135 {
    padding-right: 10rem;
  }

  .title-big * {
    font-size: 6.5rem;
    line-height: 4.4rem;
  }

  .pr-90 {
    padding-right: 7rem;
  }

  .pt-104 {
    padding-top: 9rem !important;
  }

  .ml-82 {
    margin-left: 7rem;
  }

  .mt-140 {
    margin-top: 11rem;
  }
}

@media (min-width: 1460px) and (max-width: 1559px) {
  .mt-135 {
    margin-top: 11.075rem;
  }

  .ml-135 {
    margin-left: 7rem;
  }

  .pr-135 {
    padding-right: 7rem;
  }

  .mt-110 {
    margin-top: 8.5rem;
  }

  .pr-90 {
    padding-right: 7rem;
  }

  .mt-89 {
    margin-top: 7rem;
  }

  .title-big * {
    font-size: 6rem;
    line-height: 4.5rem;
  }

  .pt-104 {
    padding-top: 8rem !important;
  }

  .ml-82 {
    margin-left: 5rem;
  }

  .mt-140 {
    margin-top: 10rem;
  }

  .pb-84 {
    padding-bottom: 6.5rem;
  }

  .heading-64 * {
    font-size: 5.4rem;
    line-height: 4.7rem;
  }
}

@media (min-width: 1360px) and (max-width: 1459px) {
  .mt-135 {
    margin-top: 11.075rem;
  }

  .btn {
    height: 5rem;
    font-size: 1.5rem;
  }

  .btn-black,
  .btn-black-small {
    padding: 0rem 3rem;
  }

  .btn-black-small {
    height: 4.5rem;
    padding: 0rem 2rem;
  }

  .ml-135 {
    margin-left: 6.5rem;
  }

  .heading * {
    font-size: 2.8rem;
    line-height: 4.1rem;
  }

  .pr-135 {
    padding-right: 6.5rem;
  }

  .mt-110 {
    margin-top: 8rem;
  }

  .picture-list.mt-110 {
    margin-top: 5rem;
  }

  .mlr-20 {
    margin: 0rem -1.5rem;
  }

  .plr-20 {
    padding: 0rem 1.5rem;
  }

  .pr-90 {
    padding-right: 6.5rem;
  }

  .heading-42 * {
    font-size: 4rem;
    line-height: 4.2rem;
  }

  .mt-20 {
    margin-top: 1.5rem;
  }

  .mt-89 {
    margin-top: 7rem;
  }

  .title-big * {
    font-size: 5rem;
    line-height: 4rem;
  }

  .mt-30 {
    margin-top: 2.5rem;
  }

  .heading-52 * {
    font-size: 4.6rem;
    line-height: 4.2rem;
  }

  .ml-82 {
    margin-left: 4.5rem;
  }

  .pt-104 {
    padding-top: 7rem !important;
  }

  .mt-140 {
    margin-top: 8rem;
  }

  .mt-40 {
    margin-top: 3rem;
  }

  .pb-84 {
    padding-bottom: 6rem;
  }

  .pb-93 {
    padding-bottom: 6rem;
  }

  .heading-64 * {
    font-size: 5.4rem;
    line-height: 4.7rem;
  }
}

@media (min-width: 1200px) and (max-width: 1359px) {
  .mt-135 {
    margin-top: 9.822rem;
  }

  .btn {
    height: 5rem;
    font-size: 1.5rem;
  }

  .btn-black,
  .btn-black-small {
    padding: 0rem 3rem;
  }

  .btn-black-small {
    height: 4.5rem;
    padding: 0rem 2rem;
  }

  .title * {
    font-size: 5.3rem;
    line-height: 5.9rem;
  }

  .sub-title * {
    font-size: 3.5rem;
    line-height: 4rem;
  }

  .w-533 {
    max-width: 77%;
  }

  .ml-135 {
    margin-left: 5rem;
  }

  .heading * {
    font-size: 2.6rem;
    line-height: 3.8rem;
  }

  .pr-135 {
    padding-right: 5rem;
  }

  .mt-110 {
    margin-top: 7rem;
  }

  .picture-list.mt-110 {
    margin-top: 4rem;
  }

  .mlr-20 {
    margin: 0rem -1.5rem;
  }

  .plr-20 {
    padding: 0rem 1.5rem;
  }

  .heading-42 * {
    font-size: 3.7rem;
    line-height: 4rem;
  }

  .mt-20 {
    margin-top: 1rem;
  }

  .pr-90 {
    padding-right: 5rem;
  }

  .mt-89 {
    margin-top: 7rem;
  }

  .title-big * {
    font-size: 4.5rem;
    line-height: 4.5rem;
  }

  .mt-30 {
    margin-top: 2rem;
  }

  .heading-52 * {
    font-size: 4.3rem;
    line-height: 4.1rem;
  }

  .ml-82 {
    margin-left: 4rem;
  }

  .pt-104 {
    padding-top: 6rem !important;
  }

  .pb-25 {
    padding-bottom: 2rem !important;
  }

  .mt-40 {
    margin-top: 3rem;
  }

  .mt-140 {
    margin-top: 7.5rem;
  }

  .pb-84 {
    padding-bottom: 5rem;
  }

  .into-section p {
    margin-top: 2rem;
  }

  .into-section h1,
  .into-section h2,
  .into-section h3,
  .into-section h4,
  .into-section h5,
  .into-section h6 {
    margin-top: 2rem;
  }

  .pb-93 {
    padding-bottom: 5rem;
  }

  .heading-64 * {
    font-size: 5rem;
    line-height: 4.6rem;
  }
}

@media (min-width: 1200px) and (max-width: 1259px) {
  .container-full {
    max-width: 1200px;
    padding: 0 15px;
  }
  .owl-nav button {
    height: 4rem;
    width: 4rem;
    top: calc(50% - 2rem);
    left: -2rem;
  }
  .owl-nav button.owl-next {
    right: -2rem;
  }
  .mb-82 {
    margin-bottom: 7.2rem !important;
  }
  .pb-108 {
    padding-bottom: 9.8rem !important;
  }
  .mb-127 {
    margin-bottom: 9.7rem !important;
  }
  .mb-137 {
    margin-bottom: 11.7rem !important;
  }
  .mt-142 {
    margin-top: -12.2rem !important;
  }
  .pb-155 {
    padding-bottom: 13.5rem !important;
  }
  .mt-171 {
    margin-top: 15.011rem !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {

  .fw-32,
  .fw-32 * {
    margin: 0 !important;
    font-size: 3.2rem !important;
    line-height: 4.4rem !important;
  }

  .fw-52,
  .fw-52 * {
    font-size: 4.2rem !important;
    line-height: 4.2rem !important;
  } 
  .fw-36, .fw-36 * {
    font-size: 2.8rem !important;
    line-height: 3.5rem !important;
  }
  .fw-32, .fw-32 * {
    font-size: 2.8rem !important;
    line-height: 4rem !important;
  }

  .fw-24,
  .fw-24 * {
    font-size: 2.2rem !important;
    line-height: 3rem !important;
  }

  .owl-nav button {
    height: 4rem;
    width: 4rem;
    top: calc(50% - 2rem);
    left: -2rem;
  }
  .owl-nav button.owl-next {
    right: -2rem;
  }

  .mt-171 {
    margin-top: 13.131rem !important;
  }

  body {
    font-size: 1.6rem;
  }

  p {
    line-height: 2.8rem;
  }

  .mt-135 {
    margin-top: 8.116rem;
  }

  .btn {
    height: 5rem;
    font-size: 1.4rem;
  }

  .btn-black,
  .btn-black-small {
    padding: 0rem 3rem;
  }

  .btn-black-small {
    height: 4.5rem;
    padding: 0rem 2rem;
  }

  .btn-white,
  .btn-cus-primary {
    padding: 0rem 3rem;
  }

  .btn-white-o {
    padding: 0rem 3rem;
  }

  .title * {
    font-size: 5rem;
    line-height: 5.6rem;
  }

  .sub-title * {
    font-size: 3.5rem;
    line-height: 4rem;
  }

  .w-533 {
    max-width: 100%;
  }

  .ml-135 {
    margin-left: 3rem;
  }

  .heading * {
    font-size: 2.5rem;
    line-height: 3.5rem;
  }

  .pl-10 {
    padding-left: 0rem;
  }

  .pr-135 {
    padding-right: 3rem;
  }

  .mt-110 {
    margin-top: 6rem;
  }

  .mlr-20 {
    margin: 0rem -1rem;
  }

  .plr-20 {
    padding: 0rem 1rem;
  }

  .heading-42 * {
    font-size: 3.5rem;
    line-height: 3.8rem;
  }

  .pr-90 {
    padding-right: 3rem;
  }

  .mt-89 {
    margin-top: 6rem;
  }

  .title-big * {
    font-size: 3.5rem;
    line-height: 3.5rem;
  }

  .mt-30 {
    margin-top: 2rem;
  }

  .heading-52 * {
    font-size: 4rem;
    line-height: 4.1rem;
  }

  .ml-82 {
    margin-left: 3rem;
  }

  .pb-25 {
    padding-bottom: 2rem !important;
  }

  .pt-104 {
    padding-top: 5rem !important;
  }

  .mt-140 {
    margin-top: 6rem;
  }

  .mt-40 {
    margin-top: 2rem;
  }

  .pb-84 {
    padding-bottom: 4rem;
  }

  .into-section p {
    padding-top: 2rem;
  }

  .into-section h1,
  .into-section h2,
  .into-section h3,
  .into-section h4,
  .into-section h5,
  .into-section h6 {
    font-size: 1.6rem;
    line-height: 2.8rem;
    margin-top: 2rem;
  }

  .pb-93 {
    padding-bottom: 4rem;
  }

  .heading-64 * {
    font-size: 4.5rem;
    line-height: 4.2rem;
  }
  .mb-41 {
    margin-bottom: 3.1rem !important;
  }
  .mb-60 {
    margin-bottom: 5rem !important;
  }
  .mb-82 {
    margin-bottom: 6.2rem !important;
  }
  .mt-85 {
    margin-top: 5.5rem !important;
  }
  .mb-88 {
    margin-bottom: 7.8rem !important;
  }
  .pb-88 {
    padding-bottom: 7.8rem !important;
  }
  .mb-90 {
    margin-bottom: 8rem !important;
  }
  .pb-108 {
    padding-bottom: 8.8rem !important;
  }
  .mb-127 {
    margin-bottom: 7.7rem !important;
  }
  .mb-137 {
    margin-bottom: 10.7rem !important;
  }
  .mt-142 {
    margin-top: -10.7rem !important;
  }
  .pb-155 {
    padding-bottom: 11.5rem !important;
  }
  .mt-171 {
    margin-top: 13.131rem !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  body.show:after{
    position: fixed;
    content: "";
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 3;
    background: rgba(0, 0, 0, 0.5);
  }
  h1 {
    font-size: 2.9rem;
    line-height: 4rem;
  }
  .fw-52, .fw-52 * {
    font-size: 3.6rem !important;
    line-height: 4.2rem !important;
  }
  .fw-46, .fw-46 * {
    font-size: 3.6rem !important;
    line-height: 4.2rem !important;
  }
  .fw-36, .fw-36 * {
    font-size: 2.6rem !important;
    line-height: 3.4rem !important;
  }
  .fw-32, .fw-32 * {
    font-size: 2.9rem !important;
    line-height: 4rem !important;
  }
  .fw-24, .fw-24 * {
    font-size: 2rem !important;
    line-height: 2.8rem !important;
  }
  .fw-21, .fw-21 * {
    font-size: 1.8rem !important;
    line-height: 2.8rem !important;
  }
  .sub-text{
    font-size: 1.8rem;
    line-height: 2.8rem;
  }
  .sub-text br{
    display: none;
  }

  .mt-171 {
    margin-top: 14.45rem !important;
  }

  body {
    font-size: 1.6rem;
  }

  p {
    line-height: 2.8rem;
  }

  .mt-135 {
    margin-top: 7.683rem;
  }

  .btn {
    height: 5rem;
    font-size: 1.5rem;
  }

  .btn-black,
  .btn-black-small {
    padding: 0rem 3rem;
  }

  .btn-black-small {
    height: 4.5rem;
    padding: 0rem 2rem;
  }

  .btn-white,
  .btn-cus-primary {
    padding: 0rem 3rem;
  }

  .btn-white-o {
    padding: 0rem 3rem;
  }

  .title * {
    font-size: 4.4rem;
    line-height: 5.5rem;
  }

  .sub-title * {
    font-size: 3.3rem;
    line-height: 3.8rem;
  }

  .w-533 {
    max-width: 100%;
  }

  .ml-135 {
    margin-left: 0rem;
  }

  .heading * {
    font-size: 2.6rem;
    line-height: 3.8rem;
  }

  .heading * br {
    display: none;
  }

  .pl-10 {
    padding-left: 0rem;
  }

  .pr-135 {
    padding-right: 0rem;
  }

  .into-section p {
    margin-top: 2rem !important;
  }

  .into-section h1,
  .into-section h2,
  .into-section h3,
  .into-section h4,
  .into-section h5,
  .into-section h6 {
    font-size: 1.6rem;
    line-height: 2.8rem;
    margin-top: 2rem;
  }

  .mt-110 {
    margin-top: 4rem;
  }

  .mlr-20 {
    margin: 0rem -1rem;
  }

  .plr-20 {
    padding: 0rem 1rem;
  }

  .heading-42 * {
    font-size: 3.5rem;
    line-height: 3.7rem;
  }

  .mt-20 {
    margin-top: 1rem;
  }

  .pr-90 {
    padding-right: 0rem;
  }

  .mt-89 {
    margin-top: 5rem;
  }

  .title-big * {
    font-size: 4rem;
    line-height: 4rem;
  }

  .mt-30 {
    margin-top: 1.5rem;
  }

  .heading-52 * {
    font-size: 4rem;
    line-height: 4.3rem;
  }

  .contact-now-text p {
    padding-top: 2rem;
  }

  .contact-now-text .btn {
    margin-top: 3rem;
  }

  .ml-82 {
    margin-left: 0rem;
  }

  .pt-104 {
    padding-top: 3rem !important;
  }

  .mt-140 {
    margin-top: 5rem;
  }
  
  .mt-40 {
    margin-top: 2rem;
  }
  .mb-41 {
    margin-bottom: 3.1rem !important;
  }
  .mt-51 {
    margin-top: 4.1rem !important;
  }
  .mb-60 {
    margin-bottom: 4rem !important;
  }
  .pb-60 {
    padding-bottom: 4rem !important;
  }
  .mt-63 {
    margin-top: 5.3rem !important;
  }
  .mb-65 {
    margin-bottom: 5.5rem !important;
  }
  .mt-68 {
    margin-top: 5.5rem !important;
  }
  .mb-70 {
    margin-bottom: 5.5rem !important;
  }
  .mb-76 {
    margin-bottom: 6.6rem !important;
  }
  .mb-82 {
    margin-bottom: 5.2rem !important;
  }
  .mt-85 {
    margin-top: 3.5rem !important;
  }
  .mb-88 {
    margin-bottom: 6.5rem !important;
  }
  .pb-88 {
    padding-bottom: 6.5rem !important;
  }
  .mb-90 {
    margin-bottom: 7rem !important;
  }   
  .mb-102 {
    margin-bottom: 6.2rem !important;
  }
  .mb-106 {
    margin-bottom: 7rem !important;
  }
  .pb-108 {
    padding-bottom: 7rem !important;
  }
  .mb-127 {
    margin-bottom: 6rem !important;
  }
  .mb-137 {
    margin-bottom: 8rem !important;
  }
  .mt-142 {
    margin-top: -9.2rem !important;
  }
  .pb-155 {
    padding-bottom: 8.5rem !important;
  }
  .mt-171 {
    margin-top: 14.45rem !important;
  }

  .pb-84 {
    padding-bottom: 3.5rem;
  }

  .pb-93 {
    padding-bottom: 4rem;
  }

  .heading-64 * {
    font-size: 5rem;
    line-height: 4.5rem;
  }

  .heading-box .row {
    margin-top: 3rem;
  }
  .owl-nav button.owl-next {
    right: -2rem;
  }
  .breadcrumbs * {
    font-size: 1.4rem;
    line-height: 1.4rem;
  }
  .separator img {
    margin: 0 1.2rem;
  }
  .select .selectBtn {
    font-size: 1.3rem;
  }
  .glightbox-clean .gprev,
  .glightbox-clean .gnext{
    top: calc(50% - 2rem) !important;
    width: 3.8rem !important;
    height: 3.8rem !important;
    background: var(--btn-white-hover) !important;
    border-radius: 50%;
    border-radius: 50% !important;
  }
  .glightbox-clean .gprev {
    left: 0.5rem !important;
  }
  .glightbox-clean .gnext {
    right: 0.5rem !important;
  }
  .gclose svg, .gnext svg, .gprev svg {
    width: 1.9rem !important;
  }
}

@media (max-width: 767px) {
  body.show:after{
    position: fixed;
    content: "";
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 3;
    background: rgba(0, 0, 0, 0.5);
  }
  ul > li {
    padding-left: 1.8rem;
    margin-bottom: 0.6rem;
  }
  ul > li:after {
    top: 0.8rem;
  }
  h1 {
    font-size: 2.6rem;
    line-height: 3.4rem;
  }
  h2 {
    font-size: 1.9rem;
    line-height: 2.8rem;
  }
  h3 {
    font-size: 1.7rem;
    line-height: 2.2rem;
  }
  .fw-52, .fw-52 * {
    font-size: 3.4rem !important;
    line-height: 3.4rem !important;
  }
  .fw-46, .fw-46 * {
    font-size: 2.8rem !important;
    line-height: 3.4rem !important;
  }
  .fw-38, .fw-38 * {
    font-size: 2.6rem !important;
    line-height: 3.4rem !important;
  }
  .fw-32, .fw-32 * {
    font-size: 2.6rem !important;
    line-height: 3.4rem !important;
  }
  .fw-24, .fw-24 * {
    font-size: 1.9rem !important;
    line-height: 2.7rem !important;
  }
  .fw-21, .fw-21 * {
    font-size: 1.7rem !important;
    line-height: 2.7rem !important;
  }
  .sub-text{
    font-size: 1.7rem;
    line-height: 2.7rem;
  }
  .sub-text br{
    display: none;
  }

  .mt-171 {
    margin-top: 14.45rem !important;
  }

  body {
    font-size: 1.6rem;
  }

  ul li::after {
    top: 0.9rem;
  }

  ul li {
    line-height: 2.7rem;
    padding-left: 2rem;
  }

  ol li {
    line-height: 2.7rem;
    padding-left: 2rem;
  }

  p {
    line-height: 2.8rem;
  }

  .mt-135 {
    margin-top: 7.683rem;
  }

  .btn {
    height: 5rem;
    font-size: 1.5rem;
  }

  .btn-black,
  .btn-black-small {
    padding: 0rem 3rem;
  }

  .btn-black-small {
    height: 4.5rem;
    padding: 0rem 2rem;
  }

  .btn-white,
  .btn-cus-primary {
    padding: 0rem 3rem;
  }

  .btn-white-o {
    padding: 0rem 3rem;
  }

  .title * {
    font-size: 3.8rem;
    line-height: 5.3rem;
  }

  .small-head * {
    font-size: 1.3rem;
  }

  .sub-title * {
    font-size: 3rem;
    line-height: 3.9rem;
  }

  .ml-25 {
    margin-left: 0rem;
  }

  .w-533 {
    max-width: 100%;
  }

  .ml-135 {
    margin-left: 0rem;
  }

  .heading * {
    font-size: 2.3rem;
    line-height: 3.5rem;
  }

  .heading * br {
    display: none;
  }

  .pl-10 {
    padding-left: 0rem;
  }

  .pr-135 {
    padding-right: 0rem;
  }

  .into-section p {
    margin-top: 1.5rem !important;
  }

  .into-section h1,
  .into-section h2,
  .into-section h3,
  .into-section h4,
  .into-section h5,
  .into-section h6 {
    font-size: 1.6rem;
    line-height: 2.8rem;
    margin-top: 1.5rem;
  }

  .mt-110 {
    margin-top: 3rem;
  }

  .mlr-20 {
    margin: 0rem;
  }

  .plr-20 {
    padding: 0rem;
  }

  .heading-42 * {
    font-size: 2.7rem;
    line-height: 3.3rem;
  }

  .mt-20 {
    margin-top: 1rem;
  }

  .pr-90 {
    padding-right: 0rem;
  }

  .mt-89 {
    margin-top: 4rem;
  }

  .title-big * {
    font-size: 3.5rem;
    line-height: 3.5rem;
  }

  .mt-30 {
    margin-top: 1.5rem;
  }

  .heading-52 * {
    font-size: 3.4rem;
    line-height: 4rem;
  }

  .beadcream {
    flex-wrap: nowrap;
    overflow: hidden;
    overflow-x: auto;
  }

  .beadcream a,
  .beadcream span {
    white-space: nowrap;
  }

  .ml-82 {
    margin-left: 0rem;
  }

  .pipeline {
    margin: 0rem 0.85rem;
    padding: 0.1rem 0.6rem;
  }

  .pt-104 {
    padding-top: 3rem !important;
  }

  .pb-25 {
    padding-bottom: 2rem !important;
  }

  .mt-140 {
    margin-top: 3rem;
  }

  .mt-40 {
    margin-top: 2rem;
  }

  .pb-84 {
    padding-bottom: 2rem;
  }

  .pb-93 {
    padding-bottom: 2rem;
  }

  .heading-64 * {
    font-size: 4.5rem;
    line-height: 4.5rem;
  }

  .heading-box .row {
    margin-top: 3rem;
  }
  .owl-nav button {
    height: 3rem;
    width: 3rem;
    top: calc(50% - 1.5rem);
    left: -1rem;
  }
  .owl-nav button.owl-next {
    right: -1rem;
  }
  .owl-nav button.owl-prev img {
    margin-right: 0.4rem;
  }
  .owl-nav button img{
    max-width: 0.7rem;
  }
  .link {
    font-size: 1.5rem;
    line-height: 2.3rem;
  }
  .sec-breadcrumbs .container{
    padding-right: 0;
  }
  .breadcrumbs {
    flex-wrap: nowrap;
    overflow: hidden;
    overflow-x: auto;
    position: relative;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .breadcrumbs::-webkit-scrollbar {
    display: none;
  }
  .breadcrumbs * {
    white-space: nowrap;
    font-size: 1.4rem;
    line-height: 1.4rem;
  }
  .separator img {
    margin: 0 1rem;
  }
  .glightbox-clean .gprev,
  .glightbox-clean .gnext{
    top: calc(50% - 2rem) !important;
    width: 3.8rem !important;
    height: 3.8rem !important;
    background: var(--btn-white-hover) !important;
    border-radius: 50%;
    border-radius: 50% !important;
  }
  .glightbox-clean .gprev {
    left: 0.5rem !important;
  }
  .glightbox-clean .gnext {
    right: 0.5rem !important;
  }
  .gclose svg, .gnext svg, .gprev svg {
    width: 1.9rem !important;
  }
  .g-5, .gx-5 {
    --bs-gutter-x: 0rem;
  }
  .mt-30 {
    margin-top: 2rem !important;
  }
  .mb-30 {
    margin-bottom: 2rem !important;
  }
  .mb-33 {
    margin-bottom: 2rem !important;
  }
  .mt-40 {
    margin-top: 3rem !important;
  }
  .mb-40 {
    margin-bottom: 3rem !important;
  }
  .mb-41 {
    margin-bottom: 3.1rem !important;
  }
  .mt-45 {
    margin-top: 3.5rem !important;
  }
  .mt-51 {
    margin-top: 4.5rem !important;
  }
  .mt-53 {
    margin-top: 4rem !important;
  }
  .mb-57 {
    margin-bottom: 4.5rem !important;
  }
  .mb-60 {
    margin-bottom: 4rem !important;
  }
  .pb-60 {
    padding-bottom: 4rem !important;
  }
  .mt-63 {
    margin-top: 3rem !important;
  }
  .mb-65 {
    margin-bottom: 5rem !important;
  }
  .mt-68 {
    margin-top: 4rem !important;
  }
  .mb-70 {
    margin-bottom: 5rem !important;
  }
  .mb-82 {
    margin-bottom: 3rem !important;
  }
  .mt-85 {
    margin-top: 3rem !important;
  }
  .mb-88 {
    margin-bottom: 4rem !important;
  }
  .pb-88 {
    padding-bottom: 4.5rem !important;
  }
  .mb-90 {
    margin-bottom: 5rem !important;
  }
  .mb-102 {
    margin-bottom: 4rem !important;
  }
  .mb-106 {
    margin-bottom: 4.5rem !important;
  }
  .pb-108 {
    padding-bottom: 4.8rem !important;
  }
  .mb-127 {
    margin-bottom: 4.5rem !important;
  }
  .mb-137 {
    margin-bottom: 4rem !important;
  }
  .mt-142 {
    margin-top: -4rem !important;
  }
  .pb-155 {
    padding-bottom: 4.5rem !important;
  }
  .mt-171 {
    margin-top: 14.45rem !important;
  }
}

@media (max-width: 575px) {
  .title * {
    font-size: 3.5rem;
    line-height: 4.7rem;
  }

  .ml-25 {
    margin-left: 0rem;
  }
}

#info-box {
  position: fixed;
  top: calc(50% - 20rem);
  left: calc(50% - 16rem);
  width: 32rem;
  min-height: 12rem;
  z-index: 1000;
  background-color: #fff;
  color: #000;
  text-align: center;
  padding: 2rem;
  display: none;
  box-sizing: border-box;
}

#info-box button.btn.btn-cta {
  border: 0.1rem solid rgb(33, 37, 41);
  display: flex;
  width: 100%;
  transition: .2s all linear;
}

#info-box button.btn.btn-cta:hover {
  background-color: rgb(33, 37, 41);
  color: #fff;
}

#info-box .btn-1 {
  margin: 0 auto;
  float: none;
}

#info-box .title {
  font-weight: bold;
  margin-bottom: 1.5rem;
  display: block;
  font-size: 1.6rem;
}

#info-box-opc {
  z-index: 999;
  background-color: #000;
  opacity: 0.6;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: none;
}

.h-30 {
  height: 3rem;
}

/* TODO: co 0.5rem auto klasy między h-5 a h-100 */

.footer-link a {
  margin-left: 1rem;
}



#loader {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #fff;
  z-index: 99999;
  display: none;
  overflow: hidden;
}

.loader-inner {
  border: 1.6rem solid #e6eaf5;
  border-top: 1.6rem solid var(--body_active_color, #000);
  border-radius: 50%;
  width: 12rem;
  height: 12rem;
  animation: spin 2s linear infinite;
  top: calc(50% - 6rem);
  left: calc(50% - 6rem);
  z-index: 100000;
  overflow: hidden;
  position: absolute;
}

@media (max-width: 768px) {
  .loader-inner {
    border: 1.2rem solid #e6eaf5;
    border-top: 1.2rem solid var(--body_active_color, #000);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.chk {
  display: block;
  position: relative;
  padding-left: 3.2rem;
  margin-bottom: 0;
  cursor: pointer;
  font-size: 1.4rem;
  letter-spacing: 0.035rem;
  line-height: 1.8rem;
  color: #111111;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.chk-small {
  font-size: 1.2rem;
  line-height: 2rem;
  letter-spacing: 0;
}

.chk-big {
  padding-left: 3.6rem;
}

.chk-white {
  color: #ffffff;
}

.chk input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.chk .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 1.8rem;
  width: 1.8rem;
  background: transparent;
  border: 0.1rem solid #AAAAAA;
  border-radius: 0.2rem;
}

.chk-big .checkmark {
  width: 2rem;
  height: 2rem;
  border-width: 0.2rem;
}

.chk-white .checkmark {
  border-color: #ffffff !important;
}

.chk input:checked~.checkmark {
  border-color: var(--body_font_color);
}

.chk .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.chk input:checked~.checkmark:after {
  display: block;
}

.chk .checkmark:after {
  left: 0.5rem;
  top: 0.1rem;
  width: 0.6rem;
  height: 1rem;
  border: solid #111111;
  border-width: 0 0.2rem 0.2rem 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.chk-white .checkmark:after {
  border-color: #ffffff !important;
}

.sec-breadcrumbs {
  padding: 3rem 0;
}

.breadcrumbs {
  display: flex;
  align-items: center;
}

.breadcrumbs * {
  font-weight: 500;
  color: #000 !important;
}

.breadcrumbs a:hover {
  text-decoration: underline !important;
}

.breadcrumbs span:not(.breadcrumbs-default-name) {
  color: #737373 !important;
  font-weight: normal;
}

.breadcrumbs-home {
  width: 1.6rem;
}

.separator img {
  display: block;
  margin: 0 2rem;
}

.container-full {
  max-width: 1400px;
  margin: auto;
}

@media (min-width: 1400px) and (max-width: 1450px) {
  .container-full {
    padding: 0 15px;
  }
}

@media (min-width: 1360px) and (max-width: 1399px) {
  .container-full {
    max-width: 1366px;
    padding: 0 15px;
  }
}

@media (min-width: 1260px) and (max-width: 1359px) {
  .container-full {
    max-width: 1260px;
    padding: 0 15px;
  }
}

@media (min-width: 1200px) and (max-width: 1259px) {
  .container-full {
    max-width: 1200px;
    padding: 0 15px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .container-full {
    max-width: 992px;
    padding: 0 15px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .container-full {
    max-width: 768px;
    padding: 0 15px;
  }
}

@media (max-width: 767px) {
  .container-full {
    max-width: 100%;
    padding: 0 15px;
  }
}

.select.select-btn {
    position: relative;
    width: auto;
    margin-left: 0.7rem;
}
.select.select-btn .selectBtn {
    padding: 0 1.9rem 0 0rem;
    font-size: 1.4rem;
    font-weight: 600;
    box-sizing: border-box;
    cursor: pointer;
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background: #fff;
    display: flex;
    align-items: center;
    letter-spacing: 0.035rem;
}
.select.select-btn .selectBtn:after {
    content: "";
    position: absolute;
    width: 1.1rem;
    height: 0.7rem;
    right: 0;
    background: url(/WebRumble/images/icon-black-down.png) no-repeat;
    transition: 0.2s ease;
}
.select.select-btn .selectBtn.toggle:after {
    -webkit-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
}
.select.select-btn .selectDropdown {
    position: absolute;
    top: calc(100% + 0.2rem);
    width: 17rem;
    left: 0;
    border-radius: 0 0 0.3rem 0.3rem;
    overflow: hidden;
    background: #fff;
    border-top: 0.1rem solid #eee;
    z-index: 4;
    background: #fff;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    -webkit-transform-origin: top center;
    transform-origin: top center;
    visibility: hidden;
    transition: 0.2s ease;
    box-shadow: 0 0.3rem 0.3rem rgba(0, 0, 0, 0.2);
}
.select.select-btn .selectDropdown .option {
    padding: 1rem;
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    width: 100%;
    font-size: 1.4rem;
    letter-spacing: 0.035rem;
    line-height: 1.8rem;
}
.select.select-btn .selectDropdown .option:hover {
    background: #f8f8f8;
}
.select.select-btn .selectDropdown.toggle {
    visibility: visible;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
}


.form-promoted-prices {
  width: 100%; 
  background-color: #3080b9;
  color: white;
  overflow: hidden;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.form-promoted-prices, .form-promoted-prices tr, .form-promoted-prices td {
  border: 0.1rem solid #0a213d;
}

table.form-promoted-prices td {
  padding: 1rem 0.6rem;
}

.button-cabin{
  background-color: #293f5c;
  color: white;
  border-radius: 0.5rem;
  padding: 0 0.5rem;
}

.button-cabin:hover{
  color: white;
}

.form-promoted-show-next {
  margin: 1rem 0 0.5rem;
  display: inline-block;
}

.form-promoted-cab {
  margin-bottom: 1rem;
}

.inquiry-form .form-promoted-cab p {
  margin-bottom: 0.5rem;
}

.form-promoted-cab select {
  background-color: #293f5c;
  color: white;
  border-radius: 0.5rem;
}
.btn-blue-outline{
  border: 0.2rem solid var(--btn-blue) !important;
  color: var(--btn-blue) !important;
}
.btn-blue-outline:hover{
  background: var(--btn-blue);
  color: var(--btn-text-white) !important;
}
.btn-black-outline{
  border: 0.1rem solid #000000 !important;
  color: #000000;
}
.btn-black-outline:hover{
  color: #eee;
  background-color: #000000;
}
.cursor-pointer {
  cursor: pointer;
}
.se-component.se-image-container.__se__float-center{
  text-align: center;
  display: flex;
  justify-content: center;
}
.se-component.se-image-container.__se__float-right{
  text-align: right;
  float: right;
}
.se-component.se-image-container.__se__float-left{
  text-align: left;
  float: left;
}

/* Articles CSS */

.offer-single-outer .single-info img {
  max-width: 100%;
  height: auto !important;
  border-radius: 0.5rem;
}
.sec-post-single-outer{
  background: #F6F6F6;
  padding-bottom: 6.8rem;
}
.top_photo{
  overflow: hidden;
  border-radius: 0.5rem;
}
.top_photo img {
  width: 100%;
  height: 53rem;
  object-fit: cover;
  border-radius: 0.5rem;
}
.top_photo video {
  border-radius: 0.5rem;
}
.post-info-box {
  position: relative;
  background: #fff;
  max-width: 84.2rem;
  margin: -16rem auto 2.5rem;
  padding: 6.2rem 6.1rem 4rem;
  border-radius: 0.5rem;
}
.post-info-box.no-image-top {
  margin: 0 auto 2.5rem;
}
.post-info-box + .post-info-box{
  margin-top: 0;
}
.post-info-box:last-child{
  margin-bottom: 0;
}
.post-category{
  color: var(--blog_category_color);
  text-transform: uppercase;
  font-size: 1.4rem;
  line-height: 1.7rem;
  margin-bottom: 2.5rem;
}
.post-title{
  margin-bottom: 2.6rem;
}
.post-title,
.post-title *{
  font-size: 3.8rem;
  line-height: 4.4rem;
  font-weight: 600;
}
.post-autor-img{
  margin-right: 1.5rem;
}
.post-autor-img img{
  height: 4.3rem;
  width: 4.3rem;
  object-fit: cover;
  border-radius: 50%;
}
.post-autor-name,
.post-publish-date{
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 500;
}
.post-box-list {
  margin: 3.5rem 0 5.5rem;
  border: 1px solid #E2E2E2;
  padding: 3.9rem 3rem;
  border-radius: 0.5rem;
}
.post-box-list:first-child,
.post-info .offer-single-outer:first-child,
.post-info .offer-single-outer:last-child{
  margin-top: 0;
}
.post-box-list:last-child{
  margin-bottom: 0;
}
.post-box-list h1,
.post-box-list h2,
.post-box-list h3,
.post-box-list h4,
.post-box-list h5,
.post-box-list h6{
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1;
  margin: 0 0 2.1rem;
}
.post-box-list h1:last-child,
.post-box-list h2:last-child,
.post-box-list h3:last-child,
.post-box-list h4:last-child,
.post-box-list h5:last-child,
.post-box-list h6:last-child{
  margin-bottom: 0;
}
.post-info-box ol li {
  margin-bottom: 0;
}
.post-info-box ol li::before{
  color: #737373;
}
.post-single-info .offer-single-outer {
  border-top: 0;
  margin: 5.5rem 0;
}
.post-single-info .container{
  padding: 0;
  max-width: 100%;
}
.post-single-info .row{
  --bs-gutter-x: 1.5rem;
}
.post-single-info .mlr-20{
  margin: 0;
}
.post-single-info .plr-20{
  padding: 0;
}
.post-single-info .single-info p{
  margin: 0 0 2rem;
}
.post-single-info .single-info p:last-child{
  margin-bottom: 0;
}
.post-info-box ul > li{
  margin-bottom: 0;
}
.post-info-box ul > li:after {
  top: 1.25rem;
  background: transparent;
}
.post-info-box a:not(.btn-wr-0,.btn-wr-1,.btn-wr-2,.btn-wr-3){
  color: var(--body_active_color, #000) !important;
}
.post-autor-v1{
  display: flex;
}
.post-autor-v1-img{
  margin-right: 2.4rem;
  flex-shrink: 0;
}
.post-autor-v1-img img{
  width: 8.9rem;
  height: 8.9rem;
  object-fit: cover;
  border-radius: 50%;
}
.post-autor-v1-info{
  flex-grow: 1;
}
.post-autor-v1-info > span{
  display: block;
  font-size: 1.4rem;
  line-height: 1;
  margin-bottom: 1rem;
  color: var(--blog_category_color);
}
.post-autor-v1-info p{
  margin: 0 0 2rem;
}
.post-autor-v1-info p:last-child{
  margin-bottom: 0;
}
.post-autor-v1-info .link,
.post-autor-v1-info .btn-wr-1,
.post-autor-v1-info .btn-wr-2,
.post-autor-v1-info .btn-wr-3{
  margin-top: 0.5rem;
}
.post-share {
  position: absolute;
  top: 20.3rem;
  margin-left: -14rem;
}
.post-share.sticky {
  position: fixed;
  top: 170px;
}
.post-share.translate{
  position: absolute;
}
.post-share-btn{
  outline: none;
  border: 0;
  border-radius: 50%;
  margin: 0 0 1.2rem;
  height: 3.8rem;
  width: 3.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--body_font_color, #000000);;
}
.post-share-btn:hover{
  background: var(--header_active_color);
}
.post-share-btn img{
  max-width: 100%;
  max-height: 100%;
}
@media (min-width: 1200px) and (max-width: 1359px) {
  .top_photo img {
    height: 50.3rem;
  }
  .post-info-box {
    margin: -14rem auto 2.5rem;
  }
  .post-info-box.post-info-box {
    margin: 0 auto 2.5rem;
  }
  .post-share {
    top: 19.3rem;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .top_photo img {
    height: 44rem;
  }
  .post-info-box {
    max-width: 82.2rem;
    margin: -14rem auto 2.5rem;
    padding: 5.2rem 5.1rem 3rem;
  }
  .post-info-box.no-image-top{
    margin: 0 auto 2.5rem;
  }
  .post-share {
    top: 17.3rem;
    margin-left: -10.5rem;
  }
  .header-mobile .post-share.sticky {
    top: 155px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .top_photo img {
    height: 34rem;
  }
  .post-info-box {
    margin: 2rem auto 2.5rem;
    padding: 4rem;
  }
  .post-title, .post-title * {
    font-size: 3.2rem;
    line-height: 4rem;
  }
  .post-box-list {
    padding: 3.4rem 3rem;
  }
  .post-info-box .title-24 * {
    font-size: 2rem;
    line-height: 2.6rem;
  }
  .post-info-box ol li,
  .post-info-box ul li,
  .post-info-box p{
    font-size: 1.4rem;
    line-height: 3rem;
  }
  .post-share {
    position: relative !important;
    top: 0 !important;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2.4rem;
    margin-left: 0 !important;
    transform: none !important;
  }
  .post-share-btn {
    margin: 0 0.4rem;
  }
}
@media(max-width:767px){
  .top_photo img {
    height: 25.5rem;
  }
  .post-info-box {
    margin: 2rem auto;
    padding: 2.4rem 1.6rem;
  }
  .post-category {
    font-size: 1.2rem;
    line-height: 1.5rem;
    margin-bottom: 2rem;
  }
  .post-title {
    margin-bottom: 2rem;
  }
  .post-title, 
  .post-title * {
    font-size: 2.4rem;
    line-height: 3rem;
  }
  .post-autor-img {
    margin-right: 1rem;
  }
  .post-autor-img img {
    height: 3.6rem;
    width: 3.6rem;
  }
  .post-autor-name, .post-publish-date {
    font-size: 1.2rem;
  }
  .post-box-list {
    margin: 2.4rem 0 3.2rem;
    padding: 2.4rem;
  }
  .post-box-list h1, 
  .post-box-list h2, 
  .post-box-list h3, 
  .post-box-list h4, 
  .post-box-list h5, 
  .post-box-list h6 {
    font-size: 1.6rem;
    margin: 0 0 1.6rem;
  }
  .post-info-box ul li,
  .post-info-box ol li {
    font-size: 1.4rem;
    line-height: 2.6rem;
  }
  .post-single-info .offer-single-outer {
    margin: 3.2rem 0;
  }
  .post-single-info .title-24 *,
  .post-autor-v1-info .title-24 *{
    font-size: 2rem;
    line-height: 2.8rem;
    margin-bottom: 1.6rem;
  }
  .post-single-info .single-info p {
    margin: 0 0 1rem;
    font-size: 1.4rem;
    line-height: 2.6rem;
  }
  .post-autor-v1 {
    display: block;
  }
  .post-autor-v1-img {
    margin-right: 0;
    margin-bottom: 2.4rem;
  }
  .post-autor-v1-img img {
    width: 7.9rem;
    height: 7.9rem;
  }
  .post-autor-v1-info p {
    margin: 0 0 1.4rem;
    font-size: 1.4rem;
    line-height: 2.6rem;
  }
  .post-share {
    position: relative !important;
    top: 0 !important;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2.4rem;
    margin-left: 0 !important;
    transform: none !important;
  }
  .post-share-btn {
    margin: 0 0.4rem;
  }
}
@media(max-width:575px){
  .top_photo img {
    height: 44vw;
  }
}
/* End Articles CSS */
/* start Articles related post CSS */
.sec-reated-post{
  margin: 8rem 0 10.4rem;
}
.sec-reated-post .sec-title{
  margin-bottom: 4.6rem;
}
.reated-post-tab{
  margin-bottom: 4.8rem;
  display: flex;
  justify-content: center;
}
.reated-post-tab ul{
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-bottom: 2.2rem;
}
.reated-post-tab ul:before{
  position: absolute;
  content: "";
  left: -8.2rem;
  bottom: 0;
  width: calc(100% + 16.4rem);
  height: 1px;
  background: #DFDFDF;
}
.reated-post-tab li{
  padding: 0;
  margin: 0 2.2rem;
  line-height: 1.6rem;
}
.reated-post-tab li:after{
  content: none;
}
.reated-post-tab li:first-child{
  margin-left: 0;
}
.reated-post-tab li:last-child{
  margin-right: 0;
}
.reated-post-tab a{
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 600;
  padding: 0;
  position: relative;
  color: var(--body_font_color, #000000);
}
.reated-post-tab li a:after{
  position: absolute;
  content: "";
  left: 0;
  bottom: -2.2rem;
  width: 100%;
  height: 0.3rem;
  z-index: 1;
}
.reated-post-tab li.active a:after,
.reated-post-tab li:hover a:after{
  background: var(--header_active_color);;
}
.reated-post-tab-info{
  display: none;
}
.reated-post-tab-info.active{
  display: block;
}
.reated-post-slider .owl-stage {
  display: flex;
  flex-wrap: wrap;
}
.reated-post-item{
  color: var(--body_font_color, #000000) !important;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.reated-post-item-img{
  margin-bottom: 3.6rem;
}
.reated-post-item-img img{
  width: 100% !important;
  height: 16.9rem !important;
  object-fit: cover;
  border-radius: 0.5rem;
}
.reated-post-info{
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.reated-post-cate{
  text-transform: uppercase;
  font-size: 1.4rem;
  line-height: 1.7rem;
  color: var(--blog_category_color);
  margin-bottom: 2rem;
}
.reated-post-item .title-24{
  margin-bottom: 2rem;
}
.reated-post-item:hover .title-24 *{
  text-decoration: underline !important;
}
.reated-post-author{
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 500;
  color: #3C3C3B;
  margin-bottom: 2rem;
  font-weight: 600;
}
.reated-post-author span + span{
  position: relative;
  font-weight: normal;
  margin-left: 2.4rem;
  font-weight: 600;
}
.reated-post-author span + span:before{
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: -1.4rem;
  margin: auto;
  height: 0.4rem;
  width: 0.4rem;
  border-radius: 50%;
  background: #737373;
}
.reated-post-info p{
  margin-top: 0;
  line-height: 2.6rem;
  margin-bottom: 3rem;
  color: #3C3C3B;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3; 
  -webkit-box-orient: vertical;
  max-height: 7.8rem;
}
.reated-post-info p:last-child{
  margin-bottom: 0;
}
.reated-post-info .link{
  margin-top: auto;
}
.reated-post-slider .owl-nav button{
  top: 6rem;
}
.reated-post-tab-mobile{
  display: none;
  align-items: center;
  border: 1px solid #DDDDDD;
  padding: 0 1.5rem;
  height: 4.8rem;
  font-size: 1.5rem;
  position: relative;
  cursor: pointer;
  background: #fff;
  font-weight: 600;
  width: 100%;
}
.reated-post-tab-mobile::after {
  position: absolute;
  content: "";
  right: 1.5rem;
  width: 1rem;
  height: 1rem;
  border: 2px solid #555;
  border-left: 0;
  border-top: 0;
  transform: rotate(45deg);
  transition-duration: 250ms;
}
.reated-post-tab.open .reated-post-tab-mobile::after{
  transform: rotate(225deg);
}
@media(min-width: 992px) and (max-width: 1199px){
  .reated-post-tab li {
    margin: 0 1.6rem;
  }
}
@media(max-width: 991px){
  .sec-reated-post {
    margin: 5.6rem 0 6.4rem;
  }
  .sec-reated-post .sec-title {
    margin-bottom: 3.2rem;
  }
  .reated-post-tab{
    position: relative;
    z-index: 2;
    margin-bottom: 3.2rem;
  }
  .reated-post-tab-mobile {
    display: flex;
  }
  .reated-post-tab ul {
    margin: 0;
    padding-bottom: 0;
    display: block;
    border: 1px solid #ddd;
    border-top: 0;
    position: absolute;
    width: 100%;
    top: 100%;
    background: #fff;
    z-index: 1;
    visibility: hidden; 
    opacity: 0; 
    transform-origin: 50% 0;
     transform: scaleY(0); 
    transition-duration: 250ms;
  }
  .reated-post-tab ul:before{
    content: none;
  }
  .reated-post-tab.open ul{
    opacity: 1;
    visibility: visible;
    transform: scaleY(1);
  }
  .reated-post-tab li {
    margin: 0;
    line-height: initial;
  }
  .reated-post-tab a {
    display: block;
    padding: 1.5rem;
    border-bottom: 1px solid #ddd;
  }
  .reated-post-tab li:last-child a{
    border: 0;
  }
  .reated-post-tab li a:after {
    bottom: -1px;
  }
  .reated-post-item-img {
    margin-bottom: 2.6rem;
  }
  .reated-post-info p {
    margin-bottom: 2rem;
  }
}
@media(max-width: 767px){
  .sec-reated-post {
    margin: 4rem 0 5.6rem;
  }
  .sec-reated-post .sec-title {
    margin-bottom: 2.8rem;
  }
  .reated-post-tab{
    margin-bottom: 2.8rem;
  }
}
/* end Articles related post CSS */

.post-box-list ol li a:hover{
  text-decoration: underline !important;
}
.video-icon-absolute-top {
  position: absolute;
  top: 0.5rem;
  right: 1rem;
}
.grey-line{
  border-bottom: 1px solid #E2E2E2;
  margin-top: 4rem;
}