/* Abstract SCSS */
/* Functions SCSS */
/* Mixin SCSS */
/*
0 - 575px:      X-small
576 - 767px:    Small
768 - 991px:    Medium
992 - 1199:     Large
[1200 - 1399]:  X-large is where our normal styles apply
1400px + :      XX-Large

$breakpoint argument choices
- x-small
- small
- medium
- large
- x-large
- xx-large

ORDER: Base + Typography > general layout + grid > page layout > components

1em = 16px 
*/
/* Variables SCSS */
/* Base SCSS */
/* Base SCSS */
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@200;300;400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@200;300;400;500;600;700&display=swap");
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Outfit", arial;
  box-sizing: border-box;
  background-color: #f5f5f5;
}

.product-background {
  font-family: "Outfit", arial;
  box-sizing: border-box;
}

/*       */
/* Utilities SCSS */
.quality-nav-list {
  display: flex;
  padding: 3.4rem 0 0 0;
}
@media only screen and (max-width: 61.9375em) {
  .quality-nav-list {
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 47.9375em) {
  .quality-nav-list {
    flex-direction: column;
  }
}
.quality-nav-list .list-item:not(:last-child) {
  margin-right: 6rem;
}
@media only screen and (max-width: 61.9375em) {
  .quality-nav-list .list-item:not(:last-child) {
    margin-right: 2rem;
  }
}
@media only screen and (max-width: 47.9375em) {
  .quality-nav-list .list-item:not(:last-child) {
    margin-right: 0;
    margin-bottom: 2rem;
  }
}

.alert {
  padding: 2rem;
  font-size: 1.6rem;
  border-radius: 1rem;
  border: none;
}

.my-4rem {
  margin: 2rem 0 2rem 0;
}

.mt-4rem {
  margin-top: 4rem;
}

.list-item {
  list-style: none;
}
.list-item a {
  padding: 0.5rem 1rem;
  color: #000000;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  z-index: 5;
}
.list-item a:hover {
  color: #a37235;
}

.social-icon {
  width: 3.4rem;
  height: 3.4rem;
  margin-right: 1rem;
}

.alt-link {
  color: #000000;
  transition: all 0.3s ease;
}
.alt-link:hover {
  color: #a37235;
  transform: scale(1.1);
}

.txt-sonic-silver {
  color: #787878 !important;
}

.txt-bold {
  font-weight: 900;
}

.txt-5rem {
  font-size: 5rem !important;
}
@media only screen and (max-width: 61.9375em) {
  .txt-5rem {
    font-size: 3.5rem !important;
  }
}
@media only screen and (max-width: 47.9375em) {
  .txt-5rem {
    font-size: 2.5rem !important;
  }
}

.txt-bangladesh-green {
  color: #075e54 !important;
}

.txt-davy-grey {
  color: #555555 !important;
}

.txt-dark-gold {
  color: #a37235 !important;
}

.txt-black {
  color: #000000 !important;
}

.testimonial-title {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.question-alert {
  width: max-content;
  font-size: 1.3rem;
  color: #075e54;
  display: flex;
}
@media only screen and (max-width: 61.9375em) {
  .question-alert {
    width: 100%;
  }
}
@media only screen and (max-width: 47.9375em) {
  .question-alert {
    width: 100%;
    align-items: flex-start;
  }
}
.question-alert img {
  width: 2rem;
  height: auto;
  margin-right: 1.6rem;
}
.question-alert p {
  color: inherit;
  font-size: inherit;
}

/* .owl-prev {
    background-image: url(../../assets/img/icons/ico-small-arrow-left.svg) !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-color: #e1e1e1 !important;
    background-size: 30% !important;
    color: transparent !important;
    width: 3rem;
    height: 3rem;
    border-radius: 50rem !important;
}

.owl-next {
    background-image: url(../../assets/img/icons/ico-small-arrow-right.svg) !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-color: #e1e1e1 !important;
    background-size: 30% !important;
    color: transparent !important;
    width: 3rem;
    height: 3rem;
    border-radius: 50rem !important;
} */
.owl-theme .owl-nav [class*="owl-"]:hover {
  background: transparent;
  transform: scale(1.1);
}

.owl-next img,
.owl-prev img {
  width: 4rem;
  height: auto;
}

/* Typography SCSS */
h1,
h2,
h3,
h4,
h5 {
  font-family: "Roboto Slab", Arial, Helvetica, sans-serif;
}

h1 {
  font-size: 6rem;
  font-weight: normal;
  color: #000000;
}
@media only screen and (max-width: 74.9375em) {
  h1 {
    font-size: 4.2rem;
  }
}
@media only screen and (max-width: 61.9375em) {
  h1 {
    font-size: 4rem;
  }
}
@media only screen and (max-width: 47.9375em) {
  h1 {
    font-size: 3.2rem;
  }
}

h2 {
  font-size: 5rem;
  font-weight: 400;
  color: #000000;
}
@media only screen and (max-width: 74.9375em) {
  h2 {
    font-size: 3.2rem;
  }
}
@media only screen and (max-width: 61.9375em) {
  h2 {
    font-size: 3rem;
  }
}
@media only screen and (max-width: 47.9375em) {
  h2 {
    font-size: 2.4rem;
  }
}

h2 + h4 {
  margin-top: 1rem;
}

h3 {
  font-size: 3.4rem;
  font-weight: 500;
  color: #000000;
}
@media only screen and (max-width: 74.9375em) {
  h3 {
    font-size: 3rem;
  }
}
@media only screen and (max-width: 61.9375em) {
  h3 {
    font-size: 2.8rem;
  }
}
@media only screen and (max-width: 47.9375em) {
  h3 {
    font-size: 1.872rem;
  }
}

h4 {
  font-size: 3rem;
  font-weight: 500;
  color: #000000;
}
@media only screen and (max-width: 74.9375em) {
  h4 {
    font-size: 2.2rem;
  }
}
@media only screen and (max-width: 61.9375em) {
  h4 {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 47.9375em) {
  h4 {
    font-size: 2rem;
  }
}

h5 {
  font-size: 2.4rem;
  font-weight: 400;
  color: #000000;
}
@media only screen and (max-width: 47.9375em) {
  h5 {
    font-size: 1.6rem;
  }
}

h6 {
  font-size: 2rem;
  font-weight: 600;
  color: #000000;
}
@media only screen and (max-width: 74.9375em) {
  h6 {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 61.9375em) {
  h6 {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 47.9375em) {
  h6 {
    font-size: 1.6rem;
  }
}

p {
  font-size: 2.2rem;
  color: #555555;
}
@media only screen and (max-width: 74.9375em) {
  p {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 61.9375em) {
  p {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 47.9375em) {
  p {
    font-size: 1.6rem;
  }
}

a {
  font-size: 1.6rem;
  text-decoration: none;
}

/* Components SCSS */
/* Buttons SCSS */
.btn {
  padding: 1.3rem 3.8rem;
  font-size: 1.6rem;
  border: none;
  border-radius: 50rem;
  transition: all 0.3s ease;
}
.btn:hover,
.btn:focus {
  box-shadow: none !important;
}
.btn-primary {
  color: #ffffff;
  background-color: #000000;
}
.btn-primary:hover {
  color: #ffffff;
  background-color: #555555;
}
.btn-primary-ico {
  color: #ffffff;
  background-color: #000000;
  display: flex;
  align-items: center;
}
.btn-primary-ico:hover {
  color: #000000;
  background-color: #ffffff;
}
.btn-secondary {
  color: #000000;
  background-color: #ffffff;
}
.btn-secondary:hover {
  color: #ffffff;
  background-color: #555555;
}
.btn-secondary-ico {
  color: #000000;
  background-color: #ffffff;
  display: flex;
  align-items: center;
}
.btn-secondary-ico:hover {
  color: #ffffff;
  background-color: #555555;
}
.btn-tertiary {
  color: #000000;
  background-color: transparent;
}
.btn-tertiary:hover {
  transform: scale(1.05);
}
.btn-tertiary-ico {
  padding: 1.3rem 0;
  color: #000000;
  background-color: transparent;
  display: flex;
  align-items: center;
}
.btn-tertiary-ico:hover {
  transform: scale(1.05);
}
.btn-quaternary {
  color: #ffffff;
  background-color: #075e54;
}
.btn-quaternary:hover {
  color: #ffffff;
  background-color: #000000;
}
.btn-false-select {
  margin-bottom: 3.1rem;
  display: block;
  border-radius: 1.5rem;
  background-color: #efefef;
}
.btn-fixed-width {
  width: 38rem;
}
@media only screen and (max-width: 47.9375em) {
  .btn-fixed-width {
    width: 100%;
  }
}
.btn-fixed-width-small {
  width: 24rem;
}
@media only screen and (max-width: 47.9375em) {
  .btn-fixed-width-small {
    width: 100%;
  }
}
.btn-auto-width {
  width: max-content;
}
.btn-full-width {
  width: 100%;
}

.btn-grow {
  transition: all 0.3s ease;
  display: block;
}
.btn-grow:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10rem #f5f5f5;
}

.ico-external::before {
  content: "";
  width: 1.6rem;
  height: 1.6rem;
  margin-right: 1rem;
  display: block;
  transition: all 0.3s ease;
  background: url("../../assets/img/icons/ico-external-link-white.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.ico-external:hover:before {
  background: url("../../assets/img/icons/ico-external-link-black.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.ico-couch-two::before {
  content: "";
  width: 3.1rem;
  height: 2.1rem;
  margin-right: 1rem;
  display: block;
  transition: all 0.3s ease;
  background: url("../../assets/img/icons/ico-couch-grey.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 47.9375em) {
  .ico-couch-two::before {
    width: 2.1rem;
    height: 1.5rem;
  }
}

.ico-couch-two:hover:before {
  background: url("../../assets/img/icons/ico-couch-green.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.ico-collection::before {
  content: "";
  width: 2.5rem;
  height: 2.5rem;
  margin-right: 1rem;
  display: block;
  transition: all 0.3s ease;
  background: url("../../assets/img/icons/ico-collectons-grey.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 47.9375em) {
  .ico-collection::before {
    width: 1.5rem;
    height: 1.5rem;
  }
}

.ico-collection:hover:before {
  background: url("../../assets/img/icons/ico-collectons-green.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.ico-couch::before {
  content: "";
  width: 2.3rem;
  height: 1.6rem;
  margin-right: 1rem;
  display: block;
  transition: all 0.3s ease;
  background: url("../../assets/img/icons/ico-couch-white.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.ico-couch:hover:before {
  background: url("../../assets/img/icons/ico-couch-black.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.ico-arrow-back::after {
  content: "";
  width: 2.3rem;
  height: 1.6rem;
  margin-left: 1rem;
  display: block;
  background: url("../../assets/img/icons/ico-arrow-right-black.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: all 0.3s ease;
}

.ico-arrow-front::before {
  content: "";
  width: 2.3rem;
  height: 1.6rem;
  margin-right: 1rem;
  display: block;
  background: url("../../assets/img/icons/ico-arrow-left-black.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: all 0.3s ease;
}

.ico-arrow-front:hover:before {
  background: url("../../assets/img/icons/ico-arrow-left-white.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.btn-icon {
  width: 2rem;
  margin-right: 1rem;
}
.btn-icon:hover {
  color: #ffffff;
  background-color: #000000;
}

.single-btn {
  width: 22.7rem;
  padding: 2.5rem 0;
}

#back-to-top {
  display: inline-block;
  background: url("../../assets/img/icons/ico-link-arrow-right-black.svg"),
    #ffffff;
  background-size: 50%, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  border: 1px solid rgba(0, 0, 0, 0);
  width: 50px;
  height: 50px;
  border-radius: 30px;
  position: fixed;
  bottom: 15px;
  right: 15px;
  transition: background-color 0.4s, opacity 0.4s, visibility 0.4s,
    transform 0.4s;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
  transform: scale(1) rotate(270deg);
}
#back-to-top:hover,
#back-to-top:active {
  cursor: pointer;
  background: url("../../assets/img/icons/ico-link-arrow-right-white.svg"),
    #000000;
  background-size: 50%, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  border: 1px solid rgba(0, 0, 0, 0);
  transform: scale(1.1) rotate(270deg);
}
#back-to-top.show {
  opacity: 1;
  visibility: visible;
}
@media only screen and (max-width: 35.9375em) {
  #back-to-top {
    width: 45px;
    height: 45px;
  }
}

/* Composition SCSS */
.payfast-add {
  margin-top: 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.payfast-add img {
  width: 11.7rem;
}
.payfast-add p {
  margin-top: 1.5rem;
  color: #df1a2d;
  font-size: 1.3rem;
}

.card.cookie-alert {
  display: none;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #efefef;
  background-clip: border-box;
  border: 0px solid rgba(0, 0, 0, 0);
  border-radius: 27px;
}

.cookie-alert {
  position: sticky;
  bottom: 40px;
  width: 100%;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
  margin-right: auto;
  margin-left: auto;
  z-index: 999;
  opacity: 0;
  transform: translateY(100%);
  transition: all 500ms ease-out;
}
.cookie-alert .card-body {
  position: relative;
  padding: 27px 100px;
}
.cookie-alert .card-body a {
  color: #a37235;
  text-decoration: none;
}
.cookie-alert .card-body a:hover {
  color: #000000;
}
.cookie-alert .btn-primary {
  position: relative;
  padding-right: 8rem;
  padding-left: 1.5rem;
}
.cookie-alert .btn-primary::after {
  position: absolute;
  content: "";
  background-image: url("../img/icons/ico-link-arrow-right-white.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 2.1rem;
  height: 1.5rem;
  top: 50%;
  right: 1rem;
  transform: translate(0, -50%);
}
.cookie-alert .btn-primary:hover {
  background-color: #fff !important;
  color: #000;
}
.cookie-alert .btn-primary:hover::after {
  background-image: url("../img/icons/ico-link-arrow-right-black.svg");
}
.cookie-alert.show {
  display: flex;
  opacity: 1;
  transform: translateY(0%);
  transition-delay: 1000ms;
}

@media (min-width: 1400px) {
  .cookie-alert {
    max-width: 1300px;
  }
}

@media (max-width: 1439px) {
  .cookie-alert {
    max-width: 1300px;
  }
}

@media (max-width: 1199.99px) {
  .cookie-alert {
    max-width: 940px;
  }
}

@media (max-width: 991px) {
  .cookie-alert {
    max-width: 700px;
  }
  .cookie-alert .card-body {
    position: relative;
    padding: 27px 260px 27px 100px;
  }
}

@media (min-width: 768px) {
  .cookie-alert .card-body img.cookie-icon {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translate(0, -50%);
  }
  .cookie-alert .card-body button.btn {
    position: absolute;
    top: 50%;
    right: 23px;
    transform: translate(0, -50%);
    transition: all 0.2s ease-in-out;
    margin: 0;
  }
  .cookie-alert .card-body button.btn:hover {
    transform: translate(0, -50%) scale(1.04);
  }
}

@media (max-width: 767px) {
  .cookie-alert {
    max-width: 520px;
  }
  .cookie-alert .card-body {
    position: relative;
    padding: 30px;
  }
  .cookie-alert .card-body img.cookie-icon {
    position: relative;
    margin-bottom: 25px;
  }
  .cookie-alert .card-body button.btn {
    position: relative;
    margin-top: 25px;
  }
}

@media (max-width: 575px) {
  .cookie-alert {
    max-width: 340px;
  }
  .cookie-alert .card-body {
    position: relative;
    padding: 15px 5px;
  }
}

/* Form SCSS */
label {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

select,
input {
  width: 100%;
  font-size: 1.6rem;
  padding: 2rem;
  margin-bottom: 2rem;
  background-color: #efefef;
  border: none;
  border-radius: 1.5rem;
  display: block;
}

.custom-select {
  margin-bottom: 3.1rem;
  position: relative;
  width: 100% !important;
}
.custom-select select {
  display: none;
}

.select-selected {
  background-color: #efefef;
  border-radius: 1.5rem;
  box-shadow: none;
  border: none;
}
.select-selected:after {
  position: absolute;
  content: "";
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
  width: 2.1rem;
  height: 1.2rem;
  background: url("../../assets/img/icons/ico-arrow-down.svg");
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: auto;
}
.select-selected.select-arrow-active:after {
  border-color: transparent transparent transparent transparent;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
}

.select-items div,
.select-selected {
  color: #000000;
  font-size: 1.6rem;
  font-family: "Roboto Slab";
  padding: 2rem;
  cursor: pointer;
  user-select: none;
}

.select-items {
  overflow: hidden;
  position: absolute;
  background-color: #ffffff;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  border-radius: 2rem;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
}
.select-items div:hover,
.select-items .same-as-selected {
  background-color: rgba(0, 0, 0, 0.1);
}

.select-hide {
  display: none;
}

.check-container {
  width: 100%;
  display: flex;
  align-items: center;
}
.check-container label {
  font-size: 1.8rem;
}
@media only screen and (max-width: 47.9375em) {
  .check-container label {
    width: 100%;
  }
}
@media only screen and (max-width: 47.9375em) {
  .check-container {
    flex-direction: column;
  }
}

.container-check {
  width: 60%;
  position: relative;
  padding: 2rem 2rem 2rem 7rem;
  margin-bottom: 1.2rem;
  cursor: pointer;
  background-color: #efefef;
  border-radius: 1.5rem;
  display: flex;
  align-items: center;
}
.container-check:not(:last-child) {
  margin-right: 2rem;
  width: 40%;
}
@media only screen and (max-width: 47.9375em) {
  .container-check:not(:last-child) {
    margin-right: 0;
  }
}
.container-check input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  width: 3.5rem;
  height: 3.5rem;
  position: absolute;
  top: 50%;
  left: 1.6rem;
  background-color: transparent;
  border-radius: 50rem;
  border: 2px solid #000000;
  transform: translate(0, -50%);
  display: flex;
}
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.container-check:hover input ~ .checkmark {
  background-color: #ccc;
}

.container-check input:checked ~ .checkmark {
  background-color: #000000;
}

.container-check input:checked ~ .checkmark:after {
  display: block;
}

.container-check .checkmark:after {
  content: "";
  background-image: url(../../assets/img/icons/ico-check-white.svg);
  background-position: center;
  background-size: 100%;
  background-repeat: no-repeat;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 2.2rem;
  height: 2.6rem;
}

/* Cards SCSS */
/* Pop Ups SCSS */
/* Images SCSS */
.full-width {
  width: 100%;
  height: auto;
}

.img-border {
  border-radius: 3rem;
}

/* Layouts SCSS */
/* Bootstrap Nav Restyling */
/*=================
Mobile Navigation
===================*/
.nav-bar {
  overflow: visible;
}

@media only screen and (max-width: 61.9375em) {
  .nav-bar {
    position: relative;
    margin-top: 4rem;
    width: 100%;
  }
  .nav-bar .navbar {
    position: relative;
    padding-top: 3rem;
    padding-bottom: 3rem;
    border-radius: 50px;
  }
  .nav-bar .navbar.bg-light {
    background-color: #fff !important;
  }
  .navbar-collapse {
    background: url("../images/backgrounds/bg-circular-pattern-2@2x.png"),
      #ffffff;
    background-position: left 28vw center, center;
    background-size: 70vh, cover;
    background-repeat: no-repeat;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 100%;
    transition: all 0.35s ease;
    display: none;
    z-index: 9999;
  }
  .navbar-collapse.show {
    position: fixed;
    display: block;
    top: 0;
    right: 0;
    bottom: 0;
  }
  .navbar-collapse.collapsing {
    height: 100vh;
    transition: all 0.35s ease;
    display: block;
  }
  .navbar-collapse.collapsing .navbar-nav {
    transition: all 0.35s ease;
    display: none;
  }
  .nav-bar .navbar-expand-lg .navbar-nav .nav-link {
    font-size: 2.6rem;
    font-weight: 600;
    line-height: normal;
  }
  .nav-bar .navbar-expand-lg .navbar-nav .nav-link:hover,
  .nav-bar .navbar-expand-lg .navbar-nav .nav-link.active {
    color: #000000;
  }
  .nav-bar .navbar .navbar-nav {
    display: flex;
    position: relative;
  }
  .nav-bar .navbar .navbar-nav:not(:last-child) {
    padding-top: 15rem;
  }
  .nav-bar .navbar-brand {
    margin-right: 0px;
  }
  .nav-bar .navbar-brand.mobile {
    position: absolute;
    display: flex;
    top: 15px;
    left: 20px;
    z-index: 100;
    max-width: 10rem;
  }
  .nav-bar .navbar-brand.mobile img {
    width: 100%;
  }
  .nav-bar .navbar-brand.desktop {
    display: none;
  }
  .nav-bar .navbar-brand.hero-mobile {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translate(0, -50%);
    max-width: 10rem;
  }
  .nav-bar .navbar-brand.hero-mobile img {
    width: 100%;
  }
  .nav-bar .navbar ul li.nav-item {
    width: fit-content;
    margin-left: 20px;
  }
  .nav-bar .navbar ul li a.nav-link {
    font-family: inherit;
    font-size: 3.813rem;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 0.89;
    letter-spacing: normal;
    text-align: left;
    color: #000000;
    position: relative;
    text-transform: none;
    padding: 0.75rem 0;
  }
  .nav-bar .navbar ul li a.nav-link img.arrow-down {
    position: absolute;
    right: -25px;
    top: 50%;
    transform: translate(0, -70%);
  }
  .nav-bar .navbar ul li a.nav-link:hover {
    color: #000000;
  }
  .mobile-sub-labels {
    position: absolute;
    bottom: 3rem;
    width: 100%;
    left: 3rem;
  }
  .mobile-sub-labels p {
    margin-top: 3rem;
  }
  .services-active-link {
    display: none;
  }
  .bg-linear-blue .nav-bar {
    margin: 0 0 2rem;
  }
  .call-us {
    display: none;
  }
  .nav-social {
    list-style: none;
  }
  .nav-social a {
    padding: 0.5rem 1rem 0.5rem 0;
    color: #000000;
    align-items: center;
    transition: all 0.3s ease;
    z-index: 5;
  }
  .nav-social a:not(:last-child) {
    margin-right: 5rem;
  }
  .nav-social a:hover {
    color: #a37235;
  }
}

@media only screen and (max-width: 47.9375em) {
  .nav-bar {
    margin-bottom: 6rem;
  }
  .nav-bar .navbar {
    margin-bottom: 2rem;
  }
  .nav-bar .navbar .navbar-nav {
    padding-bottom: 6rem;
  }
  .nav-bar .navbar .navbar-nav:not(:last-child) {
    padding-top: 15rem;
    padding-bottom: 0;
  }
  .nav-bar .navbar-brand.mobile {
    max-width: 10rem;
  }
  .nav-bar .navbar-brand.mobile img {
    width: 100%;
  }
  .nav-bar .navbar-brand.desktop {
    max-width: 26rem;
  }
  .nav-bar .navbar-brand.desktop img {
    width: 100%;
  }
  .call-us {
    display: none;
  }
}

@media only screen and (max-width: 35.9375em) {
  .nav-bar {
    margin-bottom: 7rem;
  }
  .nav-bar .navbar-brand.mobile img {
    width: 100%;
  }
  .nav-bar .navbar-brand.desktop {
    max-width: 22rem;
  }
  .nav-bar .navbar-brand.desktop img {
    width: 100%;
  }
}

@media only screen and (max-width: 380px) {
  .nav-bar .navbar-brand.mobile img {
    width: 100%;
  }
  .nav-bar .navbar-brand.desktop {
    max-width: 20rem;
  }
  .nav-bar .navbar-brand.desktop img {
    width: 100%;
  }
}

/* Navbar Collapse Show */
@media (max-width: 417px) {
  .navbar-collapse.show {
    left: 0;
  }
}

@media only screen and (min-width: 418px) and (max-width: 576px) {
  .navbar-collapse.show {
    left: 20vw;
  }
}

@media only screen and (min-width: 577px) and (max-width: 768px) {
  .navbar-collapse.show {
    left: 30vw;
  }
}

@media only screen and (min-width: 769px) and (max-width: 991px) {
  .navbar-collapse.show {
    left: 50vw;
  }
}

@media only screen and (max-width: 61.9375em) {
  .nav-bar .navbar a.btn.btn-primary {
    display: none;
  }
  /*Navbar Toggle */
  .navbar .navbar-toggler {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    right: 1rem;
    z-index: 1000;
    font-size: 1.4rem;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    padding: 0;
    width: 4rem;
    height: 4rem;
    background-color: #a37235;
    border-radius: 50%;
    top: 50%;
    right: 15px;
    transform: translate(0, -50%);
  }
  .navbar-light .navbar-toggler-icon {
    position: relative;
    background-image: none;
    background-color: #ffffff;
    width: 22px;
    height: 1.2px;
    border-radius: 1px;
  }
  .navbar-light .navbar-toggler-icon::before,
  .navbar-light .navbar-toggler-icon::after {
    position: absolute;
    left: 0;
    content: "";
    background-color: #ffffff;
    width: 22px;
    height: 1.2px;
    border-radius: 1px;
  }
  .navbar-light .navbar-toggler-icon::before {
    top: -5px;
  }
  .navbar-light .navbar-toggler-icon::after {
    bottom: -5px;
  }
  .navbar .navbar-toggler,
  .navbar .navbar-toggler:hover,
  .navbar .navbar-toggler:active,
  .navbar .navbar-toggler:focus {
    box-shadow: 0 0 0 0;
    outline: 0;
    border: 0;
  }
  .navbar-light .navbar-toggler.scroll {
    padding: 10px 0px 10px 15px;
    background-color: #ffffff;
    color: #ffffff;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
  }
  .navbar-light .navbar-toggler.scroll .navbar-toggler-icon {
    background-color: #ffffff;
  }
  .navbar-light .navbar-toggler.scroll .navbar-toggler-icon::before,
  .navbar-light .navbar-toggler.scroll .navbar-toggler-icon::after {
    background-color: #ffffff;
  }
  .navbar .navbar-collapse .btn-close {
    display: none;
    position: absolute;
    top: 40px;
    right: 10px;
    opacity: 1;
    transition: all 1.5s ease;
    font-size: 2.3rem;
    font-weight: bold;
    z-index: 999;
    background: none;
    width: 3.8rem;
    height: 3.8rem;
  }
  .navbar .navbar-collapse.show .btn-close {
    display: inline-block;
    transition: all 1.5s ease;
  }
  .navbar .navbar-collapse.collapsing .btn-close {
    transition: all 1.5s ease;
  }
  .navbar .btn-close:hover,
  .navbar .btn-close:focus {
    opacity: 1;
    color: #977433;
    box-shadow: 0 0 0 0rem rgba(0, 0, 0, 0);
  }
  .navbar .navbar-collapse .social-link {
    color: #ffffff;
  }
  .bg-linear-blue .navbar-light .navbar-toggler {
    background-color: #ffffff;
    color: #ffffff;
  }
  .bg-linear-blue .navbar-light .navbar-toggler .navbar-toggler-icon {
    background-color: #ffffff;
    height: 1.25px;
    border-radius: 1px;
  }
  .bg-linear-blue .navbar-light .navbar-toggler .navbar-toggler-icon::before,
  .bg-linear-blue .navbar-light .navbar-toggler .navbar-toggler-icon::after {
    background-color: #ffffff;
    height: 1.25px;
    border-radius: 1px;
  }
  .bg-linear-blue .navbar-light .navbar-toggler.scroll {
    background-color: #000000;
    color: #ffffff;
  }
  .bg-linear-blue .navbar-light .navbar-toggler.scroll .navbar-toggler-icon {
    background-color: #ffffff;
  }
  .bg-linear-blue
    .navbar-light
    .navbar-toggler.scroll
    .navbar-toggler-icon::before,
  .bg-linear-blue
    .navbar-light
    .navbar-toggler.scroll
    .navbar-toggler-icon::after {
    background-color: #ffffff;
  }
}

/*====================
MAIN NAVIGATION
====================*/
@media only screen and (min-width: 992px) {
  .navbar-brand {
    width: 125.67px;
    display: flex;
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .navbar-brand p {
    margin: 0 0 0 1.8rem;
    font-size: 2rem;
    line-height: 1;
  }
  .navbar-brand p span {
    font-weight: 400;
    font-size: 1.6rem;
  }
  .navbar-brand img {
    position: absolute;
  }
  .navbar-nav .dropdown-menu {
    border: none;
    border-radius: 2rem;
    font-size: 1.6rem;
    padding: 2rem;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  }
  .dropdown-item {
    margin: 0.5rem 0;
    transition: all 0.5s ease;
  }
  .dropdown-item:focus,
  .dropdown-item:hover {
    color: #ffffff;
    background-color: #000000;
    border-radius: 50rem;
  }
  .dropdown-toggle::after {
    display: none;
  }
  /* Navigation SCSS */
  .navbar {
    /*position: fixed;
    width: 68.5%;*/
    padding: 2rem 5rem 1.5rem 5rem;
    border-radius: 2rem;
    background-color: #ffffff !important;
    font-size: 1.6rem;
    font-weight: 700;
    transition: all 0.5s ease;
  }
  .call-us {
    margin-top: 2rem;
    display: flex;
    padding: 2.3rem 5rem;
    justify-content: end;
  }
  .nav-item:not(:last-child) {
    padding-right: 2rem;
  }
  .inactive::after {
    content: "";
    width: 0.5rem;
    height: 0.5rem;
    display: flex;
    margin: 0 auto;
    background-color: transparent;
    border-radius: 50rem;
  }
  .active::after {
    background-color: black !important;
  }
}

/* Header SCSS */
/* Footer SCSS */
.main-footer {
  padding: 3.7rem 0 12.37rem 0;
}

.footer-img {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.footer-img p {
  font-size: 1.6rem;
}

.footer-nav {
  display: flex;
  height: 100%;
  align-items: center;
}
.footer-nav-list {
  display: flex;
  padding-left: 0;
}
@media only screen and (max-width: 61.9375em) {
  .footer-nav-list {
    flex-direction: column;
  }
}
@media only screen and (max-width: 47.9375em) {
  .footer-nav-list {
    width: 16rem;
  }
}
@media only screen and (max-width: 47.9375em) {
  .footer-nav .list-item a {
    display: inline-block;
  }
}

#terms {
  order: 1;
}

#logo {
  order: 2;
}

#social {
  order: 3;
}

@media only screen and (max-width: 47.9375em) {
  #terms {
    order: 1;
  }
  #logo {
    order: 3;
  }
  #social {
    order: 2;
  }
}

/* Pages SCSS */
/* Home/Index SCSS */
.home-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.home-content p {
  margin-top: 1.5rem;
  font-size: 2.2rem;
  line-height: 1.27;
}
@media only screen and (min-width: 62em) {
  .home-content p {
    margin-top: 3rem;
    width: 40rem;
  }
}

.home-banner {
  margin-top: 12rem;
  background: url("../../assets/img/pages/home-page/hero-banner.png");
  background-repeat: no-repeat;
  background-position: right;
  background-size: auto 100%;
}
@media only screen and (max-width: 61.9375em) {
  .home-banner {
    background: transparent;
  }
}
@media only screen and (max-width: 47.9375em) {
  .home-banner {
    background: transparent;
    margin-top: 2rem;
  }
}
@media only screen and (min-width: 62em) {
  .home-banner {
    background-position: left 51.6vw center;
    background-size: auto 100%;
  }
}

.home-image {
  height: 51rem;
  opacity: 0;
}
@media only screen and (max-width: 61.9375em) {
  .home-image {
    opacity: 1;
    background: transparent;
    height: max-content;
    margin-bottom: 3rem;
  }
}
.home-image img {
  height: 100%;
  border-radius: 5rem;
}
@media only screen and (max-width: 61.9375em) {
  .home-image img {
    height: auto;
  }
}
@media only screen and (max-width: 47.9375em) {
  .home-image img {
    height: auto;
    border-radius: 2rem;
  }
}

.home-quality {
  margin-top: 8rem;
}
.home-quality-specs {
  padding: 3.4rem 0;
  border-radius: 2rem;
}
.home-quality-specs h5 {
  opacity: 0.5;
}
@media only screen and (max-width: 47.9375em) {
  .home-quality-specs {
    text-align: center;
  }
}

.home-history {
  margin-top: 21rem;
}
@media only screen and (max-width: 47.9375em) {
  .home-history {
    margin-top: 7rem;
  }
}
.home-history-container {
  margin: 0 auto;
}
@media only screen and (max-width: 47.9375em) {
  .home-history-container {
    width: 100%;
  }
}
@media only screen and (max-width: 61.9375em) {
  .home-history-container {
    width: 100%;
  }
}
@media only screen and (min-width: 117.5em) {
  .home-history-container {
    width: max-content;
  }
}
.home-history-content {
  position: relative;
  z-index: 5;
  margin-bottom: -15rem;
}
@media only screen and (max-width: 47.9375em) {
  .home-history-content {
    margin-bottom: -8rem;
  }
  .home-history-content .btn-fixed-width {
    width: 38rem;
  }
}
@media only screen and (max-width: 35.9375em) {
  .home-history-content {
    margin-bottom: -4rem;
  }
  .home-history-content .btn-fixed-width {
    width: 28rem;
  }
}
@media only screen and (max-width: 375px) {
  .home-history-content br {
    display: none;
  }
}

.detail-nav-list {
  padding: 15rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media only screen and (max-width: 47.9375em) {
  .detail-nav-list {
    padding: 9rem 0;
  }
}
@media only screen and (max-width: 47.9375em) {
  .detail-nav-list {
    padding: 7rem 0;
  }
}

.home-types {
  margin-top: 9rem;
}

.listing-title {
  margin-bottom: 0;
}

.type-title {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media only screen and (max-width: 61.9375em) {
  .home-types {
    overflow: hidden;
  }
  .home-types .owl-carousel .owl-stage-outer {
    overflow: visible;
    clip-path: inset(0 -100vw 0 -100vw);
  }
  .home-types .owl-carousel .owl-stage {
    overflow: hidden;
  }
  .home-types .owl-carousel .owl-stage::after {
    position: relative;
    visibility: visible;
  }
}

@media only screen and (min-width: 36em) {
  .home-types .owl-carousel .owl-stage-outer .owl-item {
    width: 370px !important;
  }
}

@media only screen and (min-width: 48em) {
  .home-types .owl-carousel .owl-stage-outer .owl-item {
    width: 345px !important;
  }
}

.types-listing {
  padding: 4.7rem 3.1rem;
  border-radius: 2rem;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.types-listing h5 {
  margin-top: 6rem;
}
@media only screen and (max-width: 47.9375em) {
  .types-listing {
    margin-top: 2rem;
  }
}

.home-collection {
  margin-top: 9rem;
}

.collection-listing {
  margin-bottom: 3rem;
  border-radius: 2rem;
  background-color: transparent;
}
.collection-listing h5 {
  font-size: 2.2rem;
}
.collection-listing h6,
.collection-listing p {
  font-size: 1.8rem;
}
.collection-listing img {
  border-radius: 3rem;
  margin-bottom: 1.7rem;
}
@media only screen and (max-width: 47.9375em) {
  .collection-listing {
    margin-top: 2rem;
  }
}

@media only screen and (max-width: 61.9375em) {
  .home-collection {
    overflow: hidden;
  }
  .home-collection .owl-carousel .owl-stage-outer {
    overflow: visible;
    clip-path: inset(0 -100vw 0 -100vw);
  }
  .home-collection .owl-carousel .owl-stage {
    overflow: hidden;
  }
  .home-collection .owl-carousel .owl-stage::after {
    position: relative;
    visibility: visible;
  }
  .collection-listing {
    text-align: center;
  }
}

@media only screen and (min-width: 36em) {
  .home-collection .owl-carousel .owl-stage-outer .owl-item {
    width: 370px !important;
  }
}

@media only screen and (min-width: 48em) {
  .home-collection .owl-carousel .owl-stage-outer .owl-item {
    width: 345px !important;
  }
}

.home-testimonials {
  margin-top: 18.1rem;
}
@media only screen and (max-width: 47.9375em) {
  .home-testimonials {
    margin-top: 7rem;
  }
}

.testimonial-slider {
  margin-top: 2rem;
}

.testimonial-box {
  padding: 3rem 4rem;
  background-color: #ffffff;
  border-radius: 2rem;
}
@media only screen and (max-width: 87.4375em) {
  .testimonial-box p.txt-black {
    font-size: 1.8rem;
  }
}
@media only screen and (min-width: 87.5em) {
  .testimonial-box p.txt-black {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 117.5em) {
  .testimonial-box p.txt-black {
    font-size: 2.2rem;
  }
}

.reupholstery-main {
  margin-top: 12rem;
  background: url("../../assets/img/pages/home-page/reupholster-banner.png");
  background-repeat: no-repeat;
  background-position: right;
  background-size: auto 100%;
}
@media only screen and (max-width: 61.9375em) {
  .reupholstery-main {
    background: transparent;
  }
}
@media only screen and (max-width: 47.9375em) {
  .reupholstery-main {
    background: transparent;
    margin-top: 2rem;
  }
}
@media only screen and (min-width: 62em) {
  .reupholstery-main {
    background-position: left 51.6vw center;
    background-size: auto 100%;
  }
}
.reupholstery-main-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.reupholstery-main-content p {
  margin-top: 3rem;
}
@media only screen and (max-width: 61.9375em) {
  .reupholstery-main-content p {
    width: 100%;
  }
}
@media only screen and (max-width: 47.9375em) {
  .reupholstery-main-content p {
    width: 100%;
  }
}
.reupholstery-main-image {
  height: 55.7rem;
}
@media only screen and (max-width: 61.9375em) {
  .reupholstery-main-image {
    opacity: 1;
    background: transparent;
    height: max-content;
    margin-bottom: 3rem;
  }
}
@media only screen and (max-width: 47.9375em) {
  .reupholstery-main-image {
    height: 25rem;
    margin-top: 3rem;
  }
}
@media only screen and (max-width: 35.9375em) {
  .reupholstery-main-image {
    height: auto;
    margin-top: 3rem;
  }
}
.reupholstery-main-image img {
  height: 100%;
  opacity: 0;
}
@media only screen and (max-width: 61.9375em) {
  .reupholstery-main-image img {
    height: auto;
    opacity: 1;
  }
}
@media only screen and (max-width: 47.9375em) {
  .reupholstery-main-image img {
    height: auto;
    opacity: 1;
  }
}
.reupholstery-main ul li {
  font-size: 2rem;
  color: #555555;
  margin-left: 1.2rem;
}

/* Collections SCSS */
.collections-title {
  margin: -2rem 0 -8rem 0;
}
@media only screen and (max-width: 61.9375em) {
  .collections-title {
    margin: 5rem 0 -7rem 0;
  }
}
@media only screen and (max-width: 47.9375em) {
  .collections-title {
    margin: -1rem 0 -3rem 0;
  }
}

.collection-image img {
  width: 100%;
}
@media only screen and (max-width: 61.9375em) {
  .collection-image img {
    width: 80%;
    margin: 0 auto;
    display: block;
  }
}

.collection-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media only screen and (max-width: 61.9375em) {
  .collection-content {
    display: block;
    margin-bottom: -9rem;
  }
}
@media only screen and (max-width: 47.9375em) {
  .collection-content {
    display: block;
    margin-bottom: -5rem;
    text-align: center;
  }
}

.product-tab {
  margin: 0 auto 5rem auto;
  padding: 0.9rem 2.5rem;
  width: max-content;
  font-size: 2.2rem;
  font-weight: 500;
  background-color: #ffffff;
  border-radius: 50rem;
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 47.9375em) {
  .product-tab {
    margin: 0 auto 2rem auto;
    font-size: 1.5rem;
    flex-direction: row;
    border-radius: 2rem;
  }
}
@media only screen and (max-width: 35.9375em) {
  .product-tab {
    flex-direction: column;
  }
}

.nav-link,
.nav-links {
  color: #acacac;
  font-weight: 500;
}
.nav-link:hover,
.nav-links:hover {
  color: #075e54;
}

.nav-links {
  display: block;
  padding: 0.5rem 1rem;
  text-decoration: none;
  border: none;
  background-color: transparent;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out;
}

.collection-tabs.nav-pills .nav-link.active,
.collection-tabs.nav-pills .show > .nav-link {
  color: #075e54;
  background-color: transparent;
}
.collection-tabs.nav-pills .nav-link.active::before,
.collection-tabs.nav-pills .show > .nav-link::before {
  content: "";
  width: 2.5rem;
  height: 2.5rem;
  margin-right: 1rem;
  display: block;
  transition: all 0.3s ease;
  background: url("../../assets/img/icons/ico-collectons-green.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 47.9375em) {
  .collection-tabs.nav-pills .nav-link.active::before,
  .collection-tabs.nav-pills .show > .nav-link::before {
    width: 1.5rem;
    height: 1.5rem;
  }
}

.collection-tabs.nav-pills .nav-links.active,
.collection-tabs.nav-pills .show > .nav-links {
  color: #075e54;
  background-color: transparent;
}
.collection-tabs.nav-pills .nav-links.active::before,
.collection-tabs.nav-pills .show > .nav-links::before {
  content: "";
  width: 3.1rem;
  height: 2.1rem;
  margin-right: 1rem;
  display: block;
  transition: all 0.3s ease;
  background: url("../../assets/img/icons/ico-couch-green.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 47.9375em) {
  .collection-tabs.nav-pills .nav-links.active::before,
  .collection-tabs.nav-pills .show > .nav-links::before {
    width: 2.1rem;
    height: 1.5rem;
  }
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #075e54;
  background-color: transparent;
}

.nav-pills .nav-links.active,
.nav-pills .show > .nav-links {
  color: #075e54;
  background-color: transparent;
}

.modal-tab {
  position: fixed;
  top: 87px;
  z-index: 100;
  left: 50%;
  transform: translate(-50%, 0);
}

.material-card h6 {
  font-size: 1.6rem;
}

.accordion-button {
  padding: 1rem;
  font-size: 1.6rem;
  border-radius: 50rem !important;
}
@media only screen and (max-width: 47.9375em) {
  .accordion-button:nth-child(1) {
    margin-top: 2rem;
    border-radius: 3rem !important;
  }
}
.accordion-button:focus {
  z-index: 3;
  border-color: transparent !important;
  outline: none;
  box-shadow: none !important;
}
.accordion-button:active {
  background-color: #ffffff !important;
}
.accordion-button:not(.collapsed) {
  color: #000000;
  background-color: #e7f1ff00;
  box-shadow: none;
}
.accordion-button::after {
  content: "";
  width: 3.6rem;
  height: 3.6rem;
  position: relative;
  right: 3rem;
  background-color: #efefef;
  border-radius: 50rem;
  background-image: url(../../assets/img/icons/ico-arrow-left-black.svg);
  background-repeat: no-repeat;
  background-size: auto;
  background-position: center;
  transform: rotate(-180deg);
  transition: transform 0.2s ease-in-out;
}
@media only screen and (max-width: 47.9375em) {
  .accordion-button::after {
    right: 1rem;
  }
}
.accordion-button:not(.collapsed)::after {
  background-image: url("../../assets/img/icons/ico-arrow-left-black.svg");
  transform: rotate(-90deg);
}

.accordion-item {
  background-color: transparent;
  border: none;
}

.collapse-title {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 47.9375em) {
  .collapse-title {
    flex-direction: column;
    margin-left: 2rem;
  }
}
.collapse-title img {
  width: 19.8rem;
  margin-right: 3.3rem;
}
@media only screen and (max-width: 47.9375em) {
  .collapse-title img {
    width: 9rem;
    margin-right: 0;
  }
}

/* About SCSS */
.about-main {
  margin-top: 12rem;
  background: url("../../assets/img/pages/about-page/about-image-three.png");
  background-repeat: no-repeat;
  background-position: right;
  background-size: auto 100%;
}
@media only screen and (max-width: 61.9375em) {
  .about-main {
    background: transparent;
  }
}
@media only screen and (max-width: 47.9375em) {
  .about-main {
    background: transparent;
    margin-top: 2rem;
  }
}
@media only screen and (min-width: 62em) {
  .about-main {
    background-position: left 51.6vw center;
    background-size: auto 100%;
  }
}
.about-main-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-main-content p {
  margin-top: 3rem;
}
@media only screen and (max-width: 61.9375em) {
  .about-main-content p {
    width: 100%;
  }
}
@media only screen and (max-width: 47.9375em) {
  .about-main-content p {
    width: 100%;
  }
}
.about-main-image {
  height: 55.7rem;
}
@media only screen and (max-width: 61.9375em) {
  .about-main-image {
    opacity: 1;
    background: transparent;
    height: max-content;
    margin-bottom: 3rem;
  }
}
@media only screen and (max-width: 47.9375em) {
  .about-main-image {
    height: 25rem;
    margin-top: 3rem;
  }
}
@media only screen and (max-width: 35.9375em) {
  .about-main-image {
    height: auto;
    margin-top: 3rem;
  }
}
.about-main-image img {
  height: 100%;
  opacity: 0;
}
@media only screen and (max-width: 61.9375em) {
  .about-main-image img {
    height: auto;
    opacity: 1;
  }
}
@media only screen and (max-width: 47.9375em) {
  .about-main-image img {
    height: auto;
    opacity: 1;
  }
}

.about-quality {
  overflow-x: hidden;
  padding-bottom: 1rem;
}
.about-quality-assurance {
  padding: 9rem 0;
  display: flex;
  justify-content: start;
}
@media only screen and (max-width: 47.9375em) {
  .about-quality-assurance {
    flex-direction: column;
  }
}
.about-quality-specs {
  width: 100vw;
  padding: 3.4rem;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  background-color: #ffffff;
  border-bottom-left-radius: 2rem;
  border-top-left-radius: 2rem;
}
.about-quality-specs h5 {
  opacity: 0.5;
}
@media only screen and (max-width: 61.9375em) {
  .about-quality-specs {
    width: 100%;
    border-radius: 2rem;
  }
}
@media only screen and (max-width: 47.9375em) {
  .about-quality-specs {
    width: 100%;
    text-align: center;
    border-radius: 2rem;
  }
}
@media only screen and (min-width: 62em) {
  .about-quality-specs {
    padding: 3.4rem 14vw 3.4rem 3.4rem;
  }
}
@media only screen and (min-width: 75em) {
  .about-quality-specs {
    padding: 3.4rem 20vw 3.4rem 3.4rem;
  }
}
@media only screen and (min-width: 87.5em) {
  .about-quality-specs {
    padding: 3.4rem 24vw 3.4rem 3.4rem;
  }
}
@media only screen and (min-width: 117.5em) {
  .about-quality-specs {
    padding: 3.4rem 28vw 3.4rem 3.4rem;
  }
}

.quality-version {
  width: 43rem;
  margin-right: 6rem;
}
@media only screen and (max-width: 61.9375em) {
  .quality-version {
    width: 50%;
    margin-right: 0;
  }
}
@media only screen and (max-width: 47.9375em) {
  .quality-version {
    width: 100%;
    margin-right: 0;
  }
}
@media only screen and (max-width: 47.9375em) {
  .quality-version:not(:last-child) {
    margin-bottom: 3rem;
  }
}
.quality-version h2 {
  color: #075e54;
}

.about-meet {
  padding: 16rem 0;
  background: url("../../assets/img/pages/about-page/ico-lsg-circle.svg");
  background-position: left 19vw center;
  background-repeat: no-repeat;
  background-size: auto 100%;
}
@media only screen and (max-width: 47.9375em) {
  .about-meet {
    padding-top: 0px;
    padding-bottom: 16rem;
    margin-top: 5.7rem;
    background-position: center bottom;
    background-size: 100% auto;
  }
}
@media only screen and (max-width: 35.9375em) {
  .about-meet {
    background-position: center;
  }
}
@media only screen and (min-width: 62em) {
  .about-meet {
    margin-top: 5.7rem;
    background-position: left 80vw center;
    background-size: auto 100%;
  }
}
.about-meet-container {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 47.9375em) {
  .about-meet-container {
    flex-direction: column;
  }
}
.about-meet-content {
  margin-left: 6.3rem;
}
@media only screen and (max-width: 47.9375em) {
  .about-meet-content {
    margin-left: 0;
  }
}
.about-meet-content span {
  display: block;
  font-size: 6rem;
  font-weight: 500;
  color: #000000;
}
@media only screen and (max-width: 74.9375em) {
  .about-meet-content span {
    font-size: 3.2rem;
  }
}
@media only screen and (max-width: 61.9375em) {
  .about-meet-content span {
    font-size: 3rem;
  }
}
@media only screen and (max-width: 47.9375em) {
  .about-meet-content span {
    font-size: 2.4rem;
  }
}
.about-meet-content p {
  margin-top: 4rem;
}
@media only screen and (min-width: 62em) {
  .about-meet-content p {
    width: 64.05%;
  }
}
@media only screen and (max-width: 47.9375em) {
  .about-meet-content p {
    width: 100%;
  }
}
@media only screen and (max-width: 61.9375em) {
  .about-meet-content .btn-fixed-width {
    width: 32rem;
  }
}

/* Contact SCSS */
.contact {
  margin-top: 12rem;
}
@media only screen and (max-width: 47.9375em) {
  .contact {
    margin-top: 2rem;
  }
}
@media only screen and (max-width: 35.9375em) {
  .contact .list-item a {
    justify-content: center;
  }
}

.contact-info {
  height: 85%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media only screen and (max-width: 61.9375em) {
  .contact-info {
    height: 100%;
    display: block;
  }
}
@media only screen and (max-width: 47.9375em) {
  .contact-info {
    margin-bottom: 1rem;
    height: 100%;
  }
}
.contact-info-links {
  font-size: 3.5rem;
  font-family: "Roboto Slab";
}
@media only screen and (max-width: 74.9375em) {
  .contact-info-links {
    font-size: 2.8rem;
  }
}
@media only screen and (max-width: 61.9375em) {
  .contact-info-links {
    font-size: 2.5rem;
  }
}
@media only screen and (max-width: 74.9375em) {
  .contact-info-img {
    width: 100%;
  }
}
@media only screen and (max-width: 61.9375em) {
  .contact-info-img {
    width: 100%;
    margin: 0 auto;
    display: block;
  }
}

.contact-nav-list {
  margin-top: 7rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media only screen and (max-width: 61.9375em) {
  .contact-nav-list {
    margin: 4rem 0;
  }
}
@media only screen and (max-width: 47.9375em) {
  .contact-nav-list {
    margin: 3rem 0;
  }
}

.location {
  margin: 3rem 0 12rem 0;
  left: 0;
}
@media only screen and (max-width: 35.9375em) {
  .location {
    background: transparent;
  }
}
@media only screen and (min-width: 36em) {
  .location {
    background-position: right 51.6vw center;
    background-size: auto 100%;
  }
}
.location-information {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.location-information p {
  margin-top: 3.4rem;
  color: #000000;
  font-family: "Roboto Slab";
  font-size: 2.6rem;
}
.location-link {
  font-size: 2.6rem;
  font-family: "Roboto Slab";
  color: #000000;
  margin-top: 3.4rem;
  transition: all 0.3s ease;
}
.location-link:hover {
  color: #a37235;
}
.location-image {
  height: 51rem;
}
@media only screen and (max-width: 35.9375em) {
  .location-image {
    height: auto;
  }
  .location-image img {
    border-radius: 25px;
    margin-bottom: 25px;
  }
}
@media only screen and (max-width: 47.9375em) {
  .location-image {
    height: 31rem;
  }
}
@media only screen and (min-width: 36em) {
  .location-image img {
    display: none;
  }
}
@media only screen and (max-width: 61.9375em) {
  .location .btn-fixed-width {
    width: 32rem;
  }
}
@media only screen and (max-width: 47.9375em) {
  .location .btn-fixed-width {
    width: 26rem;
  }
}
@media only screen and (max-width: 35.9375em) {
  .location .btn-fixed-width {
    margin-left: auto;
    margin-right: auto;
  }
}

/* Detail SCSS */
.product-display {
  margin-top: 5rem;
}
.product-display-description {
  padding: 0 0 3.4rem 0;
}
.product-display-description p {
  font-size: 1.6rem;
}
.product-display-description img {
  margin-bottom: 3.8rem;
  border-radius: 3rem;
}
.product-display-cost {
  height: max-content;
  padding: 3.4rem;
  border-radius: 2rem;
  background-color: #ffffff;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
}
.product-display-cost hr {
  margin: 3rem 0;
}
.product-display-dimension {
  display: flex;
  align-items: flex-start;
}
@media only screen and (max-width: 47.9375em) {
  .product-display-dimension {
    flex-direction: column;
  }
}
.product-display-dimension p {
  margin-left: 1.6rem;
  color: #000000;
  font-weight: 600;
  font-size: 1.6rem;
}
@media only screen and (max-width: 47.9375em) {
  .product-display-dimension p {
    margin-left: 0;
    margin-top: 1rem;
  }
}
.product-display-dimension span:not(:last-child) {
  margin: 1rem 0;
  color: #555555;
  font-weight: normal;
  display: flex;
}

.product-fabric {
  width: 100%;
  display: flex;
  align-items: center;
}
.product-fabric img {
  margin-right: 2rem;
  width: 4rem;
}
@media only screen and (max-width: 47.9375em) {
  .product-fabric img {
    margin-right: 0;
  }
}
@media only screen and (max-width: 61.9375em) {
  .product-fabric {
    width: 45%;
  }
}
@media only screen and (max-width: 47.9375em) {
  .product-fabric {
    width: 100%;
    text-align: center;
    flex-direction: column;
  }
}

.product-upsell {
  margin-top: 9rem;
}

.modal-content {
  border-radius: 2rem !important;
  border: none;
}

.modal-header {
  border: none;
}

.modal-title {
  padding: 1.5rem 3rem;
}

.modal-body {
  padding: 0 2rem 3rem 4rem;
}

.modal-footer {
  padding: 1.5rem 3rem;
  border: none;
}

.card__body {
  min-height: 22.6rem;
  max-height: 22.6rem;
  width: 22.6rem;
  height: 22.6rem;
  padding: 0;
}

.card__body-header {
  padding: 0;
}
.card__body-header img {
  width: 100%;
  height: auto;
}

.card__label {
  display: flex;
  align-items: center;
  border: none;
  margin-top: 1rem;
}

.btn-close {
  box-sizing: content-box;
  width: 2em;
  height: 2em;
  padding: 0.25em 0.25em;
  background: url("../../assets/img/icons/ico-close-btn.svg");
  background-size: 100% auto;
  background-position: center;
  background-repeat: no-repeat;
  border: 0;
  border-radius: 0.25rem;
  position: relative;
  right: 3rem;
  opacity: 1;
  transition: all 0.3s ease;
}
.btn-close:hover {
  opacity: 1;
  transform: scale(1.06);
}

/* Cart SCSS */
.cart-icon {
  width: 7rem;
  margin-bottom: 2rem;
}

.cart-full {
  margin-top: 12rem;
}

.item-count {
  padding: 0.5rem 0.9rem;
  margin-left: 2rem;
  color: #000000;
  background-color: #ecae5c;
  font-size: 1.5rem;
  border-radius: 50rem;
}

.cart-display {
  padding: 3rem;
  background-color: #ffffff;
  border-radius: 2rem;
}

.cart-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 47.9375em) {
  .cart-navigation {
    flex-direction: column;
  }
  .cart-navigation .shopping {
    width: 100%;
  }
  .cart-navigation .btn {
    width: 100%;
  }
}
.cart-navigation .checkout {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 47.9375em) {
  .cart-navigation .checkout {
    flex-direction: column;
    width: 100%;
  }
  .cart-navigation .checkout .btn {
    width: 100%;
  }
}

.cart-item {
  width: 100%;
  margin-top: 5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 74.9375em) {
  .cart-item {
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 61.9375em) {
  .cart-item {
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 47.9375em) {
  .cart-item {
    justify-content: flex-start;
  }
}
.cart-item-title {
  order: 1;
  line-height: 1;
  margin-bottom: 6rem;
}
@media only screen and (max-width: 74.9375em) {
  .cart-item-title {
    width: 100%;
    line-height: 1;
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 61.9375em) {
  .cart-item-title {
    width: 50%;
    line-height: 1;
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 47.9375em) {
  .cart-item-title {
    width: 100%;
    line-height: 1;
    margin-bottom: 0;
    margin-right: 2rem;
  }
}
.cart-item-specifications {
  display: flex;
  order: 2;
}
@media only screen and (max-width: 74.9375em) {
  .cart-item-specifications {
    justify-content: center;
  }
}
@media only screen and (max-width: 61.9375em) {
  .cart-item-specifications {
    width: 50%;
    order: 3;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 47.9375em) {
  .cart-item-specifications {
    width: 100%;
    order: 2;
    flex-direction: column;
    justify-content: flex-start;
  }
}
.cart-item-specifications .specification-select {
  width: 22rem;
}
.cart-item-specifications .specification:not(:last-child) {
  margin-right: 1rem;
}
@media only screen and (max-width: 61.9375em) {
  .cart-item-specifications .specification:not(:last-child) {
    width: 28%;
    margin-right: 0;
  }
}
@media only screen and (max-width: 47.9375em) {
  .cart-item-specifications .specification:not(:last-child) {
    width: 100%;
  }
}
@media only screen and (max-width: 61.9375em) {
  .cart-item-specifications .specification {
    text-align: end;
  }
  .cart-item-specifications .specification input {
    margin-left: auto;
    text-align: right;
  }
  .cart-item-specifications .specification-select {
    text-align: start;
    width: 70% !important;
  }
  .cart-item-specifications .specification-select input {
    margin-left: 0;
  }
}
@media only screen and (max-width: 47.9375em) {
  .cart-item-specifications .specification {
    text-align: start;
  }
  .cart-item-specifications .specification input {
    margin-left: 0;
    text-align: start;
  }
  .cart-item-specifications .specification-select {
    text-align: start;
    width: 100% !important;
  }
  .cart-item-specifications .specification-select input {
    margin-left: 0;
  }
}
.cart-item-specifications input {
  width: 7.5rem;
}
@media only screen and (max-width: 47.9375em) {
  .cart-item-specifications input {
    width: 100%;
  }
}
.cart-item-price {
  line-height: 1.3;
  display: flex;
  align-items: center;
  order: 3;
}
@media only screen and (max-width: 74.9375em) {
  .cart-item-price {
    justify-content: flex-end;
  }
}
@media only screen and (max-width: 61.9375em) {
  .cart-item-price {
    width: 50%;
    order: 2;
    justify-content: flex-start;
  }
}
@media only screen and (max-width: 47.9375em) {
  .cart-item-price {
    width: 100%;
    order: 3;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
}
.cart-item-price span {
  display: block;
  font-size: 2.6rem;
  font-weight: 600;
  font-family: "Roboto Slab";
}
.cart-item-price p {
  font-size: 1.6rem;
}
.cart-item-price .remove {
  display: block;
}
@media only screen and (max-width: 61.9375em) {
  .cart-item-price .remove {
    display: block;
  }
}
@media only screen and (max-width: 47.9375em) {
  .cart-item-price .remove {
    display: none;
  }
}
.cart-item-price .btn {
  display: none;
}
@media only screen and (max-width: 61.9375em) {
  .cart-item-price .btn {
    display: none;
  }
}
@media only screen and (max-width: 47.9375em) {
  .cart-item-price .btn {
    display: block;
  }
}

.btn-remove {
  color: #ffffff;
  background-color: #bb2d3b;
  transition: all 0.3s ease;
}
.btn-remove:hover,
.btn-remove:active,
.btn-remove:focus {
  color: #ffffff;
  background-color: #bb2d3b;
}

.checkout-information {
  margin: 12rem 0 9rem 0;
}
.checkout-information-details .detail-title {
  padding: 3.4rem;
  display: flex;
  align-items: center;
}
.checkout-information-details .detail-title img {
  width: 5rem;
  margin-right: 3rem;
}
@media only screen and (max-width: 47.9375em) {
  .checkout-information-details .detail-title {
    justify-content: center;
    flex-direction: column;
  }
  .checkout-information-details .detail-title img {
    width: 5rem;
    margin-right: 0rem;
    margin-bottom: 1.5rem;
  }
}
.checkout-information-details .detail-information {
  padding: 3.4rem;
  border-radius: 2rem;
  background-color: #efefef;
}
.checkout-information-details p {
  margin-bottom: 3.3rem;
}
.checkout-information-details p .grand-total {
  font-size: 3rem;
}
.checkout-information-details span {
  display: block;
  font-size: 2.4rem;
  font-family: "Roboto Slab";
}
.checkout-information-details a {
  margin: 7.8rem 0 0 0;
}
.checkout-information-details .sub-totals {
  color: #075e54;
}
.checkout-information-contact {
  padding: 3.4rem;
  border-radius: 2rem;
  background-color: #ffffff;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
}
@media only screen and (max-width: 47.9375em) {
  .checkout-information-contact {
    margin-top: 3rem;
  }
}
.checkout-information-contact a {
  margin: 2.5rem 0 0 0;
}
@media only screen and (max-width: 47.9375em) {
  .checkout-information {
    margin: 2rem 0;
  }
}

.order-placed-id {
  margin: 12rem 0 8rem;
}
.order-placed-id-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.order-placed-id-title img {
  width: 9rem;
  margin-bottom: 3.4rem;
}
.order-placed-id-title p {
  width: 100%;
}
@media only screen and (max-width: 61.9375em) {
  .order-placed-id-title p {
    width: 100%;
  }
  .order-placed-id-title p br {
    display: none;
  }
}
@media only screen and (max-width: 47.9375em) {
  .order-placed-id-title p {
    width: 100%;
  }
  .order-placed-id-title p br {
    display: none;
  }
}
@media only screen and (max-width: 47.9375em) {
  .order-placed-id {
    margin: 2rem 0;
  }
}

.order-placed-list {
  margin: 6rem 0 16rem 0;
}
.order-placed-list-container {
  padding: 3.6rem;
  background-color: #ffffff;
  border-radius: 2rem;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
}

.order-paced-item {
  margin: 1.5rem 0;
  font-family: "Roboto Slab";
  justify-content: space-between;
  display: flex;
}
@media only screen and (max-width: 47.9375em) {
  .order-paced-item {
    flex-direction: column;
  }
}
.order-paced-item .item-title {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 35.9375em) {
  .order-paced-item .item-title {
    flex-direction: column;
    align-items: flex-start;
  }
}
.order-paced-item .item-title p {
  color: #000000;
  font-size: 2.4rem;
  margin-left: 3rem;
}
@media only screen and (max-width: 35.9375em) {
  .order-paced-item .item-title p {
    margin-left: 0;
  }
}
.order-paced-item .item-title span {
  font-size: 2.2rem;
}
.order-paced-item .item-title span:not(:first-child) {
  font-size: 1.8rem;
}
.order-paced-item .item-title img {
  width: 18rem;
  border-radius: 2rem;
}
@media only screen and (max-width: 35.9375em) {
  .order-paced-item .item-title img {
    width: 100%;
  }
}
.order-paced-item .item-price {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 35.9375em) {
  .order-paced-item .item-price {
    flex-direction: column;
    align-items: flex-start;
  }
}
.order-paced-item .item-price .specification {
  width: 6rem;
}
@media only screen and (max-width: 47.9375em) {
  .order-paced-item .item-price .specification {
    width: 18rem;
  }
}
.order-paced-item .item-price .specification input::placeholder {
  font-weight: bold;
  font-size: 1.8rem;
}
.order-paced-item .item-price p {
  font-size: 1.6rem !important;
  font-family: "Outfit";
}
.order-paced-item .item-price span {
  margin: 0;
  font-size: 2.6rem;
  font-weight: 700;
}
.order-paced-item span {
  display: block;
}

.order-paced-checkout {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 47.9375em) {
  .order-paced-checkout {
    flex-direction: column-reverse;
  }
}

/* Error/404 SCSS */
.error-main {
  padding: 11.5rem 0 5rem 0;
}
.error-main-content {
  text-align: center;
}
.error-main-content a {
  margin: 4.5rem auto;
}

/* Terms and Privacy Policy */
.terms,
.privacy-policy {
  margin-top: 12rem;
}
.terms__heading,
.privacy-policy__heading {
  margin-bottom: 2.5rem;
}
.terms p,
.privacy-policy p {
  margin-bottom: 1.5rem;
}
.terms__content *:last-child,
.privacy-policy__content *:last-child {
  margin-bottom: 2rem;
}
.terms h3,
.privacy-policy h3 {
  margin: 30px 0 !important;
}
.terms ul li,
.privacy-policy ul li {
  font-size: 1.8rem;
  opacity: 0.8;
  margin-bottom: 0px !important;
}
.terms ul li:not(:last-child),
.privacy-policy ul li:not(:last-child) {
  margin-bottom: 0.6rem !important;
}
.terms a,
.privacy-policy a {
  font-size: 2.2rem;
  color: #a37235;
}
.terms a:hover,
.privacy-policy a:hover {
  color: #075e54;
}
@media only screen and (max-width: 61.9375em) {
  .terms ul li,
  .privacy-policy ul li {
    font-size: 1.6rem;
  }
  .terms a,
  .privacy-policy a {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 47.9375em) {
  .terms,
  .privacy-policy {
    margin-top: 2rem;
  }
  .terms ul li,
  .privacy-policy ul li {
    font-size: 1.4rem;
  }
}

.credit-payment p {
  width: 84%;
  color: #000000;
  font-size: 1.5rem;
}

.credit-payment .credit-payment__logo-box {
  display: flex;
  align-items: center;
  flex-direction: row;
}

.credit-payment .credit-payment__logo-box img {
  width: 15rem;
}

@media only screen and (max-width: 35.9375em) {
  .credit-payment p {
    width: 100%;
    color: #000000;
    font-size: 1.5rem;
    text-align: center;
  }

  .credit-payment .credit-payment__logo-box {
    display: flex;
    align-items: center;
    flex-direction: row;
  }

  .credit-payment .credit-payment__logo-box img {
    width: 100%;
  }
}

/* --------------- */

.branded-products {
  margin: 10rem 0 12rem 0;
  background: url("../../assets/img/branded-couch.png");
  background-repeat: no-repeat;
  background-size: 45% 100%;
  left: 0;
}
@media only screen and (max-width: 35.9375em) {
  .branded-products {
    background: transparent;
  }
}
@media only screen and (min-width: 36em) {
  .branded-products {
    background-position: right 51.6vw center;
    background-size: auto 100%;
  }
}
.branded-products-information {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.branded-products-information p {
  margin-top: 3.4rem;
}
.branded-products-link {
  font-size: 2.6rem;
  font-family: "Roboto Slab";
  color: #000000;
  margin-top: 3.4rem;
  transition: all 0.3s ease;
}
.branded-products-link:hover {
  color: #a37235;
}
.branded-products-image {
  height: 51rem;
}
@media only screen and (max-width: 35.9375em) {
  .branded-products-image {
    height: auto;
  }
  .branded-products-image img {
    border-radius: 25px;
    margin-bottom: 25px;
  }
}
@media only screen and (max-width: 47.9375em) {
  .branded-products-image {
    height: 31rem;
  }
}
@media only screen and (min-width: 36em) {
  .branded-products-image img {
    display: none;
  }
}
@media only screen and (max-width: 61.9375em) {
  .branded-products .btn-fixed-width {
    width: 32rem;
  }
}
@media only screen and (max-width: 47.9375em) {
  .branded-products .btn-fixed-width {
    width: 26rem;
  }
}
@media only screen and (max-width: 35.9375em) {
  .branded-products .btn-fixed-width {
    margin-left: auto;
    margin-right: auto;
  }
}
