@charset "UTF-8";
/* 
  ##Device = Most of the Smartphones Mobiles (Portrait)
  ##Screen = B/w 320px to 479px
*/
/* 
  ##Device = Low Resolution Tablets, Mobiles (Landscape)
  ##Screen = B/w 481px to 767px
*/
/* 
  ##Device = Tablets, Ipads (landscape)
  ##Screen = B/w 768px to 1024px
*/
/* 
  ##Device = Tablets, Ipads (portrait)
  ##Screen = B/w 768px to 1024px
*/
/* 
  ##Device = Laptops, Desktops
  ##Screen = B/w 1025px to 1280px
*/
/* 
  ##Device = Desktops
  ##Screen = 1281px to higher resolution desktops
*/
body {
  font-family: "Montserrat", sans-serif;
  color: #000000;
}

h1 {
  font-size: 42px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  h1 {
    font-size: 20px;
  }
}

h2 {
  font-size: 36px;
  line-height: 56px;
  font-family: "Montserrat-Regular";
  margin-top: 0rem;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  h2 {
    font-size: 22px;
    width: -moz-max-content;
    width: max-content;
    margin: auto;
  }
}
@media only screen and (min-width: 320px) and (max-width: 820px) and (orientation: landscape) {
  h2 {
    font-size: 25px;
    width: -moz-max-content;
    width: max-content;
    margin: auto;
  }
}

h3 {
  font-size: 20px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  h3 {
    font-size: 17px;
  }
}

h4 {
  font-size: 18px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  h4 {
    font-size: 14px;
  }
}

h5 {
  font-size: 14px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  h5 {
    font-size: 12px;
  }
}

h6 {
  font-size: 12px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  h6 {
    font-size: 10px;
  }
}

@media screen and (min-width: 320px) and (max-width: 480px) {
  p {
    width: auto;
  }
}

button {
  outline: none;
  border: none;
}

button:hover {
  outline: none;
  border: none;
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: -32px !important;
  margin-top: 20px !important;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

@media (min-width: 576px) {
  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.col-sm-12,
.col-sm-6,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-9,
.col-sm-2,
.col-sm-7,
.col-sm-8, .col-sm-10 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

@media (min-width: 576px) {
  .col-sm-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-sm-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-sm-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-sm-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 78.333333%;
    max-width: 78.333333%;
  }
  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
*,
::after,
::before {
  box-sizing: border-box;
}

.d-flex {
  display: flex;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .d-flex {
    display: block;
  }
}

.align-item-center {
  align-items: center;
}

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

a {
  color: #000000;
  text-decoration: none;
  transition: 0.3s ease-out;
  font-family: "Montserrat";
  border: none;
  outline: none;
}

a:focus {
  outline: none;
}

a:visited {
  color: #000000;
}

a:hover {
  text-decoration: none;
  transition: 0.3s ease-in;
}

.text-link::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: #eeb116;
  transition: width 0.3s;
}

.text-link:hover::after {
  width: 30%;
}

.padding-lr {
  padding: 0rem 1rem;
}

.padding-tb {
  padding: 1rem 0rem;
}

.padding-lrtb {
  padding: 5px;
}

.justify-content {
  justify-content: center;
}

.justify-content-space-between {
  justify-content: space-between;
}

input {
  outline: none;
  border: none;
  border-radius: 0px;
}

.desktop-block {
  display: block !important;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .desktop-block {
    display: none !important;
  }
}
@media only screen and (min-width: 320px) and (max-width: 820px) and (orientation: landscape) {
  .desktop-block {
    display: none !important;
  }
}

.mobile-block {
  display: none !important;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .mobile-block {
    display: block !important;
  }
}
@media only screen and (min-width: 320px) and (max-width: 820px) and (orientation: landscape) {
  .mobile-block {
    display: block !important;
  }
}

.desktop-flex {
  display: flex;
}
@media only screen and (min-width: 320px) and (max-width: 820px) and (orientation: landscape) {
  .desktop-flex {
    display: none !important;
  }
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .desktop-flex {
    display: none !important;
  }
}

.mobile-flex {
  display: none !important;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .mobile-flex {
    display: flex !important;
  }
}
@media only screen and (min-width: 320px) and (max-width: 820px) and (orientation: landscape) {
  .mobile-flex {
    display: flex !important;
  }
}

.desktop-grid {
  display: grid !important;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .desktop-grid {
    display: none !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .desktop-grid {
    display: none !important;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  .desktop-grid {
    display: grid !important;
  }
}

#cattypes {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #cattypes {
    padding: 0rem;
  }
}
#cattypes .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -moz-column-gap: 4em;
       column-gap: 4em;
  row-gap: 0em;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #cattypes .grid {
    display: block;
    margin: 15px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #cattypes .grid {
    padding: 0em 2em;
    -moz-column-gap: 2em;
         column-gap: 2em;
  }
}
#cattypes .grid {
  counter-reset: lis;
}
#cattypes .type-wrapper {
  counter-increment: lis;
  content: counter(lis, decimal);
  position: relative;
}
#cattypes .type-wrapper a:hover {
  color: #000;
}
#cattypes .type-wrapper img {
  width: 100%;
}
#cattypes .type-wrapper .layer {
  position: absolute;
  width: 100%;
  bottom: 0%;
  background: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  padding-left: 20px;
}
#cattypes .type-wrapper:nth-child(3n+1) {
  margin-top: 6rem;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #cattypes .type-wrapper:nth-child(3n+1) {
    margin-top: 15px;
  }
}
#cattypes .type-wrapper:nth-child(3n+1) .layer {
  bottom: 0%;
}
#cattypes .type-wrapper:nth-child(3n+2) {
  margin-top: 4rem;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #cattypes .type-wrapper:nth-child(3n+2) {
    margin-top: 15px;
  }
}
#cattypes .type-wrapper:nth-child(3n+2) .layer {
  bottom: 15px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #cattypes .type-wrapper:nth-child(3n+2) .layer {
    bottom: 0%;
  }
}
#cattypes .type-wrapper:nth-child(3n+3) {
  margin-top: 2rem;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #cattypes .type-wrapper:nth-child(3n+3) {
    margin-top: 15px;
  }
}
#cattypes .type-wrapper:nth-child(3n+3) .layer {
  bottom: 13%;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #cattypes .type-wrapper:nth-child(3n+3) .layer {
    bottom: 0%;
  }
}
#cattypes .type-wrapper:nth-child(3n+4) {
  margin-top: 0rem;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #cattypes .type-wrapper:nth-child(3n+4) {
    margin-top: 15px;
  }
}
#cattypes .type-wrapper:nth-child(3n+4) .layer {
  bottom: 14%;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #cattypes .type-wrapper:nth-child(3n+4) .layer {
    bottom: 0%;
  }
}
#cattypes .type-wrapper:nth-child(3n+5) {
  margin-top: 4rem;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #cattypes .type-wrapper:nth-child(3n+5) {
    margin-top: 15px;
  }
}
#cattypes .type-wrapper:nth-child(3n+5) .layer {
  bottom: 0px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #cattypes .type-wrapper:nth-child(3n+5) .layer {
    bottom: 0%;
  }
}
#cattypes .type-wrapper:nth-child(3n+6) {
  margin-top: 2rem;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #cattypes .type-wrapper:nth-child(3n+6) {
    margin-top: 15px;
  }
}
#cattypes .type-wrapper:nth-child(3n+6) .layer {
  bottom: 30px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #cattypes .type-wrapper:nth-child(3n+6) .layer {
    bottom: 0%;
  }
}
#cattypes h3 {
  margin: 15px;
  font-family: "Montserrat-Regular";
}
#cattypes h3::after {
  content: "";
  display: block;
  width: 15%;
  height: 2px;
  background: #eeb116;
  transition: width 0.3s;
  margin-top: 5px;
}
#cattypes .type-wrapper:hover h3::after {
  width: 30%;
}

#blog-load-less {
  display: none;
}

#blog-load-less, #blog-load-more {
  cursor: pointer;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #blog-load-less, #blog-load-more {
    margin-bottom: 20px;
  }
}

#bathroom_inner {
  margin-bottom: 40px;
  margin-top: 40px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #bathroom_inner {
    padding: 1px;
    background-image: none !important;
  }
}
#bathroom_inner .mobile-block {
  min-height: auto;
  width: 100%;
}
#bathroom_inner .faq-content {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.3) !important;
  padding: 30px;
  margin: 5% 10%;
  width: 335px;
  -webkit-backdrop-filter: blur(5px) !important;
          backdrop-filter: blur(5px) !important;
}
#bathroom_inner .faq-content h3 {
  color: #fff;
}
#bathroom_inner .faq-content h3::after {
  content: "";
  display: block;
  width: 15%;
  height: 2px;
  background: #eeb116;
  transition: width 0.3s;
  margin-top: 5px;
}
#bathroom_inner .faq-content p {
  color: #fff;
}
#bathroom_inner .faq-content .button {
  display: grid;
  width: -moz-max-content;
  width: max-content;
  height: 44px;
  background-color: #eeb116;
  font-family: Montserrat;
  font-size: 14px;
  align-items: center;
  text-align: center;
  color: rgb(255, 255, 255);
  padding: 0px 20px;
}
#bathroom_inner .mobile-block {
  min-height: 300px;
}

.product_image_main.swiper-container,
.product_image_thumb.swiper-container {
  width: 100%;
  height: 300px;
  margin-left: auto;
  margin-right: auto;
}
.product_image_main.swiper-container .swiper-slide,
.product_image_thumb.swiper-container .swiper-slide {
  background-size: cover;
  background-position: center;
}
.product_image_main.swiper-container.gallery-thumbs,
.product_image_thumb.swiper-container.gallery-thumbs {
  box-sizing: border-box;
  padding: 10px 0;
}
.product_image_main.swiper-container.gallery-thumbs .swiper-slide,
.product_image_thumb.swiper-container.gallery-thumbs .swiper-slide {
  width: 50px;
  height: 50px;
  opacity: 0.4;
  cursor: pointer;
}
.product_image_main.swiper-container.gallery-thumbs .swiper-slide-thumb-active,
.product_image_thumb.swiper-container.gallery-thumbs .swiper-slide-thumb-active {
  opacity: 1;
}

#bathroom_inner {
  margin-bottom: 40px;
  padding: 30px 0;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #bathroom_inner {
    margin-bottom: 0px;
    margin-top: 0px;
    padding: 20px 0px;
  }
}
#bathroom_inner .faq-content {
  position: initial;
  background-color: rgba(0, 0, 0, 0.57);
  padding: 30px;
  margin: 5% 10%;
  width: 335px;
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #bathroom_inner .faq-content {
    padding: 15px 30px;
    margin-top: 25px;
    left: 0px;
    /* top: 0; */
    width: auto;
    right: 0px;
    margin-top: 0px;
    margin-bottom: 0px;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.6) !important;
    width: 100%;
    margin: auto;
  }
}
#bathroom_inner .faq-content h3 {
  color: #fff;
}
#bathroom_inner .faq-content h3::after {
  content: "";
  display: block;
  width: 15%;
  height: 2px;
  background: #eeb116;
  transition: width 0.3s;
  margin-top: 5px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #bathroom_inner .faq-content h3::after {
    margin: auto;
    margin-top: 10px;
  }
}
#bathroom_inner .faq-content p {
  color: #fff;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #bathroom_inner .faq-content p {
    font-size: 14px;
  }
}
#bathroom_inner .faq-content .button {
  display: grid;
  width: -moz-max-content;
  width: max-content;
  height: 44px;
  background-color: #eeb116;
  font-family: Montserrat;
  font-size: 14px;
  align-items: center;
  text-align: center;
  color: rgb(255, 255, 255);
  padding: 0px 20px;
  margin-left: 0;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #bathroom_inner .faq-content .button {
    margin: auto;
  }
}
#bathroom_inner .mobile-block {
  min-height: auto !important;
}

@media screen and (min-width: 1024px) and (max-width: 1280px) {
  #product-finder .button {
    margin: 10px auto;
  }
}

/************ blog landing **********/
#blog-banner .banner {
  width: 100%;
  position: relative;
}
#blog-banner .banner img {
  width: 100%;
  /*
  			@include screen(small) {
  				height: 300px;
  			}
  			@include screen(med) {
  				height: 300px;
  			}
  			@include screen(large) {
  				height: 300px;
  			}
  */
}
#blog-banner .faq-content {
  position: absolute;
  padding: 30px;
  margin: 8% 10%;
  width: 494px;
  left: 50%;
  top: 9%;
  margin-left: -590px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #blog-banner .faq-content {
    width: auto;
    left: -14px;
    top: 3%;
    margin-left: 0;
    margin-right: 0px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #blog-banner .faq-content {
    top: 2%;
    margin-left: -390px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  #blog-banner .faq-content {
    top: 10%;
    margin-left: -490px;
    margin-top: 100px;
  }
}
#blog-banner .faq-content h1 {
  color: #fff;
  font-size: 30px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #blog-banner .faq-content h1 {
    font-size: 16px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #blog-banner .faq-content h1 {
    font-size: 25px;
  }
}
#blog-banner .faq-content h1::after {
  content: "";
  display: block;
  width: 15%;
  height: 2px;
  background: #eeb116;
  transition: width 0.3s;
  margin-top: 5px;
}
#blog-banner .faq-content p {
  color: #fff;
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #blog-banner .faq-content p {
    padding: 0;
    text-align: left;
    font-size: 12px;
  }
}
#blog-banner .faq-content .button {
  display: grid;
  width: -moz-max-content;
  width: max-content;
  height: 44px;
  background-color: #eeb116;
  font-family: Montserrat;
  font-size: 14px;
  align-items: center;
  text-align: center;
  color: #000 !important;
  padding: 0px 20px;
}
#blog-banner .faq-content .button:hover {
  color: #000 !important;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #blog-banner .faq-content .button {
    margin: 0;
    height: 30px;
    font-size: 12px;
  }
}
#blog-banner .feedback-title {
  text-align: center;
  width: 800px;
  padding: 15px 0px;
  margin: auto;
  font-size: 14px;
  line-height: 30px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #blog-banner .feedback-title {
    padding: 15px;
    width: auto;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #blog-banner .feedback-title {
    padding: 15px;
    width: auto;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  #blog-banner .feedback-title {
    padding: 15px;
    width: auto;
  }
}
#blog-banner input[type=submit] {
  padding: 0px 50px;
  cursor: pointer;
  pointer-events: auto;
}

#blogtypes, #blogtypes-2 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #blogtypes, #blogtypes-2 {
    padding: 0rem;
  }
}
#blogtypes .grid, #blogtypes-2 .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 2em;
       column-gap: 2em;
  row-gap: 0em;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #blogtypes .grid, #blogtypes-2 .grid {
    display: block;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #blogtypes .grid, #blogtypes-2 .grid {
    /*
    			padding: 0em 0em;
    			column-gap: 2em;
    			grid-template-columns: repeat(2, 1fr);
    */
    display: flex;
    -moz-column-gap: 2em;
         column-gap: 2em;
    row-gap: 2em;
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  #blogtypes .grid, #blogtypes-2 .grid {
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 2em;
         column-gap: 2em;
    row-gap: 2em;
  }
}
@media only screen and (min-width: 375px) and (max-width: 820px) and (orientation: landscape) {
  #blogtypes .grid, #blogtypes-2 .grid {
    -moz-column-gap: 1em;
         column-gap: 1em;
  }
}
@media only screen and (min-width: 320px) and (max-width: 768px) and (orientation: landscape) {
  #blogtypes .grid, #blogtypes-2 .grid {
    -moz-column-gap: 1em;
         column-gap: 1em;
  }
}
#blogtypes .grid, #blogtypes-2 .grid {
  counter-reset: lis;
}
#blogtypes .type-wrapper, #blogtypes-2 .type-wrapper {
  counter-increment: lis;
  content: counter(lis, decimal);
  position: relative;
  background: #ffffff;
  box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.1);
  height: -moz-max-content;
  height: max-content;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #blogtypes .type-wrapper, #blogtypes-2 .type-wrapper {
    padding-bottom: 4px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #blogtypes .type-wrapper, #blogtypes-2 .type-wrapper {
    width: 47%;
  }
}
#blogtypes .type-wrapper .layer, #blogtypes-2 .type-wrapper .layer {
  position: absolute;
  width: 100%;
  bottom: 0%;
  background: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  padding-left: 20px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #blogtypes .type-wrapper h5, #blogtypes-2 .type-wrapper h5 {
    margin: 15px;
  }
}
#blogtypes .type-wrapper span, #blogtypes-2 .type-wrapper span {
  color: #eeb116;
  font-size: 15px;
  margin: 0 15px;
  font-family: "Montserrat-Semibold";
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #blogtypes .type-wrapper span, #blogtypes-2 .type-wrapper span {
    margin: 0;
  }
}
#blogtypes .type-wrapper .btn_bar, #blogtypes-2 .type-wrapper .btn_bar {
  margin: 15px 8px;
  display: flex;
  margin-top: 25px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #blogtypes .type-wrapper .btn_bar, #blogtypes-2 .type-wrapper .btn_bar {
    flex-direction: column;
    margin-top: 25px;
  }
}
#blogtypes .type-wrapper .btn_bar .btns, #blogtypes-2 .type-wrapper .btn_bar .btns {
  display: grid;
  width: -moz-max-content;
  width: max-content;
  height: 44px;
  background-color: #f4f4f4;
  color: #333333 !important;
  font-family: "Montserrat";
  font-size: 14px;
  align-items: center;
  text-align: center;
  padding: 0px 39px;
  font-weight: bold;
  margin: 0 7px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #blogtypes .type-wrapper .btn_bar .btns, #blogtypes-2 .type-wrapper .btn_bar .btns {
    width: auto;
    margin: 5px 7px;
    font-size: 15px;
    font-size: 12px;
  }
}
#blogtypes .type-wrapper .btn_bar .btns.active, #blogtypes-2 .type-wrapper .btn_bar .btns.active {
  border: 1px solid #eeb116;
  background: #fff;
  font-size: 14px;
}
#blogtypes .type-wrapper .btn_bar .btns.active a:hover, #blogtypes-2 .type-wrapper .btn_bar .btns.active a:hover {
  color: #000 !important;
}
#blogtypes .type-wrapper .btn_bar .btns.active:hover, #blogtypes-2 .type-wrapper .btn_bar .btns.active:hover {
  background-color: #eeb116 !important;
  color: #000 !important;
}
#blogtypes .type-wrapper .btn_bar .btns.active:hover a, #blogtypes-2 .type-wrapper .btn_bar .btns.active:hover a {
  color: #000;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #blogtypes .type-wrapper .btn_bar .btns.active, #blogtypes-2 .type-wrapper .btn_bar .btns.active {
    font-size: 12px;
  }
}
#blogtypes .type-wrapper:nth-child(3n+1), #blogtypes-2 .type-wrapper:nth-child(3n+1) {
  margin-top: 4rem;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #blogtypes .type-wrapper:nth-child(3n+1), #blogtypes-2 .type-wrapper:nth-child(3n+1) {
    margin-top: 15px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #blogtypes .type-wrapper:nth-child(3n+1), #blogtypes-2 .type-wrapper:nth-child(3n+1) {
    margin-top: 0px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  #blogtypes .type-wrapper:nth-child(3n+1), #blogtypes-2 .type-wrapper:nth-child(3n+1) {
    margin-top: 0px;
  }
}
#blogtypes .type-wrapper:nth-child(3n+1) .layer, #blogtypes-2 .type-wrapper:nth-child(3n+1) .layer {
  bottom: 28%;
}
#blogtypes .type-wrapper:nth-child(3n+2), #blogtypes-2 .type-wrapper:nth-child(3n+2) {
  margin-top: 2rem;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #blogtypes .type-wrapper:nth-child(3n+2), #blogtypes-2 .type-wrapper:nth-child(3n+2) {
    margin-top: 15px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #blogtypes .type-wrapper:nth-child(3n+2), #blogtypes-2 .type-wrapper:nth-child(3n+2) {
    margin-top: 0px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  #blogtypes .type-wrapper:nth-child(3n+2), #blogtypes-2 .type-wrapper:nth-child(3n+2) {
    margin-top: 0px;
  }
}
#blogtypes .type-wrapper:nth-child(3n+2) .layer, #blogtypes-2 .type-wrapper:nth-child(3n+2) .layer {
  bottom: 9%;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #blogtypes .type-wrapper:nth-child(3n+2) .layer, #blogtypes-2 .type-wrapper:nth-child(3n+2) .layer {
    bottom: 2%;
  }
}
#blogtypes .type-wrapper:nth-child(3n+3), #blogtypes-2 .type-wrapper:nth-child(3n+3) {
  margin-top: 0rem;
  margin-bottom: 30px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #blogtypes .type-wrapper:nth-child(3n+3), #blogtypes-2 .type-wrapper:nth-child(3n+3) {
    margin-top: 15px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #blogtypes .type-wrapper:nth-child(3n+3), #blogtypes-2 .type-wrapper:nth-child(3n+3) {
    margin-top: 0px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  #blogtypes .type-wrapper:nth-child(3n+3), #blogtypes-2 .type-wrapper:nth-child(3n+3) {
    margin-top: 0px;
  }
}
#blogtypes .type-wrapper:nth-child(3n+3) .layer, #blogtypes-2 .type-wrapper:nth-child(3n+3) .layer {
  bottom: 15%;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #blogtypes .type-wrapper:nth-child(3n+3) .layer, #blogtypes-2 .type-wrapper:nth-child(3n+3) .layer {
    bottom: 2%;
  }
}
#blogtypes h3, #blogtypes-2 h3 {
  margin: 15px;
  font-size: 15px;
}
#blogtypes h3 a, #blogtypes-2 h3 a {
  font-family: "Montserrat-Regular";
  color: #000;
}
@media only screen and (min-width: 320px) and (max-width: 820px) and (orientation: landscape) {
  #blogtypes h3 a, #blogtypes-2 h3 a {
    font-size: 12px;
  }
}
#blogtypes h3 a:hover, #blogtypes-2 h3 a:hover {
  color: #000;
}
#blogtypes h3::after, #blogtypes-2 h3::after {
  content: "";
  display: block;
  width: 15%;
  height: 2px;
  background: #eeb116;
  transition: width 0.3s;
  margin-top: 5px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #blogtypes h3::after, #blogtypes-2 h3::after {
    margin-top: 10px;
  }
}
#blogtypes .type-wrapper:hover h3::after, #blogtypes-2 .type-wrapper:hover h3::after {
  width: 30%;
}
#blogtypes h4, #blogtypes-2 h4 {
  margin: 15px;
  font-size: 30px;
  font-weight: normal;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #blogtypes h4, #blogtypes-2 h4 {
    font-size: 15px;
  }
}
#blogtypes h4::after, #blogtypes-2 h4::after {
  content: "";
  display: block;
  width: 15%;
  height: 2px;
  background: #eeb116;
  transition: width 0.3s;
  margin-top: 5px;
}
#blogtypes .type-wrapper:hover h4::after, #blogtypes-2 .type-wrapper:hover h4::after {
  width: 30%;
}
#blogtypes p, #blogtypes-2 p {
  margin: 15px;
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  line-height: 25px;
}
@media only screen and (min-width: 320px) and (max-width: 820px) and (orientation: landscape) {
  #blogtypes p, #blogtypes-2 p {
    font-size: 11px;
  }
}
#blogtypes .read_more, #blogtypes-2 .read_more {
  margin: 15px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #blogtypes .read_more, #blogtypes-2 .read_more {
    margin: 15px 25px;
  }
}
#blogtypes .read_more a, #blogtypes-2 .read_more a {
  font-size: 14px;
  color: #eeb116;
  font-family: "Montserrat-Semibold";
}

/************** End CSS *******************/
#feedback .faq-content {
  transform: translateX(-50%);
  margin-left: 0;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #feedback .faq-content h1 {
    font-size: 20px;
  }
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #feedback .faq-content h1 {
    font-size: 20px;
  }
}

#vanity-series .faq-content {
  position: absolute;
  top: 42%;
  left: 50%;
  margin-left: -140px;
  text-align: center;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #vanity-series .faq-content {
    position: absolute;
    top: 37%;
    left: 50%;
    margin-left: -75px;
    text-align: center;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #vanity-series .faq-content {
    top: 38%;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  #vanity-series .faq-content {
    top: 39%;
  }
}
@media only screen and (min-width: 320px) and (max-width: 820px) and (orientation: landscape) {
  #vanity-series .faq-content {
    top: 30%;
  }
}
#vanity-series .faq-content h1 {
  text-transform: uppercase;
  color: #000;
  font-family: "Montserrat-Semibold";
}
#vanity-series .banner {
  width: 100%;
  position: relative;
}
#vanity-series .banner img {
  width: 100%;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #vanity-series .banner img {
    height: auto;
    min-height: auto !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #vanity-series .banner img {
    height: auto;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  #vanity-series .banner img {
    height: auto;
  }
}

/*#feedback {
	 	max-width: 100%!important;
	.banner{
	 	max-width: 100%!important;
	 img{
	 	max-width: 100%!important;
		}
	}
}*/
@media screen and (min-width: 320px) and (max-width: 480px) {
  #bathroom-feedback #feedback .faq-content {
    left: 50%;
    margin-left: -100px;
    transform: translateX(0);
  }
}

#bathroomtabs ul.tab_justified {
  /*
  		display: block;
  		flex-basis: 0;
  		flex-grow: 1;
  		text-align: center;
  */
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #bathroomtabs ul.tab_justified {
    margin: 0px 0 6px;
  }
}
#bathroomtabs ul.tab_justified li {
  width: 25%;
  text-align: center;
  display: inline-block;
  background-color: #f4f4f4;
  color: #000;
  font-family: "Montserrat-Regular";
  font-size: 15px;
  padding: 15px 0;
  text-transform: uppercase;
  font-weight: bold;
  border-right: 1px solid #e1e1e1;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #bathroomtabs ul.tab_justified li {
    width: 100%;
    display: block;
    font-size: 11px;
  }
}
#bathroomtabs ul.tab_justified li.active {
  display: inline-block;
  background-color: #eeb116;
  color: #fff;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #bathroomtabs ul.tab_justified li.active {
    margin: 0px 0;
  }
}
#bathroomtabs ul.tab_justified li.active::after {
  font-size: 0;
}

#feedback .h1_heading {
  color: #000 !important;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #feedback .banner img {
    min-height: 190px;
  }
}

#theme_cont .theme_top {
  margin: 20px 0;
  padding-bottom: 15px;
  border-bottom: 1px solid #ccc;
}
#theme_cont .button {
  background-color: #fff;
  color: #000 !important;
  border: 1px solid #eeb116;
  padding: 0px 50px;
}
#theme_cont .button:hover {
  background-color: #eeb116 !important;
}
#theme_cont .button:hover a {
  color: #000000;
}
#theme_cont .button a {
  font-family: "Montserrat-Semibold";
}
#theme_cont .button.active {
  background-color: #eeb116;
  color: #fff !important;
  line-height: 40px;
  padding: 0px 30px;
}
#theme_cont .button.active:hover {
  background: #fff !important;
}
#theme_cont .button.active:hover a {
  color: #eeb116 !important;
}
#theme_cont .button.active a {
  color: #fff !important;
  font-family: "Montserrat-Semibold";
}
#theme_cont .button.active a:hover {
  color: #eeb116 !important;
}
#theme_cont .right {
  float: right;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #theme_cont .right {
    float: none;
  }
}
#theme_cont .mid_text {
  line-height: 43px;
  font-size: 23px;
  font-weight: bold;
  font-size: 21px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #theme_cont .mid_text {
    font-weight: bold;
    text-align: center;
    font-size: 19px;
  }
}
#theme_cont .mid_text span {
  font-family: "Montserrat-Semibold";
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #theme_cont .walk_text {
    margin-bottom: 15px;
  }
}
#theme_cont .walk_text .heading {
  color: #eeb116;
  text-align: center;
  margin: 0 auto;
  font-family: "Montserrat-Semibold";
}
#theme_cont .walk_text p {
  text-align: center;
  font-size: 14px;
  padding-bottom: 5%;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #theme_cont .walk_text p {
    margin: 10px;
  }
}

.pr-ct {
  padding-right: 3%;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .pr-ct {
    padding-right: 0;
  }
}

#theme_product .product_box {
  margin-bottom: 50px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #theme_product .product_box {
    margin-bottom: 30px;
  }
}
#theme_product .product_image {
  background: #f8f8f8;
  padding: 20px 20px 5px 20px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #theme_product .product_image {
    text-align: center;
    margin-bottom: 20px;
  }
}
#theme_product .product_image img {
  margin: 10px 0;
}
#theme_product .product_image ul {
  margin: 0px;
  padding: 0;
}
#theme_product .product_image ul li {
  display: inline-block;
}
#theme_product .product_image ul li img {
  margin: 0;
}
#theme_product .right_info .heading {
  font-family: Montserrat;
  font-style: normal;
  font-weight: normal;
  font-size: 24px;
  line-height: 29px;
  padding-bottom: 30px;
  font-size: 18px;
}
#theme_product .right_info .button {
  padding: 0px 30px;
  border: 1px solid #eeb116;
  background-color: #fff;
  color: #000 !important;
}
#theme_product .right_info .button:hover {
  background-color: #eeb116 !important;
  color: #000000 !important;
}
#theme_product .right_info .button:hover a {
  color: #000000 !important;
}
#theme_product .right_info .button a {
  font-family: "Montserrat-Semibold";
}
#theme_product .right_info ul {
  margin: 0px 0 15px 0;
  padding: 0 0 0 0;
  list-style: none;
  list-style: none;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #theme_product .right_info ul {
    margin: 5px 0 30px 0;
  }
}
#theme_product .right_info ul li {
  font-size: 14px;
  display: flex;
  align-items: flex-start;
  padding-bottom: 15px;
}
#theme_product .right_info ul li:before {
  content: "•";
  color: #eeb116;
  font-weight: bold;
  display: inline-block;
  /*margin-left: -1em;*/
  font-family: "Montserrat-Semibold";
  font-size: 35px;
  width: 15px;
  margin-right: 5px;
  line-height: 13px;
}

.pd-ct {
  max-width: 90%;
  margin: auto;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .pd-ct {
    max-width: 100%;
  }
}

#accessories {
  margin: 30px 0;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #accessories {
    margin: 0px 0 30px;
  }
}
#accessories h2 {
  text-align: center;
  margin: 0 auto 15px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #accessories .access_cont {
    margin-bottom: 30px;
    text-align: center;
  }
}
#accessories .access_cont .access_box {
  background: #f8f8f8;
  padding: 10px;
  margin: 0 auto;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #accessories .access_cont p {
    margin: 7px auto 0;
    text-align: center;
  }
}
#accessories .access_cont .button {
  background-color: #fff;
  color: #000 !important;
  border: 1px solid #eeb116;
}
#accessories .access_cont .button a {
  font-family: "Montserrat-Semibold";
}
#accessories .access_cont .button:hover {
  background-color: #eeb116 !important;
  color: #000000 !important;
}
#accessories .access_cont .button:hover a {
  color: #000000 !important;
  font-family: "Montserrat-Semibold";
}

/************ catalogue page css start **********/
#catalogue {
  margin: 0 auto;
  text-align: center;
}
#catalogue .bottom_space {
  margin-bottom: 20px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #catalogue .bottom_space {
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #catalogue .bottom_space {
    margin-bottom: 20px;
  }
}
#catalogue .banner-content {
  display: grid;
}
#catalogue h1 {
  color: #000;
  text-align: center;
  margin: 0 auto;
}
#catalogue h1::after {
  content: "";
  display: block;
  width: 30%;
  height: 2px;
  background: #eeb116;
  transition: width 0.3s;
  margin-top: 5px;
}
#catalogue p {
  font-size: 15px;
  line-height: 26px;
  margin: 30px 0px;
  position: initial;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #catalogue p {
    margin: 20px 0;
    font-size: 12px;
  }
}
#catalogue .banner {
  width: 100%;
  position: relative;
}
#catalogue .banner img {
  width: 100%;
}
#catalogue .faq-content {
  padding: 30px;
  margin: 6% 4%;
  width: 370px;
  right: 0;
  top: 0;
  background-color: #fff;
  margin-left: auto;
  /*
  		@include screen(large) {
  			margin: 3% 4%;
  		}
  */
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #catalogue .faq-content {
    width: 100%;
    padding: 10px;
    margin: 0;
    right: 0;
    top: 40%;
    position: initial;
    margin-top: 20px;
    text-align: center;
    margin: auto;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #catalogue .faq-content {
    position: initial;
    width: 370px;
    margin: 2% 4%;
    margin-left: auto;
  }
}
@media only screen and (min-width: 320px) and (max-width: 820px) and (orientation: landscape) {
  #catalogue .faq-content {
    width: 100%;
  }
}
#catalogue .faq-content h3 {
  color: #000;
  font-size: 16px;
  text-align: left;
  font-family: "Montserrat-Semibold";
  margin-top: 0px;
}
#catalogue .faq-content h3::after {
  content: "";
  display: block;
  width: 15%;
  height: 2px;
  background: #eeb116;
  transition: width 0.3s;
  margin-top: 5px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #catalogue .faq-content h3 {
    font-size: 14px;
    text-align: center;
    display: inline-block;
    margin: auto;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #catalogue .faq-content h3 {
    display: inline-block;
    margin: auto;
    text-align: center;
  }
}
@media only screen and (min-width: 320px) and (max-width: 812px) and (orientation: landscape) {
  #catalogue .faq-content h3 {
    display: inline-block;
    margin: auto;
    text-align: center;
  }
}
#catalogue .faq-content p {
  color: #000;
  font-size: 13px;
  text-align: left;
  margin: 0;
  line-height: 23px;
  font-weight: 700;
  margin: 20px 0px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #catalogue .faq-content p {
    padding: 0;
    font-size: 12px;
    text-align: left;
    position: initial;
    text-align: center;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #catalogue .faq-content p {
    text-align: center;
  }
}
@media only screen and (min-width: 320px) and (max-width: 812px) and (orientation: landscape) {
  #catalogue .faq-content p {
    display: inline-block;
    margin: auto;
    text-align: center;
  }
}
#catalogue .faq-content .button {
  display: grid;
  width: -moz-max-content;
  width: max-content;
  height: 40px;
  background-color: #eeb116;
  font-family: Montserrat;
  font-size: 14px;
  align-items: center;
  text-align: center;
  color: rgb(255, 255, 255) !important;
  padding: 0px 20px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #catalogue .faq-content .button {
    margin: 0;
  }
}
#catalogue .faq-content .btn_bar {
  margin-top: 15px;
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #catalogue .faq-content .btn_bar {
    justify-content: center;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #catalogue .faq-content .btn_bar {
    justify-content: center;
  }
}
@media only screen and (min-width: 320px) and (max-width: 812px) and (orientation: landscape) {
  #catalogue .faq-content .btn_bar {
    justify-content: center;
  }
}
#catalogue .faq-content .btn_bar .btns {
  display: grid;
  width: -moz-max-content;
  width: max-content;
  height: 44px;
  background-color: #ffffff;
  color: #333333;
  font-family: "Montserrat";
  font-size: 14px;
  align-items: center;
  text-align: center;
  width: 140px;
  font-weight: bold;
  border: 1px solid #eeb116;
}
#catalogue .faq-content .btn_bar .btns:hover {
  background-color: #eeb116;
  color: #fff;
}
#catalogue .faq-content .btn_bar .btns:hover a {
  color: #fff;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #catalogue .faq-content .btn_bar .btns {
    font-size: 12px;
    height: 35px;
  }
}
#catalogue .faq-content .btn_bar .btns.active {
  background-color: #eeb116;
  color: #000000;
  margin-right: 20px;
}
#catalogue .faq-content .btn_bar .btns.active:hover {
  background-color: #fff;
  color: #eeb116;
}
#catalogue .faq-content .btn_bar .btns.active:hover a {
  color: #eeb116;
}
#catalogue .faq-content .btn_bar .btns.active a {
  color: #fff;
}

/************ catalogue page css end **********/
.wc_color_attibutes {
  display: flex;
  flex-wrap: wrap;
}
.wc_color_attibutes span {
  width: 25px;
  height: 25px;
  border-radius: 8px;
  border: thin solid lightgray;
  margin-right: 10px;
}

.gform_fields .gfield input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #ccc;
}

.gform_fields .gfield input::-moz-placeholder {
  /* Firefox 19+ */
  color: #ccc;
}

.gform_fields .gfield input:-ms-input-placeholder {
  /* IE 10+ */
  color: #ccc;
}

.gform_fields .gfield input:-moz-placeholder {
  /* Firefox 18- */
  color: #ccc;
}

#value-added-service .tabs-wrapper {
  margin-bottom: 2rem;
  position: sticky;
  top: 14%;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #value-added-service .tabs-wrapper {
    top: 8%;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  #value-added-service .tabs-wrapper {
    top: 11%;
  }
}
#value-added-service .tabs-wrapper .tabs-heading h2 {
  font-family: "Montserrat";
  margin-top: 0px;
  border-bottom: 2px solid #eeb116;
  font-size: 23px;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #value-added-service .tabs-wrapper .tabs-heading h2 {
    font-size: 23px;
    line-height: 45px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  #value-added-service .tabs-wrapper .tabs-heading h2 {
    font-size: 23px;
    line-height: 45px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 820px) and (orientation: landscape) {
  #value-added-service .tabs-wrapper .tabs-heading h2 {
    font-size: 15px;
    line-height: 28px;
    width: auto;
  }
}
#value-added-service .tabs-wrapper .tabs-section ul a {
  border-bottom: 1px solid #f4f4f4;
  padding-bottom: 10px;
}
#value-added-service .home-solution {
  overflow-x: auto;
}
#value-added-service .instalatin_service {
  margin-bottom: 20px;
}
#value-added-service .instalatin_service h5 {
  margin-top: 15px;
}
#value-added-service .sub-title {
  padding: 15px 15px 15px 0px;
}
#value-added-service .sub-title::after {
  content: "";
  display: block;
  width: 10%;
  height: 2px;
  background: #eeb116;
  transition: width 0.3s;
  margin-top: 10px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #value-added-service .sub-title {
    font-size: 20px;
  }
}
#value-added-service .content-wrapper p {
  text-align: left;
  line-height: 30px;
  margin-bottom: 10px;
}
#value-added-service .content-wrapper ul li {
  list-style: none;
  display: list-item;
  margin-right: 0;
  margin-left: 15px;
  padding: 7px 0;
  display: flex;
  cursor: auto;
}
#value-added-service .content-wrapper ul li:before {
  content: "\f111"; /* FontAwesome Unicode */
  font-family: FontAwesome;
  display: inline-block;
  margin-left: -1.3em; /* same as padding-left set on li */
  width: 1.3em; /* same as padding-left set on li */
  color: #eeb116;
  /* height: 100px; */
  vertical-align: text-top;
  line-height: 20px;
  font-size: 7px;
  margin-right: 10px;
}
#value-added-service .content-wrapper .extra_heading {
  font-weight: bold;
  margin: 15px 0;
}
#value-added-service .content-wrapper .title_tag {
  margin-top: 30px;
  font-weight: bold;
  font-family: "Montserrat-Semibold";
  color: #eeb116;
  margin-bottom: 20px;
}
#value-added-service .content-wrapper strong {
  font-family: "Montserrat-Regular";
  color: #eeb116;
}
#value-added-service .content-wrapper table {
  margin: 0;
}
#value-added-service .content-wrapper .inner_table_new {
  margin-bottom: 20px;
  font-size: 14px;
  color: #444444;
  border: #CCC solid 1px;
}
#value-added-service .content-wrapper .inner_table_new .top-header {
  color: #FFFFFF;
  background: #eeb116;
  font-size: 13px;
}
#value-added-service .content-wrapper .inner_table_new td, #value-added-service .content-wrapper .inner_table_new th {
  padding: 10px;
  border-bottom: #d3d3d3 solid 1px;
  font-size: 13px;
}
#value-added-service .content-wrapper .inner_table_new strong {
  font-family: "Montserrat-Regular";
  color: #fff;
}
#value-added-service .content-wrapper .inner_table_new .address-text {
  /*
  				    background-color: #f5f5f5;
  				    border-bottom: #d3d3d3 solid 1px;
  				    border-left: #a0a0a0 solid 1px;
  */
}
#value-added-service .content-wrapper .inner_table_new .care-number-text {
  /*
  				    background-color: #ffffff;
  				    border-bottom: #d3d3d3 solid 1px;
  				    border-left: #a0a0a0 solid 1px;
  */
}
#value-added-service #installation-guide .content-title {
  margin-top: 12px;
}
#value-added-service #installation-guide .content-title span {
  font-size: 22px;
}
#value-added-service #installation-service .content-title {
  margin-top: 12px;
}
#value-added-service #installation-service .content-title span {
  font-size: 22px;
}
#value-added-service #installation-service strong {
  font-family: "Montserrat-Semibold";
  color: #eeb116;
}
#value-added-service #installation-service .terms_2 {
  font-size: 14px;
  cursor: auto;
}
#value-added-service #installation-service .terms_2 a {
  color: #eeb116;
  font-family: "Montserrat-Semibold";
}
#value-added-service #standard-labour-charge .content-title {
  margin-top: 12px;
}
#value-added-service #standard-labour-charge .content-title span {
  font-size: 22px;
}

.btn_bar_new {
  margin: 15px;
  display: flex;
  margin-top: 25px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .btn_bar_new {
    flex-direction: column;
    margin-top: 25px;
  }
}

.bg-section-dark {
  background-color: #2f2f2f !important;
}/*# sourceMappingURL=category.css.map */