:root {
  --white: white;
  --coal: #141313;
  --accent: #fdccc2;
  --dark-red-wine: #2a1b1f;
  --corner-radius: 5px;
  --elements-webflow-library--general--shadow-01: #14142b0f;
  --grey: #333;
  --elements-webflow-library--accent--primary-1: #b68f69;
  --elements-webflow-library--general--shadow-02: #14142b14;
  --elements-webflow-library--general--shadow-03: #14142b1a;
  --elements-webflow-library--neutral--300: #eff0f6;
  --elements-webflow-library--neutral--800: #211f54;
  --elements-webflow-library--neutral--600: #6e7191;
  --elements-webflow-library--neutral--100: white;
  --elements-webflow-library--neutral--500: #a0a3bd;
  --elements-webflow-library--secondary--color-1: #8d5a33;
  --elements-webflow-library--secondary--color-2: #f2f1ff;
  --waves-library--black: #131313;
  --waves-library--white: white;
}

.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;
}

body {
  color: #333;
  font-family: Outfit, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

h1 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.1;
}

h2 {
  color: var(--white);
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 32px;
  font-weight: 700;
  line-height: 36px;
}

p {
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 300;
  line-height: 1.3;
}

.main-wrapper {
  background-color: var(--coal);
}

.logo {
  color: #e2d6d6;
  text-align: center;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  max-width: 12.5rem;
  height: 90%;
  padding-left: 1vw;
  padding-right: 1vw;
  font-size: 4.69em;
  font-weight: 700;
  display: flex;
}

.logo.nav {
  color: #fff9f7;
  justify-content: flex-start;
  align-items: center;
  width: 25vw;
  max-width: none;
  height: auto;
  font-size: 3.125rem;
  overflow: hidden;
}

.navbar-menu {
  align-items: center;
  display: flex;
}

.nav-button {
  background-color: var(--accent);
  color: #333;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  border: .125rem solid #0000;
  border-radius: .1875rem;
  justify-content: center;
  align-items: center;
  min-width: 9rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  font-size: 16px;
  display: flex;
}

.card {
  z-index: 2;
  background-color: #fff;
  border-radius: .2rem;
  min-width: 25rem;
  max-width: 60ch;
  margin-top: 0;
  margin-bottom: 0;
  padding: 2rem;
  position: absolute;
  bottom: -6rem;
  right: 5vw;
  box-shadow: 0 0 1rem -.25rem #57413c66;
}

.navbar {
  z-index: 150;
  background-color: var(--coal);
  background-image: linear-gradient(180deg, var(--dark-red-wine), var(--coal) 52%);
  justify-content: space-between;
  align-items: center;
  padding: .95rem 1.5rem .95rem .5rem;
  display: flex;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 0 20px 48px -3px #141313;
}

.nav-container {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.navbar-button-wrapper {
  margin-left: 1rem;
}

.image-mask {
  border-radius: .2rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
  overflow: hidden;
}

.image-mask._50-percent {
  border-radius: 0;
  position: relative;
}

.side-by-side {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-wrap: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  width: 100%;
  min-height: 100vh;
  display: grid;
}

.navbar-menu-buttons {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: flex;
}

.section {
  text-align: center;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-top: 30px;
  padding-bottom: 30px;
  display: flex;
  position: relative;
}

.section.about {
  flex-flow: column;
  justify-content: center;
  align-items: center;
}

.section.hero {
  padding-top: 0;
}

.section.fasny {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 13px 32px -9px #00000059;
}

.navbar-menu-button {
  padding: 0;
}

.nav-link {
  color: #fff;
  text-transform: uppercase;
  align-items: center;
  padding: 0 1vw;
  font-size: 16px;
  font-weight: 300;
  line-height: 3;
  text-decoration: none;
  display: flex;
  position: relative;
}

.nav-link.w--current {
  color: #f9dfd4;
}

.footer-link {
  color: #fff;
  text-align: center;
  padding: 1rem 2rem;
  font-weight: 400;
  text-decoration: none;
  transition: all .2s;
}

.footer-link:hover {
  color: var(--accent);
}

.footer-link.hide {
  display: none;
}

.footer {
  background-color: #503524;
  background-image: linear-gradient(180deg, var(--coal), var(--dark-red-wine));
  flex-direction: column;
  align-items: center;
  margin-top: auto;
  display: flex;
}

.footer-links {
  text-align: center;
  justify-content: space-around;
  margin-top: 2rem;
  margin-bottom: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
  display: flex;
}

.footer-top {
  flex-direction: column;
  align-self: center;
  align-items: center;
  padding: 0% 8%;
  display: flex;
}

.social-icon {
  color: #fff;
  width: 2rem;
  margin-left: 1rem;
  margin-right: 1rem;
}

.social-icon.hide {
  display: none;
}

.icon {
  object-fit: contain;
}

.social-container {
  justify-content: space-around;
  margin-top: 3rem;
  margin-bottom: 2rem;
  display: flex;
}

.image-zoom-slider {
  z-index: 1;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

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

.slider-bg-image {
  z-index: -1;
  background-image: linear-gradient(#00000080, #00000080), url('../images/MaisonDeBase_Lifestyle_01.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.slider-bg-image._2 {
  background-image: linear-gradient(#00000080, #00000080), url('../images/MaisonDeBase_Lifestyle_07.jpg');
  background-repeat: repeat, no-repeat;
}

.slider-bg-image._3 {
  background-image: linear-gradient(#00000080, #00000080), url('../images/MaisonDeBase_Lifestyle_09.jpg');
  background-repeat: repeat, no-repeat;
}

.ths13-hero-slide-total-number {
  color: #f2f2f2;
  font-size: 30px;
  font-weight: 400;
  line-height: 30px;
}

.ths13-social-link {
  opacity: .65;
  margin-right: 45px;
  text-decoration: none;
  transition: opacity .2s ease-in-out;
}

.ths13-social-link:hover {
  opacity: 1;
}

.ths13-hero-section {
  background-color: #6f6e6e;
  justify-content: center;
  align-items: stretch;
  width: 100vw;
  padding-left: 0;
  padding-right: 0;
  display: flex;
  position: relative;
}

.ths13-heading-h1-wrapper {
  overflow: hidden;
}

.ths13-heading-h1 {
  color: #f2f2f2;
  text-align: center;
  text-shadow: 0 1px 15px #000000b0;
  font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
  font-size: 3.6rem;
  font-weight: 400;
}

.ths13-hero-slide-number-divider {
  color: var(--accent);
  margin-top: 7px;
  font-size: 20px;
  font-weight: 700;
  line-height: 20px;
  transform: rotate(20deg);
}

.ths13-hero-slide-content {
  justify-content: center;
  align-items: center;
  max-width: 1234px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.ths13-hero-slider-nav {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: auto;
  display: flex;
  inset: 0% 0% 0% auto;
}

.ths13-hero-section-footer {
  z-index: 7;
  justify-content: flex-start;
  align-items: stretch;
  width: 66.6667%;
  height: 90px;
  padding-left: 60px;
  display: flex;
  position: absolute;
  inset: auto 0% 0%;
}

.ths13-hero-slider {
  background-color: #0000;
  width: 100%;
  min-height: 90vh;
}

.ths13-overlay {
  mix-blend-mode: soft-light;
  background-color: #000;
  justify-content: flex-end;
  align-items: center;
  position: absolute;
  inset: 0%;
}

.ths13-scroll-line {
  background-color: #f2f2f2;
  width: 2px;
  height: 50px;
}

.ths13-hero-footer-scroll-text-wrapper {
  opacity: .8;
  color: #f2f2f2;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  line-height: 20px;
  overflow: hidden;
}

.ths13-hero-footer-scroll-wrapper {
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 50%;
  display: flex;
}

.ths13-social-links-divider {
  color: var(--accent);
  font-size: 20px;
  font-weight: 700;
  transform: rotate(20deg);
}

.ths13-hero-slide-number {
  color: #f2f2f2;
  font-size: 30px;
  font-weight: 400;
  line-height: 30px;
}

.ths13-slide-number-wrapper {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  width: 90px;
  height: 90px;
  margin-right: 60px;
  display: flex;
  position: absolute;
  inset: auto 0% 0% auto;
}

.ths13-silde-number-inner-wrapper {
  overflow: hidden;
}

.ths13-scroll-line-wrapper {
  opacity: .8;
  margin-top: 15px;
  padding-left: 10px;
  padding-right: 10px;
  overflow: hidden;
}

.ths13-social-links-wrapper {
  justify-content: flex-start;
  align-items: flex-start;
  width: 50%;
  text-decoration: none;
  display: flex;
  overflow: hidden;
}

.ths13-hero-slider-arrow {
  display: none;
}

.social-link-text {
  color: #d9d9d9;
  font-size: 18px;
  text-decoration: none;
  position: relative;
}

.heading {
  font-family: Open Sans, sans-serif;
  font-weight: 300;
}

.heading.left {
  text-align: left;
}

.divider {
  background-color: var(--accent);
  opacity: .64;
  width: 8vw;
  height: 2px;
  margin-top: 10px;
  margin-bottom: 20px;
}

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

.paragraph.left {
  text-align: left;
  margin-bottom: 20px;
  font-weight: 200;
}

.container {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 900px;
  display: flex;
}

.container.left {
  justify-content: flex-start;
  align-items: flex-start;
  padding-left: 20px;
  padding-right: 20px;
}

.pt-wrapper {
  z-index: 100;
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  inset: 0%;
  overflow: visible;
}

.pt-square {
  background-color: var(--accent);
  width: 40px;
  height: 40px;
}

.button {
  color: #fff;
  text-align: center;
  background-color: #eb4a82;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-width: 200px;
  max-width: 300px;
  height: 100%;
  min-height: 200px;
  max-height: 300px;
  padding: 0;
  font-size: 1rem;
  text-decoration: none;
  transition: background-color .3s, font-size .3s;
  display: flex;
  position: static;
}

.button:hover {
  background-color: #c73367;
  font-size: 1.125rem;
}

.button.pt-animation:hover {
  font-size: 1.25rem;
}

.icon-2 {
  margin-bottom: 1rem;
  position: static;
}

.div-block {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
  display: flex;
}

.div-block-2 {
  max-width: 600px;
}

.overlay {
  z-index: 2;
  background-color: #0000;
  background-image: linear-gradient(135deg, #00000054, #27191d54);
  position: absolute;
  inset: 0%;
}

.brix---heading-h1-size-2 {
  margin-top: 0;
  margin-bottom: 16px;
  line-height: 1.3;
}

.store_logo {
  object-fit: contain;
  position: relative;
}

.store-link-block {
  grid-column-gap: 28px;
  grid-row-gap: 28px;
  filter: invert() grayscale();
  background-color: #0000;
  border-radius: .5rem;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding: 38px;
  text-decoration: none;
  transition: all .25s;
  display: flex;
}

.store-link-block:hover {
  background-color: var(--white);
  filter: grayscale(0%);
}

.brix---text-center-2 {
  text-align: center;
}

.store-grid {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  width: 100%;
}

.brix---color-neutral-803 {
  color: #231f20;
}

.brix---inner-container-700px-center {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.brix---container-default {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
}

.brix---subtitle {
  color: #b48e67;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 700;
  line-height: 20px;
}

.find-a-store-near-you-grid {
  background-color: var(--coal);
  color: #231f20;
  position: relative;
}

.brix---btn-primary {
  border-radius: var(--corner-radius);
  background-color: var(--elements-webflow-library--general--shadow-01);
  color: var(--coal);
  text-align: center;
  text-transform: capitalize;
  border: 1px #000;
  justify-content: center;
  padding: 13px 41px;
  font-weight: 400;
  text-decoration: none;
  transition: background-color .3s, transform .3s, color .3s;
  position: relative;
}

.brix---btn-primary:hover {
  border-color: var(--accent);
  background-color: var(--accent);
  box-shadow: none;
  color: var(--coal);
  transform: scale(.98);
}

@media screen and (min-width: 1920px) {
  .main-wrapper {
    flex-flow: column;
    width: 100%;
    display: flex;
  }

  .logo.w--current {
    max-width: none;
  }
}

@media screen and (max-width: 991px) {
  .logo {
    padding-top: 0;
    padding-bottom: 0;
  }

  .logo.nav {
    text-align: left;
    flex: none;
    justify-content: flex-start;
    width: 33vw;
  }

  .kebap-lottie {
    object-fit: contain;
    height: 2rem;
  }

  .navbar-menu {
    -webkit-text-fill-color: inherit;
    background-color: #503524db;
    background-clip: padding-box;
    border-bottom: 1px solid #000;
    justify-content: flex-end;
    padding: 1rem 5% 2rem;
  }

  .nav-button {
    max-width: 16rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    font-size: 1.25rem;
  }

  .card {
    min-width: auto;
    max-width: 43.75rem;
    margin-left: 2rem;
    margin-right: 2rem;
    position: relative;
    top: -10vw;
    bottom: 0;
    right: auto;
  }

  .navbar-button-wrapper {
    flex-direction: column;
    align-items: center;
    margin-bottom: 1rem;
    margin-left: 0;
    display: flex;
  }

  .navbar-menu-buttons {
    flex-direction: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    align-items: stretch;
    margin-top: 1.5rem;
  }

  .navbar-menu-button.w--open {
    background-color: #0000;
  }

  .nav-link {
    text-align: center;
    padding-top: 1rem;
    padding-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.2;
    display: block;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .brix---heading-h1-size-2 {
    font-size: 48px;
    line-height: 60px;
  }

  .brix---mg-bottom-48px {
    margin-bottom: 40px;
  }

  .brix---btn-primary {
    padding-top: 24px;
    padding-bottom: 24px;
    font-size: 16px;
  }
}

@media screen and (max-width: 767px) {
  .logo.nav {
    width: 45vw;
    font-size: 1.9375rem;
  }

  .logo.nav.w--current {
    font-size: 1.75rem;
  }

  .image-slide {
    object-position: 25% 50%;
  }

  .nav-button {
    white-space: nowrap;
  }

  .nav-button.cta {
    font-size: 1rem;
  }

  .card {
    position: relative;
    bottom: 0;
    right: 0;
  }

  .navbar {
    padding-top: .5rem;
    padding-bottom: .5rem;
    padding-right: 1.2rem;
  }

  .nav-container {
    align-items: center;
  }

  .image-mask._50-percent {
    min-height: 45vh;
  }

  .side-by-side {
    grid-template-columns: 1fr;
  }

  .footer-link {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .footer-links {
    margin-bottom: 1.5rem;
  }

  .social-icon {
    width: 1.5rem;
  }

  .social-container {
    margin-bottom: 1.5rem;
  }

  .image-zoom-slider {
    object-position: 25% 50%;
  }

  .container.left {
    width: 100%;
    max-width: none;
  }

  .brix---heading-h1-size-2 {
    margin-bottom: 12px;
    font-size: 38px;
    line-height: 46px;
  }

  .store-link-block {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
  }

  .brix---mg-bottom-48px {
    margin-bottom: 32px;
  }

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

  .brix---subtitle {
    font-size: 17px;
    line-height: 19px;
  }

  .brix---btn-primary {
    padding: 20px 32px;
  }
}

@media screen and (max-width: 479px) {
  .logo {
    padding-right: 0;
  }

  .logo.nav {
    width: 60vw;
  }

  .card {
    margin: 1.5rem 1rem 10vw 0;
    padding: 1.5rem;
    top: 0;
  }

  .nav-container {
    align-items: center;
  }

  .image-mask {
    min-height: 100vh;
  }

  .image-mask._50-percent {
    width: 100%;
  }

  .side-by-side {
    flex-direction: column;
  }

  .nav-link {
    padding-top: 0;
    padding-bottom: 0;
    line-height: 6;
  }

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

  .footer-links {
    flex-flow: column wrap;
    align-content: stretch;
  }

  .footer-top {
    padding-top: 18vw;
    padding-bottom: 18vw;
  }

  .div-block-2 {
    margin-bottom: 30px;
  }

  .brix---heading-h1-size-2 {
    margin-bottom: 10px;
    font-size: 30px;
    line-height: 37px;
  }

  .brix---mg-bottom-48px {
    margin-bottom: 32px;
  }

  .brix---container-default {
    padding-left: 20px;
    padding-right: 20px;
  }

  .brix---subtitle {
    font-size: 14px;
    line-height: 18px;
  }

  .brix---btn-primary {
    width: 100%;
    padding: 18px 20px;
    font-size: 17px;
    line-height: 19px;
  }
}


