h1 {
  margin-top: 24px;
  margin-bottom: 24px;
  font-size: 48px;
  line-height: 58px;
  font-weight: 700;
  text-align: center;
}

h2 {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 40px;
  line-height: 50px;
  font-weight: 600;
  text-align: center;
}

h3 {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 32px;
  line-height: 42px;
  font-weight: 600;
  text-align: center;
}

h4 {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 24px;
  line-height: 34px;
  font-weight: 600;
  text-align: center;
}

h5 {
  margin-top: 8px;
  margin-bottom: 8px;
  color: #333;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  text-align: center;
}

h6 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 12px;
  line-height: 18px;
  font-weight: 600;
  text-align: center;
}

p {
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Montserrat, sans-serif;
  color: #969696;
  font-size: 15px;
  line-height: 25px;
  font-weight: 400;
  text-align: left;
}

li {
  color: #969696;
  font-size: 15px;
  line-height: 25px;
}

.page-fade-in {
  position: relative;
  z-index: 0;
  display: block;
  overflow: hidden;
  font-family: Montserrat, sans-serif;
}

.contact-us {
  position: fixed;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 1000;
  display: none;
  width: 100%;
  height: 100%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: rgba(255, 142, 100, 0.81);
}

.contact-us-wrapper {
  position: relative;
  left: 0px;
  top: 50%;
  right: 0px;
  bottom: 0px;
  display: block;
  opacity: 1;
  -webkit-transform: translate(0px, -50%);
  -ms-transform: translate(0px, -50%);
  transform: translate(0px, -50%);
  text-align: center;
}

.contact-us-popup {
  position: relative;
  z-index: 3000;
  display: block;
  height: auto;
  max-width: 570px;
  margin-right: auto;
  margin-left: auto;
  padding: 60px 64px 64px;
  border-radius: 3px;
  background-color: #fff;
  box-shadow: 0 10px 30px 0 rgba(38, 56, 72, 0.2);
  -webkit-transform: scale(0.9);
  -ms-transform: scale(0.9);
  transform: scale(0.9);
  text-align: center;
}

.close-popup-button {
  position: absolute;
  top: 0px;
  right: 0px;
  display: block;
  width: 28px;
  height: 28px;
  margin-top: 20px;
  margin-right: 20px;
  background-image: url('../images/cross-symbol.png');
  background-position: 50% 50%;
  background-size: 20px;
  -webkit-transition: opacity 200ms ease;
  transition: opacity 200ms ease;
}

.link-block {
  background-image: none;
  opacity: 0.3;
}

.link-block:hover {
  opacity: 1;
}

.contact-us-icon {
  margin-top: 0px;
  margin-bottom: 8px;
  background-color: transparent;
}

.popup-overlay {
  position: fixed;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 2000;
  background-color: rgba(16, 18, 70, 0.65);
  text-align: center;
}

.contact-us-button {
  position: fixed;
  right: 0px;
  bottom: 0px;
  z-index: 2000;
  width: 60px;
  height: 60px;
  margin: 32px;
  border-radius: 10px;
  background-image: url('../images/email.svg'), -webkit-gradient(linear, left top, left bottom, from(#ffb341), to(#ff8e64));
  background-image: url('../images/email.svg'), linear-gradient(180deg, #ffb341, #ff8e64);
  background-position: 50% 50%, 0px 0px;
  background-size: 32px, auto;
  background-repeat: no-repeat, repeat;
  box-shadow: 0 8px 16px 0 rgba(34, 34, 34, 0.2);
}

.navbar {
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  z-index: 100;
  display: block;
  padding-right: 40px;
  padding-left: 40px;
  background-color: transparent;
}

.navbar.fixed-nav {
  position: fixed;
  z-index: 999;
  padding-right: 56px;
  padding-left: 56px;
  background-color: #fff;
  -webkit-transform: translate(0px, -75px);
  -ms-transform: translate(0px, -75px);
  transform: translate(0px, -75px);
}

.navbar.white {
  background-color: #fff;
}

.navbar.new {
  position: fixed;
  display: block;
  background-color: #fff;
  box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.15);
  color: #f5f6f9;
}

.container-full {
  display: block;
  width: 80%;
  max-width: 1600px;
  margin-right: auto;
  margin-left: auto;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: transparent;
  line-height: 21px;
}

.container-full.slide-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.container-full.case {
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.25);
}

.brand {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 240px;
  height: 80px;
  padding: 15px 15px 10px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #f5f6f9;
}

.brand.w--current {
  width: 20%;
  height: 80px;
  min-width: 160px;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.brand.scroll {
  height: 60px;
  padding-top: 5px;
  padding-bottom: 5px;
}

.nav-menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 80px;
  padding-right: 16px;
  padding-left: 16px;
  float: right;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.nav-menu.fixed-menu {
  height: 70px;
}

.nav-menu.scroll {
  height: 60px;
}

.image-background-section {
  position: relative;
  padding-right: 40px;
  padding-left: 40px;
}

.image-background-section.hero-section {
  height: 100vh;
  padding-right: 0px;
  padding-left: 0px;
}

.image-background-section.hero-section.homeages-2 {
  display: block;
  overflow: hidden;
  height: 500px;
  padding-top: 0px;
  background-image: url('../images/dots2_1dots2.png'), -webkit-gradient(linear, left top, left bottom, from(hsla(0, 0%, 86.7%, 0.8)), to(hsla(0, 0%, 86.7%, 0.8)));
  background-image: url('../images/dots2_1dots2.png'), linear-gradient(180deg, hsla(0, 0%, 86.7%, 0.8), hsla(0, 0%, 86.7%, 0.8));
  background-position: 0px 0px, 0px 0px;
  background-size: 8px, auto;
  background-attachment: scroll, scroll;
}

.image-background-section.hero-section.homeages-2.hide {
  display: none;
}

.image-background-section.hero-section.third {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.image-background-section.footer-section {
  position: relative;
  width: 100%;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.82)), to(rgba(0, 0, 0, 0.82))), url('../images/bench-accounting-49909-unsplash.jpg');
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.82)), url('../images/bench-accounting-49909-unsplash.jpg');
  background-position: 0px 0px, 50% 50%;
  background-size: auto, cover;
}

.image-background-section.blog-hero-section {
  position: static;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(16, 18, 70, 0.6)), to(rgba(16, 18, 70, 0.6))), url('../images/dots2_1dots2.png'), url('../images/yann-maignan-376943-unsplash-p-1080.jpeg');
  background-image: linear-gradient(180deg, rgba(16, 18, 70, 0.6), rgba(16, 18, 70, 0.6)), url('../images/dots2_1dots2.png'), url('../images/yann-maignan-376943-unsplash-p-1080.jpeg');
  background-position: 0px 0px, 0px 0px, 50% 50%;
  background-size: auto, 6px, cover;
}

.image-background-section.blog-hero-section.style-guide.new {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.2)), to(rgba(0, 0, 0, 0.2))), url('../images/dots2_1dots2.png'), url('../images/rune-enstad-1090369-unsplash-min.jpg');
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('../images/dots2_1dots2.png'), url('../images/rune-enstad-1090369-unsplash-min.jpg');
  background-position: 0px 0px, 0px 0px, 50% 0%;
  background-size: auto, 5px, cover;
}

.image-background-section.blog-hero-section.style-guide.new.project {
  display: none;
}

.image-background-section.blog-hero-section.correct-blog {
  height: 600px;
  padding-right: 0px;
  padding-left: 0px;
}

.image-background-section.blog-hero-section.author {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(16, 18, 70, 0.6)), to(rgba(16, 18, 70, 0.6))), url('../images/dots2_1dots2.png'), url('../images/kari-shea-109894-unsplash-1.jpg');
  background-image: linear-gradient(180deg, rgba(16, 18, 70, 0.6), rgba(16, 18, 70, 0.6)), url('../images/dots2_1dots2.png'), url('../images/kari-shea-109894-unsplash-1.jpg');
  background-position: 0px 0px, 0px 0px, 100% 100%;
}

.image-background-section.blog-hero-section.new {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(16, 18, 70, 0.6)), to(rgba(16, 18, 70, 0.6))), url('../images/dots2_1dots2.png'), url('../images/christopher-burns-435998-unsplash.jpg');
  background-image: linear-gradient(180deg, rgba(16, 18, 70, 0.6), rgba(16, 18, 70, 0.6)), url('../images/dots2_1dots2.png'), url('../images/christopher-burns-435998-unsplash.jpg');
  background-position: 0px 0px, 0px 0px, 50% 50%;
  background-size: auto, 6px, cover;
}

.hero-slider {
  height: 100%;
}

.slide {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(16, 18, 70, 0.65)), to(rgba(16, 18, 70, 0.65))), url('../images/5aa7c50283789d0b183cbe14_58dbc937e78e13ae4a7ea4eb_man-ipad-macbook.jpg');
  background-image: linear-gradient(180deg, rgba(16, 18, 70, 0.65), rgba(16, 18, 70, 0.65)), url('../images/5aa7c50283789d0b183cbe14_58dbc937e78e13ae4a7ea4eb_man-ipad-macbook.jpg');
  background-position: 0px 0px, 0px 50%;
  background-size: auto, cover;
}

.slide._2 {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(16, 18, 70, 0.63)), to(rgba(16, 18, 70, 0.63))), url('../images/124324-compressed.jpg');
  background-image: linear-gradient(180deg, rgba(16, 18, 70, 0.63), rgba(16, 18, 70, 0.63)), url('../images/124324-compressed.jpg');
  background-position: 0px 0px, 50% 50%;
}

.slide._3 {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(15, 17, 68, 0.63)), to(rgba(15, 17, 68, 0.63))), url('../images/image-0-compressed.jpg');
  background-image: linear-gradient(180deg, rgba(15, 17, 68, 0.63), rgba(15, 17, 68, 0.63)), url('../images/image-0-compressed.jpg');
  background-position: 0px 0px, 50% 50%;
}

.slider-content {
  display: block;
  width: 80%;
  margin-right: auto;
  margin-left: auto;
  padding: 40px 15px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 auto;
  -ms-flex: 0 auto;
  flex: 0 auto;
  text-align: center;
}

.slider-content.third {
  position: absolute;
  z-index: 200;
  width: 100%;
  max-width: 750px;
  padding-top: 0px;
}

.hero-text {
  width: 100%;
  margin-top: 8px;
  margin-bottom: 40px;
  color: #fff;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
}

.hero-text.thin {
  display: block;
  width: 80%;
  margin-right: auto;
  margin-left: auto;
  font-weight: 200;
  text-align: center;
}

.button {
  display: inline-block;
  width: 205px;
  height: auto;
  padding: 9px 20px;
  border-radius: 30px;
  background-color: #bbae98;
  opacity: 1;
  font-family: Exo, sans-serif;
  color: #fff;
  font-size: 12px;
  line-height: 24px;
  font-weight: 500;
}

.button:hover {
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.25);
  opacity: 1;
}

.button.hero-button {
  display: inline-block;
  height: auto;
  margin-right: 0px;
  padding-top: 12px;
  padding-bottom: 12px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 0;
  -webkit-flex: 0 auto;
  -ms-flex: 0 auto;
  flex: 0 auto;
  border: 1px none #dbd0be;
  border-radius: 30px;
  background-color: #bbae98;
  font-family: Exo, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

.button.hero-button.more {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 260px;
  margin-top: 10px;
  margin-right: 10%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  background-color: transparent;
  font-family: Lato, sans-serif;
  color: #877c78;
  text-decoration: underline;
}

.button.hero-button.more:hover {
  box-shadow: none;
  color: #494949;
}

.button.hero-button.more.w--current {
  width: 260px;
  margin-top: 20px;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  color: #bbae98;
  text-decoration: underline;
}

.button.hero-button.more.w--current:hover {
  box-shadow: none;
}

.button.outline-button {
  height: auto;
  padding-top: 12px;
  padding-bottom: 12px;
  border: 1px solid #ff8e64;
  border-radius: 30px;
  background-color: transparent;
  background-image: none;
  color: #fff;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
}

.button.color {
  height: auto;
  padding: 9px 25px;
  border: 1px solid #ff8e64;
  border-radius: 30px;
  background-color: transparent;
  background-image: none;
  -webkit-transition: all 200ms ease, background-color 400ms ease;
  transition: all 200ms ease, background-color 400ms ease;
  color: #ff8e64;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

.button.color:hover {
  background-color: #ff8e64;
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.25);
  color: #fff;
}

.button.pop-up {
  margin-top: 24px;
}

.button.full-in-pass {
  width: 100%;
  margin-top: 0px;
}

.button.center {
  display: block;
  margin-right: auto;
  margin-left: auto;
}

.button.blog-direct {
  position: relative;
  z-index: auto;
  display: block;
  width: 200px;
  margin-top: 60px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.hero-heading {
  margin-top: 24px;
  margin-bottom: 24px;
  font-family: Dosis, sans-serif;
  color: #f5f6f9;
  font-size: 50px;
  line-height: 56px;
  font-weight: 500;
  text-transform: uppercase;
}

.slide-arrow {
  left: 0%;
  top: 0px;
  right: 0%;
  bottom: 0px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 40px;
  height: 40px;
  margin: auto auto auto 10%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid #ff8e64;
  border-radius: 4px;
  background-color: transparent;
  -webkit-transition: border 200ms ease, background-color 400ms ease;
  transition: border 200ms ease, background-color 400ms ease;
  color: #ff8e64;
  font-size: 16px;
}

.slide-arrow:hover {
  border-color: #fff;
  background-color: #fff;
  font-size: 17px;
}

.slide-nav {
  left: -50%;
  bottom: 8%;
  display: none;
  color: #ff8e64;
  font-size: 11px;
}

.hero-bottom {
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 100;
  padding-right: 40px;
  padding-left: 40px;
}

.wrapper.hero-bottom-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  background-color: transparent;
}

.social-link {
  display: inline-block;
  margin-right: 5px;
  padding: 8px 5px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  opacity: 0.7;
  -webkit-transition: opacity 200ms ease;
  transition: opacity 200ms ease;
}

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

.social-link.orage {
  width: 28px;
  height: 28px;
  margin-right: 5px;
  padding: 3px;
  border-radius: 100px;
  background-color: #ff8e64;
  text-align: center;
}

.social-link.orage.gray {
  width: 32px;
  height: 32px;
  margin-right: 20px;
  padding-top: 4px;
  padding-bottom: 4px;
  border: 1px solid #ddd;
  background-color: transparent;
  -webkit-transition-property: background-color;
  transition-property: background-color;
  -webkit-transition-duration: 400ms;
  transition-duration: 400ms;
}

.social-link.orage.gray:hover {
  border-color: #fff;
  background-color: #bbae98;
}

.social-link.orage.gray.orange {
  background-color: #ff8e64;
}

.social-link.orage.gray.orange:hover {
  border-color: #fff;
}

.scroll-down-link {
  position: relative;
  right: 15px;
  bottom: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 48px;
  height: 48px;
  margin-right: 0%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 0;
  -webkit-flex: 0 auto;
  -ms-flex: 0 auto;
  flex: 0 auto;
  border: 1px solid #fff;
  border-radius: 100px;
  background-color: transparent;
}

.scroll-down-link.w--current {
  bottom: 25px;
  border-radius: 100px;
}

.section {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: visible;
  padding: 120px 56px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #fff;
}

.section.no-padding {
  padding: 0px;
}

.section.gray {
  z-index: 30;
  overflow: hidden;
  background-color: #f5f6f9;
}

.section.gray.single {
  display: block;
  padding-top: 100px;
  padding-bottom: 100px;
  background-image: url('../images/dots2_1dots2.png');
  background-position: 50% 50%;
  background-size: 10px;
}

.section.gray.single.product {
  background-image: url('../images/dots2_1dots2.png');
  background-position: 50% 50%;
  background-size: 10px;
}

.section.gray.single.category {
  padding-top: 60px;
  padding-bottom: 40px;
  background-color: transparent;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.2)), to(rgba(0, 0, 0, 0.2))), url('../images/rune-enstad-1090369-unsplash-min.jpg');
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('../images/rune-enstad-1090369-unsplash-min.jpg');
  background-position: 0px 0px, 50% 0%;
  background-size: auto, cover;
}

.section.gray.single.category.solid-wood {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.2)), to(rgba(0, 0, 0, 0.2))), url('../images/sidekix-media-1108451-unsplash-min.jpg');
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('../images/sidekix-media-1108451-unsplash-min.jpg');
  background-position: 0px 0px, 50% 30%;
  background-size: auto, cover;
}

.section.gray.single.category.european-style {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.2)), to(rgba(0, 0, 0, 0.2))), url('../images/european-cabinet.-flats-8.png');
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('../images/european-cabinet.-flats-8.png');
  background-position: 0px 0px, 50% 100%;
  background-size: auto, cover;
}

.section.gray.single.category.floor {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.2)), to(rgba(0, 0, 0, 0.2))), url('../images/BRAZILIAN-CHERRY.-LF.jpg');
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('../images/BRAZILIAN-CHERRY.-LF.jpg');
  background-position: 0px 0px, 50% 50%;
  background-size: auto, auto;
}

.section.gray.single.category.floor.vf {
  background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), to(transparent)), url('../images/VF.-GREY318-2-min.jpg');
  background-image: linear-gradient(180deg, transparent, transparent), url('../images/VF.-GREY318-2-min.jpg');
  background-size: auto, cover;
}

.section.gray.single.category.faucets {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.2)), to(rgba(0, 0, 0, 0.2))), url('../images/jose-soriano-1231563-unsplash-min.jpg');
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('../images/jose-soriano-1231563-unsplash-min.jpg');
  background-position: 0px 0px, 50% 40%;
  background-size: auto, cover;
}

.section.gray.single.category.handle {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.25)), to(rgba(0, 0, 0, 0.25))), url('../images/cairo.png');
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25)), url('../images/cairo.png');
  background-position: 0px 0px, 50% 50%;
}

.section.image-background {
  background-image: url('../images/dots2_1dots2.png');
  background-position: 0px 0px;
  background-size: 10px;
}

.section.fullwidth {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 80px 10px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  background-color: #fff;
}

.section.fullwidth.product {
  display: block;
  padding: 100px 56px 120px;
}

.section.fullwidth.products {
  padding-right: 0px;
  padding-left: 0px;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  background-color: #fff;
}

.section.dots {
  background-image: url('../images/dots2_1dots2.png');
  background-position: 0px 0px;
  background-size: 8px;
}

.section.dots.baudi-white {
  position: static;
  background-color: transparent;
  background-image: url('../images/dots2_1dots2.png');
  background-position: 0px 0px;
  background-size: 5px;
  background-repeat: repeat;
  background-attachment: scroll;
}

.section.dots.baudi-white.projects {
  background-color: #fff;
}

.section.baudi {
  padding-top: 100px;
  background-color: #fff;
}

.section.baudi.solid-wood {
  padding-top: 100px;
  padding-bottom: 220px;
}

.section.support {
  position: relative;
  display: block;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  background-color: #f5f6f9;
}

.section.warehouse {
  display: block;
  padding-top: 0px;
  padding-bottom: 0px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background-color: #fff;
}

.section.factory {
  padding-top: 0px;
  padding-bottom: 0px;
}

.section.white {
  display: none;
  background-color: #fff;
}

.section.colors {
  padding-top: 80px;
  background-color: #f5f6f9;
}

.vertical-features-header {
  position: absolute;
  left: 0px;
  top: 0px;
  bottom: 0px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 72px;
  padding-top: 270px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.vertical-header {
  position: relative;
  left: -124px;
  width: 320px;
  margin-top: 8px;
  margin-bottom: 8px;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  font-size: 11px;
  line-height: 16px;
  text-align: right;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.section-wrapper-content {
  position: relative;
  display: block;
  width: 60%;
  margin-right: auto;
  margin-bottom: 50px;
  margin-left: auto;
  padding-bottom: 0px;
  font-weight: 400;
  text-align: center;
}

.section-wrapper-content.page-header {
  width: 60%;
  margin-top: 60px;
  padding-top: 0px;
}

.section-wrapper-content.page-header.blog {
  margin-top: 200px;
  margin-bottom: 0px;
}

.section-wrapper-content.next {
  margin-top: 50px;
}

.section-wrapper-content.intro {
  margin-bottom: 80px;
}

.section-wrapper-content.title {
  width: 100%;
}

.section-header {
  margin-top: 16px;
  margin-bottom: 40px;
  font-family: Dosis, sans-serif;
  color: #333;
  font-size: 40px;
  line-height: 50px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
}

.section-header.white {
  color: #fff;
  font-size: 46px;
  line-height: 50px;
}

.section-header.left {
  font-family: Dosis, sans-serif;
  color: #f5f6f9;
  font-weight: 600;
  text-align: left;
}

.section-header.left.new {
  color: #000;
}

.section-header.light {
  color: #000;
  font-weight: 600;
}

.services-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-left: 30px;
  padding-top: 8px;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.services-wrapper.no-side-padding {
  margin-top: 0px;
  margin-left: 0px;
}

.services-card {
  position: relative;
  margin-right: 25px;
  margin-left: 25px;
  padding: 48px 32px 32px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  border: 1px solid #e7e9ec;
  border-radius: 8px;
  text-align: left;
}

.services-card.style-2 {
  width: 100%;
  margin-right: 25px;
  margin-left: 25px;
  padding: 16px 32px;
  float: right;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  border-style: none;
  box-shadow: none;
  font-family: Dosis, sans-serif;
}

.services-card.new {
  margin-top: 60px;
  margin-bottom: 60px;
  padding-top: 46px;
  padding-bottom: 0px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 auto;
  -ms-flex: 0 auto;
  flex: 0 auto;
}

.services-card.new.second {
  margin-top: 0px;
}

.services-line {
  position: absolute;
  top: 0px;
  right: 0px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 32px;
  margin-right: auto;
  margin-left: auto;
  padding-top: 24px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-style: none;
  border-top-width: 2px;
  border-top-color: #ff8e64;
}

.services-line.price {
  position: absolute;
  display: block;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 8px;
  border-top-style: solid;
  background-color: transparent;
}

.services-tittle {
  margin-top: 8px;
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 28px;
  font-weight: 600;
  text-align: left;
  text-transform: none;
}

.services-tittle.style-2 {
  position: relative;
  display: block;
  margin-top: 12px;
  margin-bottom: 16px;
  float: none;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  font-family: Dosis, sans-serif;
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
  text-align: left;
  text-transform: uppercase;
}

.paragraph-small {
  margin-top: 12px;
  margin-bottom: 32px;
  font-family: Lato, sans-serif;
  color: #000;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}

.paragraph-small.new {
  margin-top: 0px;
  margin-bottom: 12px;
  color: #ddd;
  line-height: 24px;
  font-weight: 700;
  text-decoration: none;
}

.paragraph-small.get-access {
  color: #ddd;
}

.features-wrapper {
  display: none;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.features-wrapper._2 {
  padding-right: 0px;
  padding-left: 0px;
}

.half-side-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
  padding-right: 60px;
  padding-left: 60px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.half-side-content.image-background {
  height: auto;
  padding-right: 0px;
  padding-left: 0px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-image: -webkit-gradient(linear, left top, left bottom, from(hsla(0, 0%, 86.7%, 0.2)), to(hsla(0, 0%, 86.7%, 0.2))), url('../images/c.jpg');
  background-image: linear-gradient(180deg, hsla(0, 0%, 86.7%, 0.2), hsla(0, 0%, 86.7%, 0.2)), url('../images/c.jpg');
  background-position: 0px 0px, 50% 50%;
  background-size: auto, cover;
}

.half-side-content.image-background._2 {
  background-image: -webkit-gradient(linear, left top, left bottom, from(hsla(0, 0%, 86.7%, 0.4)), to(hsla(0, 0%, 86.7%, 0.4))), url('../images/kari-shea-109894-unsplash-1.jpg');
  background-image: linear-gradient(180deg, hsla(0, 0%, 86.7%, 0.4), hsla(0, 0%, 86.7%, 0.4)), url('../images/kari-shea-109894-unsplash-1.jpg');
  background-position: 0px 0px, 50% 50%;
  background-size: auto, cover;
}

.half-side-content.contact-bacground {
  position: relative;
  width: 50%;
  height: auto;
  min-height: 700px;
  border: 1px none #ddd;
  background-image: url('../images/sidekix-media-1108451-unsplash-min.jpg');
  background-position: 50% 50%;
  background-size: 3000px;
  background-attachment: scroll;
}

.half-side-content.contact-bacground.home {
  padding-right: 50px;
  padding-left: 50px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-style: none;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  background-position: 50% 40%;
  background-size: auto;
}

.half-side-content.contact-us-half-side {
  width: 50%;
  padding-top: 60px;
  padding-bottom: 60px;
  border: 1px none #ddd;
}

.half-side-content.contact-us-half-side.home {
  padding-top: 100px;
  padding-bottom: 100px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  border-style: none;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
  background-color: #fff;
}

.half-side-content.contact-us-half-side.contact {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  background-color: #fff;
}

.half-side-content.gray {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: auto;
  min-height: 700px;
  padding-top: 60px;
  padding-bottom: 60px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #f5f6f9;
  background-image: none;
  background-size: auto;
  background-repeat: repeat;
  color: #f5f6f9;
}

.half-side-content.gray.new {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.half-side-content.gray.new.support {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.half-side-content.gray.new.warehouse {
  width: 55%;
  min-height: auto;
  padding-right: 80px;
  padding-left: 80px;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  background-color: #fff;
  background-image: none;
  background-position: 0px 0px;
  box-shadow: 3px 3px 16px 0 rgba(0, 0, 0, 0.25);
  color: #a5a5a5;
}

.half-side-content.gray.new.warehouse.showroom {
  box-shadow: none;
}

.half-side-content.gray.new.warehouse._1 {
  width: 100%;
}

.half-side-content.gray.new.warehouse.factory {
  width: 100%;
}

.half-side-content.icon {
  min-height: 700px;
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url('../images/lamp.svg');
  background-position: 100% -106px;
  background-size: 400px;
  background-repeat: no-repeat;
}

.half-side-info {
  max-width: 400px;
  padding-right: 15px;
  padding-bottom: 16px;
  padding-left: 15px;
}

.half-side-info.new {
  max-width: 100%;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
}

.instagram-section {
  position: relative;
  display: block;
  overflow: hidden;
  padding-top: 120px;
  padding-bottom: 0px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: transparent;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.5))), url('../images/bram-naus-200967-unsplash.jpg');
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/bram-naus-200967-unsplash.jpg');
  background-position: 0px 0px, 50% 50%;
  background-size: auto, cover;
}

.instagram-section.style-2 {
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: #f5f6f9;
  background-image: none;
}

.follow-me-text {
  margin-top: 14px;
  color: #000;
  font-size: 20px;
  line-height: 28px;
  font-weight: 300;
  text-align: left;
  text-decoration: none;
}

.follow-me-text.center {
  color: #969696;
  font-size: 24px;
  line-height: 34px;
  font-weight: 400;
  text-align: center;
}

.play-icon {
  position: relative;
  top: 50%;
  width: 70px;
  height: 70px;
  margin-left: -30px;
  padding-right: 0px;
  padding-left: 0px;
  border: 2px solid #ff8e64;
  border-radius: 50%;
  background-color: #ff8e64;
  background-image: url('../images/play-button.png');
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.25);
  -webkit-transform: translate(0px, -50%);
  -ms-transform: translate(0px, -50%);
  transform: translate(0px, -50%);
  -webkit-transition: all 400ms ease;
  transition: all 400ms ease;
}

.play-icon:hover {
  -webkit-transform: translate(0px, -50%) scale(1.06);
  -ms-transform: translate(0px, -50%) scale(1.06);
  transform: translate(0px, -50%) scale(1.06);
}

.play-icon.video-section {
  position: relative;
  display: block;
  margin-right: auto;
  margin-left: auto;
}

.play-icon.video-section._2 {
  top: 50%;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}

.small-features {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 500px;
  margin-left: 0px;
  padding: 50px 15px 50px 0px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.small-feature {
  width: 50%;
  margin-bottom: 20px;
  padding-right: 15px;
  padding-left: 15px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 auto;
  -ms-flex: 0 auto;
  flex: 0 auto;
}

.small-feature.new {
  width: 100%;
}

.team-section {
  padding: 109px 40px;
  background-image: none;
  background-position: 0px 0px;
  background-size: auto;
}

.team-section.gray {
  background-color: #f5f6f9;
  background-image: none;
}

.team-section.top-border {
  border-top: 1px none hsla(0, 0%, 86.7%, 0.67);
}

.team-content {
  position: static;
  left: 0px;
  right: 0px;
  bottom: 0px;
  padding: 0px 12px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  background-color: transparent;
  color: #fff;
}

.team-name {
  margin-top: 16px;
  margin-bottom: 0px;
  font-size: 17px;
  line-height: 24px;
}

.team-name.small {
  font-size: 16px;
  line-height: 26px;
  font-weight: 600;
  text-align: left;
}

.top-padding {
  margin-top: 12px;
}

.pricing-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 8px;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.pricing-card {
  position: relative;
  margin-right: 15px;
  margin-left: 15px;
  padding-top: 58px;
  padding-bottom: 48px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  border-style: none solid solid;
  border-width: 1px;
  border-color: #ddd;
  border-radius: 3px;
  background-color: #fff;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  text-align: center;
}

.pricing-card:hover {
  border-top: 2px none #ff8e64;
  border-left-style: solid;
  box-shadow: 0 16px 20px 0 hsla(0, 0%, 64.7%, 0.21);
}

.pricing-card.colored {
  border-style: none;
  border-color: #ff8e64;
  background-color: #ff8e64;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(16, 18, 70, 0.2)), to(rgba(16, 18, 70, 0.2))), url('../images/becca-tapert-391584-unsplash.jpg');
  background-image: linear-gradient(180deg, rgba(16, 18, 70, 0.2), rgba(16, 18, 70, 0.2)), url('../images/becca-tapert-391584-unsplash.jpg');
  background-position: 0px 0px, 50% 50%;
  background-size: auto, 700px;
}

.pricing-big-text {
  color: #333;
  font-size: 48px;
  line-height: 56px;
}

.pricing-wrapper-list {
  display: block;
  width: 80%;
  margin-right: auto;
  margin-bottom: 24px;
  margin-left: auto;
  padding-top: 15px;
  padding-bottom: 15px;
}

.pricing-text-list {
  display: block;
  width: 70%;
  margin-right: auto;
  margin-left: auto;
  padding: 14px 24px 15px;
  border-bottom: 0px none transparent;
  box-shadow: 0 1px 0 0 #e6e4e4;
  color: #969696;
  font-size: 15px;
  line-height: 25px;
  font-weight: 400;
}

.testimonial-wrapper {
  display: block;
  width: 80vw;
  margin-right: auto;
  margin-left: auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.teastimonial-card {
  position: relative;
  display: block;
  margin-right: 40px;
  margin-left: 40px;
  padding: 60px 32px 24px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  border: 1px solid #f5f6f9;
  border-radius: 10px;
  background-color: #fff;
  text-align: left;
}

.teastimonial-card.in {
  display: block;
  width: 73%;
  margin-top: 70px;
  margin-right: auto;
  margin-left: auto;
  float: none;
}

.testimonial-member {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 68px;
  height: 68px;
  margin-top: -35px;
  margin-bottom: 24px;
  margin-left: -45px;
  border: 2px none #d1c1a6;
  border-radius: 10px;
  text-align: left;
}

.testimonial-member.in {
  width: 100px;
  height: 100px;
  margin-top: -25px;
}

.testimonial-member.single-author {
  position: static;
  margin-top: 0px;
  margin-bottom: 10px;
  margin-left: 0px;
}

.testimonial-text {
  margin-bottom: 30px;
  font-family: Lato, sans-serif;
  color: #969696;
  font-size: 15px;
  line-height: 25px;
  font-weight: 400;
}

.social-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.social-wrapper.testimonials {
  margin-top: 30px;
  padding-top: 6px;
  text-align: left;
}

.social-wrapper.team {
  text-align: left;
}

.social-wrapper.single {
  margin-top: 20px;
}

.social-wrapper.hero {
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 60px;
  display: block;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.testimonial-name {
  margin-bottom: 16px;
  font-family: Dosis, sans-serif;
  font-size: 16px;
  line-height: 26px;
  font-weight: 600;
}

.services-block-image {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 68px;
  height: 68px;
  margin-top: -30px;
  margin-left: -35px;
  padding: 5px;
  border: 2px solid #ff8e64;
  border-radius: 10px;
  background-color: #fff;
  background-image: url('../images/icons8-bed-80_1icons8-bed-80.png');
  background-position: 50% 50%;
  background-size: 40px;
  background-repeat: no-repeat;
}

.services-block-image._2 {
  margin-left: -35px;
  border-radius: 10px;
  background-image: url('../images/icons8-desk-lamp-80_1icons8-desk-lamp-80.png');
  background-size: 40px;
}

.services-block-image._3 {
  margin-left: -35px;
  border-style: solid;
  border-width: 2px;
  border-radius: 10px;
  background-image: url('../images/icons8-toolbox-80_1icons8-toolbox-80.png');
  background-size: 40px;
}

.services-block-image.new {
  margin-bottom: 20px;
  margin-left: 30px;
}

.contact-us-block-form {
  margin-top: 24px;
}

.contact-us-block-form.percentual {
  display: block;
  width: 60%;
  margin-right: auto;
  margin-left: auto;
}

.text-field {
  display: inline-block;
  margin-bottom: 24px;
  border: 1px solid #e7e7e7;
  border-radius: 4px;
  background-color: rgba(245, 246, 249, 0.53);
  -webkit-transition: border 400ms ease;
  transition: border 400ms ease;
  color: #969696;
  font-weight: 400;
}

.text-field:hover {
  border-color: #bdbdbd;
}

.text-field-2 {
  width: 70%;
  border-style: none none solid;
  border-bottom-width: 1px;
  border-bottom-color: #ddd;
}

.text-field-2.message {
  width: 100%;
  height: 80px;
  margin-bottom: 30px;
  border: 1px solid #e7e7e7;
  border-radius: 4px;
  background-color: rgba(245, 246, 249, 0.53);
  -webkit-transition: border 400ms ease;
  transition: border 400ms ease;
  color: #969696;
  font-weight: 400;
}

.text-field-2.message:hover {
  border-color: #bdbdbd;
}

.text-field-2.message.center {
  height: auto;
  min-height: 120px;
}

.sponsor-section {
  display: none;
  padding-top: 48px;
  padding-bottom: 48px;
  background-color: #f5f6f9;
}

.sponsor-link {
  margin-right: 0px;
  margin-left: 0px;
  padding: 16px;
  opacity: 0.65;
  -webkit-transition: opacity 300ms ease;
  transition: opacity 300ms ease;
}

.sponsor-link:hover {
  opacity: 1;
}

.sponsor-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-top: 0px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 15px;
  padding-left: 15px;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.footer {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 40px;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  color: #fff;
}

.scroll-up-button {
  position: absolute;
  right: -82px;
  bottom: 82px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 48px;
  height: 48px;
  margin-right: 8.33%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid #fff;
  border-radius: 100px;
  background-color: transparent;
}

.scroll-up-button:hover {
  border-color: #d1c1a6;
  background-color: #bbae98;
}

.footer-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 34px;
  margin-right: 8.33%;
  padding-right: 30px;
  padding-left: 15px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.footer-brand {
  width: 200px;
  text-decoration: none;
}

.footer-brand.w--current {
  width: 200px;
  color: #fff;
}

.footer-links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 33%;
  padding-right: 15px;
  padding-left: 15px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.footer-header {
  margin-top: 34px;
  margin-bottom: 24px;
  font-family: Dosis, sans-serif;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer-link {
  margin-top: 12px;
  margin-bottom: 12px;
  color: #fff;
  text-decoration: none;
}

.footer-link:hover {
  text-decoration: underline;
}

.footer-link.w--current:hover {
  text-decoration: underline;
}

.div-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.image-link {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 450px;
  margin-left: 23px;
  border-radius: 10px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(16, 18, 70, 0.2)), to(rgba(16, 18, 70, 0.2))), url('../images/5aa6c108f416ef411d02377e_tim-wright-272031-unsplash.jpg');
  background-image: linear-gradient(180deg, rgba(16, 18, 70, 0.2), rgba(16, 18, 70, 0.2)), url('../images/5aa6c108f416ef411d02377e_tim-wright-272031-unsplash.jpg');
  background-position: 0px 0px, 50% 50%;
  background-size: auto, cover;
}

.question-container {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  margin-top: 0px;
  padding-right: 0px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  border-radius: 3px;
  text-decoration: none;
}

.question {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 0px 20px 0px 0px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-style: none none solid;
  border-width: 1px;
  border-color: hsla(0, 0%, 64.7%, 0.35);
  background-color: transparent;
  background-image: url('../images/dots2_1dots2.png');
  background-position: 0px 0px;
  background-size: 8px;
}

.question-heading {
  margin-top: 8px;
  margin-bottom: 8px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-family: Dosis, sans-serif;
  color: #fff;
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  text-align: left;
}

.question-heading.question-quote {
  margin-right: 5px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 auto;
  -ms-flex: 0 auto;
  flex: 0 auto;
  font-weight: 600;
}

.answer {
  padding-right: 0px;
}

.blog-link {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: visible;
  width: 100%;
  height: 300px;
  margin: 10px;
  padding-right: 0px;
  padding-left: 0px;
  float: none;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-flex: 0;
  -webkit-flex: 0 auto;
  -ms-flex: 0 auto;
  flex: 0 auto;
  background-image: none;
  background-size: auto;
}

.blog-container {
  position: absolute;
  left: 0px;
  top: 0px;
  bottom: 0px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
  padding: 36px 20px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #fff;
}

.blog-container.gray {
  border: 1px solid #f5f6f9;
  background-color: #f5f6f9;
}

.news-text {
  display: inline-block;
  margin-right: 5px;
  margin-left: 0px;
  padding: 2px 5px;
  border: 1px none #ff8e64;
  background-color: #c9c9c9;
  color: #fff;
  font-size: 12px;
}

.news-text.orange {
  border-style: none;
  background-color: #ff8e64;
  color: #fff;
}

.blog-heading {
  margin-top: 24px;
  color: #333;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  text-align: left;
  text-transform: uppercase;
}

.date-text {
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 0px;
  display: block;
  margin-bottom: 16px;
  margin-left: 20px;
  border-bottom: 1px none #ff8e64;
  color: #a5a5a5;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
}

.nav-button-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-left: 0px;
  padding-top: 0px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.purchase-button {
  padding-right: 20px;
  padding-left: 20px;
  border: 1px solid #ff8e64;
  border-radius: 30px;
  background-color: transparent;
  color: #fff;
  font-size: 12px;
  line-height: 22px;
  font-weight: 500;
}

.purchase-button:hover {
  background-color: #ff8e64;
}

.purchase-button.outline {
  border-color: #fff;
  box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.17);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.purchase-button.outline:hover {
  background-color: #fff;
  color: #ff8e64;
}

.purchase-button.orange-text {
  border-color: #d1c1a6;
  background-color: #c60;
  -webkit-transition: background-color 400ms ease;
  transition: background-color 400ms ease;
  color: #fff;
  font-weight: 600;
}

.purchase-button.orange-text:hover {
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.25);
  color: #fff;
}

.purchase-button.orange-text.w--current {
  border-color: #c60;
  background-color: #c60;
  font-family: Exo, sans-serif;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
}

.purchase-button.orange-text.w--current:hover {
  background-color: #c60;
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.25);
}

.purchase-button.orange-text.home {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-color: #bbae98;
  background-color: #bbae98;
}

.purchase-button.orange-text.home.w--current {
  font-family: Lato, sans-serif;
}

.purchase-button.orange-text.home.w--current:hover {
  background-color: #877c78;
}

.purchase-button.orange-text.contact {
  background-color: #c60;
}

.purchase-button.orange-text.contact.w--current {
  display: inline-block;
  font-family: Montserrat, sans-serif;
}

.purchase-button.nav {
  -webkit-transition: background-color 400ms ease;
  transition: background-color 400ms ease;
}

.nav-link {
  display: inline-block;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 10px;
  -webkit-transition: color 400ms ease;
  transition: color 400ms ease;
  color: #fff;
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
  text-decoration: none;
}

.nav-link:hover {
  color: #ff8e64;
}

.nav-link.w--current {
  color: #ff8e64;
  font-weight: 400;
}

.nav-link.dark {
  display: block;
  font-family: Dosis, sans-serif;
  color: #494949;
  font-size: 16px;
  font-weight: 700;
}

.nav-link.dark:hover {
  color: #c60;
}

.nav-link.dark.new {
  display: block;
  color: #494949;
}

.nav-link.dark.new:hover {
  color: #bbae98;
}

.nav-link.dark.new.w--current {
  color: #bbae98;
}

.nav-link.dark.new.w--current:hover {
  color: #bbae98;
}

.nav-link.dark.new.projects {
  display: none;
}

.nav-link.dark.new.products {
  display: block;
}

.nav-link.dark.new.contact {
  display: none;
}

.nav-link.dark._2 {
  color: #494949;
}

.slide-arrow-right {
  position: absolute;
  left: 0px;
  bottom: 0px;
  z-index: 3;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 40px;
  height: 40px;
  margin: auto 10% auto auto;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid #ff8e64;
  border-radius: 5px;
  background-color: transparent;
  -webkit-transition: background-color 400ms ease;
  transition: background-color 400ms ease;
  color: #ff8e64;
  font-size: 16px;
}

.slide-arrow-right:hover {
  border-color: #fff;
  background-color: #fff;
}

.blog-hero {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 16px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
}

.page-brand {
  position: absolute;
  left: 0px;
  top: 0px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-right: 15px;
  padding-left: 15px;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.blog {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-bottom: -40px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.blog-post {
  display: block;
  width: 80%;
  margin-right: auto;
  margin-left: auto;
  text-align: left;
}

.blog-post h1 {
  text-align: left;
}

.blog-post h2 {
  text-align: left;
}

.blog-post h3 {
  text-align: left;
}

.blog-post p {
  width: 80%;
}

.blog-post h4 {
  text-align: left;
}

.blog-post h5 {
  text-align: left;
}

.sidebar-block {
  width: 95%;
  padding-top: 40px;
  padding-bottom: 40px;
  float: right;
}

.text-button {
  display: inline-block;
  margin-left: 5px;
  float: none;
  font-size: 14px;
}

.menu-button.black {
  display: none;
}

.paragraph-footer {
  margin-top: 24px;
}

.paragraph-footer.white {
  margin-top: 20px;
  font-family: Dosis, sans-serif;
  font-size: 16px;
  line-height: 25px;
}

.paragraph-footer.white.hide {
  display: none;
}

.purchase-section {
  position: static;
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: transparent;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(219, 208, 190, 0.4)), to(rgba(219, 208, 190, 0.4))), url('../images/dots2_1dots2.png'), url('../images/jeremy-yap-119489-unsplash-p-1080.jpeg');
  background-image: linear-gradient(180deg, rgba(219, 208, 190, 0.4), rgba(219, 208, 190, 0.4)), url('../images/dots2_1dots2.png'), url('../images/jeremy-yap-119489-unsplash-p-1080.jpeg');
  background-position: 0px 0px, 0px 0px, 50% 50%;
  background-size: auto, 8px, cover;
  background-attachment: scroll, scroll, fixed;
}

.purchase-button-block {
  display: block;
  margin-top: 16px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.small-text-team {
  margin-top: 0px;
  margin-bottom: 20px;
  color: #ff8e64;
  font-size: 15px;
  line-height: 25px;
  font-weight: 400;
}

.instagram-card-style-2 {
  position: relative;
  display: block;
  width: 33.33%;
  margin-right: auto;
  margin-left: auto;
  padding: 45px 40px 40px;
  background-color: transparent;
  text-align: center;
}

.div-block-3 {
  display: inline-block;
  float: none;
}

.tabs-menu {
  width: 100%;
  margin-bottom: 40px;
  border-bottom: 1px none #ddd;
  text-align: center;
}

.tab-link {
  padding-right: 20px;
  padding-left: 20px;
  background-color: transparent;
  font-family: Dosis, sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
}

.tab-link:hover {
  color: #c60;
}

.tab-link.w--current {
  padding-right: 20px;
  padding-left: 20px;
  border-color: #c60;
  border-bottom-style: solid;
  border-bottom-width: 2px;
  background-color: transparent;
  color: #c60;
}

.tab-link.w--current:hover {
  color: #c60;
}

.contact-us-card {
  position: static;
  margin-top: 0px;
  margin-right: 5px;
  margin-left: 5px;
  padding: 24px 32px 48px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  border-radius: 20px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.25)), to(rgba(0, 0, 0, 0.25)));
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25));
  color: #fff;
}

.contact-us-card.contact {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.contact-us-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 0px;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  text-decoration: none;
}

.features-link {
  font-family: Exo, sans-serif;
  color: #d1c1a6;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.features-link:hover {
  text-decoration: underline;
}

.fact-section {
  position: relative;
  padding: 72px 56px;
  background-color: rgba(105, 103, 108, 0.81);
}

.fact-section.white {
  background-color: #fff;
  background-image: none;
}

.facts {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.fact-item {
  padding-top: 8px;
  padding-right: 15px;
  padding-left: 15px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: center;
}

.facts-image {
  width: 46px;
  color: #fff;
}

.facts-heading {
  margin-top: 16px;
  color: #f0f0f0;
  line-height: 26px;
  font-weight: 700;
}

.facts-text {
  font-family: Dosis, sans-serif;
  color: #ddd;
  font-size: 15px;
  line-height: 25px;
  font-weight: 400;
}

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

.team-member-image {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  height: 360px;
  margin-bottom: 0px;
  padding-bottom: 12px;
  padding-left: 10px;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  border-radius: 10px;
  background-image: url('../images/mark-skeet-531298-unsplash-p-1080.jpeg');
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-transition: box-shadow 300ms ease;
  transition: box-shadow 300ms ease;
}

.team-member-image:hover {
  background-image: url('../images/mark-skeet-531298-unsplash-p-1080.jpeg');
  background-position: 50% 50%;
  background-size: cover;
  box-shadow: inset 0 0 0 500px rgba(46, 50, 60, 0.2);
}

.team-member-image._2 {
  border-radius: 10px;
  background-image: url('../images/alex-sorto-467581-unsplash-p-1600.jpeg');
  background-position: 50% 0px;
}

.team-member-image._3 {
  background-image: url('../images/nick-karvounis-423669-unsplash-p-1600.jpeg');
}

.team-member-image._4 {
  background-image: url('../images/dgss`rg.jpg');
}

.white {
  font-family: Montserrat, sans-serif;
  color: #fff;
  font-size: 16px;
  line-height: 26px;
  font-weight: 300;
}

.white.big {
  font-family: Dosis, sans-serif;
  font-size: 55px;
  line-height: 65px;
  font-weight: 600;
}

.white.center {
  display: block;
  width: 90%;
  margin-right: auto;
  margin-left: auto;
  font-family: Dosis, sans-serif;
  color: #f5f6f9;
  font-size: 18px;
  line-height: 25px;
  font-weight: 400;
  text-align: center;
}

.white.center.percentual {
  display: block;
  width: 60%;
  margin-right: auto;
  margin-left: auto;
  font-weight: 400;
}

.white.center.category {
  display: inline-block;
  width: 100%;
  padding: 5px 10px;
  border-radius: 6px;
}

.white.center.padding-bottom {
  margin-bottom: 30px;
  background-color: transparent;
  font-family: Lato, sans-serif;
}

.white._04 {
  margin-bottom: 40px;
  font-family: Lato, sans-serif;
  font-weight: 400;
}

.price-table {
  color: #ff8e64;
  font-size: 18px;
  font-weight: 500;
}

.price-table.white {
  color: #fff;
}

.number-services {
  font-family: Impact, Haettenschweiler, 'Franklin Gothic Bold', Charcoal, sans-serif;
  color: #bbae98;
  font-size: 40px;
  line-height: 50px;
  font-weight: 700;
  text-transform: uppercase;
}

.left {
  float: none;
}

.image-5 {
  height: 20px;
  margin-right: 10px;
  float: left;
}

.image-5.email {
  margin-right: 15px;
}

.contact-us-wrapper-half-section {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.contact-us-wrapper-half-section.contact {
  width: 80%;
  margin: 120px auto;
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.25);
}

.contact-us-wrapper-half-section.contact.showroom {
  display: block;
}

.contact-us-wrapper-half-section.contact.warehouse {
  display: block;
}

.small-text-pricing {
  margin-bottom: 24px;
  color: #969696;
  line-height: 24px;
}

.small-text-pricing.white {
  color: #fff;
}

.footer-copyright {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-top: 64px;
  margin-right: 15px;
  margin-left: 15px;
  padding-top: 20px;
  padding-bottom: 20px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-top: 1px solid hsla(0, 0%, 100%, 0.3);
}

.text-copyright {
  display: inline;
  margin-right: 5px;
  font-family: Montserrat, sans-serif;
  font-size: 13px;
  line-height: 24px;
}

.text-link-copyright {
  color: #ff8e64;
  font-size: 12px;
  text-decoration: none;
  text-transform: none;
}

.text-link-copyright:hover {
  text-decoration: underline;
}

.work-wrapper {
  width: 80%;
  max-width: 1600px;
  min-width: auto;
  margin-right: auto;
  margin-left: auto;
}

.works {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0px;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.works.related {
  overflow: auto;
}

.work {
  width: 30%;
  max-width: 30%;
  min-width: 30%;
  margin-bottom: 32px;
  padding: 0px 16px;
}

.work.product {
  width: 100%;
  max-width: 100%;
  min-width: 100%;
}

.work-card {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  text-align: left;
  text-decoration: none;
}

.work-card-image-block {
  position: static;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  margin-bottom: 0px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  box-shadow: 0 28px 50px -25px rgba(0, 0, 0, 0.25);
}

.work-card-image-block.vertical {
  display: block;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  box-shadow: 0 28px 50px -25px rgba(0, 0, 0, 0.2);
}

.work-card-image {
  width: 50%;
  -webkit-transform: scale(1.08);
  -ms-transform: scale(1.08);
  transform: scale(1.08);
  -webkit-transition: opacity 200ms ease;
  transition: opacity 200ms ease;
}

.work-card-info {
  position: static;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 100%;
  padding: 30px 40px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #fff;
  text-align: center;
}

.work-card-info.product {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
  max-width: 50%;
  min-width: 50%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.pop-up-text-field {
  height: 50px;
  margin-top: 24px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.pop-up-text-field.center {
  text-align: center;
}

.footer-text {
  font-family: Dosis, sans-serif;
  color: #f5f6f9;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}

.footer-text.showroom {
  margin-top: 10px;
}

.portfolio-content {
  display: block;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.portfolio-content.case {
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.25);
}

.portfolio-image {
  display: inline-block;
  width: 45%;
  margin-top: 24px;
  margin-right: 5%;
  margin-bottom: 24px;
  padding-right: 0px;
}

.portfolioterxt {
  padding-top: 12px;
  padding-bottom: 12px;
  color: #969696;
  line-height: 24px;
}

.portfolioterxt.border {
  padding-top: 0px;
  padding-bottom: 12px;
  border-top: 1px none #ddd;
  border-bottom: 1px solid #ddd;
  font-size: 15px;
  line-height: 25px;
}

.portfolioterxt.border.first {
  padding-bottom: 12px;
}

.portfolioterxt.first {
  padding-top: 0px;
}

.big-tittle {
  margin-top: 80px;
  margin-bottom: 20px;
  font-family: Dosis, sans-serif;
  color: #fff;
  font-size: 48px;
  font-weight: 600;
  text-align: center;
}

.big-tittle.blog-single {
  margin-top: 10px;
  margin-bottom: 10px;
}

.big-tittle.new {
  color: #f5f6f9;
}

.big-tittle.product {
  width: 95%;
  font-size: 28px;
  text-align: left;
}

.upper-title {
  text-align: center;
}

.column-div {
  width: 95%;
}

.row-info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 40px;
}

.separator {
  display: block;
  width: 1px;
  height: 70px;
  margin: 10px auto;
  background-color: #69676c;
}

.separator._404 {
  margin-bottom: 0px;
}

.separator.orange {
  background-color: #c60;
  color: #c60;
}

.pattern-dots {
  height: 30px;
  background-color: #fff;
  background-image: url('../images/dots2_1dots2.png');
  background-position: 50% 50%;
  background-size: auto;
}

.logo-type {
  margin-top: 0px;
  margin-bottom: 0px;
  color: #494949;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0px;
  text-transform: uppercase;
}

.logo-type.white-font {
  color: #fff;
}

.logo-type.white-font.footer {
  padding-bottom: 30px;
}

.logo-type.new {
  color: #494949;
}

.logo-type._2 {
  color: #f5f6f9;
}

.color-font {
  font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
}

.licensing-items {
  display: block;
  width: 66.66%;
  margin-right: auto;
  margin-left: auto;
  padding-top: 8px;
  padding-right: 15px;
  padding-left: 15px;
}

.licensing-item {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: -1px;
  padding-top: 40px;
  padding-bottom: 40px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-top: 1px none #ddd;
  border-bottom: 1px none #ddd;
}

.licensing-item.first {
  border-bottom-style: solid;
}

.licensing-item-content {
  height: 100px;
  margin-left: 32px;
  padding: 12px 20px 20px;
  border-style: solid;
  border-width: 1px;
  border-color: rgba(0, 0, 0, 0.14);
  text-align: left;
}

.licensin-pfoto-link {
  margin-top: 8px;
  margin-right: 0px;
  color: #a5a5a5;
}

.licensin-pfoto-link:hover {
  color: #ff8e64;
}

.divider-link {
  display: inline-block;
  margin-right: 8px;
  margin-left: 8px;
}

.utility-page-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100vw;
  height: 100vh;
  max-height: 100%;
  max-width: 100%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(73, 73, 73, 0.5)), to(rgba(73, 73, 73, 0.5))), url('../images/jose-soriano-1230118-unsplash-min.jpg');
  background-image: linear-gradient(180deg, rgba(73, 73, 73, 0.5), rgba(73, 73, 73, 0.5)), url('../images/jose-soriano-1230118-unsplash-min.jpg');
  background-position: 0px 0px, 50% 50%;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
}

.utility-page-wrap.pass {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(73, 73, 73, 0.5)), to(rgba(73, 73, 73, 0.5))), url('../images/AAA-副本-min.jpg');
  background-image: linear-gradient(180deg, rgba(73, 73, 73, 0.5), rgba(73, 73, 73, 0.5)), url('../images/AAA-副本-min.jpg');
  background-position: 0px 0px, 0px 0px;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
}

.utility-page-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 600px;
  padding: 20px 40px 40px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  background-color: rgba(73, 73, 73, 0.8);
  text-align: center;
}

.pass-window {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 400px;
  margin-top: 24px;
  padding: 50px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  border-radius: 4px;
  background-color: #fff;
  color: #fff;
  font-size: 17px;
  line-height: 27px;
  text-align: center;
}

.pass-form {
  color: #333;
}

.input {
  height: 48px;
  margin-bottom: 24px;
  text-align: center;
}

.password-image {
  display: block;
  width: 65px;
  height: 65px;
  margin-right: auto;
  margin-bottom: 10px;
  margin-left: auto;
}

.heading-10 {
  line-height: 22px;
}

.paragraph-center {
  font-family: Lato, sans-serif;
  color: #69676c;
  font-size: 16px;
  text-align: center;
}

.paragraph-center.light {
  color: #69676c;
}

.title-liciensing {
  margin-top: 0px;
  margin-bottom: 10px;
}

.image-side {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 0;
  -webkit-flex: 0 auto;
  -ms-flex: 0 auto;
  flex: 0 auto;
}

.blog-link-photo {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 0;
  -webkit-flex: 0 auto;
  -ms-flex: 0 auto;
  flex: 0 auto;
  background-image: url('../images/sophia-baboolal-86214-unsplash.jpg');
  background-position: 50% 50%;
  background-size: cover;
}

.copy-div {
  position: absolute;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 70%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 10px;
  padding-bottom: 20px;
  padding-left: 10px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: rgba(73, 73, 73, 0.5);
  text-align: center;
}

.copy-div.new {
  z-index: 9;
  display: none;
  width: 50%;
  padding-bottom: 32px;
  background-color: rgba(73, 73, 73, 0.6);
}

.hero-image-div {
  position: relative;
  height: 600px;
  margin-top: -300px;
  padding-bottom: 0px;
  border-radius: 10px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(219, 208, 190, 0.15)), to(rgba(219, 208, 190, 0.15))), url('../images/59201d0509e35.jpg');
  background-image: linear-gradient(180deg, rgba(219, 208, 190, 0.15), rgba(219, 208, 190, 0.15)), url('../images/59201d0509e35.jpg');
  background-position: 0px 0px, 0px 50%;
  background-size: auto, cover;
}

.page-header-overlay {
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  background-color: transparent;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg'), -webkit-gradient(linear, left top, left bottom, from(rgba(11, 30, 70, 0.51)), to(rgba(11, 30, 70, 0.51)));
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg'), linear-gradient(180deg, rgba(11, 30, 70, 0.51), rgba(11, 30, 70, 0.51));
  background-position: 0px 0px, 0px 0px;
  background-size: cover, auto;
}

.div-small-image {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 500px;
  height: 500px;
  background-image: url('../images/armchair.svg');
  background-position: 0px 0px;
  background-size: cover;
}

.div-image-small-right {
  position: absolute;
  right: 0px;
  bottom: 0px;
  width: 500px;
  height: 500px;
  background-image: url('../images/lamp.svg');
  background-position: 50% 50%;
  background-size: cover;
}

.div-block-7 {
  position: absolute;
  right: 200px;
  bottom: 0px;
  width: 300px;
  height: 300px;
  border-style: solid;
  border-width: 20px;
  border-color: rgba(255, 142, 100, 0.31);
  border-radius: 10px;
  background-color: transparent;
  background-image: url('../images/dots2_1dots2.png');
  background-position: 0px 0px;
  background-size: 8px;
}

.div-block-8 {
  position: absolute;
  display: block;
  width: 500px;
  height: 500px;
  margin-right: auto;
  margin-left: auto;
  border: 35px solid #f6f6f6;
  border-radius: 20px;
  background-color: transparent;
  background-image: url('../images/dots2_1dots2.png');
  background-position: 0px 0px;
  background-size: 8px;
}

.div-block-9 {
  position: absolute;
  left: auto;
  top: 53px;
  right: 42px;
  width: 200px;
  height: 200px;
  border: 20px solid #f8f8f8;
  border-radius: 10px;
  background-color: transparent;
  background-image: url('../images/dots2_1dots2.png');
  background-position: 0px 0px;
  background-size: 8px;
}

.blog-dark-overlay {
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(16, 18, 70, 0.5)), to(rgba(16, 18, 70, 0.5)));
  background-image: linear-gradient(180deg, rgba(16, 18, 70, 0.5), rgba(16, 18, 70, 0.5));
}

.dropdown-link {
  display: block;
  width: 100%;
  padding: 12px 20px;
  background-color: #fff;
  opacity: 1;
  font-family: Dosis, sans-serif;
  color: #000;
  font-size: 14px;
  line-height: 23px;
  font-weight: 500;
  text-decoration: none;
  text-transform: none;
}

.dropdown-link:hover {
  color: #bbae98;
}

.dropdown-link.w--current {
  background-color: #bbae98;
  color: #fff;
  font-size: 13px;
  line-height: 23px;
}

.dropdown-link.dynamic {
  min-width: 150px;
  font-size: 13px;
}

.dropdown-link.dynamic.w--current {
  color: #494949;
  font-size: 12px;
}

.dropdown-link.static {
  display: block;
  font-weight: 600;
}

.dropdown-list {
  margin-top: 0px;
}

.dropdown-list.w--open {
  margin-top: 0px;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.15);
}

.title-contact {
  text-transform: uppercase;
}

.scroll-nav {
  position: fixed;
  left: 0px;
  top: 0px;
  right: 0px;
  display: none;
  width: 100%;
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #fff;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.12);
}

.success-message {
  border-radius: 10px;
  background-color: #00ad31;
  color: #fff;
  font-weight: 500;
}

.error-message {
  border-radius: 10px;
  background-color: red;
  color: #fff;
  text-align: center;
}

.text-categories {
  display: inline-block;
  width: 120px;
  margin-right: 5px;
  margin-left: 5px;
  padding: 10px 15px;
  border-radius: 4px;
  background-color: #ff8e64;
  color: #fff;
  text-decoration: none;
}

.collection-list-wrapper {
  display: inline-block;
  text-align: center;
}

.div-block-11 {
  margin-bottom: 40px;
  text-align: center;
}

.collection-list-2 {
  display: inline-block;
  height: 100%;
}

.collection-item-2 {
  display: inline-block;
  padding-right: 0px;
  padding-left: 0px;
  float: none;
}

.author-div {
  display: block;
  width: 80%;
  height: auto;
  margin-top: 50px;
  margin-right: auto;
  margin-left: auto;
}

.link-author {
  padding-top: 20px;
  color: #ff8e64;
}

.link-author:hover {
  color: #000;
}

.div-block-12 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.div-button {
  height: 80px;
  padding-top: 15px;
  float: right;
}

.bold-text {
  margin-right: 5px;
  color: #000;
}

.button-div {
  position: static;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 10px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(73, 73, 73, 0.5)), to(rgba(73, 73, 73, 0.5))), url('../images/sidekix-media-1108451-unsplash-min.jpg');
  background-image: linear-gradient(180deg, rgba(73, 73, 73, 0.5), rgba(73, 73, 73, 0.5)), url('../images/sidekix-media-1108451-unsplash-min.jpg');
  background-position: 0px 0px, 50% 50%;
  background-size: auto, cover;
}

.button-div._2 {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(73, 73, 73, 0.5)), to(rgba(73, 73, 73, 0.5))), url('../images/jose-soriano-1230104-unsplash-min.jpg');
  background-image: linear-gradient(180deg, rgba(73, 73, 73, 0.5), rgba(73, 73, 73, 0.5)), url('../images/jose-soriano-1230104-unsplash-min.jpg');
  background-size: auto, cover;
}

.button-div._3 {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(73, 73, 73, 0.5)), to(rgba(73, 73, 73, 0.5))), url('../images/jose-soriano-1231563-unsplash-min.jpg');
  background-image: linear-gradient(180deg, rgba(73, 73, 73, 0.5), rgba(73, 73, 73, 0.5)), url('../images/jose-soriano-1231563-unsplash-min.jpg');
  background-size: auto, cover;
}

.close-link-block {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 28px;
  height: 28px;
  margin-top: 20px;
  margin-right: 20px;
  background-image: url('../images/close.png');
  background-position: 50% 50%;
  background-size: 20px;
  background-repeat: no-repeat;
}

.field-label {
  font-family: Dosis, sans-serif;
  font-size: 14px;
  font-weight: 600;
}

.hero-zoom {
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(16, 18, 70, 0.65)), to(rgba(16, 18, 70, 0.65))), url('../images/alexander-pemberton-95212-unsplash.jpg');
  background-image: linear-gradient(180deg, rgba(16, 18, 70, 0.65), rgba(16, 18, 70, 0.65)), url('../images/alexander-pemberton-95212-unsplash.jpg');
  background-position: 0px 0px, 50% 50%;
  background-size: auto, cover;
}

.body {
  font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
}

.text-span {
  color: #d1c1a6;
}

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

.text-span-2 {
  font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
  color: red;
  font-weight: 700;
}

.link {
  color: red;
  text-decoration: none;
}

.text-span-3 {
  color: #d1c1a6;
}

.text-span-4 {
  color: #d1c1a6;
}

.link-2 {
  color: #9b9999;
  text-decoration: none;
}

.link-3 {
  color: #f5f6f9;
  text-decoration: none;
}

.paragraph {
  font-family: Exo, sans-serif;
  color: #69676c;
  text-align: center;
}

.text-block-9 {
  font-family: Dosis, sans-serif;
  color: #494949;
  font-size: 20px;
  font-weight: 700;
}

.text-block-9:hover {
  color: #bbae98;
}

.link-block-2 {
  position: relative;
  width: 100%;
  margin-top: 0px;
  padding-top: 20px;
  padding-bottom: 12px;
  border-style: none;
  border-top-width: 1px;
  border-top-color: #ddd;
  text-decoration: none;
}

.div-block-13 {
  width: 80%;
  margin-right: auto;
  margin-left: auto;
}

.image-7 {
  position: absolute;
  top: 16px;
  right: 0px;
  height: 12px;
  border-radius: 3px;
}

.paragraph-2 {
  display: block;
  width: 48%;
  margin-top: 0px;
  margin-right: 0%;
  font-family: Lato, sans-serif;
  color: #494949;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  text-align: left;
}

.paragraph-2.swkc {
  width: 100%;
  margin-bottom: 20px;
  font-weight: 400;
}

.paragraph-2.intro {
  width: auto;
  color: #69676c;
}

.faq-answer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  margin-top: 10px;
  padding: 10px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.faq-answer._2.skcw {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.faq-answer._2.swkc {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.faq-answer.swkc1 {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.faq-answer.home {
  padding: 0px;
  background-color: #fff;
  box-shadow: 0 28px 50px -25px rgba(0, 0, 0, 0.2);
}

.div-block-14 {
  margin-bottom: 40px;
  border-top: 1px solid #ddd;
}

.div-block-15 {
  margin-bottom: 40px;
  border-top: 1px solid #ddd;
}

.paragraph-3 {
  width: 80%;
  margin-right: auto;
  margin-left: auto;
  font-family: Dosis, sans-serif;
  color: rgba(0, 0, 0, 0.85);
  font-size: 18px;
}

.paragraph-4 {
  width: 80%;
  margin-right: auto;
  margin-left: auto;
  font-family: Dosis, sans-serif;
  color: rgba(0, 0, 0, 0.85);
  font-size: 18px;
}

.rich-text-block {
  width: 80%;
  margin-right: auto;
  margin-left: auto;
  color: rgba(0, 0, 0, 0.85);
}

.rich-text-block-2 {
  width: 80%;
  margin-right: auto;
  margin-left: auto;
}

.text-span-5 {
  color: #d1c1a6;
}

.link-4 {
  color: #f5f6f9;
  text-decoration: none;
}

.div-block-16 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 80%;
  height: auto;
  margin-right: auto;
  margin-left: auto;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.div-block-17 {
  width: 80%;
  margin-right: auto;
  margin-left: auto;
  -webkit-box-flex: 0;
  -webkit-flex: 0 auto;
  -ms-flex: 0 auto;
  flex: 0 auto;
}

.section-2 {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.link-5 {
  color: #a5a5a5;
  text-decoration: none;
}

.link-6 {
  color: #a5a5a5;
  text-decoration: none;
}

.paragraph-5 {
  display: block;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #494949;
  text-align: center;
}

.paragraph-6 {
  display: block;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #69676c;
  text-align: center;
}

.paragraph-7 {
  color: #69676c;
  text-align: center;
}

.paragraph-8 {
  color: #69676c;
  text-align: center;
}

.slider {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 600px;
  margin-top: -300px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.tab-pane {
  color: rgba(0, 0, 0, 0.85);
}

.slide-2 {
  width: 100%;
  min-width: 100%;
  background-image: url('../images/59201d0509e35.jpg');
  background-position: 50% 50%;
  background-size: cover;
}

.slider-2 {
  width: 100%;
  height: 100vh;
  margin-top: 0px;
  border: 1px none #000;
  border-radius: 10px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(219, 208, 190, 0.15)), to(rgba(219, 208, 190, 0.15))), url('../images/c.jpg');
  background-image: linear-gradient(180deg, rgba(219, 208, 190, 0.15), rgba(219, 208, 190, 0.15)), url('../images/c.jpg');
  background-position: 0px 0px, 50% 50%;
  background-size: auto, cover;
}

.div-hero {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 600px;
  margin-top: -420px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px none #000;
  border-radius: 20px;
}

.div-hero._1 {
  height: auto;
  margin-top: 0px;
}

.slide-3 {
  border: 1px none #000;
  border-radius: 10px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(hsla(0, 0%, 86.7%, 0.05)), to(hsla(0, 0%, 86.7%, 0.05))), url('../images/cab-1.jpg');
  background-image: linear-gradient(180deg, hsla(0, 0%, 86.7%, 0.05), hsla(0, 0%, 86.7%, 0.05)), url('../images/cab-1.jpg');
  background-position: 0px 0px, 50% 80%;
  background-size: auto, cover;
}

.slide-5 {
  border: 1px none #000;
  border-radius: 10px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(hsla(0, 0%, 86.7%, 0.35)), to(hsla(0, 0%, 86.7%, 0.35))), url('../images/DSC_8089-min.JPG');
  background-image: linear-gradient(180deg, hsla(0, 0%, 86.7%, 0.35), hsla(0, 0%, 86.7%, 0.35)), url('../images/DSC_8089-min.JPG');
  background-position: 0px 0px, 0px 0px;
  background-size: auto, cover;
}

.slide-5.new {
  background-image: -webkit-gradient(linear, left top, left bottom, from(null), to(null)), url('../images/IMG_20140821_162526-min.jpg');
  background-image: linear-gradient(180deg, null, null), url('../images/IMG_20140821_162526-min.jpg');
}

.slide-6 {
  border: 1px none #000;
  border-radius: 10px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(hsla(0, 0%, 86.7%, 0.2)), to(hsla(0, 0%, 86.7%, 0.2))), url('../images/未标题-22.jpg');
  background-image: linear-gradient(180deg, hsla(0, 0%, 86.7%, 0.2), hsla(0, 0%, 86.7%, 0.2)), url('../images/未标题-22.jpg');
  background-position: 0px 0px, 50% 64%;
  background-size: auto, cover;
}

.text-span-6 {
  color: #dbd0be;
}

.navbar-2 {
  display: block;
}

.navbar-3 {
  display: none;
}

.navbar-4 {
  background-color: #fff;
}

.navbar-5 {
  box-shadow: 1px 1px 3px 0 #000;
}

.navbar-6 {
  display: block;
}

.navbar-7 {
  display: none;
}

.right-arrow {
  height: 50%;
  border-style: none;
}

.mask {
  border: 1px none #000;
  border-radius: 10px;
  background-image: url('../images/180207-min.jpg');
  background-position: 50% 50%;
  background-size: cover;
}

.slide-7 {
  border: 1px none #000;
  border-radius: 10px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(hsla(0, 0%, 86.7%, 0.05)), to(hsla(0, 0%, 86.7%, 0.05))), url('../images/cab-2.jpg');
  background-image: linear-gradient(180deg, hsla(0, 0%, 86.7%, 0.05), hsla(0, 0%, 86.7%, 0.05)), url('../images/cab-2.jpg');
  background-position: 0px 0px, 50% 100%;
  background-size: auto, cover;
}

.slide-7._2 {
  background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), to(transparent)), url('../images/1.-grey-kitchen.jpg');
  background-image: linear-gradient(180deg, transparent, transparent), url('../images/1.-grey-kitchen.jpg');
  background-position: 0px 0px, 50% 50%;
}

.tab-link-2 {
  background-color: #f5f6f9;
}

.tab-link-2.w--current {
  border-bottom: 2px solid #c60;
  background-color: #f5f6f9;
  color: #c60;
}

.tab-link-2.w--current:hover {
  color: #c60;
}

.text-block-10 {
  font-family: Dosis, sans-serif;
  font-size: 15px;
  font-weight: 600;
}

.tab-pane-2 {
  width: 90%;
  margin-right: auto;
  margin-left: auto;
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.25);
}

.tab-pane-3 {
  display: block;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.div-block-18 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 80%;
  margin-right: auto;
  margin-left: auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.25);
}

.div-block-19 {
  width: 80%;
  margin-right: auto;
  margin-left: auto;
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.25);
}

.div-block-20 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 80%;
  margin-right: auto;
  margin-left: auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.25);
}

.navbar-8 {
  display: none;
}

.text-block-11 {
  font-family: Dosis, sans-serif;
  font-size: 18px;
  font-weight: 600;
}

.div-block-21 {
  position: relative;
  width: 80%;
  max-width: 1600px;
  margin-right: auto;
  margin-left: auto;
}

.navbar-9 {
  display: block;
}

.navbar-10 {
  display: none;
}

.section-3 {
  padding-top: 120px;
  padding-left: 0px;
  background-color: #fff;
}

.tabs-menu-2 {
  display: block;
  text-align: center;
}

.tab-link-3 {
  background-color: #fff;
  font-family: Dosis, sans-serif;
  color: #494949;
  font-weight: 500;
}

.tab-link-3.w--current {
  border-bottom: 2px solid #bbae98;
  background-color: #fff;
  color: #bbae98;
}

.text-block-12 {
  font-family: Dosis, sans-serif;
  font-size: 16px;
}

.tab-link-4 {
  background-color: #fff;
  font-family: Dosis, sans-serif;
  font-size: 15px;
  font-weight: 500;
}

.tab-link-4.w--current {
  border-bottom: 2px solid #bbae98;
  background-color: #fff;
  color: #bbae98;
}

.image-8 {
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 10;
  width: 100vw;
  height: 100vh;
}

.div-block-22 {
  position: fixed;
  z-index: 0;
  display: block;
  width: 100vw;
  height: 100vh;
  background-color: #f5f6f9;
  background-image: url('../images/brand-bg.png');
  background-position: 50% 50%;
  background-size: cover;
}

.section-4 {
  height: 100vh;
  min-height: 100vh;
  background-color: #fff;
}

.div-block-23 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 40px;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.image-9 {
  margin-right: 10px;
  margin-left: 10px;
}

.section-5 {
  padding: 120px 56px;
}

.text-block-13 {
  font-family: Dosis, sans-serif;
  color: #c60;
  font-size: 16px;
  font-weight: 500;
}

.text-block-14 {
  font-family: Lato, sans-serif;
  font-size: 16px;
}

.text-block-15 {
  font-family: Lato, sans-serif;
  color: #333;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
}

.link-7 {
  font-family: Dosis, sans-serif;
  color: #333;
  text-decoration: none;
}

.link-block-3 {
  color: #333;
  text-decoration: none;
}

.section-6 {
  padding: 120px 56px;
}

.div-block-24 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 40px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.image-10 {
  margin-right: 10px;
  margin-left: 10px;
}

.image-11 {
  margin-right: 10px;
  margin-left: 10px;
}

.text-block-16 {
  font-family: Lato, sans-serif;
  color: #333;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
}

.link-8 {
  font-family: Dosis, sans-serif;
  color: #333;
  text-decoration: none;
}

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

.text-block-17 {
  font-family: Dosis, sans-serif;
  color: #c60;
  font-size: 18px;
  text-decoration: none;
}

.link-block-5 {
  color: #333;
  text-decoration: none;
}

.text-block-18 {
  font-family: Dosis, sans-serif;
  font-size: 18px;
}

.column {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.div-block-25 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
  padding-bottom: 12px;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.div-block-25.features {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.text-block-19 {
  margin-left: 20px;
  padding-bottom: 12px;
  line-height: 24px;
}

.div-block-26 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 12px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.div-block-27 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 12px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.div-block-28 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 12px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.div-block-29 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 12px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.div-block-30 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 12px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.text-block-20 {
  margin-left: 20px;
  padding-bottom: 12px;
}

.tab-link-5 {
  background-color: #fff;
  font-weight: 600;
}

.tab-link-5.w--current {
  border-bottom: 2px solid #c60;
  background-color: #fff;
  color: #c60;
}

.tab-link-6 {
  background-color: #fff;
  font-weight: 600;
}

.tab-link-6.w--current {
  border-bottom: 2px solid #c60;
  background-color: #fff;
  color: #c60;
  font-weight: 600;
}

.tabs {
  width: 80%;
  margin-right: auto;
  margin-left: auto;
}

.paragraph-9 {
  font-family: Lato, sans-serif;
  color: #494949;
  font-size: 16px;
  font-weight: 500;
}

.tab-pane-4 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.tab-pane-5 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.paragraph-10 {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  font-family: Lato, sans-serif;
  color: #494949;
  font-size: 16px;
  font-weight: 500;
}

.bold-text-2 {
  font-family: Lato, sans-serif;
}

.bold-text-3 {
  font-family: Lato, sans-serif;
}

.bold-text-4 {
  font-family: Lato, sans-serif;
}

.bold-text-5 {
  font-family: Lato, sans-serif;
}

.bold-text-6 {
  font-family: Lato, sans-serif;
}

.bold-text-7 {
  font-family: Lato, sans-serif;
}

.bold-text-8 {
  font-family: Lato, sans-serif;
}

.div-block-31 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 40px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.image-12 {
  margin-right: 10px;
  margin-left: 10px;
}

.image-13 {
  margin-right: 10px;
  margin-left: 10px;
}

.image-14 {
  margin-right: 10px;
  margin-left: 10px;
}

.text-block-21 {
  font-family: Dosis, sans-serif;
  font-size: 18px;
  font-weight: 600;
}

.link-block-6 {
  color: #333;
  text-decoration: none;
}

.link-block-7 {
  color: #333;
  text-decoration: none;
}

.link-block-8 {
  color: #333;
  text-decoration: none;
}

.text-block-22 {
  font-family: Dosis, sans-serif;
  font-size: 16px;
}

.text-block-23 {
  font-family: Dosis, sans-serif;
  font-size: 16px;
}

.text-block-24 {
  font-family: Dosis, sans-serif;
  color: #c60;
  font-size: 16px;
}

.link-block-9 {
  margin-left: 5px;
  color: red;
  text-decoration: none;
}

.text-block-25 {
  font-family: Exo, sans-serif;
  color: #f5f6f9;
  font-weight: 700;
}

.text-block-26 {
  font-family: Dosis, sans-serif;
  color: #494949;
  font-size: 12px;
  text-align: left;
  text-transform: none;
}

.text-block-26:hover {
  color: #000;
}

.text-block-26:active {
  color: #000;
}

.text-block-27 {
  color: #fff;
}

.left-arrow {
  height: 50%;
}

.link-9 {
  color: #a5a5a5;
  text-decoration: none;
}

.image-15 {
  width: 100%;
}

.link-10 {
  color: #000;
  text-decoration: none;
}

.link-11 {
  color: #000;
  text-decoration: none;
}

.link-12 {
  color: #000;
  text-decoration: none;
}

.text-span-7 {
  color: #000;
}

.text-span-8 {
  color: #000;
}

.link-13 {
  color: #f5f6f9;
  text-decoration: none;
}

.paragraph-11 {
  font-family: Lato, sans-serif;
  color: #69676c;
  font-size: 16px;
  line-height: 24px;
  text-align: justify;
}

.div-block-32 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 60px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.div-block-33 {
  width: 400px;
  height: 400px;
  max-height: 400px;
  max-width: 400px;
  min-height: 400px;
  min-width: 400px;
  margin-right: 5%;
  margin-left: 5%;
  border-radius: 50%;
  background-image: url('../images/level-3314522_960_720.jpg');
  background-position: 50% 50%;
  background-size: cover;
  box-shadow: 0 28px 50px -25px rgba(0, 0, 0, 0.5);
}

.paragraph-12 {
  width: auto;
  font-family: Lato, sans-serif;
  color: #69676c;
  font-size: 16px;
  line-height: 24px;
  text-align: justify;
}

.paragraph-13 {
  margin-top: 40px;
  font-family: Lato, sans-serif;
  color: #69676c;
  font-size: 16px;
  line-height: 24px;
  text-align: justify;
}

.paragraph-14 {
  margin-top: 90px;
  font-family: Lato, sans-serif;
  color: #69676c;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  text-align: justify;
}

.paragraph-15 {
  font-family: Lato, sans-serif;
}

.text-span-9 {
  color: #000;
  font-weight: 700;
}

.bold-text-9 {
  color: #000;
}

.text-span-10 {
  color: #000;
  font-weight: 700;
}

.bold-text-10 {
  color: #000;
}

.text-span-11 {
  color: #000;
  font-weight: 700;
}

.map {
  width: 45%;
  height: auto;
  box-shadow: 3px 3px 16px 0 rgba(0, 0, 0, 0.25);
}

.map.showrrom {
  box-shadow: none;
}

.map.showroom {
  width: 100%;
  height: 100%;
}

.map.warehouse {
  width: 100%;
  height: 200px;
}

.link-14 {
  color: #000;
  text-decoration: none;
}

.link-15 {
  color: #000;
  text-decoration: none;
}

.bold-text-11 {
  color: #fff;
  text-decoration: none;
}

.bold-text-12 {
  color: #fff;
}

.bold-text-13 {
  color: #fff;
}

.bold-text-14 {
  color: #fff;
}

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

.form {
  text-align: left;
}

.form-block {
  width: 85%;
}

.field-label-2 {
  padding-left: 12px;
  font-family: Dosis, sans-serif;
  font-size: 16px;
}

.text-field-3 {
  margin-bottom: 32px;
  border-style: none none solid;
  border-width: 1px;
  border-color: #69676c #69676c #ddd;
  font-size: 16px;
  line-height: 24px;
}

.field-label-3 {
  margin-bottom: 10px;
  padding-left: 12px;
  font-family: Dosis, sans-serif;
  font-size: 16px;
}

.text-field-4 {
  margin-bottom: 40px;
  border-style: none none solid;
  border-width: 1px;
  border-color: #000 #000 #ddd;
  font-size: 16px;
  line-height: 24px;
}

.submit-button {
  margin-top: 60px;
}

.submit-button.purchase-button.orange-text.home {
  width: 200px;
  height: 48px;
  margin-top: 40px;
  font-family: Dosis, sans-serif;
  font-size: 16px;
  text-align: center;
}

.heading-11 {
  margin-bottom: 60px;
  font-family: Dosis, sans-serif;
  font-weight: 700;
}

.text-field-5 {
  margin-bottom: 40px;
  border-style: none none solid;
  border-width: 1px;
  border-color: #000 #000 #ddd;
  font-family: Lato, sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.textarea {
  font-size: 16px;
}

.div-block-34 {
  text-align: center;
}

.link-17 {
  color: #494949;
  text-decoration: none;
}

.link-18 {
  color: #494949;
  text-decoration: none;
}

.div-block-35 {
  width: 50%;
  height: auto;
  margin-right: 4%;
  margin-left: 0%;
  border-radius: 0px;
  background-image: url('../images/AW-and-countertop-YELLOW-FIESTA.-909-E-oakton.-1.jpg');
  background-position: 50% 100%;
  background-size: cover;
  box-shadow: 0 28px 50px -25px rgba(0, 0, 0, 0.2);
}

.div-block-35._2 {
  margin-right: 0%;
  margin-left: 4%;
  background-image: url('../images/rune-enstad-1090369-unsplash-min.jpg');
  background-position: 50% 50%;
  background-size: cover;
  box-shadow: 0 28px 50px -25px rgba(0, 0, 0, 0.25);
}

.div-block-35._2.project {
  height: 250px;
}

.div-block-35._3 {
  background-image: url('../images/nrd-1484777-unsplash-min.jpg');
  background-position: 50% 100%;
  background-size: cover;
}

.div-block-35._3.project {
  height: 250px;
}

.div-block-35._4 {
  margin-right: 0%;
  margin-left: 4%;
  background-image: url('../images/jose-soriano-1230118-unsplash-min.jpg');
  background-position: 50% 50%;
  background-size: cover;
}

.div-block-35._5 {
  background-image: url('../images/sidekix-media-1108451-unsplash-min.jpg');
}

.div-block-35.swkc {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 260px;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  background-image: none;
  box-shadow: none;
}

.div-block-35.project {
  height: 250px;
}

.div-block-36 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.div-block-37 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.div-block-37.contact-us-wrapper-half-section.contact {
  box-shadow: none;
}

.heading-12 {
  margin-bottom: 60px;
  font-family: Dosis, sans-serif;
  font-weight: 600;
}

.div-block-38 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.breadcrumb {
  width: 100%;
}

.bold-text-15 {
  font-family: Dosis, sans-serif;
  font-size: 24px;
}

.div-block-39 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.div-block-40 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
  padding-right: 60px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.div-block-41 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
  height: 500px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.div-block-42 {
  position: relative;
  width: 250px;
  height: 400px;
  border: 12px solid #bbae98;
}

.image-16 {
  position: absolute;
  left: auto;
  top: auto;
  right: 0%;
  bottom: 0%;
  width: 300px;
  height: 300px;
}

.div-block-43 {
  position: absolute;
  left: auto;
  top: auto;
  right: -50%;
  bottom: 10%;
  width: 300px;
  height: 500px;
  background-image: url('../images/goashape-1419563-unsplash-min.jpg');
  background-position: 50% 50%;
  background-size: cover;
  box-shadow: 0 28px 50px -25px rgba(0, 0, 0, 0.5);
}

.text-block-28 {
  font-family: Dosis, sans-serif;
  font-size: 32px;
  line-height: 48px;
  font-weight: 700;
}

.paragraph-16 {
  margin-top: 60px;
  font-family: Lato, sans-serif;
  color: #a5a5a5;
  font-size: 16px;
  line-height: 24px;
  text-align: left;
}

.paragraph-16.right {
  text-align: right;
}

.div-block-44 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.div-block-45 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
  padding-right: 60px;
  padding-left: 60px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.div-block-46 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
  height: 500px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.div-block-47 {
  position: relative;
  width: 350px;
  height: 200px;
  border: 12px solid #bbae98;
}

.div-block-48 {
  position: absolute;
  right: 12%;
  bottom: -85%;
  width: 400px;
  height: 300px;
  background-image: url('../images/jose-soriano-1230118-unsplash-min.jpg');
  background-position: 50% 50%;
  background-size: cover;
  box-shadow: 0 28px 50px -25px rgba(0, 0, 0, 0.5);
}

.div-block-49 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.div-block-50 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
  padding-right: 60px;
  padding-left: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.div-block-51 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
  height: 600px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.div-block-52 {
  position: relative;
  width: 400px;
  height: 200px;
  border: 12px solid #bbae98;
}

.div-block-53 {
  position: absolute;
  left: 12%;
  top: -30%;
  width: 400px;
  height: 350px;
  background-image: url('../images/rune-enstad-1090369-unsplash-min.jpg');
  background-position: 50% 50%;
  background-size: cover;
  box-shadow: 0 28px 50px -25px rgba(0, 0, 0, 0.5);
}

.div-block-54 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.div-block-55 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.div-block-56 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
  height: 600px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.div-block-57 {
  position: relative;
  width: 200px;
  height: 350px;
  border: 12px solid #bbae98;
}

.div-block-58 {
  position: absolute;
  left: auto;
  top: 20%;
  right: 15%;
  bottom: auto;
  width: 300px;
  height: 450px;
  background-image: url('../images/jose-soriano-1230104-unsplash-min.jpg');
  background-position: 50% 50%;
  background-size: cover;
  box-shadow: 0 28px 50px -25px rgba(0, 0, 0, 0.5);
}

.div-block-59 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.div-block-60 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
  padding: 60px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #f5f6f9;
  background-image: url('../images/dots2_1dots2.png');
  background-position: 50% 50%;
  background-size: auto;
  box-shadow: 3px 3px 16px 0 rgba(0, 0, 0, 0.25);
}

.div-block-61 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.div-block-62 {
  width: 100%;
  height: 700px;
  background-image: url('../images/goashape-1419563-unsplash-min.jpg');
  background-position: 50% 100%;
  background-size: cover;
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.25);
}

.div-block-62.floor {
  background-image: none;
}

.div-block-62.faucets {
  background-image: url('../images/jacek-dylag-1145288-unsplash-min.jpg');
  background-position: 50% 0%;
  background-size: cover;
}

.div-block-62.img1 {
  height: 500px;
  background-image: url('../images/eropean.-flats-10.jpg');
  background-size: cover;
}

.heading-13 {
  width: 95%;
  font-family: Dosis, sans-serif;
  text-align: left;
}

.link-19 {
  color: #fff;
  text-decoration: none;
}

.link-20 {
  color: #fff;
  text-decoration: none;
}

.link-21 {
  color: #fff;
  text-decoration: none;
}

.text-span-12 {
  color: #fff;
}

.text-span-13 {
  color: #fff;
}

.link-22 {
  color: #f5f6f9;
  text-decoration: none;
}

.link-23 {
  color: #f5f6f9;
  text-decoration: none;
}

.link-24 {
  color: #fff;
  text-decoration: none;
}

.div-block-63 {
  width: 20%;
  height: 100px;
}

.div-block-63.company-logo {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.div-block-64 {
  width: 20%;
  height: 100px;
}

.div-block-64.company-logo {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.div-block-65 {
  width: 20%;
  height: 100px;
}

.div-block-65.company-logo {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.div-block-66 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 20%;
  height: 100px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.div-block-67 {
  width: 20%;
  height: 100px;
}

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

.link-25 {
  color: #f5f6f9;
  text-decoration: none;
}

.link-26 {
  color: #fff;
  text-decoration: none;
}

.text-span-14 {
  color: #ddd;
}

.text-span-15 {
  color: #ddd;
}

.image-17 {
  margin-right: 20px;
}

.work-row {
  display: block;
  min-width: 100%;
}

.work-row.hori {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.div-block-68 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  width: 50%;
  max-width: 50%;
  min-height: 380px;
  min-width: 50%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  background-image: url('../images/df87a7b557c36938a505f611b10c112.jpg');
  background-position: 50% 50%;
  background-size: cover;
}

.div-block-68._2 {
  max-width: 50%;
  background-image: url('../images/f81665ccf290c39e20fed60764179e7.jpg');
  background-position: 50% 50%;
  background-size: cover;
}

.div-block-68._2.verti {
  height: auto;
  background-image: none;
}

.div-block-68._2.verti.h2 {
  min-height: auto;
}

.div-block-68._3 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  width: 50%;
  max-width: 50%;
  min-width: 50%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  background-image: url('../images/e39e491c1223b9ff3449d47f056896d.jpg');
  background-position: 50% 50%;
  background-size: cover;
}

.div-block-68._3.verti {
  background-image: none;
}

.div-block-68._3.verti.h3 {
  min-height: auto;
}

.div-block-68._4 {
  background-image: url('../images/fcba19511fc07375b05eb185566bdca.jpg');
  background-position: 50% 50%;
  background-size: cover;
}

.div-block-68._5 {
  background-image: url('../images/da717e74c55864f175733bcf25762c3.jpg');
}

.div-block-68.verti {
  width: 100%;
  height: auto;
  max-width: 100%;
  min-width: 100%;
  background-image: none;
}

.div-block-68.verti.h1 {
  min-height: auto;
}

.div-block-68._6 {
  background-image: url('../images/8423db8028f0417f256e3c9d8506804.jpg');
}

.heading-14 {
  font-family: Exo, sans-serif;
  font-size: 20px;
  text-align: left;
}

.paragraph-17 {
  color: #a5a5a5;
}

.paragraph-17._1 {
  color: #69676c;
}

.bold-text-16 {
  font-weight: 600;
}

.link-block-10 {
  padding: 10px;
  text-align: left;
  text-decoration: none;
}

.text-block-30 {
  color: #877c78;
  font-weight: 600;
  text-align: center;
  text-decoration: underline;
}

.div-block-69 {
  margin-top: 16px;
  text-align: right;
}

.div-block-69.view-more {
  display: none;
}

.div-block-70 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 100%;
  min-width: 100%;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.div-block-71 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 40px;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.colors-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 40px;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.colors-wrapper._3 {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.color {
  width: 20%;
  max-width: 20%;
  min-width: 20%;
  margin-right: 2%;
  margin-left: 2%;
}

.color.e3 {
  width: 40%;
  max-width: 40%;
  min-width: 40%;
}

.color.handle {
  width: 30%;
  max-width: 30%;
  min-width: 30%;
}

.color.handle-end {
  width: 30%;
  max-width: 30%;
  min-width: 30%;
  margin-right: 0%;
}

.color.handle-start {
  width: 30%;
  max-width: 30%;
  min-width: 30%;
  margin-left: 1%;
}

.color-img {
  width: 100%;
  height: 300px;
  max-width: 100%;
  min-width: 100%;
  background-image: url('../images/GOLDEN-GARCIA.-LF.jpg');
  background-position: 0% 0%;
  background-size: cover;
}

.color-img._2 {
  background-image: url('../images/CRACKWOOD.-LF.jpg');
  background-position: 0% 0%;
}

.color-img._2.handle {
  background-image: none;
}

.color-img._3 {
  background-image: url('../images/BRAZILIAN-CHERRY.-LF.jpg');
}

.color-img._3.handle {
  background-image: none;
}

.color-img.img-4 {
  background-image: url('../images/LATTE.-LF.jpg');
}

.color-img._5 {
  background-image: url('../images/NIGHT-FALL-HICKORY.-LF.jpg');
}

.color-img._5.handle {
  background-image: none;
}

.color-img._6 {
  background-image: url('../images/PEPPER-CORN.-LF.jpg');
}

.color-img._6.handle {
  background-image: none;
}

.color-img._7 {
  background-image: url('../images/RUSSET-OLIVE.-LF.jpg');
}

.color-img._7.handle {
  background-image: none;
}

.color-img._8 {
  background-image: url('../images/TERRA-COTTA-ALDER.-LF.jpg');
}

.color-img.v1 {
  background-image: url('../images/VF.-GREY318-2-min.jpg');
}

.color-img.v2 {
  background-image: url('../images/vf.-mahogany-283-4-min.jpg');
}

.color-img.v3 {
  background-image: url('../images/vf.-light-brown-min.jpg');
}

.color-img.v4 {
  background-image: url('../images/vf-brown-hickory-273-4-min.jpg');
}

.color-img.v5 {
  background-image: url('../images/VF-Greyne-min.jpg');
  background-position: 0% 0%;
}

.color-img.v6 {
  background-image: url('../images/VL-Tivoli-Oak-min.jpg');
  background-position: 0% 50%;
}

.color-img.e1 {
  background-image: url('../images/eropean.-flats-9.4-windale.jpg');
  background-position: 50% 50%;
}

.color-img.e2 {
  background-image: url('../images/european-cabinet.-flats-8.4.png');
  background-position: 50% 50%;
}

.color-img.e3 {
  background-image: url('../images/european-cabinet.-flats-8.png');
  background-position: 50% 100%;
  background-size: cover;
}

.color-img.handle {
  height: auto;
  background-image: none;
}

.color-name {
  margin-top: 16px;
  margin-bottom: 24px;
  margin-left: 10px;
  font-family: Dosis, sans-serif;
  font-size: 20px;
  font-weight: 600;
}

.div-block-72 {
  margin-bottom: 80px;
}

.text-block-31 {
  padding-right: 40px;
  padding-left: 40px;
  color: #a5a5a5;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
}

.div-block-73 {
  width: 30%;
  margin-right: 1.5%;
  margin-left: 1.5%;
  background-image: url('../images/AW-and-countertop-YELLOW-FIESTA.-909-E-oakton.jpg');
  background-position: 50% 50%;
  background-size: cover;
}

.div-block-73._2 {
  background-image: url('../images/BW-GR-1-7443.jpg');
}

.div-block-73._3 {
  background-image: url('../images/CHM.-3339-W-38th-Pl.jpg');
}

.div-block-73._4 {
  background-image: url('../images/Atlanta-Espresso.jpg');
}

.div-block-73._5 {
  background-image: url('../images/NC-3347-W-65TH-ST.jpg');
}

.div-block-73._6 {
  background-image: url('../images/Vermont-Charcoal-.jpg');
}

.div-block-73._7 {
  background-image: url('../images/OC.jpg');
  background-position: 50% 50%;
}

.div-block-73._8 {
  background-image: url('../images/grey.jpg');
}

.div-block-73.f1 {
  background-image: url('../images/k114.jpg');
}

.div-block-73.f2 {
  background-image: url('../images/b206.jpg');
  background-position: 0% 50%;
}

.div-block-73.f3 {
  background-image: url('../images/k124.jpg');
  background-position: 0% 50%;
}

.div-block-73.f4 {
  background-image: url('../images/k109.jpg');
}

.div-block-73.f5 {
  background-image: url('../images/v101.jpg');
}

.div-block-73.f6 {
  background-image: url('../images/b101.jpg');
  background-position: 0% 50%;
}

.div-block-73.f11 {
  background-image: url('../images/faucet-k123.PNG');
}

.div-block-73.f10 {
  background-image: url('../images/k105.jpg');
  background-position: 0% 50%;
}

.div-block-73.f9 {
  background-image: url('../images/faucets-b207.PNG');
}

.div-block-73.f8 {
  background-image: url('../images/k110.jpg');
  background-position: 0% 50%;
}

.div-block-73.f7 {
  background-image: url('../images/k104.jpg');
  background-position: 0% 50%;
}

.div-block-74 {
  width: 30%;
  margin-right: 1.5%;
  margin-left: 1.5%;
  background-image: url('../images/AW-and-countertop-YELLOW-FIESTA.-909-E-oakton.-1.jpg');
  background-position: 50% 50%;
  background-size: cover;
}

.div-block-74._2 {
  background-image: url('../images/BW-2-331.jpg');
}

.div-block-74._3 {
  background-image: url('../images/Chocolate-Mahogony.jpg');
}

.div-block-74._5 {
  background-image: url('../images/NYC.jpg');
}

.div-block-74.f1 {
  background-image: url('../images/faucet-b101.PNG');
  background-size: cover;
}

.div-block-74.f6 {
  background-image: url('../images/faucet-b101.PNG');
}

.div-block-74.g8 {
  background-image: url('../images/1481569621251_.pic_hd.jpg');
  background-position: 50% 50%;
}

.div-block-75 {
  width: 30%;
  margin-right: 1.5%;
  margin-left: 1.5%;
  background-image: url('../images/AW--1-3234.jpg');
  background-position: 50% 50%;
  background-size: cover;
}

.div-block-75._3 {
  background-image: url('../images/CHM-1-9149.jpg');
}

.div-block-75._5 {
  background-image: url('../images/NYC-min.png');
}

.div-block-75.g8 {
  background-image: url('../images/1471569621249_.pic_hd.jpg');
  background-position: 50% 100%;
}

.bold-text-17 {
  font-weight: 400;
}

.div-block-76 {
  margin-top: 40px;
  text-align: center;
}

.image-18 {
  padding-right: 10px;
  padding-left: 10px;
}

.image-19 {
  padding-right: 10px;
  padding-left: 10px;
}

.image-20 {
  padding-right: 10px;
  padding-left: 10px;
}

.image-21 {
  padding-right: 10px;
  padding-left: 10px;
}

.text-span-16 {
  color: #fff;
}

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

.bold-text-18 {
  color: #000;
}

.bold-text-19 {
  color: #000;
}

.bold-text-20 {
  color: #000;
}

.div-block-77 {
  width: 50%;
  padding: 60px 40px 60px 20px;
}

.image-22 {
  width: 100%;
}

.columns {
  margin-top: 40px;
}

.div-block-78 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.showroom-pics {
  margin-top: 20px;
  padding-bottom: 60px;
}

.div-block-79 {
  width: 100%;
  height: 25vh;
  background-image: url('../images/showroom-5a.jpg');
  background-position: 50% 50%;
  background-size: cover;
}

.div-block-80 {
  width: 100%;
  height: 25vh;
  background-image: url('../images/showroom5b.jpg');
  background-position: 50% 50%;
  background-size: cover;
}

.div-block-81 {
  width: 100%;
  height: 25vh;
  background-image: url('../images/showroom-5c.jpg');
  background-position: 0px 0px;
  background-size: cover;
}

.div-block-82 {
  width: 100%;
  height: 25vh;
  background-image: url('../images/showroom-5d.jpg');
  background-position: 50% 50%;
  background-size: cover;
}

.div-block-83 {
  width: 50%;
  padding-top: 60px;
  padding-right: 80px;
  padding-bottom: 60px;
}

.div-block-84 {
  width: 80%;
  margin-right: auto;
  margin-left: auto;
}

.image-24 {
  max-width: none;
  min-height: 100%;
}

.image-25 {
  min-height: 100%;
}

.image-26 {
  min-height: 100%;
}

.image-27 {
  min-height: 100%;
}

.image-28 {
  min-height: 100%;
}

.image-29 {
  height: 100%;
}

.hide {
  display: none;
}

.heading-15 {
  font-family: Bitter, serif;
  color: #fff;
  font-size: 32px;
  line-height: 1.5;
  text-align: left;
}

.heading-15.dark {
  color: #494949;
}

.div-block-85 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 80%;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.link-28 {
  padding: 10px 20px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 24px;
  background-color: #bbae98;
  font-family: Georgia, Times, 'Times New Roman', serif;
  color: #fff;
  font-size: 16px;
  text-decoration: none;
}

html.w-mod-js *[data-ix="display-none-on-load"] {
  display: none;
  opacity: 0;
  -webkit-transform: scale(1.09, 1.09);
  -ms-transform: scale(1.09, 1.09);
  transform: scale(1.09, 1.09);
}

html.w-mod-js *[data-ix="display-none-on-load-2"] {
  opacity: 0;
}

html.w-mod-js *[data-ix="hide-scroll-navigation-on-initial"] {
  display: none;
}

html.w-mod-js *[data-ix="hide-faq-func"] {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  opacity: 1;
}

@media screen and (max-width: 991px) {
  .navbar {
    display: block;
    padding-right: 0px;
    padding-left: 0px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .navbar.fixed-nav {
    padding-right: 0px;
    padding-left: 16px;
  }

  .container-full {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    max-width: none;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .container-full.slide-wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .brand {
    height: 70px;
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .brand.w--current {
    width: auto;
  }

  .nav-menu {
    left: 0px;
    top: 80px;
    bottom: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    overflow: scroll;
    height: auto;
    margin-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    float: none;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #fff;
    text-align: left;
  }

  .image-background-section.hero-section {
    height: 700px;
  }

  .image-background-section.hero-section.homeages-2 {
    height: 450px;
  }

  .image-background-section.footer-section {
    padding-right: 8px;
    padding-left: 8px;
  }

  .image-background-section.blog-hero-section.style-guide.new {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.2)), to(rgba(0, 0, 0, 0.2))), url('../images/dots2_1dots2.png'), url('../images/jose-soriano-1230104-unsplash-min.jpg');
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('../images/dots2_1dots2.png'), url('../images/jose-soriano-1230104-unsplash-min.jpg');
    background-position: 0px 0px, 0px 0px, 50% 0%;
    background-size: auto, 5px, 1872px;
  }

  .slider-content {
    width: 80%;
    margin-top: 40px;
    margin-bottom: 80px;
    padding-top: 40px;
  }

  .slider-content.third {
    z-index: 10;
    margin-top: 0px;
  }

  .hero-heading {
    font-size: 40px;
    line-height: 58px;
  }

  .slide-arrow {
    margin-left: 5%;
  }

  .section {
    padding: 80px 8px;
  }

  .section.gray {
    padding-right: 8px;
    padding-left: 8px;
  }

  .section.gray.single {
    padding-top: 80px;
  }

  .section.image-background {
    padding: 80px 8px;
  }

  .section.fullwidth.product {
    padding: 60px 20px;
  }

  .section.warehouse {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .section.factory {
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .section-wrapper-content {
    width: 470px;
  }

  .section-wrapper-content.page-header {
    width: 80%;
    margin-top: 20px;
  }

  .section-header {
    font-size: 30px;
    line-height: 40px;
    text-align: center;
  }

  .section-header.white {
    font-size: 30px;
    line-height: 40px;
  }

  .services-wrapper.no-side-padding {
    width: 90%;
    margin-right: auto;
    margin-left: auto;
  }

  .services-card {
    margin-right: 8px;
    margin-bottom: 0px;
    margin-left: 8px;
    padding-right: 16px;
    padding-left: 16px;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }

  .services-card.style-2 {
    margin-right: 15px;
    margin-left: 15px;
    padding-right: 16px;
    padding-left: 16px;
    -webkit-flex-basis: 25%;
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
  }

  .services-tittle.style-2 {
    font-size: 16px;
    line-height: 24px;
    text-align: left;
  }

  .paragraph-small {
    font-size: 14px;
  }

  .half-side-content {
    padding-right: 4%;
    padding-left: 4%;
  }

  .half-side-content.image-background {
    width: 50%;
    height: auto;
  }

  .half-side-content.contact-bacground {
    width: 100%;
    min-height: 500px;
  }

  .half-side-content.contact-bacground.home {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .half-side-content.contact-us-half-side {
    width: 100%;
    height: auto;
    min-height: 700px;
    padding-right: 10%;
    padding-left: 10%;
  }

  .half-side-content.contact-us-half-side.contact {
    display: block;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#fff));
    background-image: linear-gradient(180deg, #fff, #fff);
  }

  .half-side-content.gray {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 50%;
    height: auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    -ms-flex: 0 auto;
    flex: 0 auto;
  }

  .half-side-content.gray.new.warehouse {
    width: 100%;
  }

  .half-side-content.icon {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .half-side-info {
    padding-right: 24px;
    padding-left: 24px;
  }

  .follow-me-text.center {
    font-size: 17px;
    line-height: 24px;
  }

  .small-features {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }

  .small-feature {
    width: 100%;
    margin-bottom: 0px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    -ms-flex: 0 auto;
    flex: 0 auto;
  }

  .pricing-card {
    margin-right: 8px;
    margin-left: 8px;
  }

  .pricing-big-text {
    font-size: 40px;
    line-height: 48px;
  }

  .pricing-wrapper-list {
    width: 100%;
  }

  .testimonial-wrapper {
    margin-left: auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .teastimonial-card {
    display: block;
    width: 66.66%;
    margin-right: auto;
    margin-bottom: 48px;
    margin-left: auto;
    padding-right: 16px;
    padding-left: 16px;
  }

  .social-wrapper.footer {
    padding-right: 0px;
    padding-left: 0px;
  }

  .sponsor-section {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .sponsor-link {
    padding: 8px;
  }

  .sponsor-wrapper {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .footer {
    padding-right: 20px;
    padding-left: 20px;
  }

  .scroll-up-button {
    right: -20px;
    bottom: 81px;
    margin-top: 0px;
  }

  .footer-content {
    margin-right: 0%;
    padding-right: 20px;
    padding-left: 8px;
  }

  .footer-links {
    padding-right: 8px;
    padding-left: 8px;
  }

  .footer-header {
    letter-spacing: 2px;
  }

  .footer-link {
    margin-top: 12px;
    margin-bottom: 12px;
    color: #fff;
    text-decoration: none;
  }

  .question-container {
    padding-right: 2px;
  }

  .answer {
    padding-right: 0px;
  }

  .blog-link {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 96%;
    height: 300px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 8px;
    padding-left: 8px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }

  .blog-container {
    display: block;
    padding-right: 16px;
    padding-left: 16px;
  }

  .blog-heading {
    font-size: 14px;
    line-height: 24px;
  }

  .nav-button-block {
    display: block;
    padding-left: 0px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    -ms-flex: 0 auto;
    flex: 0 auto;
  }

  .purchase-button {
    color: #fff;
  }

  .purchase-button.outline {
    color: #fff;
  }

  .purchase-button.orange-text.home {
    padding-top: 10px;
    padding-bottom: 8px;
  }

  .purchase-button.nav {
    color: #fff;
  }

  .purchase-button.nav:hover {
    color: #fff;
  }

  .nav-link {
    display: block;
    width: 100%;
    padding: 16px 20px;
    color: #a5a5a5;
  }

  .nav-link:hover {
    color: #ff8e64;
  }

  .nav-link.dark {
    color: #a5a5a5;
    font-weight: 500;
  }

  .nav-link.dark.new.contact {
    display: block;
  }

  .nav-link.dark._2 {
    color: #494949;
  }

  .nav-link.down {
    width: 100%;
    padding-top: 16px;
    padding-bottom: 16px;
    padding-left: 20px;
  }

  .slide-arrow-right {
    left: 24%;
    margin-right: 5%;
  }

  .menu-button {
    color: #fff;
  }

  .menu-button.w--open {
    background-color: transparent;
  }

  .menu-button.black {
    display: block;
    margin-top: 10px;
    color: #000;
  }

  .instagram-card-style-2 {
    width: 40%;
    padding: 27px 24px 24px;
  }

  .contact-us-card {
    position: static;
    width: 60%;
    margin-right: 20%;
    margin-left: 20%;
    padding-right: 24px;
    padding-left: 24px;
  }

  .fact-section {
    padding-right: 8px;
    padding-left: 8px;
  }

  .facts {
    width: 100%;
  }

  .white.center {
    width: 90%;
  }

  .white.center.percentual {
    width: 90%;
  }

  .contact-us-wrapper-half-section {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .contact-us-wrapper-half-section.contact {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .work-wrapper {
    width: 90%;
    margin-right: auto;
    margin-left: auto;
  }

  .work {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    padding: 8px 8px 8px 5px;
  }

  .work-card {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .work-card-image-block {
    height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .work-card-info.product {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
  }

  .portfolio-content {
    display: block;
    margin-left: 8px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .row-info {
    margin-top: 70px;
  }

  .logo-type.white-font.footer {
    padding-left: 0px;
  }

  .collection-item {
    display: block;
    width: 100%;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }

  .blog-link-photo {
    display: block;
  }

  .collection-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
  }

  .copy-div {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 80%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .copy-div.new {
    width: 70%;
  }

  .hero-image-div {
    display: block;
    width: 90%;
    margin-right: auto;
    margin-left: auto;
  }

  .div-block-7 {
    left: 200px;
    right: auto;
    bottom: 0px;
  }

  .div-block-9 {
    top: auto;
    right: 42px;
    bottom: 53px;
  }

  .div-button {
    padding-top: 15px;
    padding-right: 20px;
  }

  .icon-2 {
    color: #494949;
  }

  .icon-2.light {
    color: #69676c;
  }

  .paragraph-2 {
    width: 100%;
    margin-top: 40px;
  }

  .paragraph-2.swkc {
    margin-top: 10px;
  }

  .faq-answer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .faq-answer._2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .slider-2 {
    height: 60vh;
  }

  .div-hero {
    margin-top: -380px;
  }

  .div-block-21 {
    width: 90%;
  }

  .section-4 {
    height: 60vh;
    min-height: 60vh;
  }

  .map {
    display: block;
    overflow: hidden;
    width: 100%;
    height: 500px;
    min-height: 500px;
  }

  .map.showroom {
    height: 200px;
  }

  .form-block {
    width: 90%;
    margin-left: 5%;
  }

  .div-block-35 {
    width: 100%;
    height: 400px;
    margin-right: 0%;
  }

  .div-block-35._2 {
    margin-left: 0%;
  }

  .div-block-35._4 {
    margin-left: 0%;
  }

  .div-block-35.swkc {
    height: 200px;
  }

  .heading-12.light {
    font-size: 30px;
    line-height: 40px;
  }

  .div-block-39 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .div-block-40 {
    width: 80%;
    margin-top: 20px;
    padding-right: 0px;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .div-block-41 {
    width: 80%;
  }

  .paragraph-16 {
    text-align: center;
  }

  .paragraph-16.right {
    text-align: center;
  }

  .div-block-44 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .div-block-45 {
    width: 80%;
    margin-top: 60px;
    padding-right: 0px;
    padding-left: 0px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .div-block-46 {
    width: 80%;
  }

  .div-block-49 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .div-block-50 {
    width: 80%;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .div-block-51 {
    width: 80%;
  }

  .div-block-54 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .div-block-55 {
    width: 80%;
    margin-top: 140px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .div-block-56 {
    width: 80%;
  }

  .div-block-59 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .div-block-60 {
    width: 80%;
  }

  .div-block-61 {
    width: 80%;
  }

  .div-block-62.floor {
    height: 400px;
    background-position: 50% 50%;
  }

  .div-block-62.img1 {
    height: 350px;
  }

  .div-block-63.company-logo {
    padding-right: 10px;
    padding-left: 10px;
  }

  .div-block-64.company-logo {
    padding-right: 10px;
    padding-left: 10px;
  }

  .div-block-65.company-logo {
    padding-right: 10px;
    padding-left: 10px;
  }

  .div-block-66 {
    padding-right: 10px;
    padding-left: 10px;
  }

  .div-block-67 {
    padding-right: 10px;
    padding-left: 10px;
  }

  .work-row.hori {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .div-block-68 {
    width: 100%;
    max-width: 100%;
    min-height: 440px;
    min-width: 100%;
  }

  .div-block-68._2 {
    min-height: 400px;
  }

  .div-block-68._2.verti {
    height: auto;
  }

  .div-block-68._3 {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
  }

  .div-block-68._4 {
    height: 50vh;
    background-image: url('../images/eropean.-flats-10.jpg');
    background-position: 50% 50%;
    background-size: cover;
  }

  .colors-wrapper {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }

  .color-img.v1 {
    height: 200px;
  }

  .color-img.v2 {
    height: 200px;
  }

  .color-img.v3 {
    height: 200px;
  }

  .color-img.v4 {
    height: 200px;
  }

  .color-img.v5 {
    height: 200px;
  }

  .color-img.v6 {
    height: 200px;
  }

  .color-img.e1 {
    height: 200px;
  }

  .color-img.e2 {
    height: 200px;
  }

  .color-img.e3 {
    height: 200px;
  }

  .div-block-73.f1 {
    width: 45%;
    background-position: 0% 50%;
  }

  .div-block-73.f2 {
    width: 45%;
  }

  .div-block-73.f3 {
    width: 45%;
  }

  .div-block-73.f4 {
    width: 45%;
  }

  .div-block-73.f5 {
    width: 45%;
  }

  .div-block-73.f6 {
    width: 45%;
  }

  .div-block-73.f11 {
    width: 45%;
  }

  .div-block-73.f10 {
    width: 45%;
  }

  .div-block-73.f9 {
    width: 45%;
  }

  .div-block-73.f8 {
    width: 45%;
  }

  .div-block-73.f7 {
    width: 45%;
  }

  .div-block-74.f1 {
    width: 45%;
  }

  .div-block-74.f6 {
    width: 45%;
  }

  .div-block-76 {
    width: 90%;
    margin-top: 40px;
    margin-right: auto;
    margin-left: auto;
  }

  .div-block-77 {
    width: 100%;
    padding: 40px 60px 60px;
  }

  .div-block-78 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .div-block-79 {
    height: 150px;
  }

  .div-block-80 {
    height: 150px;
  }

  .div-block-81 {
    height: 150px;
  }

  .div-block-82 {
    height: 150px;
  }

  .div-block-83 {
    width: 100%;
    padding-top: 0px;
    padding-left: 60px;
  }

  .image-23 {
    display: none;
  }

  .image-24 {
    display: none;
  }

  .image-25 {
    display: none;
    min-height: auto;
  }

  .image-26 {
    display: none;
  }

  .image-27 {
    display: none;
  }

  .image-28 {
    display: none;
  }

  .image-29 {
    display: none;
  }

  .div-block-85 {
    width: 80%;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .link-28 {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .contact-us-wrapper {
    padding: 16px;
  }

  .contact-us-popup {
    padding: 40px;
  }

  .navbar {
    padding-right: 0px;
    padding-left: 0px;
  }

  .image-background-section.hero-section {
    height: 700px;
  }

  .image-background-section.hero-section.homeages-2 {
    height: 400px;
  }

  .image-background-section.blog-hero-section {
    padding-right: 30px;
    padding-left: 30px;
  }

  .slider-content {
    margin-top: 0px;
  }

  .hero-text {
    font-size: 15px;
  }

  .button.hero-button.more {
    margin-top: 0px;
  }

  .hero-heading {
    font-size: 30px;
    line-height: 40px;
  }

  .section.factory {
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .section-wrapper-content {
    width: auto;
  }

  .section-wrapper-content.page-header {
    width: 100%;
  }

  .section-wrapper-content.page-header.blog {
    padding-right: 20px;
    padding-left: 20px;
  }

  .services-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .services-card {
    width: 66.66%;
    margin-right: 0px;
    margin-bottom: 58px;
    margin-left: 0px;
    padding: 56px 32px 48px;
  }

  .services-card.style-2 {
    width: 66.66%;
    margin-bottom: 24px;
  }

  .services-tittle.style-2 {
    text-align: left;
  }

  .paragraph-small {
    text-align: justify;
  }

  .features-wrapper {
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .features-wrapper._2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }

  .half-side-content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    margin-bottom: 0px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .half-side-content.image-background {
    width: 100%;
    height: 600px;
  }

  .half-side-content.image-background._2 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }

  .half-side-content.contact-bacground {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: 700px;
    min-height: 700px;
  }

  .half-side-content.contact-us-half-side {
    width: 100%;
    height: auto;
  }

  .half-side-content.gray {
    width: 100%;
    height: auto;
  }

  .half-side-content.gray.new.warehouse {
    padding-right: 60px;
    padding-left: 60px;
  }

  .half-side-content.icon {
    height: auto;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .half-side-info {
    margin-bottom: 24px;
    padding-top: 24px;
  }

  .play-icon {
    display: block;
    margin-right: auto;
    margin-left: auto;
  }

  .small-features {
    max-width: 91%;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .small-features.new {
    max-width: 100%;
  }

  .small-feature {
    width: 50%;
    padding-right: 8px;
    padding-left: 8px;
  }

  .team-content {
    display: block;
    margin-right: auto;
    margin-bottom: 24px;
    margin-left: auto;
    text-align: left;
  }

  .pricing-wrapper {
    display: block;
    margin-bottom: 25px;
  }

  .pricing-card {
    display: block;
    width: 66.66%;
    margin-right: auto;
    margin-bottom: 24px;
    margin-left: auto;
  }

  .testimonial-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .teastimonial-card {
    display: block;
    width: 66.66%;
    margin-right: auto;
    margin-bottom: 58px;
    margin-left: auto;
  }

  .social-wrapper.footer {
    padding-left: 0px;
  }

  .contact-us-block-form.percentual {
    width: 80%;
  }

  .footer {
    padding-right: 20px;
  }

  .footer-content {
    padding-right: 10px;
    padding-left: 0px;
    -webkit-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }

  .footer-links {
    width: 50%;
  }

  .footer-link {
    font-size: 13px;
  }

  .div-block {
    display: block;
  }

  .image-link {
    display: block;
    width: 100%;
    height: 300px;
    margin-right: auto;
    margin-left: auto;
  }

  .blog-link {
    display: block;
    height: 300px;
    margin-right: auto;
    margin-left: auto;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-flex-basis: 47%;
    -ms-flex-preferred-size: 47%;
    flex-basis: 47%;
  }

  .blog-container {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .news-text {
    margin-bottom: 8px;
  }

  .purchase-section {
    padding-right: 8px;
    padding-left: 8px;
  }

  .small-text-team {
    text-align: left;
  }

  .instagram-card-style-2 {
    width: 66.66%;
  }

  .contact-us-card {
    width: 80%;
    margin-right: 10%;
    margin-left: 10%;
  }

  .facts {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .fact-item {
    margin-bottom: 20px;
  }

  .team-member-image._4 {
    width: 100%;
  }

  .white.center {
    width: 90%;
  }

  .white.center.percentual {
    width: 100%;
  }

  .contact-us-wrapper-half-section {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .work-wrapper {
    width: 90%;
    max-width: none;
    min-width: auto;
    margin-right: auto;
    margin-left: auto;
  }

  .works {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }

  .work {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
  }

  .work.product {
    width: auto;
    max-width: none;
    min-width: auto;
  }

  .work-card {
    display: block;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }

  .work-card-image-block {
    height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }

  .work-card-info.product {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
  }

  .portfolio-content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-right: auto;
    margin-left: auto;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .portfolio-image {
    width: 90%;
    margin-right: 0%;
  }

  .portfolio-info {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .column-div {
    margin-bottom: 24px;
  }

  .row-info {
    margin-top: 50px;
  }

  .licensing-items {
    width: 70%;
  }

  .image-side {
    width: 100%;
  }

  .collection-item {
    padding-right: 0px;
    padding-left: 0px;
  }

  .copy-div {
    width: 80%;
  }

  .copy-div.new {
    width: 70%;
  }

  .hero-image-div {
    background-image: -webkit-gradient(linear, left top, left bottom, from(null), to(null)), url('../images/59201d0509e35.jpg');
    background-image: linear-gradient(180deg, null, null), url('../images/59201d0509e35.jpg');
    background-position: 0px 0px, 50% 50%;
  }

  .collection-item-2 {
    margin-bottom: 10px;
  }

  .div-button {
    padding-top: 15px;
  }

  .div-block-13 {
    width: 90%;
  }

  .map {
    height: 300px;
    min-height: 300px;
  }

  .heading-12.light {
    font-size: 30px;
    line-height: 40px;
  }

  .div-block-60 {
    width: 90%;
  }

  .div-block-61 {
    width: 90%;
  }

  .div-block-62 {
    height: 400px;
  }

  .div-block-63 {
    width: 33%;
  }

  .div-block-63.company-logo {
    width: auto;
    padding: 10px;
  }

  .div-block-64 {
    width: 33%;
  }

  .div-block-64.company-logo {
    width: auto;
    padding: 10px;
  }

  .div-block-65 {
    width: 33%;
  }

  .div-block-65.company-logo {
    width: auto;
    padding: 10px;
  }

  .div-block-66 {
    width: auto;
    padding: 10px;
  }

  .div-block-67 {
    width: 33%;
    padding: 10px;
  }

  .work-row {
    min-width: auto;
  }

  .work-row.hori {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .div-block-68 {
    width: 100%;
    height: auto;
    max-width: 100%;
    min-height: auto;
    min-width: 100%;
  }

  .div-block-68._2 {
    min-height: auto;
  }

  .div-block-68._3 {
    display: block;
    height: auto;
  }

  .div-block-68._4 {
    height: auto;
  }

  .colors-wrapper {
    display: block;
    width: 90%;
    margin-right: auto;
    margin-left: auto;
  }

  .color {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    margin-right: auto;
    margin-bottom: 60px;
    margin-left: auto;
  }

  .color.e3 {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
  }

  .color.handle {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
  }

  .color.handle-end {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    margin-right: auto;
  }

  .color.handle-start {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    margin-left: auto;
  }

  .div-block-76 {
    width: 90%;
    margin-top: 40px;
    margin-right: auto;
    margin-left: auto;
  }

  .showroom-pics {
    padding-right: 60px;
    padding-left: 60px;
  }

  .div-block-83 {
    padding-right: 0px;
    padding-left: 0px;
  }

  .column-2 {
    padding-bottom: 20px;
  }

  .column-3 {
    padding-bottom: 20px;
  }

  .column-4 {
    padding-bottom: 20px;
  }

  .lightbox-link {
    width: 100%;
  }

  .div-block-84 {
    width: 90%;
  }

  .image-24 {
    display: block;
    max-width: 100%;
    min-height: auto;
  }

  .image-25 {
    display: block;
  }

  .image-26 {
    display: block;
  }

  .image-27 {
    display: block;
  }

  .image-28 {
    display: block;
  }

  .image-29 {
    display: block;
    height: auto;
  }
}

@media screen and (max-width: 479px) {
  .contact-us-button {
    margin: 16px;
  }

  .navbar {
    padding-right: 0px;
    padding-left: 0px;
  }

  .navbar.fixed-nav {
    padding-left: 8px;
    background-color: transparent;
  }

  .container-full {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .brand {
    height: 60px;
    padding-top: 10px;
  }

  .brand.w--current {
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .image-background-section.hero-section {
    height: 650px;
  }

  .image-background-section.blog-hero-section {
    padding-right: 10px;
    padding-left: 10px;
  }

  .image-background-section.blog-hero-section.style-guide.new {
    background-image: url('../images/jose-soriano-1230104-unsplash-min.jpg'), -webkit-gradient(linear, left top, left bottom, from(transparent), to(transparent)), url('../images/dots2_1dots2.png');
    background-image: url('../images/jose-soriano-1230104-unsplash-min.jpg'), linear-gradient(180deg, transparent, transparent), url('../images/dots2_1dots2.png');
    background-position: 50% 50%, 0px 0px, 0px 0px;
    background-size: auto, auto, 5px;
    background-repeat: repeat, repeat, repeat;
  }

  .slider-content {
    width: 100%;
    margin-top: 32px;
    padding: 32px 10px;
  }

  .button {
    width: 180px;
  }

  .button.hero-button {
    width: 60%;
    margin-right: 0px;
    margin-bottom: 8px;
  }

  .button.hero-button.more {
    margin-top: 0px;
  }

  .button.outline-button {
    margin-left: -16px;
  }

  .slide-arrow {
    display: none;
  }

  .hero-bottom {
    display: none;
  }

  .wrapper.hero-bottom-wrapper {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
  }

  .section.gray.single.category.solid-wood {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.25)), to(rgba(0, 0, 0, 0.25))), url('../images/sidekix-media-1108451-unsplash-min.jpg');
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25)), url('../images/sidekix-media-1108451-unsplash-min.jpg');
    background-position: 0px 0px, 50% 30%;
    background-size: auto, cover;
  }

  .section.baudi {
    padding-top: 60px;
  }

  .section.baudi.solid-wood {
    padding-top: 60px;
    padding-bottom: 100px;
  }

  .section.factory {
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .section.projects {
    padding-right: 20px;
    padding-left: 20px;
  }

  .section-wrapper-content {
    width: 100%;
  }

  .section-wrapper-content.page-header.blog {
    padding-right: 10px;
    padding-left: 10px;
  }

  .section-header {
    font-size: 26px;
  }

  .section-header.white {
    font-size: 32px;
    line-height: 40px;
  }

  .section-header.left.new {
    margin-top: 0px;
  }

  .services-wrapper {
    margin-left: 33px;
  }

  .services-card {
    width: 100%;
  }

  .services-card.style-2 {
    width: 90%;
  }

  .paragraph-small {
    margin-bottom: 24px;
    text-align: left;
  }

  .half-side-content.contact-bacground {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }

  .half-side-content.contact-bacground.home {
    height: auto;
    padding-right: 20px;
    padding-left: 20px;
  }

  .half-side-content.contact-us-half-side {
    min-height: 750px;
    padding-right: 10%;
    padding-left: 10%;
  }

  .half-side-content.gray.new.warehouse {
    padding: 20px 24px;
    box-shadow: 0 28px 50px -25px rgba(0, 0, 0, 0.25);
  }

  .half-side-content.icon {
    height: auto;
  }

  .half-side-info {
    max-width: 400px;
  }

  .half-side-info.new._1 {
    margin-bottom: 0px;
    padding-top: 0px;
  }

  .small-feature {
    width: 1000%;
  }

  .team-section {
    padding-top: 72px;
    padding-bottom: 72px;
    padding-left: 20px;
  }

  .team-section.gray {
    padding-right: 20px;
  }

  .team-section.top-border {
    padding-right: 20px;
  }

  .pricing-card {
    width: 100%;
  }

  .testimonial-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-left: auto;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .teastimonial-card {
    width: 100%;
  }

  .scroll-up-button {
    bottom: 75px;
    margin-bottom: 20px;
  }

  .footer-links {
    width: 100%;
  }

  .question-container {
    padding-right: 2px;
  }

  .blog-link {
    position: static;
    display: block;
    width: 100%;
    height: 300px;
    margin-top: 0px;
    margin-right: 0px;
    margin-left: 0px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }

  .blog-container {
    display: block;
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .slide-arrow-right {
    display: none;
  }

  .blog-post {
    width: 100%;
  }

  .menu-button.black {
    display: block;
    margin-top: 0px;
  }

  .purchase-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .instagram-card-style-2 {
    width: 100%;
  }

  .tabs-menu {
    text-align: center;
  }

  .tab-link {
    display: block;
    width: 66.66%;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .tab-link.w--current {
    display: block;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .contact-us-card {
    display: block;
    width: 90%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 20px;
    padding-left: 20px;
  }

  .facts {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .fact-item {
    margin-bottom: 16px;
  }

  .white.center {
    width: 95%;
  }

  .contact-us-wrapper-half-section.contact {
    width: 90%;
    margin-top: 60px;
  }

  .footer-copyright {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .work-wrapper {
    width: 94%;
  }

  .work {
    max-width: 100%;
    min-width: 100%;
  }

  .work-card-image-block {
    height: auto;
  }

  .work-card-info.product {
    padding-right: 30px;
    padding-left: 30px;
  }

  .portfolio-content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    margin-left: auto;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .portfolio-image {
    width: 90%;
    margin-right: 0%;
  }

  .portfolio-info {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .big-tittle {
    margin-bottom: 10px;
    font-size: 30px;
    line-height: 48px;
  }

  .big-tittle.blog-single {
    line-height: 40px;
  }

  .row-info {
    margin-top: 50px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .licensing-items {
    width: 100%;
  }

  .licensing-item-content {
    margin-left: 20px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    -ms-flex: 0 auto;
    flex: 0 auto;
  }

  .title-liciensing {
    margin-bottom: 5px;
  }

  .image-6 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    -ms-flex: 0 auto;
    flex: 0 auto;
  }

  .collection-item {
    margin-bottom: 25px;
  }

  .blog-link-photo {
    display: none;
    width: 30%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }

  .collection-list {
    display: block;
  }

  .copy-div {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 80%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: rgba(73, 73, 73, 0.5);
  }

  .copy-div.new {
    width: 86%;
  }

  .hero-image-div {
    height: 700px;
    background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), to(transparent)), url('../images/59201d0509e35.jpg');
    background-image: linear-gradient(180deg, transparent, transparent), url('../images/59201d0509e35.jpg');
    background-position: 0px 0px, 50% 50%;
  }

  .div-block-10 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    -ms-flex: 0 auto;
    flex: 0 auto;
    text-align: center;
  }

  .div-block-12 {
    text-align: center;
  }

  .div-button {
    padding-top: 15px;
    padding-right: 10px;
  }

  .div-block-13 {
    width: 90%;
  }

  .paragraph-2 {
    margin-top: 40px;
    color: #969696;
    text-align: center;
  }

  .paragraph-2.swkc {
    text-align: left;
  }

  .faq-answer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .faq-answer._2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .slider-2 {
    height: 60vh;
  }

  .div-hero {
    height: 100vh;
  }

  .slide-3 {
    background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), to(transparent)), url('../images/cab-1.jpg');
    background-image: linear-gradient(180deg, transparent, transparent), url('../images/cab-1.jpg');
    background-position: 0px 0px, 50% 50%;
    background-size: auto, cover;
  }

  .right-arrow {
    display: none;
  }

  .slide-7 {
    background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), to(transparent)), url('../images/cab-2.jpg');
    background-image: linear-gradient(180deg, transparent, transparent), url('../images/cab-2.jpg');
    background-position: 0px 0px, 20% 100%;
  }

  .div-block-21 {
    width: 100%;
  }

  .tabs-menu-2 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .tab-link-3.w--current {
    width: 50%;
  }

  .text-block-12 {
    text-align: center;
  }

  .tab-link-4 {
    width: 50%;
  }

  .div-block-22 {
    background-position: 15% 50%;
  }

  .text-block-13 {
    font-size: 13px;
  }

  .text-block-15 {
    font-size: 13px;
  }

  .link-7 {
    font-size: 13px;
  }

  .link-block-3.w--current {
    font-size: 13px;
  }

  .link-8 {
    font-size: 13px;
  }

  .text-block-17 {
    font-size: 13px;
  }

  .text-block-18 {
    font-size: 13px;
  }

  .div-block-25 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .div-block-25.features {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .text-block-19 {
    margin-top: 20px;
    margin-left: 0px;
  }

  .text-block-21 {
    font-size: 13px;
  }

  .text-block-22 {
    font-size: 13px;
  }

  .text-block-23 {
    font-size: 13px;
  }

  .text-block-24 {
    font-size: 13px;
  }

  .left-arrow {
    display: none;
  }

  .tabs-menu-3 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
  }

  .map.showroom {
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.25);
  }

  .form-block {
    width: 100%;
    margin-left: auto;
  }

  .text-field-3 {
    font-family: Lato, sans-serif;
  }

  .text-field-4 {
    font-family: Lato, sans-serif;
  }

  .textarea {
    font-family: Lato, sans-serif;
  }

  .div-block-35 {
    height: 200px;
  }

  .div-block-35._2 {
    margin-left: 0%;
  }

  .div-block-35._2.project {
    height: 200px;
  }

  .div-block-35._3.project {
    height: 200px;
  }

  .div-block-35._4 {
    margin-left: 0%;
  }

  .div-block-35.swkc {
    display: block;
    height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .div-block-35.project {
    height: 200px;
  }

  .heading-12.light {
    font-size: 26px;
    line-height: 40px;
  }

  .bold-text-15 {
    color: #494949;
  }

  .div-block-39 {
    overflow: hidden;
  }

  .div-block-43 {
    left: -15%;
    right: auto;
  }

  .text-block-28 {
    text-align: center;
  }

  .div-block-44 {
    overflow: hidden;
  }

  .div-block-47 {
    width: 300px;
  }

  .div-block-48 {
    left: 5%;
    top: 10%;
    right: auto;
    bottom: 0%;
    width: 300px;
    height: 250px;
  }

  .div-block-49 {
    overflow: hidden;
  }

  .div-block-50 {
    padding-right: 20px;
  }

  .div-block-53 {
    left: auto;
    top: 0%;
    right: 0%;
    bottom: auto;
    width: 300px;
    height: 300px;
  }

  .div-block-54 {
    overflow: hidden;
  }

  .div-block-58 {
    left: -30%;
    top: 12%;
    right: 0%;
    bottom: auto;
  }

  .div-block-60 {
    padding-right: 40px;
    padding-bottom: 40px;
    padding-left: 40px;
  }

  .div-block-62 {
    height: 300px;
  }

  .div-block-62.floor {
    height: 300px;
  }

  .div-block-62.img1 {
    height: 200px;
  }

  .heading-13 {
    font-size: 32px;
    line-height: 42px;
  }

  .div-block-63 {
    width: 50%;
    height: 80px;
    padding: 10px;
  }

  .div-block-63.company-logo {
    height: auto;
    margin-bottom: 10px;
  }

  .div-block-64 {
    width: 50%;
    height: 80px;
  }

  .div-block-64.company-logo {
    height: auto;
    margin-bottom: 10px;
    padding: 10px;
  }

  .div-block-65 {
    width: 50%;
    height: 80px;
  }

  .div-block-65.company-logo {
    height: auto;
    margin-bottom: 10px;
    padding: 10px;
  }

  .div-block-66 {
    width: 100%;
    height: auto;
    padding: 10px;
  }

  .div-block-67 {
    width: 50%;
    height: 80px;
    padding: 10px;
  }

  .text-block-29 {
    text-align: center;
  }

  .work-row.hori {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }

  .div-block-68 {
    height: auto;
    min-height: 160px;
  }

  .div-block-68._2 {
    height: auto;
    min-height: 160px;
  }

  .div-block-68._3 {
    min-height: 160px;
  }

  .div-block-68._4 {
    height: auto;
  }

  .div-block-70 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .colors-wrapper {
    display: block;
    width: 90%;
    margin-right: auto;
    margin-left: auto;
  }

  .color {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    margin-right: auto;
    margin-bottom: 60px;
    margin-left: auto;
  }

  .color-img.e1 {
    background-position: 50% 100%;
  }

  .color-name {
    margin-top: 12px;
  }

  .div-block-73 {
    width: 100%;
    height: 200px;
    margin-right: auto;
    margin-bottom: 10px;
    margin-left: auto;
  }

  .div-block-73.f1 {
    width: 100%;
    height: 200px;
    margin-bottom: 10px;
  }

  .div-block-73.f2 {
    width: 100%;
    height: 200px;
  }

  .div-block-73.f3 {
    width: 100%;
    height: 200px;
  }

  .div-block-73.f4 {
    width: 100%;
    height: 200px;
  }

  .div-block-73.f5 {
    width: 100%;
    height: 200px;
  }

  .div-block-73.f6 {
    width: 100%;
    height: 200px;
    margin-bottom: 10px;
  }

  .div-block-73.f11 {
    width: 100%;
    height: 200px;
  }

  .div-block-73.f10 {
    width: 100%;
    height: 200px;
  }

  .div-block-73.f9 {
    width: 100%;
    height: 200px;
  }

  .div-block-73.f8 {
    width: 100%;
    height: 200px;
  }

  .div-block-73.f7 {
    width: 100%;
    height: 200px;
  }

  .div-block-74 {
    width: 100%;
    height: 200px;
    margin-right: auto;
    margin-bottom: 10px;
    margin-left: auto;
  }

  .div-block-74.f1 {
    width: 100%;
    height: 200px;
  }

  .div-block-74.f6 {
    width: 100%;
    height: 200px;
  }

  .div-block-75 {
    width: 100%;
    height: 200px;
    margin-right: auto;
    margin-left: auto;
  }

  .div-block-76 {
    width: 90%;
    margin-top: 40px;
    margin-right: auto;
    margin-left: auto;
  }

  .div-block-77 {
    padding-top: 20px;
    padding-right: 32px;
    padding-left: 32px;
  }

  .showroom-pics {
    padding-right: 0px;
    padding-left: 0px;
  }

  .div-block-83 {
    padding-right: 0px;
    padding-bottom: 40px;
    padding-left: 0px;
  }

  .heading-15.dark {
    font-size: 28px;
  }

  .link-28 {
    display: block;
    padding: 7px 14px 5px;
    border-radius: 20px;
    background-color: #bbae98;
    font-family: Georgia, Times, 'Times New Roman', serif;
    color: #fff;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 400;
    text-decoration: none;
  }
}

