@import url("https://fonts.googleapis.com/css2?family=Merriweather+Sans:wght@300;400;500;700&display=swap");
nav {
  padding: 2rem 0;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1000;
  width: 100%;
  -webkit-animation: fadeInOpacity 0.75s both;
          animation: fadeInOpacity 0.75s both;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
  overflow: hidden;
}

nav.p1 {
  padding: 1rem 0;
}

nav:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: #fff;
}

nav .container {
  width: 80%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 1000px) {
  nav .container {
    width: 95%;
  }
}

nav .container .logo {
  cursor: pointer;
}

nav .container .logo img {
  max-width: 125px;
}

nav .container ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

nav .container ul li:not(:last-child) {
  margin-right: 1.25rem;
}

nav .container ul li:last-child {
  position: relative;
}

nav .container ul li:last-child:after {
  content: "";
  position: absolute;
  bottom: -1.25rem;
  left: 0;
  width: 100%;
  height: 1rem;
  -webkit-animation: fadeInOpacity 0.75s both;
          animation: fadeInOpacity 0.75s both;
  -webkit-animation-delay: 4s;
          animation-delay: 4s;
  background: url("./images/partial-images/line2.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

nav .container ul li.hide_line:after {
  display: none;
}

nav .container ul li a:hover {
  text-decoration: line-through;
}

@-webkit-keyframes fadeInOpacity {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInOpacity {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

header {
  height: 100vh;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  -webkit-animation: fadeInOpacityTransform 0.75s both;
          animation: fadeInOpacityTransform 0.75s both;
  -webkit-animation-delay: 0.75s;
          animation-delay: 0.75s;
  margin-top: 1rem;
  overflow: hidden;
}

header h1,
header .overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
  font-size: 80px;
  width: 100vw;
  -webkit-animation: fadeInOpacityTop 0.75s both;
          animation: fadeInOpacityTop 0.75s both;
  -webkit-animation-delay: 1.25s;
          animation-delay: 1.25s;
  text-align: center;
}

header .operators {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  bottom: 20%;
  left: 0;
  width: 100%;
}

header .operators a {
  -webkit-animation: fadeInOpacityTransform 0.75s both;
          animation: fadeInOpacityTransform 0.75s both;
  -webkit-transition: 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
  transition: 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
  padding: 1rem;
}

header .operators a.showroom {
  margin-right: 2rem;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

header .operators a.select {
  position: relative;
  margin-left: 2rem;
  -webkit-animation-delay: 2.25s;
          animation-delay: 2.25s;
}

header .operators a.select:after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: -6px;
  width: 100px;
  height: 1rem;
  -webkit-animation: fadeInOpacityTransform 0.75s both;
          animation: fadeInOpacityTransform 0.75s both;
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
  background: url("./images/partial-images/line.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

header .operators a:hover {
  text-decoration: line-through;
}

header .overlay {
  width: 400px;
  z-index: 3;
  overflow: hidden;
  height: 100%;
  max-height: 500px;
}

header .overlay .overlay-text {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  color: #fff;
}

header .image-header {
  position: relative;
  z-index: 2;
  overflow: hidden;
}

header .image-header:before {
  content: "";
  width: 400px;
  height: 500px;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-animation: fadeInOpacityAfter 0.75s both;
          animation: fadeInOpacityAfter 0.75s both;
  -webkit-animation-delay: 1.45s;
          animation-delay: 1.45s;
  background: #0000005e;
  opacity: 1;
}

header .image-header img {
  width: 400px;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
}

@keyframes fadeInOpacity {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes fadeInOpacityTransform {
  0% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
    opacity: 0;
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeInOpacityTransform {
  0% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
    opacity: 0;
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@-webkit-keyframes fadeInOpacityTop {
  0% {
    top: calc(50% - 20px);
    opacity: 0;
  }
  to {
    top: 50%;
    opacity: 1;
  }
}

@keyframes fadeInOpacityTop {
  0% {
    top: calc(50% - 20px);
    opacity: 0;
  }
  to {
    top: 50%;
    opacity: 1;
  }
}

@-webkit-keyframes fadeInOpacityAfter {
  0% {
    top: -20%;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}

@keyframes fadeInOpacityAfter {
  0% {
    top: -20%;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}

.how-it-works {
  margin: 3rem 0;
  margin-bottom: 6rem;
}

.how-it-works .container {
  width: 80%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.how-it-works .container h2 {
  margin: 5rem 0;
}

.how-it-works .container ul li {
  margin-bottom: 12.5rem;
  padding: 2rem 1rem;
  border-radius: 8px;
  position: relative;
  background: rgba(247, 148, 40, 0.34);
}

.how-it-works .container ul li .content h3 {
  text-align: center;
}

.how-it-works .container ul li:nth-child(3) {
  background: rgba(76, 175, 80, 0.34);
}

.how-it-works .container ul li svg {
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.how-it-works .container ul li:last-child {
  margin-bottom: 0;
}

.how-it-works .container ul li:last-child::after {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(2.3);
          transform: scale(2.3);
  background: url("../images/partial-images/how-it-works/lines-final.svg");
  background-repeat: no-repeat !important;
  background-size: contain !important;
  background-position: center;
}

.products-categories {
  width: 100%;
  position: relative;
  margin-bottom: 3rem;
}

.products-categories .container {
  position: relative;
  width: 80%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.products-categories .container ul {
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.products-categories .container ul li {
  width: calc(50% - 2rem);
  min-height: 90vh;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.products-categories .container ul li .content {
  width: 100%;
  padding: 3rem;
  z-index: 2;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.products-categories .container ul li .content h2 {
  color: #fff;
  margin-bottom: 0.75rem;
}

.products-categories .container ul li .content a {
  padding: 1rem 1.5rem;
  background: #fff;
  display: table;
  width: 0px;
}

.products-categories .container ul li .content a:hover {
  background: #eaeaea;
}

.products-categories .container ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(51, 51, 51, 0)), to(#333));
  background: linear-gradient(180deg, rgba(51, 51, 51, 0) 0%, #333 100%);
  z-index: 1;
  opacity: 0.54;
}

.products-categories .container ul li:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  z-index: 0;
}

.products-categories .container ul li:first-child::after {
  background: url("../images/partial-images/table.png");
}

.products-categories .container ul li:last-child::after {
  background: url("../images/partial-images/chair.jpg");
}

.features {
  margin-bottom: 3rem;
}

.features .container {
  width: 80%;
  margin: 0 auto;
  position: relative;
}

.features .container ul {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[12];
      grid-template-columns: repeat(12, 1fr);
  grid-column-gap: 40px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.features .container ul li {
  width: calc(33% - 1rem);
  -ms-grid-column-span: 4;
      grid-column-end: span 4;
  padding: 1rem;
  width: 100%;
}

.features .container ul li h2,
.features .container ul li p {
  text-align: center;
}

.features .container ul li h2 {
  margin-bottom: 0.75rem;
}

.features .container ul li .circle {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  margin: 0 auto;
  margin-bottom: 0.5rem;
}

.features .container ul li:nth-child(1) .circle {
  background: #937863;
}

.features .container ul li:nth-child(2) .circle {
  background: #e5ded8;
}

.features .container ul li:nth-child(3) .circle {
  background: #657462;
}

footer {
  width: 100%;
  padding: 3rem 0;
  position: relative;
}

footer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/partial-images/80532.jpg");
  opacity: 0.14;
  background-size: contain;
  z-index: 0;
}

footer .container {
  width: 80%;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

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

footer .container .footer-content h3 {
  margin-bottom: 3rem;
}

footer .container .footer-content .contact-links {
  margin-bottom: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

footer .container .footer-content .contact-links li {
  margin: 0 0.5rem;
}

footer .container .footer-content .contact-links li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0.75rem;
  border-radius: 50%;
  background: #eaeaea;
}

footer .container .footer-content .contact-links li a:hover {
  background: #d7d7d7;
}

footer .container .footer-content .links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 2rem;
}

footer .container .footer-content .links li {
  margin: 0 0.5rem;
}

footer .container .footer-content .links li a:hover {
  text-decoration: line-through;
}

footer .container .footer-content .logo img {
  width: 125px;
}

.limited {
  width: 100%;
  position: relative;
  margin: 3rem 0;
}

.limited .container {
  width: 80%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  position: relative;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.limited .container .block {
  height: 100%;
  width: calc(50% - 2rem);
  position: relative;
}

.limited .container .block.edition {
  height: 100%;
  min-height: 600px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.limited .container .block.edition .content {
  width: 100%;
  padding: 3rem;
  z-index: 2;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.limited .container .block.edition .content h2 {
  color: #fff;
  margin-bottom: 0.75rem;
}

.limited .container .block.edition .content a {
  padding: 1rem 1.5rem;
  background: #fff;
  display: table;
  width: 0px;
}

.limited .container .block.edition .content a:hover {
  background: #eaeaea;
}

.limited .container .block.edition:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(51, 51, 51, 0)), to(#333));
  background: linear-gradient(180deg, rgba(51, 51, 51, 0) 0%, #333 100%);
  z-index: 1;
  opacity: 0.54;
}

.limited .container .block.edition:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/partial-images/table.png");
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  z-index: 0;
}

.limited .container .block.products {
  position: relative;
}

.limited .container .block.products ul {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.limited .container .block.products ul li {
  width: calc(50% - 1rem);
  position: relative;
  margin-bottom: 1rem;
}

.limited .container .block.products ul li .product-content {
  cursor: pointer;
}

.limited .container .block.products ul li .product-content img {
  width: 100%;
  height: 235px;
  -o-object-fit: cover;
     object-fit: cover;
}

.limited .container .block.products ul li .product-content h3 {
  margin: 0.5rem 0;
}

.limited .container .block.products ul li .product-content p {
  color: #8d8d8d;
}

.slider {
  height: 100%;
  overflow: hidden;
  position: relative;
}

.slider .slider-item {
  height: 100%;
  width: 100%;
  display: none;
  position: absolute;
  -webkit-transition: -webkit-transform 400ms;
  transition: -webkit-transform 400ms;
  transition: transform 400ms;
  transition: transform 400ms, -webkit-transform 400ms;
  /*cursor: pointer;*/
}

.slider .slider-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover !important;
     object-fit: cover !important;
}

.slider .slider-item.active,
.slider .slider-item.prev-item,
.slider .slider-item.next-item {
  display: block;
}

.slider-item.prev-item,
.slider-item.active.slide-next {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}

.slider-item.active.slide-prev,
.slider-item.next-item {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}

.slider-item.prev-item.slide-end,
.slider-item.next-item.slide-end {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.slide-indicators {
  position: absolute;
  z-index: 20;
  bottom: 2rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  list-style: none;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.slider-control-prev,
.slider-control-next {
  position: absolute;
  z-index: 1;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 300ms;
  transition: all 300ms;
  background: transparent;
  outline: 0;
  cursor: pointer;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 0;
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  background: #00000005;
}

.slider-control-prev:hover,
.slider-control-next:hover {
  -webkit-transition: all 300ms;
  transition: all 300ms;
  background: #00000036;
}

.slider-control-prev {
  left: 20px;
}

.slider-control-next {
  right: 20px;
}

.slider-control-next:hover {
  opacity: 1;
}

.slide-indicator {
  height: 12px;
  width: 12px;
  border-radius: 50%;
  background: #ffffff;
  opacity: 0.5;
  margin: 0 8px;
}

.slide-indicator.active {
  opacity: 1;
}

.scale-img {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 111;
  background: #fff;
}

.scale-img button {
  z-index: 11111;
  position: fixed;
  top: 2rem;
  right: 2rem;
}

@media (max-width: 1000px) {
  .scale-img button {
    top: 1rem;
    right: 1rem;
    background: #fff;
  }
}

.product-detail {
  margin-top: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  height: calc(100vh - 90px);
}

@media (max-width: 972px) {
  .product-detail {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.product-detail .block {
  height: 100%;
  position: relative;
}

@media (max-width: 972px) {
  .product-detail .block {
    width: 100% !important;
  }
  .product-detail .block:first-child {
    height: 100vh;
  }
}

.product-detail .block:first-child {
  width: 60%;
}

.product-detail .block:last-child {
  width: 40%;
  padding: 1rem 3rem;
  background: #fafafa;
}

.product-detail .block .product-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

.product-detail .block .product-heading h1 {
  margin: 2rem 0;
  position: relative;
}

.product-detail .block .product-heading h1::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: -2rem;
  -webkit-transform: rotate(3deg);
          transform: rotate(3deg);
  background: url("../images/partial-images/line-product.svg");
  background-size: cover;
  background-repeat: no-repeat;
}

.product-detail .block .product-heading .info-product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.product-detail .block .product-heading .info-product span {
  background: rgba(247, 148, 40, 0.34);
  padding: 8px 12px;
}

.product-detail .block .product-heading .short-description ul {
  margin: 2rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.product-detail .block .product-heading .short-description ul li {
  position: relative;
}

.product-detail .block .product-heading .short-description ul li:not(:last-child) {
  margin-right: 2rem;
}

.product-detail .block .product-heading .short-description ul li:not(:last-child):after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -1.125rem;
  width: 4px;
  height: 4px;
  background: #000;
  opacity: 0.24;
  border-radius: 50%;
}

.product-detail .block .product-heading .short-description ul li p {
  font-size: 14px;
  color: grey;
}

.product-detail .block .product-heading .description {
  margin-left: 2rem;
  text-align: justify;
}

.product-detail .block .product-heading .price {
  margin-top: 2rem;
  margin-left: 4.5rem;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.product-detail .block .product-heading .price .discount {
  text-decoration: line-through;
  color: grey;
  font-size: 14px;
}

.product-detail .block .product-heading .price .actual-price {
  margin: 0.5rem 0 1rem 0;
  font-size: 22px;
  font-weight: bold;
  color: #f79428;
}

.product-detail .block .product-heading .price ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.product-detail .block .product-heading .price ul li {
  position: relative;
}

.product-detail .block .product-heading .price ul li:not(:last-child) {
  margin-right: 2rem;
}

.product-detail .block .product-heading .price ul li:not(:last-child):after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -1.125rem;
  width: 4px;
  height: 4px;
  background: #000;
  opacity: 0.24;
  border-radius: 50%;
}

.product-detail .block .product-heading .price ul li p {
  color: grey;
  font-size: 14px;
}

.product-detail .block .product-heading .price ul li p.col-green {
  color: green;
}

.product-detail .block .product-heading .operators {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-left: 4.5rem;
  margin-top: 2rem;
}

.product-detail .block .product-heading .operators .buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.product-detail .block .product-heading .operators .buttons button {
  border: none;
  height: 100%;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 0;
  cursor: pointer;
  height: 100%;
  padding: 1rem 1.5rem;
  background: #f79428;
  color: #fff;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  font-weight: 700;
}

.product-detail .block .product-heading .operators .buttons button.like {
  background: #eaeaea;
  margin-right: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 48px;
  height: 48px;
}

.product-detail .block .product-heading .operators .buttons button.like img {
  width: 24px;
  height: 24px;
}

.product-detail .block .product-heading .operators .buttons button.like:hover {
  background: #d8d8d8;
}

.product-detail .block .product-heading .operators .buttons button:hover {
  background: #e58925;
}

.product-info {
  padding: 2rem 0;
}

.product-info .container {
  width: 80%;
  margin: 0 auto;
}

*,
::after,
::before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
  margin: 0;
  list-style: none;
  text-decoration: none;
  color: #111111;
}

html,
body {
  /*min-height: 100% !important;
    height: 100%;*/
}

body {
  font-family: "Merriweather Sans", sans-serif;
  background: #fff;
  position: relative;
}

.none {
  display: none;
}

.loader {
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
  -webkit-transition: 1s ease-in-out;
  transition: 1s ease-in-out;
  z-index: 1000;
}

.loader .container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 80%;
  margin: 0 auto;
}

.loader .container .overlay {
  background: black;
}

.loader .container svg {
  -webkit-transition: 1s ease-in-out;
  transition: 1s ease-in-out;
  max-width: 300px;
}

.loader .container svg.rectangles {
  max-height: 308px;
}

.loader .container svg.text {
  position: absolute;
  z-index: -1;
  opacity: 0;
  margin-bottom: 4rem;
}

.loader .container svg.subtit {
  position: absolute;
  z-index: -1;
  opacity: 0;
  margin-top: 9rem;
  max-width: 205px;
}

.loader .container svg.rect-left {
  margin-left: -20rem;
}

.loader .container svg.show-text {
  margin-left: 22rem;
  opacity: 1;
}

.loader .container svg.show-subtit {
  margin-left: 16rem;
  opacity: 1;
}

#rect03 {
  -webkit-animation: rect03Animation 1s ease;
          animation: rect03Animation 1s ease;
  -webkit-transform: translate(103px, -175px) rotate(60deg);
          transform: translate(103px, -175px) rotate(60deg);
}

#rect01 {
  -webkit-animation: rect01Animation 1s ease;
          animation: rect01Animation 1s ease;
  -webkit-transform: translate(0);
          transform: translate(0);
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

#rect02 {
  -webkit-transform: translate(-475px, 274px) rotate(-60deg);
          transform: translate(-475px, 274px) rotate(-60deg);
  -webkit-animation: rect02Animation 1s ease;
          animation: rect02Animation 1s ease;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

@-webkit-keyframes rect01Animation {
  from {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    opacity: 0;
  }
  to {
    opacity: 1;
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}

@keyframes rect01Animation {
  from {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    opacity: 0;
  }
  to {
    opacity: 1;
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}

@-webkit-keyframes rect03Animation {
  from {
    opacity: 0;
    -webkit-transform: translate(-64px, -502px) rotate(60deg);
            transform: translate(-64px, -502px) rotate(60deg);
  }
  to {
    -webkit-transform: translate(103px, -175px) rotate(60deg);
            transform: translate(103px, -175px) rotate(60deg);
    opacity: 1;
  }
}

@keyframes rect03Animation {
  from {
    opacity: 0;
    -webkit-transform: translate(-64px, -502px) rotate(60deg);
            transform: translate(-64px, -502px) rotate(60deg);
  }
  to {
    -webkit-transform: translate(103px, -175px) rotate(60deg);
            transform: translate(103px, -175px) rotate(60deg);
    opacity: 1;
  }
}

@-webkit-keyframes rect02Animation {
  from {
    opacity: 0;
    -webkit-transform: translate(-620px, 533px) rotate(-60deg);
            transform: translate(-620px, 533px) rotate(-60deg);
  }
  to {
    -webkit-transform: translate(-475px, 274px) rotate(-60deg);
            transform: translate(-475px, 274px) rotate(-60deg);
    opacity: 1;
  }
}

@keyframes rect02Animation {
  from {
    opacity: 0;
    -webkit-transform: translate(-620px, 533px) rotate(-60deg);
            transform: translate(-620px, 533px) rotate(-60deg);
  }
  to {
    -webkit-transform: translate(-475px, 274px) rotate(-60deg);
            transform: translate(-475px, 274px) rotate(-60deg);
    opacity: 1;
  }
}

.verctary-iframe {
  height: 100vh;
}

.design-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 600px;
  width: 100%;
  position: relative;
  margin-bottom: 3rem;
}

.design-wrapper .block {
  width: 50%;
  height: 100%;
}

.design-wrapper .block:first-child {
  background: url("images/partial-images/80532.jpg");
  background-size: cover;
  opacity: 0.2;
}

.design-wrapper .block:last-child {
  background: #937863;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.design-wrapper .block:last-child p,
.design-wrapper .block:last-child i {
  /*-webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                background-image: url("images/partial-images/80532.jpg");*/
  color: #fff;
  font-weight: 300;
}
/*# sourceMappingURL=styles.css.map */