@font-face {
  font-family: Manrope;
  src: url('../fonts/Manrope-Medium.ttf') format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Manrope;
  src: url('../fonts/Manrope-SemiBold.ttf') format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Manrope;
  src: url('../fonts/Manrope-ExtraBold.ttf') format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Manrope;
  src: url('../fonts/Manrope-Bold.ttf') format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Font Awesome 6 Free 400";
  src: url('../fonts/Font-Awesome-6-Free-Regular-400.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Font Awesome 6 Brands 400";
  src: url('../fonts/Font-Awesome-6-Brands-Regular-400.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Font Awesome 6 Free Solid 900";
  src: url('../fonts/Font-Awesome-6-Free-Solid-900.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --colorprimary: #2d241d;
  --white: white;
  --colorsecondary: #7c7168;
  --themeorange: #eb8439;
  --black: black;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.w-pagination-wrapper {
  flex-wrap: wrap;
  justify-content: center;
  display: flex;
}

.w-pagination-previous {
  color: #333;
  background-color: #fafafa;
  border: 1px solid #ccc;
  border-radius: 2px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 9px 20px;
  font-size: 14px;
  display: block;
}

.w-pagination-previous-icon {
  margin-right: 4px;
}

.w-pagination-next {
  color: #333;
  background-color: #fafafa;
  border: 1px solid #ccc;
  border-radius: 2px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 9px 20px;
  font-size: 14px;
  display: block;
}

.w-pagination-next-icon {
  margin-left: 4px;
}

.w-layout-hflex {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

.w-checkbox {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}

.w-checkbox:before {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox:after {
  content: " ";
  clear: both;
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox-input {
  float: left;
  margin: 4px 0 0 -20px;
  line-height: normal;
}

.w-checkbox-input--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 2px;
  width: 12px;
  height: 12px;
}

.w-checkbox-input--inputType-custom.w--redirected-checked {
  background-color: #3898ec;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/custom-checkbox-checkmark.589d534424.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-color: #3898ec;
}

.w-checkbox-input--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

.mobilemenucontactlinkscontainer {
  display: none;
}

.navbarcontacticon {
  font-family: "Font Awesome 6 Free 400", sans-serif;
}

.navbarsecondarywrapper {
  background-color: var(--colorprimary);
}

.brand-navbar {
  align-items: center;
  width: 178px;
  display: flex;
}

.nav-menu {
  grid-column-gap: 0px;
  background-color: #c8c8c800;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
  display: flex;
  position: static;
}

.navbar-container {
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 1352px;
  margin-left: auto;
  margin-right: auto;
  padding: 20px 24px 0;
  display: flex;
}

.brand-image-nav {
  height: 100%;
}

.right-side-nav {
  justify-content: flex-end;
  align-items: center;
  display: none;
}

.navbarcontact {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: #f6f7f9;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  transition: color .2s;
  display: flex;
}

.navbarcontact:hover {
  color: #e0503d;
}

.navbar {
  background-color: #ddd0;
  position: absolute;
  inset: 0% 0% auto;
}

.nav-link {
  color: var(--white);
  justify-content: center;
  align-items: center;
  height: 100%;
  margin-left: 0;
  margin-right: 0;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 500;
  transition: opacity .2s;
  display: flex;
}

.nav-link:hover {
  opacity: .75;
}

.nav-link.w--current {
  color: var(--white);
}

.navbarsecondarycontainer {
  justify-content: space-between;
  align-items: center;
  max-width: 1352px;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
}

.navbarcontactlinkscontainer {
  grid-column-gap: 19px;
  grid-row-gap: 19px;
  flex: 0 auto;
  justify-content: flex-end;
  align-items: center;
  padding: 0 16px;
  display: flex;
}

.navbar-grid {
  grid-template-rows: 100%;
  grid-template-columns: 360px auto;
  height: 100%;
  position: relative;
}

.secondarynavbaritems {
  color: var(--white);
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-top: 12px;
  padding-bottom: 12px;
  display: flex;
}

.secnavbartext {
  color: var(--white);
}

.sitebody {
  color: var(--colorprimary);
  letter-spacing: -.2px;
  font-family: Manrope, sans-serif;
  font-weight: 500;
  text-decoration: none;
}

.secnavbaritem {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.secnavbarlink {
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
  transition: opacity .2s;
}

.secnavbarlink:hover {
  opacity: .75;
}

.secnavbardivider {
  background-color: var(--colorsecondary);
  flex: 0 auto;
  align-self: auto;
  width: 1px;
  height: 22px;
  min-height: 100%;
}

.secnavbarfacebook {
  text-decoration: none;
  transition: opacity .2s;
}

.secnavbarfacebook:hover {
  opacity: .75;
}

.facebookicon {
  color: var(--white);
  font-family: "Font Awesome 6 Brands 400", sans-serif;
  font-size: 20px;
  text-decoration: none;
}

.navbarlinkscontainer {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  background-color: var(--colorprimary);
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  padding-left: 32px;
  padding-right: 32px;
  display: flex;
}

.hero-a-path-wrap {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  align-items: center;
  margin-bottom: 24px;
  display: flex;
}

.cta-wrap {
  display: flex;
}

.main-container {
  max-width: 1348px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  position: relative;
}

.marquee-overlay {
  z-index: 9;
  background-image: linear-gradient(#fff, #fff0);
  height: 278px;
  position: absolute;
  inset: 0% 0% auto;
}

.marquee-overlay.bottom {
  background-image: linear-gradient(to top, #fff, #fff0);
  inset: auto 0% 0%;
}

.grid-halves {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  width: 100%;
}

.grid-halves.hero-grid-home-a {
  place-items: center;
}

.marquee-item {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.subtitle {
  margin-bottom: 32px;
  font-size: 24px;
  font-weight: 400;
  line-height: 160%;
}

.marquee-image-wrap {
  border-radius: 12px;
  max-width: 310px;
  height: 410px;
  overflow: hidden;
}

.mega-h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 86px;
  line-height: 110%;
}

.marquee-column {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.limit-480 {
  width: 100%;
  max-width: 480px;
}

.marquee-wrap {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: 550px;
  height: 930px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.section {
  padding-top: 80px;
  padding-bottom: 80px;
}

.section.hero-home-a {
  padding-bottom: 0;
}

.cta {
  text-align: center;
  background-color: #d4202a;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  height: 52px;
  padding: 10px 24px;
  font-size: 16px;
  font-weight: 700;
  line-height: 200%;
  transition: background-color .2s;
  display: flex;
}

.cta:hover {
  background-color: #d4202acc;
}

.span-accent-1 {
  color: #d4202a;
}

.marquee-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.hero-a-content-wrap {
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  display: flex;
}

.marquee {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: column;
  display: flex;
}

.marquee.reverse {
  justify-content: flex-end;
}

.backgroundimagewrapper {
  z-index: -1;
  position: absolute;
  inset: 0%;
}

.mainheadersection {
  position: relative;
}

.headrbackgroundimage {
  object-position: center;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.mainheadertext1 {
  color: var(--white);
  font-family: Manrope, sans-serif;
  font-size: 42px;
}

.headerofferdiv {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  border-radius: 8px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  position: relative;
  overflow: hidden;
}

.mainheadercontent {
  padding-top: 270px;
  padding-bottom: 100px;
}

.headeoffercontent {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: #fcf9f7;
  border-radius: 8px;
  grid-template-rows: auto;
  grid-template-columns: .9fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.offer {
  padding: 35px 0 35px 25px;
  position: relative;
  overflow: visible;
}

.offer.adsadasd {
  overflow: hidden;
}

.offerbackgimagewrapper {
  z-index: -1;
  margin-bottom: -55px;
  position: relative;
}

.offericon {
  position: absolute;
  inset: -24px auto auto 24px;
}

.offer1 {
  z-index: 10;
  border-right: 1px solid var(--colorsecondary);
  position: relative;
}

.offertext1 {
  font-size: 16px;
  font-weight: 800;
  line-height: 120%;
}

.offertext2 {
  margin-top: 10px;
}

.offertext3 {
  color: var(--themeorange);
  margin-top: 4px;
  font-weight: 800;
  text-decoration: none;
  transition: opacity .2s;
  display: block;
}

.offertext3:hover {
  opacity: .8;
}

.offerlinks {
  margin-top: 10px;
}

.headerofferlink {
  color: var(--colorprimary);
  line-height: 15px;
  text-decoration: none;
  transition: opacity .2s;
  display: block;
}

.headerofferlink:hover {
  opacity: .8;
}

.div-block {
  margin-top: 18px;
}

.frame-33 {
  grid-row-gap: 19px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 738px;
  text-decoration: none;
  display: flex;
}

.text {
  color: #7c7168;
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Manrope, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 15px;
  text-decoration: none;
}

.text-2 {
  color: #2d241d;
  letter-spacing: -.03em;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Manrope, sans-serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 111%;
  text-decoration: none;
}

.image {
  width: 100%;
  height: 100%;
}

.homeoffersection {
  margin-top: 120px;
}

.featuredofferswrapper2 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 24px;
}

.featuredofferslist1 {
  grid-column-gap: 20px;
  grid-row-gap: 64px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.offerwrapper {
  border-radius: 8px;
  height: 300px;
  text-decoration: none;
  transition: opacity .2s;
  display: block;
  position: relative;
  overflow: visible;
}

.offerwrapper:hover {
  opacity: .9;
}

.offerthumbnailimage {
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  width: 100%;
  height: 100%;
  display: block;
}

.offercardinfo {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  background-color: var(--white);
  border-top-right-radius: 8px;
  justify-content: flex-start;
  align-items: center;
  width: 64%;
  margin-top: 20px;
  padding: 20px 10px;
  display: flex;
  position: absolute;
  inset: auto auto 0% 0%;
  overflow: hidden;
}

.offercardtext {
  color: var(--colorprimary);
  font-size: 20px;
  font-weight: 700;
}

.home-cta-section {
  margin-top: 86px;
}

.frame-34 {
  grid-row-gap: 32px;
  background-color: var(--colorsecondary);
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 64px;
  padding-bottom: 64px;
  padding-right: 60px;
  text-decoration: none;
  display: flex;
  position: relative;
}

.aaa {
  color: #fff;
  letter-spacing: -.03em;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Manrope, sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 117%;
  text-decoration: none;
}

.vectors-wrapper {
  object-fit: cover;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  height: 52px;
  text-decoration: none;
  display: flex;
}

.div-block-2 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
  position: relative;
}

.div-block-3 {
  z-index: -1;
  background-color: var(--colorsecondary);
  position: absolute;
  inset: 0% 0% 0% -400px;
}

.div-block-4 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
  position: static;
  inset: 0%;
}

.cta-imageoffset {
  z-index: -10;
  position: relative;
  left: -125px;
  right: -125px;
}

.cta-image-wrapper {
  position: absolute;
  inset: 0% -400px 0% 0%;
}

.cta-image {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}

.cta-link {
  transition: opacity .2s;
}

.cta-link:hover {
  opacity: .8;
}

.features-section {
  background-color: #fcf9f7;
  margin-top: 0;
  padding-top: 120px;
  padding-bottom: 100px;
}

.frame-39 {
  grid-row-gap: 65px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 1384px;
  text-decoration: none;
  display: flex;
}

.text-3 {
  color: #2d241d;
  letter-spacing: -.04em;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Manrope, sans-serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 111%;
  text-decoration: none;
}

.frame-38 {
  grid-row-gap: 41px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  text-decoration: none;
  display: flex;
}

.image-9 {
  object-fit: cover;
}

.frame-37 {
  grid-column-gap: 52px;
  flex: 0 auto;
  justify-content: flex-start;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.frame-40 {
  grid-row-gap: 21px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 295px;
  text-decoration: none;
  display: flex;
}

.wycena-24 {
  color: #2d241d;
  letter-spacing: -.03em;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Manrope, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 111%;
  text-decoration: none;
}

.text-4 {
  color: #7c7168;
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Manrope, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 150%;
  text-decoration: none;
}

.frame-41 {
  grid-row-gap: 21px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 301px;
  text-decoration: none;
  display: flex;
}

.info-section {
  margin-top: 120px;
}

.info-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.frame-42 {
  grid-column-gap: 77px;
  flex: 0 auto;
  justify-content: flex-start;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.frame-43 {
  grid-row-gap: 52px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 565px;
  text-decoration: none;
  display: flex;
}

.frame-44 {
  grid-row-gap: 21px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  text-decoration: none;
  display: flex;
}

.text-5 {
  color: #7c7168;
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Manrope, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 15px;
  text-decoration: none;
}

.text-6 {
  color: #2d241d;
  letter-spacing: -.03em;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Manrope, sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 111%;
  text-decoration: none;
}

.vectors-wrapper-2 {
  object-fit: cover;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.image-10 {
  object-fit: cover;
  height: 100%;
}

.image-11 {
  width: 100%;
}

.frame-45 {
  grid-row-gap: 43px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 530px;
  margin-top: 18px;
  text-decoration: none;
  display: flex;
}

.hfdudshfkjsdhf {
  color: #7c7168;
  letter-spacing: -.02em;
  margin-top: -8px;
  margin-bottom: -8px;
  font-family: Manrope, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
  text-decoration: none;
}

.text-7 {
  color: #7c7168;
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Manrope, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 140%;
  text-decoration: none;
}

.div-block-5 {
  height: 100%;
}

.blog-section {
  margin-top: 100px;
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
}

.frame-46 {
  grid-column-gap: 20px;
  grid-row-gap: 16px;
  flex: 0 auto;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  text-decoration: none;
  display: grid;
}

.frame-47 {
  grid-row-gap: 19px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 575px;
  text-decoration: none;
  display: flex;
}

.text-8 {
  color: #7c7168;
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Manrope, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 15px;
  text-decoration: none;
}

.text-9 {
  color: #2d241d;
  letter-spacing: -.03em;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Manrope, sans-serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 111%;
  text-decoration: none;
}

.text-10 {
  color: #7c7168;
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Manrope, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 160%;
  text-decoration: none;
}

.blog-section-background {
  z-index: -1;
  background-color: #fcf9f7;
  height: 50%;
  position: absolute;
  inset: 0% 0% auto;
}

.featuredblogslist {
  grid-column-gap: 20px;
  grid-row-gap: 64px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.featuredblogslist.home {
  grid-template-rows: auto;
}

.frame-48 {
  grid-row-gap: 10px;
  background-color: #fff;
  border-top-right-radius: 8px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 350px;
  height: 181px;
  margin-top: -55px;
  padding: 20px 24px;
  text-decoration: none;
  display: flex;
  position: relative;
}

.frame-49 {
  grid-row-gap: 21px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  text-decoration: none;
  display: flex;
}

.frame-50 {
  grid-row-gap: 14px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  text-decoration: none;
  display: flex;
}

.frame-51 {
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  padding-right: 12px;
  text-decoration: none;
  display: flex;
}

.text-11 {
  color: #7c7168;
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Manrope, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 15px;
  text-decoration: none;
}

.text-12 {
  color: #7c7168;
  text-align: right;
  letter-spacing: -.03em;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Manrope, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 111%;
  text-decoration: none;
}

.text-13 {
  color: #2d241d;
  letter-spacing: -.04em;
  height: 72px;
  margin-top: 0;
  margin-bottom: 10px;
  font-family: Manrope, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 111%;
  text-decoration: none;
  overflow: hidden;
}

.text-14 {
  color: #eb8339;
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Manrope, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 15px;
  text-decoration: none;
}

.blogwrapper {
  aspect-ratio: 444 / 210;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity .2s;
  display: block;
  position: relative;
  overflow: visible;
}

.blogwrapper:hover {
  opacity: .9;
}

.footersection {
  padding-top: 70px;
  padding-bottom: 40px;
  position: relative;
}

.frame-15 {
  z-index: -1;
  grid-row-gap: 10px;
  background-color: #2d241d;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  text-decoration: none;
  display: flex;
  position: absolute;
  inset: 0%;
}

.image-28 {
  object-fit: cover;
  background-color: #2d241df5;
  width: 100%;
  height: 100%;
}

.frame-62 {
  grid-row-gap: 29px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 1384px;
  text-decoration: none;
  display: flex;
}

.frame-58 {
  grid-row-gap: 63px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  text-decoration: none;
  display: flex;
}

.frame-57 {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  text-decoration: none;
  display: grid;
}

.frame-56 {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex: 0 auto;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: flex-start;
  text-decoration: none;
  display: grid;
}

.frame-63 {
  grid-row-gap: 34px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  text-decoration: none;
  display: flex;
}

.frame-64 {
  grid-row-gap: 13px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  text-decoration: none;
  display: flex;
}

.text-15 {
  color: #fff;
  letter-spacing: -.03em;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Manrope, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 111%;
  text-decoration: none;
}

.vectors-wrapper-3 {
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 2.02679e-14px;
  text-decoration: none;
  display: flex;
}

.frame-65 {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  text-decoration: none;
  display: flex;
}

.frame-66 {
  grid-column-gap: 10px;
  flex: 0 auto;
  justify-content: flex-start;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.tartak-ko-odziej-skup-drewna-i-sprzeda-tarcicy-piekielnik-290-34-472-piekielnik {
  color: #fff;
  letter-spacing: -.03em;
  max-width: 211px;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Manrope, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 120%;
  text-decoration: none;
}

.frame-53 {
  grid-row-gap: 32px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 448px;
  text-decoration: none;
  display: flex;
}

.frame-52 {
  grid-row-gap: 13px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  text-decoration: none;
  display: flex;
}

.vectors-wrapper-4 {
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  height: 2.74321e-14px;
  text-decoration: none;
  display: flex;
}

.text-16 {
  color: #fff;
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Manrope, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 140%;
  text-decoration: none;
}

.frame-10 {
  grid-column-gap: 10px;
  -webkit-backdrop-filter: blur(1px);
  backdrop-filter: blur(1px);
  background-color: #fff;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  width: 163px;
  height: 40px;
  padding-top: 13px;
  padding-bottom: 13px;
  text-decoration: none;
  display: flex;
}

.text-17 {
  color: #2d241d;
  text-align: center;
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Manrope, sans-serif;
  font-size: 16px;
  font-weight: 800;
  line-height: 15px;
  text-decoration: none;
}

.frame-55 {
  flex: 0 auto;
  justify-content: space-between;
  align-items: center;
  padding-left: 20px;
  text-decoration: none;
  display: flex;
}

.frame-54 {
  grid-row-gap: 1px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 130px;
  text-decoration: none;
  display: flex;
}

.text-18 {
  color: #fff;
  letter-spacing: -.03em;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Manrope, sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 130%;
  text-decoration: none;
}

.image-36 {
  object-fit: cover;
  border-radius: 8px;
}

.vectors-wrapper-5 {
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  height: 8.47456e-14px;
  text-decoration: none;
  display: flex;
}

.frame-61 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  text-decoration: none;
  display: grid;
}

.frame-60 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  text-decoration: none;
  display: grid;
}

.vectors-wrapper-6 {
  object-fit: cover;
  justify-content: center;
  align-items: center;
  width: 138px;
  height: 43.0488px;
  text-decoration: none;
  display: flex;
}

.frame-59 {
  grid-column-gap: 24px;
  flex: 0 auto;
  justify-content: flex-start;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.text-19 {
  color: #cebfb3;
  letter-spacing: -.03em;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Manrope, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 130%;
  text-decoration: none;
}

.footerdivider {
  background-color: #7c7168;
  width: 100%;
  height: 1px;
  margin-top: 16px;
}

.footerdivider.bigdivider {
  margin-top: 24px;
}

.link-block {
  text-decoration: none;
}

.link-block-2 {
  text-decoration: none;
  transition: opacity .2s;
}

.link-block-2:hover {
  opacity: .8;
}

.link-block-3 {
  margin-top: 24px;
  text-decoration: none;
}

.text-block {
  color: var(--white);
  font-weight: 600;
}

.footercontactlink {
  grid-column-gap: 10px;
  text-align: left;
  flex: 0 auto;
  justify-content: flex-start;
  align-items: center;
  text-decoration: none;
  transition: opacity .2s;
  display: flex;
}

.footercontactlink:hover {
  opacity: .8;
}

.div-block-6 {
  margin-top: 24px;
}

.link-block-3-copy {
  margin-top: 24px;
  text-decoration: none;
  transition: opacity .2s;
}

.link-block-3-copy:hover {
  opacity: .8;
}

.link-block-4 {
  text-decoration: none;
}

.text-block-2 {
  color: var(--white);
}

.div-block-7 {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  justify-content: flex-start;
  align-items: center;
  padding-left: 20px;
  display: flex;
}

.link-block-5 {
  justify-content: flex-start;
  align-items: center;
  width: 72px;
  text-decoration: none;
  transition: opacity .2s;
  display: flex;
}

.link-block-5:hover {
  opacity: .8;
}

.creditstext {
  color: var(--white);
  font-weight: 800;
}

.link-block-5-copy {
  justify-content: flex-start;
  align-items: center;
  text-decoration: none;
  transition: opacity .2s;
  display: flex;
}

.link-block-5-copy:hover {
  opacity: .8;
}

.drodpdown-grid-pages {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  margin-top: 12px;
  margin-bottom: 12px;
  display: block;
}

.cta-list {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-direction: column;
  display: flex;
}

.dropdown-chevron-nav {
  color: var(--white);
  height: 12px;
  margin-left: 8px;
}

.dropdown-chevron-nav.dropdownicon {
  color: var(--white);
}

.space-8 {
  height: 8px;
}

.dropdown-list-nav {
  color: var(--white);
  overflow: hidden;
}

.dropdown-list-nav.w--open {
  background-color: #fff;
  border: 1px solid #f9f9f9;
  border-radius: 0 0 12px 12px;
  padding-left: 16px;
  padding-right: 16px;
  inset: 44px auto auto 0%;
  box-shadow: 0 1px 20px #4e4e4e1a;
}

.span-accent-2 {
  color: #e51f3d;
}

.cta-list-item {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 200%;
  display: flex;
}

.cta-list-item:hover {
  color: #131313d9;
}

.dropdown-toggle-nav {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  color: var(--white);
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 12px 12px 12px 16px;
  transition: opacity .2s;
  display: flex;
  position: static;
}

.dropdown-toggle-nav:hover {
  opacity: .8;
}

.dropdown-nav {
  justify-content: center;
  align-items: center;
  height: 100%;
  margin-left: 0;
  margin-right: 0;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  position: static;
}

.dropdown-nav.rightsideinfodropdown {
  color: var(--white);
  position: relative;
}

.ctacontent {
  width: 100%;
}

.space-32 {
  height: 32px;
}

.contacticon {
  text-align: center;
  width: 24px;
  font-family: "Font Awesome 6 Free Solid 900", sans-serif;
  font-size: 24px;
}

.dropdowntext {
  color: var(--white);
}

.dropdown-icon {
  font-family: "Font Awesome 6 Free Solid 900", sans-serif;
}

.offerlistlink {
  color: var(--colorprimary);
  width: 240px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  display: block;
}

.offerlistlink.whole {
  background-color: var(--white);
  color: var(--white);
  border-radius: 8px;
  transition: opacity .2s;
}

.offerlistlink.whole:hover {
  opacity: .9;
}

.text-block-3 {
  color: var(--colorprimary);
  padding: 8px;
  font-size: 14px;
  line-height: 120%;
  transition: opacity .2s;
}

.text-block-3:hover {
  opacity: .8;
}

.offeritemslist {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.navbarbackground {
  height: 209px;
  margin-top: 40px;
}

.image-37 {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.offersection {
  margin-top: 70px;
}

.frame-67 {
  grid-row-gap: 13px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 893px;
  text-decoration: none;
  display: flex;
}

.breadcrumbsstring {
  color: #7c7168;
  letter-spacing: -.02em;
  white-space: nowrap;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Manrope, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 15px;
  text-decoration: none;
}

.text-20 {
  color: #2d241d;
  letter-spacing: -.03em;
  margin: 0;
  font-family: Manrope, sans-serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 111%;
  text-decoration: none;
}

.ddd {
  color: #7c7168;
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  text-decoration: none;
}

.fsdfsdfsd {
  color: #7c7168;
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Manrope, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
  text-decoration: none;
}

.fdsfsdf {
  color: #7c7168;
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Manrope, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 140%;
  text-decoration: none;
}

.features-section2 {
  background-color: #fcf9f7;
  margin-top: 100px;
  padding-top: 100px;
  padding-bottom: 100px;
}

.collection-list-wrapper {
  margin-top: 50px;
}

.frame-73 {
  grid-row-gap: 10px;
  border: 1px solid #e4ddd7;
  border-radius: 8px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding: 24px;
  text-decoration: none;
  display: flex;
  position: relative;
}

.vectors-wrapper-7 {
  object-fit: cover;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
}

.frame-72 {
  grid-column-gap: 24px;
  flex: 0 auto;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  text-decoration: none;
  display: flex;
}

.image-14 {
  object-fit: cover;
  border-radius: 8px;
  width: 100%;
  max-width: 405px;
  height: 100%;
}

.frame-71 {
  grid-row-gap: 20px;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  min-height: 100%;
  text-decoration: none;
  display: flex;
}

.frame-70 {
  grid-row-gap: 12px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  text-decoration: none;
  display: flex;
}

.text-21 {
  color: #2d241d;
  letter-spacing: -.03em;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Manrope, sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 111%;
  text-decoration: none;
}

.nie-ma-lepszego-wyko-czenia-domowych-wn-trz-ni-drewniana-pod-oga-naturalnie-ciep-a-i-przyjemna-nawet-pod-bosymi-stopami-jest-dzi-symbolem-presti-u-i-przytulno-ci-deski-pod-ogowe-z-tartaku-ko-odziej-pozwol-ci-urz-dzi-domowe-wn-trza-w-najlepszym-stylu {
  color: #7c7168;
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  text-decoration: none;
}

.frame-69 {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex: 0 auto;
  justify-content: flex-start;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.vectors-wrapper-8 {
  object-fit: cover;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  height: 52px;
  text-decoration: none;
  display: flex;
}

.nie-ma-lepszego-wyko-czenia-domowych-wn-trz-ni-drewniana-pod-oga-naturalnie-ciep-a-i-przyjemna-nawet-pod-bosymi-stopami-jest-dzi-symbolem-presti-u-i-przytulno-ci-deski-pod-ogowe-z-tartaku-ko-odziej-pozwol-ci-urz-dzi-domowe-wn-trza-w-najlepszym-stylu-0 {
  color: #7c7168;
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Manrope, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
  text-decoration: none;
}

.nie-ma-lepszego-wyko-czenia-domowych-wn-trz-ni-drewniana-pod-oga-naturalnie-ciep-a-i-przyjemna-nawet-pod-bosymi-stopami-jest-dzi-symbolem-presti-u-i-przytulno-ci-deski-pod-ogowe-z-tartaku-ko-odziej-pozwol-ci-urz-dzi-domowe-wn-trza-w-najlepszym-stylu-1 {
  color: #7c7168;
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Manrope, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 140%;
  text-decoration: none;
}

.rich-text-block {
  color: var(--colorsecondary);
  margin-top: 14px;
  font-family: Manrope, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 140%;
}

.div-block-8 {
  aspect-ratio: 405 / 305;
  flex: none;
}

.div-block-9 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border: 1px solid #e4ddd7;
  border-radius: 8px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  margin-top: 0;
  display: grid;
}

.div-block-10 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border-bottom: 1px solid #e4ddd7;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: center start;
  display: flex;
}

.tablekey {
  color: var(--colorsecondary);
  text-align: center;
  border-right: 1px solid #e4ddd7;
  flex: none;
  width: 270px;
  padding: 6px 16px;
  font-family: Manrope, sans-serif;
  font-size: 16px;
  font-weight: 500;
}

.tablevalue {
  color: var(--colorsecondary);
  text-align: center;
  border-right: 1px solid #e4ddd7;
  border-radius: 1px;
  flex: 1;
  padding: 6px 16px;
  font-family: Manrope, sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.link-block-6 {
  transition: opacity .2s;
}

.link-block-6:hover {
  opacity: .81;
}

.next {
  background-color: var(--colorprimary);
  color: var(--white);
  border-radius: 10px;
  padding: 11px 24px;
  transition: opacity .2s;
}

.next:hover {
  opacity: .8;
}

.text-block-4 {
  font-family: Manrope, sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.offeritemsection {
  margin-top: 110px;
}

.div-block-11 {
  grid-column-gap: 36px;
  grid-row-gap: 36px;
  grid-template-rows: auto;
  grid-template-columns: .9fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 36px;
  display: grid;
}

.frame-67-copy {
  grid-column-gap: 2px;
  grid-row-gap: 2px;
  flex-flow: row;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 893px;
  text-decoration: none;
}

.image-38 {
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
  border-radius: 8px;
  width: 100%;
  height: 100%;
}

.text-block-5 {
  font-family: Manrope, sans-serif;
  font-weight: 500;
}

.div-block-12 {
  margin-top: 16px;
}

.collection-list {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.image-39 {
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  width: 100%;
  height: 100%;
  position: static;
}

.lightbox-link {
  aspect-ratio: 107 / 81;
  width: 100%;
  height: 100%;
  transition: opacity .2s;
}

.lightbox-link:hover {
  opacity: .8;
}

.lightbox-link-2 {
  width: 100%;
  height: 100%;
  transition: opacity .2s;
}

.lightbox-link-2:hover {
  opacity: .8;
}

.div-block-13 {
  flex-flow: column;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}

.text-22 {
  color: #7c7168;
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Manrope, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 15px;
  text-decoration: none;
}

.div-block-14 {
  margin-top: 58px;
}

.div-block-15 {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 16px;
  display: flex;
}

.div-block-12-copy {
  flex: none;
  margin-top: 0;
}

.collection-list-copy {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  border: 1px solid #e4ddd7;
  border-radius: 8px;
  flex-flow: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: flex;
}

.lightbox-link-copy {
  aspect-ratio: 405 / 301;
  width: 100%;
  height: 100%;
  transition: opacity .2s;
}

.lightbox-link-copy:hover {
  opacity: .8;
}

.image-39-copy {
  object-fit: contain;
  object-position: center;
  border-radius: 8px;
  width: 100%;
  height: 100%;
  position: static;
}

.tablekey-copy {
  color: var(--colorsecondary);
  text-align: center;
  border-right: 1px solid #e4ddd7;
  width: 300px;
  padding: 12px 30px;
  font-family: Manrope, sans-serif;
  font-size: 16px;
  font-weight: 500;
}

.div-block-9-copy {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border: 1px solid #e4ddd7;
  border-radius: 8px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  margin-top: 0;
  display: grid;
}

.collection-list-2 {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.pagination {
  margin-top: 32px;
}

.blog-divider {
  background-color: #e4ddd7;
  width: 100%;
  height: 1px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.text-23 {
  color: #7c7168;
  text-align: center;
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Manrope, sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 15px;
  text-decoration: none;
}

.link-block-7 {
  background-color: var(--white);
  border-width: 0;
  border-radius: 8px;
  margin-left: 0;
  margin-right: 0;
  padding: 8px 12px;
  text-decoration: none;
  transition: opacity .2s;
  display: block;
}

.link-block-7:hover {
  opacity: .8;
}

.div-block-17 {
  justify-content: center;
  align-items: center;
  margin-top: 24px;
  display: flex;
}

.div-block-18 {
  overflow-x: hidden;
}

.technical-data-empty-state {
  display: none;
}

.headerofferdivproductpage {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  border-radius: 8px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 32px;
  position: relative;
  overflow: visible;
}

.aboutusheadersection {
  position: relative;
}

.mainabouusheadertext {
  color: var(--white);
  text-align: center;
  max-width: 830px;
  margin-left: auto;
  margin-right: auto;
  font-family: Manrope, sans-serif;
  font-size: 50px;
  line-height: 56px;
}

.aboutussection {
  margin-top: 70px;
}

.breadcrumblink {
  color: #7c7168;
  justify-content: center;
  align-items: center;
  height: 100%;
  margin-right: -1px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: opacity .2s;
}

.breadcrumblink:hover {
  opacity: .75;
}

.breadcrumblink.form {
  font-weight: 800;
}

.frame-67-copy {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: none;
  text-decoration: none;
  display: flex;
}

.richtextcontainer {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  position: relative;
}

.aboutusrichtext {
  margin-top: 32px;
  font-size: 16px;
  line-height: 22px;
}

.paragraph {
  font-size: 22px;
}

.code-embed {
  margin-top: 0;
  margin-bottom: -5px;
}

.mapwrapper {
  margin-top: 80px;
}

.mapheader {
  margin-bottom: 40px;
}

.mapheadertext {
  color: #2d241d;
  text-align: center;
  letter-spacing: -.03em;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Manrope, sans-serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 111%;
  text-decoration: none;
}

.aboutuscontactbuttons {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 24px;
  display: flex;
}

.footercontactlink-copy {
  grid-column-gap: 10px;
  color: var(--colorprimary);
  text-align: left;
  flex: 0 auto;
  justify-content: flex-start;
  align-items: center;
  text-decoration: none;
  transition: opacity .2s;
  display: flex;
}

.footercontactlink-copy:hover {
  opacity: .8;
}

.text-block-2-copy {
  text-align: center;
}

.text-block-copy {
  font-weight: 600;
}

.link-block-3-copy-copy {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  background-color: var(--colorprimary);
  color: var(--white);
  border-radius: 8px;
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  display: flex;
}

.link-block-3-copy-copy.form {
  max-width: 200px;
}

.fontawesomeicon {
  font-family: "Font Awesome 6 Free Solid 900", sans-serif;
  font-size: 32px;
  line-height: 39px;
}

.hero-a-content-wrap-copy {
  flex-flow: column;
  display: flex;
}

.articledate {
  color: var(--white);
  text-align: center;
  font-size: 20px;
  font-weight: 600;
}

.blog-index-section {
  margin-top: 0;
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
}

.pagination-2 {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  margin-top: 32px;
}

.blog-section-background-copy {
  z-index: -1;
  background-color: #fcf9f7;
  height: 100%;
  position: absolute;
  inset: 0% 0% auto;
}

.text-block-6 {
  font-size: 16px;
}

.contactsection {
  margin-top: 70px;
  margin-bottom: 70px;
}

.contactpagecontactbutton {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 24px;
  display: flex;
}

.flex-block {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 40px;
  display: grid;
}

.flex-block-2 {
  justify-content: flex-end;
  align-items: center;
}

.fieldlabel {
  color: #333;
  text-transform: none;
  margin-bottom: 8px;
  font-family: Manrope, sans-serif;
  font-size: 14px;
  font-weight: 600;
}

.fieldlabel.rodolabel {
  margin-bottom: 0;
}

.error-message-2 {
  margin-top: 50px;
}

.rodocheckbox {
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 20px;
}

.formgrid {
  grid-template-rows: auto;
}

.btn-primary {
  color: #fff;
  text-align: center;
  letter-spacing: .06em;
  text-transform: uppercase;
  background-color: #1f0707;
  border: 1px solid #1f0707;
  border-radius: 0;
  justify-content: center;
  padding: 26px 38px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.111em;
  text-decoration: none;
  transition: border-color .3s, background-color .3s, transform .3s, color .3s;
}

.btn-primary:hover {
  color: #fff;
  background-color: #b5703b;
  border-color: #b5703b;
  transform: scale(.98);
}

.btn-primary.submit-button {
  padding-top: 20px;
  padding-bottom: 20px;
}

.success-message-2 {
  background-color: #def2e6;
}

.rodocheckboxinput {
  justify-content: flex-end;
  align-items: center;
}

.forminput {
  color: #333;
  border-radius: 6px;
  width: 100%;
  margin-bottom: 24px;
  padding: 8px 12px;
}

.forminput.formtextfield {
  min-height: 160px;
}

.forminput.formtextfield.textfieldsmall {
  min-height: 70px;
}

.forminput.inputdatepicker {
  color: #979797;
  font-size: 14px;
}

.rodolink {
  text-decoration: none;
}

.flex-block-3 {
  grid-column-gap: 62px;
  grid-row-gap: 62px;
  margin-top: 50px;
  margin-bottom: 50px;
}

.form-block {
  margin-top: 33px;
}

.text-20-copy {
  color: #2d241d;
  letter-spacing: -.03em;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Manrope, sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 111%;
  text-decoration: none;
}

.thankyousection {
  margin-top: 110px;
  margin-bottom: 110px;
}

.frame-67-copy-copy {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-column-gap: 2px;
  grid-row-gap: 2px;
  flex-flow: row;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 893px;
  text-decoration: none;
  display: flex;
}

.frame-67-copy {
  grid-row-gap: 13px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  text-decoration: none;
  display: flex;
}

.frame-67-copy-copy-copy {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: none;
  text-decoration: none;
  display: flex;
}

.infscrollpagination {
  display: none;
}

.productcard-button {
  color: var(--white);
  background-color: #7c7168;
  border-radius: 4px;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: opacity .2s;
}

.productcard-button:hover {
  opacity: .81;
}

.productcard-button.aaaa {
  background-color: #2d241d;
}

.productcardbutton2 {
  color: var(--white);
  text-decoration: none;
}

.logoicon {
  z-index: 0;
  opacity: .05;
  width: 200px;
  position: absolute;
  inset: -34px auto auto 40px;
}

.div-block-19 {
  margin-top: 8px;
}

.slide-nav {
  display: none;
}

.right-arrow, .left-arrow {
  color: var(--colorprimary);
}

.mask {
  background-color: #fff0;
}

.slider {
  aspect-ratio: 630 / 475;
  background-color: #ddd0;
  width: 100%;
  height: 450px;
  display: block;
}

.illustrationsinglelistwrapper, .illustrationlist, .illustrationitem {
  height: 100%;
}

.featuredofferslist3 {
  grid-column-gap: 20px;
  grid-row-gap: 64px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.featuredofferslist2 {
  grid-column-gap: 20px;
  grid-row-gap: 64px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.featuredofferswrapper1 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 76px;
}

.div-block-20 {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.collection-list-deskitarasowe {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.div-block-21 {
  aspect-ratio: 3 / 2;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 260px;
  display: flex;
}

@media screen and (max-width: 991px) {
  .mobilemenucontactlinkscontainer {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
  }

  .hamburger-wrap {
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    display: flex;
  }

  .hamburger-icon {
    color: var(--white);
    text-align: center;
    margin: auto;
    font-family: "Font Awesome 6 Free Solid 900", sans-serif;
    font-size: 30px;
    display: block;
  }

  .nav-menu {
    grid-row-gap: 16px;
    background-color: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
    height: auto;
    margin-top: 110px;
    margin-left: 12px;
    margin-right: 12px;
    padding: 16px 16px 32px;
    position: fixed;
    inset: 0% 0% auto;
    overflow: scroll;
    box-shadow: 0 1px 20px #8787871a;
  }

  .menu-button {
    border-radius: 12px;
    justify-content: center;
    align-self: center;
    align-items: center;
    width: 44px;
    height: 44px;
    padding: 0;
    display: flex;
  }

  .menu-button.w--open {
    background-color: #2d241d80;
  }

  .navbar-container {
    background-color: #2d241dbf;
    padding-bottom: 20px;
    position: fixed;
    inset: 0% 0% auto;
  }

  .right-side-nav {
    display: flex;
  }

  .navbarcontact {
    color: #131313;
  }

  .navbar {
    height: 80px;
  }

  .nav-link {
    color: var(--colorprimary);
    text-align: left;
    justify-content: flex-start;
    align-items: center;
    height: auto;
    padding-top: 12px;
    padding-bottom: 12px;
    font-size: 18px;
    font-weight: 700;
  }

  .nav-link.w--current {
    color: var(--colorprimary);
  }

  .navbarsecondarycontainer {
    display: none;
  }

  .navbarcontactlinkscontainer {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
    margin-top: 24px;
  }

  .navbar-grid {
    grid-template-columns: 1fr 1fr;
  }

  .secnavbarlink {
    color: var(--colorprimary);
  }

  .navbarlinkscontainer {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    background-color: var(--white);
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 0;
    padding-right: 0;
  }

  .marquee-overlay {
    height: 140px;
  }

  .grid-halves.hero-grid-home-a {
    grid-row-gap: 64px;
    grid-template-columns: 1fr;
  }

  .marquee-image-wrap {
    height: 320px;
  }

  .mega-h1 {
    font-size: 70px;
  }

  .marquee-wrap {
    height: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .section.hero-home-a {
    padding-top: 140px;
  }

  .hero-a-content-wrap {
    flex-direction: column;
    align-items: center;
    margin-top: 0;
    display: flex;
  }

  .mainheadercontent {
    padding-top: 200px;
  }

  .offer {
    padding-right: 25px;
  }

  .image {
    width: 100%;
    height: 100%;
  }

  .featuredofferslist1 {
    grid-row-gap: 52px;
    grid-template-columns: 1fr 1fr;
  }

  .home-cta-section {
    margin-top: 100px;
  }

  .cta-imageoffset {
    left: -360px;
  }

  .features-section {
    padding-top: 160px;
    padding-bottom: 100px;
  }

  .frame-37 {
    grid-column-gap: 52px;
    grid-row-gap: 40px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    width: 100%;
    display: grid;
  }

  .info-grid {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: column;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    grid-auto-flow: row;
    display: flex;
  }

  .frame-42 {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    justify-content: space-between;
    align-items: stretch;
  }

  .image-10 {
    width: 100%;
    display: block;
  }

  .info-image-wrapper {
    margin-top: 70px;
  }

  .infospacer {
    display: none;
  }

  .frame-45 {
    margin-top: 36px;
  }

  .hfdudshfkjsdhf {
    margin-top: -10px;
    margin-bottom: -10px;
  }

  .div-block-5 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex: none;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    width: 120px;
    height: 461px;
    min-height: 100%;
    display: block;
  }

  .frame-46 {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
  }

  .text-10 {
    margin-top: 16px;
  }

  .featuredblogslist {
    grid-row-gap: 52px;
    grid-template-columns: 1fr;
  }

  .frame-48 {
    max-width: 418px;
    margin-top: -24px;
  }

  .frame-49 {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
  }

  .footersection {
    padding-bottom: 20px;
  }

  .frame-57, .frame-56 {
    grid-column-gap: 48px;
    grid-row-gap: 48px;
    grid-template-columns: 1fr;
  }

  .frame-53 {
    max-width: none;
  }

  .frame-55 {
    padding-left: 0;
  }

  .frame-61 {
    grid-template-columns: 1fr;
  }

  .frame-60 {
    flex-flow: column;
    grid-template-columns: 1fr;
    display: flex;
  }

  .frame-59 {
    width: 200%;
  }

  .div-block-7 {
    padding-left: 0;
  }

  .dropdown-list-nav.w--open {
    box-shadow: none;
    background-color: #f9f9f9;
    border-color: #e8e8e8;
    position: static;
  }

  .dropdown-toggle-nav {
    color: var(--colorprimary);
    margin: 0;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .dropdown-nav {
    justify-content: flex-start;
    width: auto;
    height: auto;
    font-size: 18px;
    display: block;
  }

  .dropdown-nav.rightsideinfodropdown {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
  }

  .ctacontent {
    width: 100%;
  }

  .dropdowntext {
    color: var(--colorprimary);
    font-size: 18px;
    font-weight: 700;
  }

  .features-section2 {
    padding-top: 160px;
    padding-bottom: 100px;
  }

  .frame-72 {
    grid-column-gap: 24px;
    grid-row-gap: 16px;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .frame-71 {
    justify-content: space-between;
    align-items: flex-start;
  }

  .frame-69 {
    margin-top: 24px;
  }

  .div-block-8 {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .div-block-11 {
    flex-flow: column-reverse;
    grid-template-columns: .9fr;
    display: flex;
  }

  .div-block-13 {
    grid-column-gap: 48px;
    grid-row-gap: 48px;
  }

  .div-block-15 {
    flex-flow: column-reverse;
    justify-content: flex-start;
    align-items: stretch;
  }

  .div-block-9-copy, .div-block-16 {
    width: 100%;
  }

  .mainabouusheadertext {
    font-size: 40px;
    line-height: 45px;
  }

  .breadcrumblink {
    color: var(--colorprimary);
    text-align: left;
    justify-content: flex-start;
    align-items: center;
    height: auto;
    padding-top: 12px;
    padding-bottom: 12px;
    font-size: 18px;
    font-weight: 700;
  }

  .breadcrumblink.w--current {
    color: var(--colorprimary);
  }

  .aboutuscontactbuttons {
    flex-flow: column;
  }

  .hero-a-content-wrap-copy {
    flex-direction: column;
    align-items: center;
    margin-top: 0;
    display: flex;
  }

  .contactpagecontactbutton {
    flex-flow: column;
  }

  .featuredofferslist3, .featuredofferslist2 {
    grid-row-gap: 52px;
    grid-template-columns: 1fr 1fr;
  }

  .div-block-21 {
    aspect-ratio: 3 / 2;
  }
}

@media screen and (max-width: 767px) {
  .nav-link {
    text-align: left;
    width: 100%;
  }

  .navbarlinkscontainer {
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
  }

  .grid-halves {
    grid-template-columns: 1fr;
  }

  .subtitle {
    font-size: 20px;
  }

  .mega-h1 {
    font-size: 54px;
  }

  .section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .span-accent-1 {
    margin-bottom: 8px;
  }

  .hero-a-content-wrap {
    text-align: center;
  }

  .headeoffercontent {
    grid-template-columns: .9fr;
  }

  .offer1 {
    border-right-width: 0;
  }

  .featuredofferslist1 {
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
  }

  .frame-34 {
    padding-right: 40px;
  }

  .features-section {
    padding-top: 200px;
  }

  .frame-42 {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    justify-content: flex-start;
    align-items: stretch;
  }

  .image-10 {
    width: 100%;
    height: 100%;
    min-height: 100%;
  }

  .div-block-5 {
    height: 616px;
    min-height: 100%;
  }

  .featuredblogslist {
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
  }

  .span-accent-2 {
    margin-bottom: 8px;
  }

  .features-section2 {
    padding-top: 200px;
  }

  .frame-73 {
    padding: 12px;
  }

  .frame-69 {
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .div-block-10 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: flex;
  }

  .tablekey, .tablevalue {
    width: 50%;
    padding-left: 4px;
    padding-right: 4px;
  }

  .collection-list {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .tablekey-copy {
    width: 50%;
    padding-left: 8px;
    padding-right: 8px;
  }

  .mainabouusheadertext {
    font-size: 32px;
    line-height: 40px;
  }

  .breadcrumblink {
    text-align: left;
    width: 100%;
  }

  .hero-a-content-wrap-copy {
    text-align: center;
  }

  .formgrid {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-columns: 1fr;
  }

  .btn-primary {
    padding: 22px 32px;
    font-size: 16px;
  }

  .btn-primary.submit-button {
    width: 100%;
  }

  .rodocheckboxinput {
    margin-top: 4px;
  }

  .featuredofferslist3, .featuredofferslist2 {
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
  }

  .div-block-21 {
    aspect-ratio: 3 / 2;
  }
}

@media screen and (max-width: 479px) {
  .nav-menu {
    margin-right: 12px;
  }

  .navbar-container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .nav-link {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .main-container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .marquee-overlay {
    top: -1px;
  }

  .marquee-overlay.bottom {
    bottom: -1px;
  }

  .mega-h1 {
    font-size: 11vw;
  }

  .marquee-column {
    width: 48%;
  }

  .marquee-column.column-two, .marquee-column.column-one {
    flex: none;
  }

  .marquee-wrap {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
  }

  .headerofferdiv {
    border-radius: 8px;
    overflow: hidden;
  }

  .mainheadercontent {
    padding-top: 160px;
    padding-bottom: 60px;
  }

  .offerbackgimagewrapper {
    margin-bottom: 0;
  }

  .featuredofferslist1 {
    grid-row-gap: 32px;
  }

  .offerwrapper {
    aspect-ratio: 1;
  }

  .offerthumbnailimage {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }

  .home-cta-section {
    overflow: visible;
  }

  .cta-imageoffset {
    left: -290px;
  }

  .features-section {
    padding-top: 240px;
  }

  .frame-37 {
    grid-template-columns: 1fr;
  }

  .div-block-5 {
    display: none;
  }

  .featuredblogslist {
    grid-row-gap: 32px;
  }

  .frame-48 {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    margin-top: 0;
    padding-left: 12px;
    padding-right: 12px;
  }

  .blogwrapper {
    aspect-ratio: 1;
  }

  .image-36 {
    display: none;
  }

  .frame-59 {
    width: 150%;
  }

  .drodpdown-grid-pages {
    grid-template-columns: 1fr;
  }

  .dropdown-list-nav.w--open {
    width: 100%;
    padding: 8px 6px;
  }

  .dropdown-toggle-nav {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .dropdown-nav.rightsideinfodropdown {
    width: 100%;
  }

  .features-section2 {
    padding-top: 240px;
  }

  .text-21 {
    font-size: 28px;
  }

  .frame-69 {
    grid-row-gap: 15px;
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-end;
  }

  .next {
    text-align: center;
  }

  .collection-list {
    grid-template-columns: 1fr 1fr;
  }

  .pagination {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: column;
  }

  .headerofferdivproductpage {
    border-radius: 8px;
    overflow: hidden;
  }

  .mainabouusheadertext {
    font-size: 28px;
    line-height: 34px;
  }

  .breadcrumblink {
    padding-top: 12px;
    padding-bottom: 12px;
    font-size: 14px;
  }

  .richtextcontainer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .aboutuscontactbuttons, .contactpagecontactbutton {
    margin-top: 24px;
  }

  .btn-primary {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .rodocheckboxinput {
    margin-top: 3px;
  }

  .featuredofferslist3, .featuredofferslist2 {
    grid-row-gap: 32px;
  }

  .div-block-21 {
    aspect-ratio: 3 / 2;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    margin-bottom: -4px;
  }
}

#w-node-_28eb7f32-1e44-d262-9e45-7650f95a27eb-582502bf {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: end;
}

#w-node-_8f52dd39-fa45-f9e2-b26d-b23195cecac0-582502bf, #w-node-_92468c05-f4be-e5e9-3e18-3196f9a1c7db-582502bf {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_023191bd-e780-9b96-ca25-39480c7c9acb-582502bf, #w-node-bc80e01d-3aa0-a36a-f347-106796919798-582502bf {
  grid-area: span 1 / span 6 / span 1 / span 6;
}

#w-node-_05f82282-7869-d466-2ec0-738a6dced6bf-582502bf {
  grid-area: span 1 / span 7 / span 1 / span 7;
}

#w-node-_0a3ad3ca-3c4b-a340-f15d-64fcf5b3e2ca-582502bf {
  grid-area: span 1 / span 4 / span 1 / span 4;
  align-self: center;
}

#w-node-_405989dc-5c2c-4f38-6043-bbbf08147878-582502bf {
  grid-area: span 1 / span 8 / span 1 / span 8;
}

#w-node-_405989dc-5c2c-4f38-6043-bbbf0814787d-582502bf {
  grid-area: span 1 / span 4 / span 1 / span 4;
}

#w-node-ba2d5215-0099-d5fb-ca3f-9678e6aafe6f-582502bf {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-aa6de67f-8635-a843-ccd0-86d7cc310bff-cc310bfa {
  grid-area: span 1 / span 8 / span 1 / span 8;
}

#w-node-aa6de67f-8635-a843-ccd0-86d7cc310c00-cc310bfa {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-aa6de67f-8635-a843-ccd0-86d7cc310c1c-cc310bfa {
  grid-area: span 1 / span 5 / span 1 / span 5;
}

#w-node-aa6de67f-8635-a843-ccd0-86d7cc310c28-cc310bfa {
  grid-area: span 1 / span 4 / span 1 / span 4;
}

#w-node-aa6de67f-8635-a843-ccd0-86d7cc310c3c-cc310bfa {
  grid-area: span 1 / span 8 / span 1 / span 8;
}

#w-node-aa6de67f-8635-a843-ccd0-86d7cc310c3d-cc310bfa {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-aa6de67f-8635-a843-ccd0-86d7cc310c3e-cc310bfa {
  grid-area: span 1 / span 5 / span 1 / span 5;
}

#w-node-aa6de67f-8635-a843-ccd0-86d7cc310c45-cc310bfa {
  grid-area: span 1 / span 4 / span 1 / span 4;
}

#w-node-a894885d-78e6-e392-923d-46d8653f16fe-653f16e7 {
  place-self: center start;
}

#w-node-_2136344d-2860-6727-2c4f-780e6a6df6ee-5d97f9d2, #w-node-_2136344d-2860-6727-2c4f-780e6a6df6f2-5d97f9d2, #w-node-ca1cd4d1-b5c3-2d4d-db86-2f64329fed2c-bc1354ad, #w-node-ca1cd4d1-b5c3-2d4d-db86-2f64329fed30-bc1354ad {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_3c64a1f0-6e93-6048-be05-8323ba4dbf3b-bc1354ad, #w-node-_3c64a1f0-6e93-6048-be05-8323ba4dbf41-bc1354ad {
  grid-area: span 1 / span 6 / span 1 / span 6;
}

#w-node-cbdc0029-8246-a185-a26d-17113e3a5705-bc1354ad {
  grid-area: span 1 / span 8 / span 1 / span 8;
}

#w-node-cbdc0029-8246-a185-a26d-17113e3a570a-bc1354ad {
  grid-area: span 1 / span 4 / span 1 / span 4;
}

#w-node-cbdc0029-8246-a185-a26d-17113e3a570f-bc1354ad {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_294b112b-406a-3421-b585-94bf6977e152-05561cb7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: end;
}

#w-node-_0d5b78a7-c374-47ce-b8ad-59bc7c4e14f8-05561cb7 {
  grid-area: span 1 / span 8 / span 1 / span 8;
}

#w-node-_0d5b78a7-c374-47ce-b8ad-59bc7c4e14fd-05561cb7 {
  grid-area: span 1 / span 4 / span 1 / span 4;
}

#w-node-_0d5b78a7-c374-47ce-b8ad-59bc7c4e1502-05561cb7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_0bc06b2a-ffca-e94c-9452-77a021e3d5dd-e5c39391, #w-node-_2e8c8eb3-d421-5f44-b44f-75d0ed0cd192-0afeee59 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: end;
}

#w-node-ad641d8a-d41b-57be-0827-35f946c65789-0afeee59 {
  grid-area: span 1 / span 8 / span 1 / span 8;
}

#w-node-ad641d8a-d41b-57be-0827-35f946c6578e-0afeee59 {
  grid-area: span 1 / span 4 / span 1 / span 4;
}

#w-node-ad641d8a-d41b-57be-0827-35f946c65793-0afeee59 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_595e34a4-3605-80e7-4361-4049b35e62df-d70eca5e, #w-node-b8a5c2b0-540c-8022-97eb-2cc244058a4e-5b1bed87, #w-node-_595e34a4-3605-80e7-4361-4049b35e62df-47ca6694 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: end;
}

#w-node-_6b4ff68b-7fca-062c-5db3-974b2488548a-1de328dc, #w-node-_6b4ff68b-7fca-062c-5db3-974b2488548e-1de328dc {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 991px) {
  #w-node-_023191bd-e780-9b96-ca25-39480c7c9acb-582502bf {
    grid-column: span 6 / span 6;
  }

  #w-node-_05f82282-7869-d466-2ec0-738a6dced6bf-582502bf {
    grid-column: span 1 / span 1;
  }

  #w-node-_0a3ad3ca-3c4b-a340-f15d-64fcf5b3e2ca-582502bf {
    grid-column: span 7 / span 7;
  }

  #w-node-aa6de67f-8635-a843-ccd0-86d7cc310bff-cc310bfa, #w-node-aa6de67f-8635-a843-ccd0-86d7cc310c00-cc310bfa, #w-node-aa6de67f-8635-a843-ccd0-86d7cc310c1c-cc310bfa, #w-node-aa6de67f-8635-a843-ccd0-86d7cc310c28-cc310bfa, #w-node-aa6de67f-8635-a843-ccd0-86d7cc310c3c-cc310bfa, #w-node-aa6de67f-8635-a843-ccd0-86d7cc310c3e-cc310bfa {
    grid-column: span 1 / span 1;
  }

  #w-node-a894885d-78e6-e392-923d-46d8653f171d-653f16e7 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_3c64a1f0-6e93-6048-be05-8323ba4dbf3b-bc1354ad {
    grid-column: span 6 / span 6;
  }
}

@media screen and (max-width: 767px) {
  #Offer.w-node-_2f7d453c-987c-580c-7b04-3feba056f5c0-582502bf {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_023191bd-e780-9b96-ca25-39480c7c9acb-582502bf {
    grid-column: span 5 / span 5;
  }

  #w-node-_05f82282-7869-d466-2ec0-738a6dced6bf-582502bf {
    grid-column: span 1 / span 1;
  }

  #Offer.w-node-e5371e1a-fddb-ec37-7b7a-3e48e2f56bda-bc1354ad {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_3c64a1f0-6e93-6048-be05-8323ba4dbf3b-bc1354ad {
    grid-column: span 5 / span 5;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_023191bd-e780-9b96-ca25-39480c7c9acb-582502bf, #w-node-aa6de67f-8635-a843-ccd0-86d7cc310c3c-cc310bfa, #w-node-_3c64a1f0-6e93-6048-be05-8323ba4dbf3b-bc1354ad {
    grid-column: span 1 / span 1;
  }
}


@font-face {
  font-family: 'Manrope';
  src: url('../fonts/Manrope-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Manrope';
  src: url('../fonts/Manrope-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Manrope';
  src: url('../fonts/Manrope-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Manrope';
  src: url('../fonts/Manrope-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Font Awesome 6 Free 400';
  src: url('../fonts/Font-Awesome-6-Free-Regular-400.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Font Awesome 6 Brands 400';
  src: url('../fonts/Font-Awesome-6-Brands-Regular-400.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Font Awesome 6 Free Solid 900';
  src: url('../fonts/Font-Awesome-6-Free-Solid-900.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}