.cover-page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 20px 15px;
}

@media (max-width: 1024px) {
  .cover-page {
    text-align: center;
    padding: 0;
  }
}

.cover-page__left {
  font-size: 25px;
  font-weight: 600;
}

.cover-page__left a {
  color: #E38F3D !important;
}

@media (max-width: 1400px) {
  .cover-page__left {
    font-size: 16px;
  }
}

@media (max-width: 1024px) {
  .cover-page__left {
    padding: 10px;
    background-color: #E38F3D;
    width: 100%;
    font-size: 13px;
  }
  .cover-page__left a {
    color: #fff !important;
  }
}

.cover-page__center {
  margin: 0;
  line-height: 1;
}

@media (max-width: 1024px) {
  .cover-page__center {
    width: 100%;
    font-size: 13px;
  }
  .cover-page__center img {
    max-width: 175px;
    margin-bottom: 10px;
  }
}

.cover-page__center a {
  display: block;
  margin-top: -20px;
}

@media (max-width: 1024px) {
  .cover-page__center a {
    margin-top: 0;
  }
}

.cover-page__right {
  font-size: 22px;
  font-weight: 600;
}

@media (max-width: 1400px) {
  .cover-page__right {
    font-size: 16px;
  }
}

@media (max-width: 1024px) {
  .cover-page__right {
    margin-bottom: 10px;
    width: 100%;
    font-size: 13px;
  }
}

.cover-page-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  height: calc(100vh - 208px);
  margin-left: -7px;
  margin-right: -7px;
}

.cover-page-content .column {
  padding-left: 7px !important;
  padding-right: 7px !important;
  margin-bottom: 14px;
}

@media (max-width: 1024px) {
  .cover-page-content {
    height: auto;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.cover-page-content-wrapper {
  overflow: hidden;
}

.cover-page-content-item {
  -webkit-transition: 1s width ease;
  -o-transition: 1s width ease;
  transition: 1s width ease;
}

@media (min-width: 1025px) {
  .cover-page-content-item--large {
    width: 60%;
  }
}

@media (min-width: 1025px) {
  .cover-page-content-item--small {
    width: 40%;
  }
}

.cover-page-content-item__title {
  font-size: 64px;
  color: #fff;
  font-weight: 300;
  text-transform: uppercase;
  position: relative;
  z-index: 4;
}

@media (max-width: 1400px) {
  .cover-page-content-item__title {
    font-size: 40px;
  }
}

@media (max-width: 1024px) {
  .cover-page-content-item__title {
    font-size: 25px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}

.cover-page-content-item__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  z-index: 3;
  overflow: hidden;
}

@media (max-width: 1024px) {
  .cover-page-content-item__link {
    position: relative;
    padding-bottom: 35vw;
  }
}

body .cover-page-content-item__link:hover .cover-page-content-item__image {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.cover-page-content-item__link:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#1e5799+0,7db9e8+100 */
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.57) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.57) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.57)));
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.57) 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.57) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

.cover-page-content-item__image, .cover-page-content-item__video {
  background-size: cover;
  -webkit-transition: 0.7s all ease;
  -o-transition: 0.7s all ease;
  transition: 0.7s all ease;
  background-position: center;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
}

.cover-page-content-item__image--mobile, .cover-page-content-item__video--mobile {
  display: none;
}

@media (max-width: 1024px) {
  .cover-page-content-item__image--mobile, .cover-page-content-item__video--mobile {
    display: block;
  }
}

@media (max-width: 1024px) {
  .cover-page-content-item__image--desktop, .cover-page-content-item__video--desktop {
    display: none;
  }
}

.cover-page-content-item__video {
  z-index: 2;
}

.cover-page-content-item__video video {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

footer.footer2 {
  background-color: #000;
}

body {
  font-family: "Lato", sans-serif;
  overflow-x: visible;
}

.row {
  max-width: 1640px;
}

.btn-default {
  color: #fff !important;
  background-color: #E38F3D;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  padding: 13px 30px;
  display: inline-block;
  text-transform: none;
  border-radius: 999px;
  border: 2px solid #E38F3D;
}

@media (min-width: 1025px) {
  .btn-default {
    min-width: 260px;
  }
}

.btn-default:hover {
  background-color: #fff;
  color: #E38F3D !important;
}

#dsShowcaseHeader .btn-default:hover {
  color: #E38F3D !important;
  background-color: #fff;
}

#dsShowcaseHeader .btn-default {
  color: #fff !important;
  background-color: #E38F3D;
  display: block;
  margin: 15px 10px 0;
  text-transform: uppercase;
}

.btn-default--white,
#dsShowcaseHeader .btn-default--white {
  border-color: #fff;
  color: #fff !important;
  background-color: transparent;
}

.btn-default--white:hover,
#dsShowcaseHeader .btn-default--white:hover,
#dsShowcaseHeader .btn-default--white:hover,
#dsShowcaseHeader
#dsShowcaseHeader .btn-default--white:hover {
  color: #fff !important;
  border-color: #E38F3D;
  background-color: #E38F3D;
}

@media (max-width: 1024px) {
  .btn-default {
    padding: 0.75rem 1.5rem;
    font-size: 14px;
  }
}

.btn-default-alt {
  background-color: #fff;
  color: #E38F3D !important;
}

#dsShowcaseHeader .btn-default-alt {
  color: #E38F3D !important;
  background-color: #fff;
}

.btn-default-alt:hover {
  background-color: #E38F3D;
  color: #fff !important;
}

#dsShowcaseHeader .btn-default-alt:hover {
  color: #fff !important;
  background-color: #E38F3D;
}

.landing-banner {
  position: relative;
  margin-bottom: 280px;
  padding: 0 15px;
}

.landing-banner img, .landing-banner__video {
  position: absolute;
  padding: 0 !important;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: -1;
}

.landing-banner img video, .landing-banner__video video {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.landing-banner__content {
  padding-top: 130px;
  position: relative;
  bottom: -270px;
}

@media (max-width: 1024px) {
  .landing-banner__content {
    padding-top: 0;
    bottom: -19vw;
  }
}

.landing-banner__subtitle {
  font-size: 26px;
  font-weight: 100;
  letter-spacing: 1px;
  color: #fff;
  text-transform: uppercase;
}

@media (max-width: 1024px) {
  .landing-banner__subtitle {
    text-align: center;
    font-size: 16px;
  }
}

.landing-banner__title {
  color: #fff;
  margin-top: 0;
  margin-bottom: 40px;
  text-transform: uppercase;
}

@media (max-width: 1024px) {
  .landing-banner__title {
    text-align: center;
    margin-bottom: 30px;
  }
}

.landing-banner__categories {
  position: relative;
  padding: 30px 15px 0;
  background-color: #fff;
}

.landing-banner__category {
  position: relative;
  padding-bottom: 100%;
  z-index: 1;
  margin-bottom: 30px;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.landing-banner__category:hover {
  opacity: 0.8;
}

.landing-banner__category img {
  height: calc(100% - 90px);
}

@media (max-width: 1024px) {
  .landing-banner__category img {
    height: calc(100% - 30px);
  }
}

.landing-banner__category-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  font-size: 26px;
  padding: 29px 15px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  background-color: #2D2D2D;
}

.theme-water .landing-banner__category-title {
  background-color: #3CABB7;
}

.theme-leaf .landing-banner__category-title {
  background-color: #4E734E;
}

@media (max-width: 1024px) {
  .landing-banner__category-title {
    font-size: 14px;
    padding: 7px 10px;
  }
}

.object-fit-img {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: -1;
  padding: 0 !important;
}

.design-it-wrap {
  position: relative;
  padding-top: 50px;
  margin-bottom: 50px;
}

.design-it-wrap__decor {
  position: absolute;
  opacity: 0.08;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  max-width: 1640px;
  z-index: -1;
}

.design-it-wrap__content {
  position: relative;
  margin-bottom: 70px;
}

.design-it {
  position: relative;
  padding: 90px 0;
  min-height: 630px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 1024px) {
  .design-it {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    min-height: 0;
  }
}

.design-it__content {
  color: #fff;
  padding-left: 50px !important;
}

@media (max-width: 1024px) {
  .design-it__content {
    padding-left: 15px !important;
    padding-bottom: 50px;
  }
}

.design-it__img {
  position: relative;
  display: inline-block;
}

@media (max-width: 1024px) {
  .design-it__img {
    display: block;
    margin-left: 15px;
  }
}

.design-it__img:before {
  content: '';
  width: 100%;
  height: 95%;
  position: absolute;
  left: -15px;
  top: -15px;
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.design-it__img img {
  position: relative;
  padding: 0 !important;
}

@media (max-width: 1024px) {
  .design-it__img img {
    width: 100%;
  }
}

.design-it__logos {
  margin-top: 45px;
}

.design-it__logos img {
  margin-right: 50px;
  margin-bottom: 15px;
}

.design-it .btn-default {
  margin-top: 20px;
}

.comfort-for-season {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 630px;
  margin-bottom: 50px;
}

@media (max-width: 1024px) {
  .comfort-for-season {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-left: 15px;
    margin-right: 15px;
  }
  .comfort-for-season .object-fit-img {
    position: relative;
    height: auto;
    width: auto;
    -o-object-fit: none;
    object-fit: none;
  }
}

.comfort-for-season__left {
  width: 50%;
  position: relative;
}

@media (max-width: 1024px) {
  .comfort-for-season__left {
    width: 100%;
  }
}

.comfort-for-season__right {
  width: 50%;
  padding: 50px 15px 50px 50px;
  background-color: #F5E7D9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.comfort-for-season__right h2 {
  text-transform: uppercase;
}

.theme-water .comfort-for-season__right {
  background-color: #F5F5F5;
}

.theme-leaf .comfort-for-season__right {
  background-color: #87B16B;
  color: #fff;
}

.theme-leaf .comfort-for-season__right h2 {
  color: inherit;
}

@media (max-width: 1024px) {
  .comfort-for-season__right {
    width: 100%;
    padding: 20px;
  }
}

.comfort-for-season__right .btn-default {
  margin-top: 20px;
}

@media (max-width: 1024px) {
  .comfort-for-season__right .btn-default {
    margin-top: 0;
  }
}

.get-inspired-wrap {
  margin-bottom: 50px;
}

.get-inspired-wrap .section-title {
  margin-bottom: 40px;
}

@media (min-width: 1025px) {
  .get-inspired .slick-list {
    padding: 0 12%;
  }
  .get-inspired .slick-list:before, .get-inspired .slick-list:after {
    content: '';
    width: 12%;
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    background: -moz-linear-gradient(left, rgba(255, 255, 255, 0.8) 20%, rgba(255, 255, 255, 0) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0.8) 20%, rgba(255, 255, 255, 0) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: -webkit-gradient(linear, left top, right top, color-stop(20%, rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0)));
    background: -o-linear-gradient(left, rgba(255, 255, 255, 0.8) 20%, rgba(255, 255, 255, 0) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0.8) 20%, rgba(255, 255, 255, 0) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  }
  .get-inspired .slick-list:after {
    left: auto;
    right: 0;
    background: -moz-linear-gradient(right, rgba(255, 255, 255, 0.8) 20%, rgba(255, 255, 255, 0) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(right, rgba(255, 255, 255, 0.8) 20%, rgba(255, 255, 255, 0) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: -webkit-gradient(linear, right top, left top, color-stop(20%, rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0)));
    background: -o-linear-gradient(right, rgba(255, 255, 255, 0.8) 20%, rgba(255, 255, 255, 0) 100%);
    background: linear-gradient(to left, rgba(255, 255, 255, 0.8) 20%, rgba(255, 255, 255, 0) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  }
}

.get-inspired.slick-initialized .slick-slide {
  display: block;
}

.get-inspired-element {
  padding: 10px;
  position: relative;
  float: left;
}

.get-inspired-element--fourth {
  width: calc(100% / 3);
  padding-bottom: calc(100% / 3);
}

.get-inspired-element--half {
  width: calc((100% / 3) * 2);
  padding-bottom: calc(100% / 3);
}

.get-inspired-element--full {
  width: calc((100% / 3) * 2);
  padding-bottom: calc((100% / 3) * 2);
}

.get-inspired-element__image {
  height: calc(100% - 14px);
  width: calc(100% - 14px);
  padding: 0 !important;
  position: absolute;
  -o-object-fit: cover;
  object-fit: cover;
  top: 7px;
  left: 7px;
}

.get-inspired-element__content {
  height: calc(100% - 14px);
  width: calc(100% - 14px);
  position: absolute;
  -o-object-fit: cover;
  object-fit: cover;
  top: 7px;
  left: 7px;
  opacity: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  background-color: rgba(45, 45, 45, 0.74);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.get-inspired-element__content h3, .get-inspired-element__content p, .get-inspired-element__content i {
  color: #fff;
}

.get-inspired-element__content h3 {
  text-transform: none !important;
}

@media (min-width: 1025px) {
  .get-inspired-element:hover .get-inspired-element__content {
    opacity: 1;
  }
}

.slick-arrow {
  position: absolute;
  top: 50%;
  width: 62px;
  height: 62px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 0;
  background-color: #2D2D2D;
  -webkit-border-radius: 50% !important;
  -moz-border-radius: 50% !important;
  border-radius: 50% !important;
  color: #fff;
  z-index: 2;
  -webkit-transition: background-color 0.3s;
  -moz-transition: background-color 0.3s;
  -ms-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

#rev-slider .slick-arrow {
  background-color: transparent;
  border: 1px solid #fff;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

.theme-leaf #rev-slider .slick-arrow {
  border-color: #000;
  color: #000 !important;
}

.slick-arrow:hover {
  background-color: rgba(45, 45, 45, 0.8);
}

.slick-arrow:before {
  content: '';
  width: 20px;
  display: block;
  font: normal normal normal 40px/1 FontAwesome;
}

.slick-arrow.slick-next {
  right: 25px;
  text-align: right;
}

#rev-slider .slick-arrow.slick-next {
  right: -80px;
}

.slick-arrow.slick-next:before {
  content: "\f105";
}

.slick-arrow.slick-prev {
  left: 25px;
  text-align: left;
}

#rev-slider .slick-arrow.slick-prev {
  left: -80px;
}

.slick-arrow.slick-prev:before {
  content: "\f104";
}

.theme-fire .collection-reviews {
  background: #855633;
}

.theme-water .collection-reviews {
  background: #0096A7;
}

.theme-leaf .collection-reviews {
  background: #ECECEC;
  color: #000;
}

.shadow-left,
.shadow-bottom {
  position: relative;
}

.shadow-left:before,
.shadow-bottom:before {
  content: '';
  position: absolute;
  display: block !important;
  top: 0;
  left: 0;
  bottom: 0;
  width: 80%;
  z-index: 0;
  background: -moz-linear-gradient(left, rgba(45, 45, 45, 0.73) 0%, rgba(45, 45, 45, 0) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, rgba(45, 45, 45, 0.73) 0%, rgba(45, 45, 45, 0) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: -webkit-gradient(linear, left top, right top, from(rgba(45, 45, 45, 0.73)), to(rgba(45, 45, 45, 0)));
  background: -o-linear-gradient(left, rgba(45, 45, 45, 0.73) 0%, rgba(45, 45, 45, 0) 100%);
  background: linear-gradient(to right, rgba(45, 45, 45, 0.73) 0%, rgba(45, 45, 45, 0) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

.shadow-bottom:before {
  width: 100%;
  top: 20%;
  background: -moz-linear-gradient(top, rgba(45, 45, 45, 0.73) 0%, rgba(45, 45, 45, 0) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(45, 45, 45, 0.73) 0%, rgba(45, 45, 45, 0) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(45, 45, 45, 0.73)), to(rgba(45, 45, 45, 0)));
  background: -webkit-linear-gradient(bottom, rgba(45, 45, 45, 0.73) 0%, rgba(45, 45, 45, 0) 100%);
  background: -o-linear-gradient(bottom, rgba(45, 45, 45, 0.73) 0%, rgba(45, 45, 45, 0) 100%);
  background: linear-gradient(to top, rgba(45, 45, 45, 0.73) 0%, rgba(45, 45, 45, 0) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

.brands-banner {
  position: relative;
  padding: 12rem 0;
  color: #fff;
}

.brands-banner h1 {
  color: inherit;
}

.brands-wrap {
  position: relative;
  z-index: 1;
  background-color: #fff;
  margin-top: -10rem;
  padding: 0.5em;
}

.brand {
  position: relative;
  display: block;
  padding-bottom: 25%;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

@media (max-width: 640px) {
  .brand {
    padding-bottom: 100%;
  }
}

.brand.shadow-bottom:before {
  width: calc(100% - 1em);
  left: 0.5em;
  right: 0.5em;
  bottom: 0.5em;
}

.brand:hover {
  opacity: 0.8;
}

.brand__title {
  position: absolute;
  margin: 0;
  bottom: 0;
  left: 0;
  padding: 1rem;
  text-align: center;
  color: #fff;
  width: 100%;
}

.brand__image {
  left: 0.5em;
  right: 0.5em;
  top: 0.5em;
  bottom: 0.5em;
  width: calc(100% - 1em);
  height: calc(100% - 1em);
}

.benefits {
  background-color: #ECECEC;
  padding-top: 2rem;
}

.benefit {
  margin-bottom: 50px;
}

.benefit__image {
  width: 128px;
  height: 128px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 auto;
  background-color: #C64242;
}

.theme-water .benefit__image {
  background-color: #3CABB7;
}

.theme-leaf .benefit__image {
  background-color: #4E734E;
}

#dsShowcaseHeader .dsMainMenu {
  width: 100%;
  display: none;
}

@media screen and (min-width: 1025px) {
  #dsShowcaseHeader .dsMainMenu {
    display: block;
  }
}

#dsShowcaseHeader .dsShowcaseMenu {
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (min-width: 1025px) {
  #dsShowcaseHeader .dsShowcaseMenu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

#dsShowcaseHeader .menu-item-image {
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #F7F8FA;
  display: block;
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
}

#dsShowcaseHeader {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (min-width: 1025px) {
  #dsShowcaseHeader {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

@media (min-width: 1025px) {
  #dsShowcaseHeader .ds-image-container > .sub-menu {
    min-width: 500px !important;
  }
}

@media (min-width: 1401px) {
  #dsShowcaseHeader .ds-image-container > .sub-menu {
/*     min-width: unset !important; */
  }
}

#dsShowcaseHeader .ds-image-container .sub-menu {
  list-style: none;
  margin: 0;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
/*   display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; */
}

#dsShowcaseHeader :not(.ds-image-container) .sub-menu {
	width:100%;
}

#dsShowcaseHeader .sub-menu .menu-item {
  width: 100%;
  padding: 0 !important;
}

@media (min-width: 1025px) {
  #dsShowcaseHeader .sub-menu .menu-item {
    padding: 0 3px !important;
  }
}

#dsShowcaseHeader .sub-menu .menu-item.ds-image-default {
  width: 100%;
}

#dsShowcaseHeader .sub-menu .menu-item.ds-image-default .menu-item-image {
  padding-bottom: 105px;
}

#dsShowcaseHeader .sub-menu .menu-item.ds-image-large {
  width: 100%;
}

#dsShowcaseHeader .sub-menu .menu-item.ds-image-large .menu-item-image {
  padding-bottom: 105px;
}

@media screen and (min-width: 1025px) {
  #dsShowcaseHeader .dsShowcaseMenu-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
}

#dsShowcaseHeader .dsShowcaseMenu > li {
  width: auto;
  margin: 0 3%;
}

#dsShowcaseHeader .dsShowcaseMenu > li:nth-last-of-type(1) .dsShowcaseSubMenu,
#dsShowcaseHeader .dsShowcaseMenu > li:nth-last-of-type(2) .dsShowcaseSubMenu {
  right: 0;
  left: auto;
}

#dsShowcaseHeader .dsShowcaseMenu > li.colored-link {
  text-align: center;
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}

#dsShowcaseHeader .dsShowcaseMenu > li.colored-link > a {
  color: #E38F3D !important;
}

@media screen and (min-width: 1225px) {
  #dsShowcaseHeader .dsShowcaseMenu > li.colored-link > a {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}

#dsShowcaseHeader .dsShowcaseMenu > li.colored-link > a:hover {
  color: #E38F3D !important;
}

#dsShowcaseHeader .dsShowcaseMenu > li.open > a {
  color: #000 !important;
}

#dsShowcaseHeader .dsShowcaseMenu > li:not(:last-of-type) > a:after {
  content: '';
  position: absolute;
  display: block;
  width: 1px;
  height: 28px;
  background-color: #fff;
  right: -1px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
}

#dsShowcaseHeader .dsShowcaseMenu > li:not(:last-of-type) > a:hover:after {
  opacity: 0;
}

#dsShowcaseHeader .dsShowcaseMenu > li:not(:last-of-type).open a:after {
  opacity: 0;
}

#dsShowcaseHeader .dsShowcaseMenu > li > a {
  font-size: 24px;
  padding: 0.5rem;
  display: block;
  text-align: center;
  position: relative;
  color: #000 !important;
  font-weight: 600;
  white-space: nowrap;
}

@media only screen and (max-width: 1230px) {
  #dsShowcaseHeader .dsShowcaseMenu > li > a {
    font-size: 20px;
  }
}

#dsShowcaseHeader .dsShowcaseMenu > li > a:hover {
  color: #000 !important;
  background-color: #fff;
}

.dsShowcaseSubMenu {
  margin: 0;
  list-style-type: none;
  border-top: 1px solid #B8B8B8;
  border-bottom: 1px solid #B8B8B8;
}

@media screen and (min-width: 1025px) {
  .dsShowcaseSubMenu {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
	  margin-top: 130px;
    z-index: 1;
    padding: 50px 0;
    display: block;
    background-color: #fff;
    -webkit-transition: 0.3s all ease;
    -o-transition: 0.3s all ease;
    transition: 0.3s all ease;
  }
  .dsShowcaseSubMenu:before {
    content: '';
    width: 100%;
    height: 39px;
    position: absolute;
    top: -39px;
    left: 0;
  }
}

@media screen and (min-width: 1401px) {
  .dsShowcaseSubMenu {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: auto;
  }
}

@media screen and (min-width: 1025px) {
  .ds-mega-menu .dsShowcaseSubMenu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
	  min-width:900px;
  }
}

.open > .dsShowcaseSubMenu {
  opacity: 1;
  visibility: visible;
}

.dsShowcaseSubMenu li {
  margin-bottom: 0.5rem;
}

@media (min-width: 1025px) {
  .dsShowcaseSubMenu li.ds-extra-menu-content {
    position: absolute;
    top: 100%;
    padding: 30px 35px;
    background-color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    left: -1px;
    right: -1px;
    width: auto;
  }
}

.dsShowcaseSubMenu li.ds-extra-menu-content .ds-extra-menu-content__text {
  font-size: 21px;
  text-align: center;
  width: 100%;
  margin: 0 15px;
}

@media (min-width: 1025px) {
  .dsShowcaseSubMenu li.ds-extra-menu-content .ds-extra-menu-content__text {
    font-size: 32px;
    text-align: left;
    width: auto;
  }
}

.dsShowcaseSubMenu li.ds-extra-menu-content .ds-extra-menu-content__link {
  margin: 0 15px;
}

@media (max-width: 1024px) {
  .dsShowcaseSubMenu li.ds-extra-menu-content .ds-extra-menu-content__link {
    margin: 15px 15px 0;
    font-size: 14px !important;
  }
}

.dsShowcaseSubMenu li span {
  color: #000;
}

@media screen and (min-width: 1025px) {
  .dsShowcaseSubMenu li span {
    white-space: nowrap;
  }
}

.dsShowcaseSubMenu li span.show-sub-item {
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  font-weight: 700;
  display: inline-block;
}

@media screen and (min-width: 1025px) {
  .dsShowcaseSubMenu li span.disabled-item {
    margin-bottom: 20px;
  }
}

.dsShowcaseSubMenu li span.hide-sub-item {
  margin-bottom: 0.5rem;
}

@media screen and (min-width: 1025px) {
  .dsShowcaseSubMenu li span.hide-sub-item {
    display: none;
  }
}

.dsShowcaseSubMenu li a {
  color: #E38F3D !important;
  font-size: 16px;
}

@media screen and (min-width: 1025px) {
  .dsShowcaseSubMenu li a {
    white-space: nowrap;
  }
}

.dsShowcaseSubMenu li a:hover {
  color: #E38F3D !important;
}

.dsShowcaseSubMenu li .list-none {
  margin: 0;
  list-style-type: none;
}



@media screen and (min-width: 1025px) {
  .dsShowcaseSubMenu > li {
    padding: 0 35px;
  }
	.dsShowcaseSubMenu > li:first-of-type{
/*     	width: 70%; */
	}
	.dsShowcaseSubMenu > li:nth-of-type(2){
/* 	    width: 30%; */
	}
}

.dsMobileMenuIcon {
  width: 62px;
  height: 62px;
  padding: 13px;
  margin-top: 10px;
  margin-bottom: 10px;
  cursor: pointer;
  color: #000;
  background-color: #fff;
}

button.hamburger {
  padding: 0 !important;
  display: inline-block;
  cursor: pointer;
  -webkit-transition-property: opacity, -webkit-filter;
  transition-property: opacity, -webkit-filter;
  -o-transition-property: opacity, filter;
  transition-property: opacity, filter;
  transition-property: opacity, filter, -webkit-filter;
  -webkit-transition-duration: 0.15s;
  -o-transition-duration: 0.15s;
  transition-duration: 0.15s;
  -webkit-transition-timing-function: linear;
  -o-transition-timing-function: linear;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0 !important;
  overflow: visible;
  height: 40px;
	position: relative;
	z-index: 99999;
}

.hamburger-box {
  width: 35px;
  height: 40px;
  display: inline-block;
  position: relative;
}

.hamburger--spin .hamburger-inner {
  -webkit-transition-duration: 1s;
  -o-transition-duration: 1s;
  transition-duration: 1s;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 35px;
  height: 4px;
  background-color: #DAFFF9;
  border-radius: 4px;
  position: absolute;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.15s;
  -o-transition-duration: 0.15s;
  transition-duration: 0.15s;
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
}

.hamburger--spin .hamburger-inner::before {
  -webkit-transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
  -o-transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}

.hamburger-inner::before {
  top: -13px;
}

.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  width: 35px;
  height: 4px;
  background-color: #000;
  border-radius: 4px;
  position: absolute;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.15s;
  -o-transition-duration: 0.15s;
  transition-duration: 0.15s;
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
}

.hamburger--spin .hamburger-inner::after {
  -webkit-transition: bottom 0.1s 0.25s ease-in, -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s 0.25s ease-in, -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger-inner::after {
  bottom: -13px;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}

.hamburger--spin.is-active .hamburger-inner {
  -webkit-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  transform: rotate(225deg);
  -webkit-transition-delay: 0.12s;
  -o-transition-delay: 0.12s;
  transition-delay: 0.12s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--spin.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  -webkit-transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
  -o-transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}

.hamburger--spin.is-active .hamburger-inner::after {
  bottom: 0;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transition: bottom 0.1s ease-out, -webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.1s ease-out, -webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.dsMobileMenuIcon svg {
  -webkit-filter: invert(100%) sepia(1090%) saturate(100%) hue-rotate(87deg) brightness(119%) contrast(119%);
  filter: invert(100%) sepia(1090%) saturate(100%) hue-rotate(87deg) brightness(119%) contrast(119%);
}

#dsHTML {
  overflow-x: hidden;
}

.dsMobileMenu {
  display: none;
  opacity: 0;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 82px;
  right: 0;
  z-index: 9999;
  overflow: hidden;
  -webkit-transition: 0.3s linear;
  -moz-transition: 0.3s linear;
  -o-transition: 0.3s linear;
  transition: 0.3s linear;
}

#dsHTML.dsOpen {
  right: 0;
}

@media (max-width: 1024px) {
/*   #dsHTML.dsOpen {
    position: absolute;
    width: 100%;
    right: 270px;
    -webkit-transition: right 0.5s linear;
    -moz-transition: right 0.5s linear;
    -o-transition: right 0.5s linear;
    transition: right 0.5s linear;
  } */
  .dsMobileMenu.dsMobileOpen {
	 display: block;
	 opacity: 1;
	 right: 0;
    -webkit-transition: 0.3s linear;
    -moz-transition: 0.3s linear;
    -o-transition: 0.3s linear;
    transition: 0.3s linear;
  }
}

.dsExtraNav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: baseline;
  align-self: baseline;
}

@media (max-width: 1024px) {
  .dsExtraNav {
    display: none;
  }
}

.dsExtraNav-link {
  position: relative;
  width: 52px;
  height: 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #B8B8B8 !important;
  border: 1px solid #B8B8B8;
  font-size: 24px;
}

.dsExtraNav-link:hover {
  color: #fff !important;
  background-color: #E38F3D;
}

.dsExtraNav-link:hover .dsExtraNav-link__text {
  opacity: 1;
  visibility: visible;
}

.dsExtraNav-link__text {
  opacity: 0;
  visibility: hidden;
  color: #000;
  font-size: 16px;
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 10px;
  padding: 10px 15px;
  white-space: nowrap;
  border: 1px solid #B8B8B8;
  background-color: #ECECEC;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

.dsExtraNav-link__text:before {
  content: '';
  position: absolute;
  top: -15px;
  left: 0;
  width: 100%;
  height: 15px;
}

.dsExtraNav-link__text--center {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.dsExtraNav-link__text--right {
  left: auto;
  right: 0;
}

.dsThemeSwitch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 20px;
}

@media (max-width: 1024px) {
  .dsThemeSwitch {
    margin: 50px 0 0;
  }
}

.dsThemeSwitch .dsExtraNav-link {
  color: #fff !important;
  background-color: #3CABB7;
  border-color: #3CABB7;
}

@media (max-width: 1024px) {
  .dsThemeSwitch .dsExtraNav-link {
    width: calc(100% / 3);
    padding: 30px;
  }
  .dsThemeSwitch .dsExtraNav-link i {
    font-size: 27px;
  }
}

.dsThemeSwitch .dsExtraNav-link:first-of-type {
  background-color: #C64242;
  border-color: #C64242;
}

.dsThemeSwitch .dsExtraNav-link:last-of-type {
  background-color: #81B664;
  border-color: #81B664;
}

@media (max-width: 1024px) {
  #primary-menu > li {
    font-size: 1.4rem;
    border-bottom: 1px solid #fff;
  }
  #primary-menu > li.special {
    border-bottom: 1px solid transparent;
  }
  #primary-menu > li.special a {
    background-color: #ff9309;
  }
  #primary-menu > li > a {
    color: #fff !important;
    padding: 0.75rem 1.5rem;
    font-size: 16px;
    background-color: #C64242;
    display: block;
  }
  .theme-water #primary-menu > li > a {
    background-color: #3CABB7;
  }
  .theme-leaf #primary-menu > li > a {
    background-color: #81B664;
  }
  #primary-menu > li > ul li:not(:last-of-type) {
    border-bottom: 1px solid #d9d9d9;
  }
  #primary-menu > li > ul li a,
  #primary-menu > li > ul li .show-sub-item {
    color: #000 !important;
    padding: 0.75rem 1.5rem;
    background-color: #fff;
    display: block;
    font-size: 16px;
    cursor: pointer;
  }
  #primary-menu > li > ul li a .show-sub,
  #primary-menu > li > ul li .show-sub-item .show-sub {
    color: #000;
    margin-top: -11px;
  }
  #primary-menu > li > ul li ul li a {
    color: #E38F3D !important;
  }
}

body {
  border-top: 0 !important;
}

@media (min-width: 1025px) {
  body {
    border-top: 9px solid transparent !important;
  }
  body.theme-fire {
    border-color: #C64242 !important;
  }
  body.theme-water {
    border-color: #3CABB7 !important;
  }
  body.theme-leaf {
    border-color: #81B664 !important;
  }
}

.dsExtraNavMob {
  background-color: #fff;
  overflow: hidden;
}

.theme-fire .dsExtraNavMob {
  background-color: #C64242 !important;
}

.theme-water .dsExtraNavMob {
  background-color: #3CABB7 !important;
}

.theme-leaf .dsExtraNavMob {
  background-color: #81B664 !important;
}

@media (min-width: 1025px) {
  .show-sub {
    display: none;
  }
}

#dsShowcaseHeader {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 15px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: auto !important;
}

@media (min-width: 1025px) {
  #dsShowcaseHeader {
    height: 130px !important;
  }
}

@media screen and (max-width: 1024px) {
  #dsShowcaseHeader {
    max-width: none;
    padding: 0;
  }
  #dsShowcaseHeader .dsMobileMenuInner {
    position: relative;
  }
  #dsShowcaseHeader li ul {
    opacity: 0;
    -webkit-transition: 0.5s all ease;
    -o-transition: 0.5s all ease;
    transition: 0.5s all ease;
    position: absolute;
    width: 100%;
    height: 100vh;
	  overflow-y:scroll;
    background-color: #fff;
    top: 0;
	left: 100%;
    z-index: 1;
  }
	.btn-default--white, #dsShowcaseHeader .btn-default--white{
		background-color:#E38F3D !important;
	}
  #dsShowcaseHeader .open > ul {
    opacity: 1;
    left: 0;
    display: block;
  }
  #dsShowcaseHeader nav ul {
    list-style-type: none;
    margin: 0;
  }
  #dsShowcaseHeader .hide-sub-item {
    color: #fff;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    background-color: #C64242;
    display: block;
    text-align: center;
    cursor: pointer;
  }
  .theme-water #dsShowcaseHeader .hide-sub-item {
    background-color: #3CABB7;
  }
  .theme-leaf #dsShowcaseHeader .hide-sub-item {
    background-color: #81B664;
  }
  #dsShowcaseHeader .hide-sub-item .hide-sub {
    color: #fff;
    font-size: 1.875rem;
    position: absolute;
    left: 0;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    cursor: pointer;
    margin-top: -12px;
  }
  #dsShowcaseHeader .show-sub {
    color: #fff;
    font-size: 1.875rem;
    position: absolute;
    right: 0;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    cursor: pointer;
    margin-top: -52px;
  }
}

@media (max-width: 1024px) {
  #dsShowcaseHeader .logo {
    max-width: 146px;
    margin-left: 15px;
  }
}

#footer {
  padding: 33px 15px !important;
  background-color: #E38F3D;
}

.page-template-template-cover #footer {
  background-color: #000;
}

@media (max-width: 1024px) {
  #footer {
    padding: 12px 15px !important;
  }
}

@media (min-width: 1025px) {
  .made-by a {
    font-size: 26px;
  }
}

@media (min-width: 1025px) {
  .made-by img {
    max-width: 30px !important;
  }
}

#menu-footer-contact li {
  margin: 0 20px;
}

#menu-footer-contact li a {
  width: 150px;
  padding-top: 120px !important;
  font-size: 25px;
  background-image: none !important;
  position: relative;
}

#menu-footer-contact li a:before {
  width: 110px;
  height: 110px;
  position: absolute;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  display: inline-block;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

#menu-footer-contact li a:hover:before {
  width: 140px;
  height: 140px;
  top: -30px;
  background-color: #E38F3D;
  background-size: 140px !important;
}

a[title="icon-Financing"]:before, .footer-3 li#menu-item-1000661 a:before {
  content: '';
  background-image: url(../dist/img/footer-icons/financing.png);
  background-size: 110px;
  background-repeat: no-repeat;
  background-position: 50% 0%;
}

a[title="icon-Brochure"]:before, .footer-3 li#menu-item-1002091 a:before {
  content: '';
  background-image: url(../dist/img/footer-icons/brochure.png);
  background-size: 110px;
  background-repeat: no-repeat;
  background-position: 50% 0%;
}

a[title="icon-Pricing"]:before, .footer-3 li#menu-item-1000660 a:before, .footer-3 li#menu-item-1025712 a:before {
  content: '';
  background-image: url(../dist/img/footer-icons/pricing.png);
  background-size: 110px;
  background-repeat: no-repeat;
  background-position: 50% 0%;
}

a[title="icon-Buyers-Guide"]:before, .footer-3 li#menu-item-1000844 a:before {
  content: '';
  background-image: url(../dist/img/footer-icons/guide.png);
  background-size: 110px;
  background-repeat: no-repeat;
  background-position: 50% 0%;
}

a[title="icon-Service"]:before, .footer-3 li#menu-item-1000659 a:before {
  content: '';
  background-image: url(../dist/img/footer-icons/services.png);
  background-size: 110px;
  background-repeat: no-repeat;
  background-position: 50% 0%;
}

.footer-title {
  font-weight: 400;
}

.TWLA-pre-footer .menu {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 640px) {
  .TWLA-pre-footer .menu {
    text-align: center;
  }
}

.TWLA-pre-footer .menu li {
  width: auto;
  margin-bottom: 20px !important;
}

@media (max-width: 640px) {
  .TWLA-pre-footer .menu li {
    width: auto;
  }
}

@media (max-width: 1024px) {
  .TWLA-pre-footer .TWLA-footer-info > .columns {
    margin-bottom: 30px;
  }
}

.TWLA-pre-footer .TWLA-footer-info p, .TWLA-pre-footer .TWLA-footer-info strong, .TWLA-pre-footer .TWLA-footer-info table {
  color: #fff;
  text-align: left;
  font-size: 20px;
}

.TWLA-pre-footer .TWLA-footer-info a {
  font-size: 20px;
  color: #E38F3D !important;
  margin-left: 0 !important;
  margin-right: 10px;
}

.TWLA-pre-footer .TWLA-footer-info table td:first-of-type {
  padding-right: 20px;
}

.TWLA-pre-footer .TWLA-footer-info strong {
  margin-bottom: 10px;
  display: inline-block;
}

.footer-3 .social-button {
  text-align: left;
}

body .copy-right {
  padding: 0;
  font-size: 26px;
  margin: 0;
}

@media (max-width: 1024px) {
  body .copy-right {
    font-size: 16px;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Lato", sans-serif;
}

h1 {
  font-size: 24px;
}

h2 {
  font-size: 20px;
}

h3 {
  font-size: 19px;
}

h4 {
  font-size: 18px;
}

h5 {
  font-size: 17px;
}

h6 {
  font-size: 16px;
}

@media only screen and (min-width: 40.063em) {
  h1 {
    font-size: 68px;
  }
  h2 {
    font-size: 42px;
  }
  h3 {
    font-size: 31px;
  }
  h4 {
    font-size: 25px;
  }
  h5 {
    font-size: 20px;
  }
  h6 {
    font-size: 16px;
  }
}

.section-title {
  text-transform: uppercase;
  color: inherit;
}

.ds-filters {
  margin-bottom: 50px;
}

@media (max-width: 1024px) {
  .ds-filters {
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: -webkit-transform 0.5s ease;
    -o-transition: transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    overflow: auto;
    z-index: 2;
    background-color: #fff;
    padding: 55px 15px 20px;
    width: 100%;
    margin-bottom: 0;
  }
  .ds-filters.active {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}

.ds-filters .article-title {
  position: relative;
  font-size: 28px;
  cursor: pointer;
}

.ds-filters .article-title:after {
  content: "\f067";
  font-family: 'FontAwesome';
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #6A6A6A;
}

.ds-filters .article-title.open:after {
  content: "\f068";
}

.ds-filters .accordion-content {
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #B8B8B8;
}

.ds-filters .accordion-content label {
  font-size: 22px;
}

.ds-filters ul {
  margin: 0;
}

.ds-filters ul li {
  list-style-type: none;
}

.ds-filters ul li ul {
  margin-left: 30px;
}

.ds-filters input[type=checkbox] {
  display: none;
}

.ds-filters input[type=checkbox] + label {
  display: block;
  margin: 0.2em;
  cursor: pointer;
  padding: 0.2em;
  font-size: 16px;
}

.ds-filters input[type=checkbox] + label:before {
  content: "\2714";
  border: 0.1em solid #B8B8B8;
  border-radius: 0.2em;
  display: inline-block;
  width: 20px;
  height: 20px;
  padding-left: 0.2em;
  padding-bottom: 0.3em;
  margin-right: 10px;
  color: transparent;
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
  font-size: 13px;
  vertical-align: top;
}

.ds-filters input[type=checkbox] + label.active:before {
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}

.ds-filters input[type=checkbox]:checked + label:after {
  content: '';
  display: inline-block;
  background-color: #E38F3D;
  width: 14px;
  height: 14px;
  margin-top: 3px;
  margin-left: 3px;
  position: absolute;
  left: 6px;
}

.ds-filters [type="radio"]:checked, .ds-filters [type="radio"]:not(:checked) {
  position: absolute;
  left: -9999px;
}

.ds-filters [type="radio"]:checked + label, .ds-filters [type="radio"]:not(:checked) + label {
  position: relative;
  padding-left: 28px;
  font-size: 16px;
  cursor: pointer;
  line-height: 20px;
  display: inline-block;
  margin-bottom: 8px;
}

.ds-filters [type="radio"]:checked + label:before, .ds-filters [type="radio"]:not(:checked) + label:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border: 1px solid #ECECEC;
  border-radius: 100%;
  background: #fff;
}

.ds-filters [type="radio"]:checked + label:after, .ds-filters [type="radio"]:not(:checked) + label:after {
  content: '';
  width: 12px;
  height: 12px;
  background: #B8B8B8;
  position: absolute;
  top: 4px;
  left: 4px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.ds-filters [type="radio"]:not(:checked) + label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}

.ds-filters [type="radio"]:checked + label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.ds-filters-over {
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
}

.ds-filters-over.show {
  opacity: 0.7;
  visibility: visible;
}

.ds-filter-title {
  text-transform: uppercase;
  margin: 1rem 0 4rem;
  text-align: center;
}

.ds-clear-filter {
  display: block;
  text-align: center;
}

.ds-filters-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 10px;
}

@media (max-width: 1024px) {
  .ds-filters-nav {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.ds-filters-nav:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 15px;
  right: 15px;
  height: 1px;
  background-color: #B8B8B8;
}

.ds-filters-search-wrap {
  width: 50%;
  margin-right: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 1024px) {
  .ds-filters-search-wrap {
    margin-right: 0;
    width: 100%;
  }
}

.ds-page-title {
  white-space: nowrap;
  margin-right: 15px;
}

@media (max-width: 1024px) {
  .ds-page-title {
    margin-right: 0;
    margin-bottom: 20px;
    width: 100%;
    text-align: center;
  }
}

#ds-filters-search {
  -webkit-box-shadow: inherit;
  box-shadow: inherit;
  background-image: url(../dist/img/search-icon2.png);
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: 95% 50%;
  border: 1px solid #ccc;
  padding: 10px 15px;
  width: 100%;
}

.ds-sort_by {
  width: 50%;
  margin: 0 0 1rem;
}

@media (max-width: 1024px) {
  .ds-sort_by {
    margin-left: 0.5rem;
    width: calc(50% - 0.5rem);
  }
}

.ds-pagination .pagination {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style-type: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
}

.ds-pagination .pagination li {
  margin: 0 5px;
}

.ds-pagination .pagination li a,
.ds-pagination .pagination li span {
  padding: 0 5px;
}

.ds-filters-footer-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.ds-posts_per_page {
  margin: 0;
  min-width: 115px;
}

body .ds-nav-container {
  margin-bottom: 70px;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.archive-banner {
  height: 700px;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

@media (max-width: 1024px) {
  .archive-banner {
    height: 65vw;
    margin-bottom: 130px;
  }
}

.archive-banner__bottom {
  background-color: rgba(97, 25, 0, 0.8);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0 15px;
  position: relative;
}

@media (max-width: 1024px) {
  .archive-banner__bottom .btn-default {
    position: absolute;
    bottom: -105px;
    left: 0;
    color: #E38F3D !important;
    border: 0;
    background-color: transparent !important;
    font-size: 18px;
  }
  .archive-banner__bottom .btn-default:last-of-type {
    left: auto;
    right: 0;
  }
}

.archive-banner__logo {
  width: 100%;
  max-width: 380px;
  height: 180px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-shadow: 0 3px 25px rgba(0, 0, 0, 0.16);
  box-shadow: 0 3px 25px rgba(0, 0, 0, 0.16);
  background-color: #f9f9f9;
  padding: 10px;
  margin: -30px 15px;
}

.show-filters {
  margin: 0 0.5rem 1rem 0 !important;
  padding: 10px 20px;
  border-style: solid;
  border-width: 1px;
  border-color: #ccc;
  background: transparent;
  color: #000 !important;
  width: calc(50% - 0.5rem);
}

.show-filters:hover {
  background-color: #f1f1f1;
  color: #000;
}

.hide-filters {
  background: transparent !important;
  color: #000 !important;
  border: 0;
  margin: 0 !important;
  position: absolute;
  right: 0;
  top: 0;
  font-size: 31px;
}

.ds-product {
  position: relative;
  width: 100%;
  margin-bottom: 4em;
}

.ds-product__image {
  display: block;
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-bottom: 20px;
}

.ds-product__title {
  display: inline-block;
  font-size: 22px;
  font-weight: 600;
  color: #595959;
  margin-bottom: 20px;
}

.ds-product .single_add_to_cart_button {
  background-color: #C64242;
  width: 62px;
  height: 62px;
  position: absolute;
  bottom: 0;
  right: 0;
  color: #fff;
  font-size: 30px;
  margin: 0 !important;
}

.theme-water .ds-product .single_add_to_cart_button {
  background-color: #3CABB7;
}

.theme-leaf .ds-product .single_add_to_cart_button {
  background-color: #81B664;
}

.ds-product .single_add_to_cart_button:hover, .ds-product .single_add_to_cart_button:focus {
  background-color: #E38F3D;
}

.ds-product .single_add_to_cart_button:before {
  content: "\f07a";
  font-family: 'FontAwesome';
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.ds-product .single_add_to_cart_button.added:before {
  content: "\f058";
}

.ds-product .single_add_to_cart_button.loading:before {
  content: "\f110";
}

.ds-product .added_to_cart {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 600;
  z-index: 1;
}

.ds-product .added_to_cart:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.75);
  z-index: -1;
}

.ds-product .added_to_cart {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 600;
  z-index: 1;
  color: #C64242 !important;
}

.theme-water .ds-product .added_to_cart {
  color: #3CABB7 !important;
}

.theme-leaf .ds-product .added_to_cart {
  color: #81B664 !important;
}

.ds-reviews .ds-filter-title {
  margin: 55px 0;
}

.ds-review-item {
  text-align: center;
  margin-bottom: 30px;
}

.ds-review-item__content {
  text-align: left;
}

.ds-review-item__content p {
  display: inline;
}

.ds-review-item__photo {
  position: relative;
  display: inline-block;
  overflow: hidden;
  margin-top: 30px;
  margin-bottom: 10px;
  border-radius: 50%;
  width: 120px;
  height: 120px;
}

.ds-review-item__photo img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
}

.woocommerce div.product div.images .flex-control-thumbs li {
  clear: none !important;
}

.woocommerce .flex-control-thumbs {
  padding: 0 60px;
}

.woocommerce .flex-control-thumbs .slick-slide {
  padding-bottom: 112px;
  position: relative;
}

.woocommerce .flex-control-thumbs .slick-slide img {
  width: calc(100% - 10px) !important;
  height: 92px !important;
  position: absolute;
  top: 10px;
  left: 5px;
  -o-object-fit: cover;
  object-fit: cover;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
  margin-bottom: 40px;
  padding-left: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  margin: 0 5px !important;
  padding: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}

@media (max-width: 1024px) {
  .woocommerce div.product .woocommerce-tabs ul.tabs li {
    display: block;
    margin-bottom: 10px !important;
  }
}

.woocommerce div.product .woocommerce-tabs ul.tabs li:before, .woocommerce div.product .woocommerce-tabs ul.tabs li:after {
  display: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
  background-color: #E38F3D;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
  color: #fff !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  display: block;
  font-size: 16px;
  padding: 15px 30px;
  color: #6A6A6A !important;
  font-weight: 400;
}

.product-fireplace__content {
  margin-bottom: 30px;
}

.product-fireplace h1 {
  font-size: 40px;
  text-transform: uppercase;
  margin-top: 20px !important;
}

.product-fireplace .product_meta {
  display: none;
}

.product-fireplace .rating-wrap {
  margin-bottom: 10px;
}

.product-fireplace .rating-wrap i {
  color: #FFCE00;
}

.product-fireplace .reviews-link {
  margin-left: 10px;
}

.product-fireplace .btn-default {
  margin-right: 10px;
}

.product-fireplace .btn-default img {
  margin: -5px 5px 0 0;
}

.accessory-item {
  margin-bottom: 20px;
}

.accessory-item__img {
  position: relative;
  padding-bottom: 45%;
  margin-bottom: 20px;
}

.accessory-item__img img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.accessory-item h5 {
  margin-bottom: 20px;
}

@media (min-width: 1025px) {
  .installation-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.installation-wrap > div {
  -webkit-box-flex: 50%;
  -ms-flex: 50%;
  flex: 50%;
}

@media (min-width: 1025px) {
  .get-inspired-single .slick-list:before,
  .get-inspired-single .slick-list:after {
    content: '';
    width: 12%;
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    background: -moz-linear-gradient(left, rgba(255, 255, 255, 0.8) 20%, rgba(255, 255, 255, 0) 100%);
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0.8) 20%, rgba(255, 255, 255, 0) 100%);
    background: -webkit-gradient(linear, left top, right top, color-stop(20%, rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0)));
    background: -o-linear-gradient(left, rgba(255, 255, 255, 0.8) 20%, rgba(255, 255, 255, 0) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0.8) 20%, rgba(255, 255, 255, 0) 100%);
  }
  .get-inspired-single .slick-list:after {
    content: '';
    left: auto;
    right: 0;
    background: -moz-linear-gradient(right, rgba(255, 255, 255, 0.8) 20%, rgba(255, 255, 255, 0) 100%);
    background: -webkit-linear-gradient(right, rgba(255, 255, 255, 0.8) 20%, rgba(255, 255, 255, 0) 100%);
    background: -webkit-gradient(linear, right top, right top, color-stop(20%, rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0)));
    background: -o-linear-gradient(right, rgba(255, 255, 255, 0.8) 20%, rgba(255, 255, 255, 0) 100%);
    background: -webkit-gradient(linear, right top, left top, color-stop(20%, rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0)));
    background: linear-gradient(to left, rgba(255, 255, 255, 0.8) 20%, rgba(255, 255, 255, 0) 100%);
  }
}

.get-inspired-single-element {
  position: relative;
  padding-bottom: 65%;
}

.get-inspired-single-element img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.get-inspired-single-element__content {
  height: calc(100%);
  width: calc(100%);
  position: absolute;
  -o-object-fit: cover;
  object-fit: cover;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  background-color: rgba(45, 45, 45, 0.74);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.get-inspired-single-element__content h3, .get-inspired-single-element__content p, .get-inspired-single-element__content i {
  color: #fff;
}

.get-inspired-single-element__content h3 {
  text-transform: none !important;
}

@media (min-width: 1025px) {
  .get-inspired-single-element:hover .get-inspired-single-element__content {
    opacity: 1;
  }
}

.download-items-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.download-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.download-item {
  margin-bottom: 20px;
}

.download-item a {
  color: #C97300 !important;
  font-size: 19px;
  font-weight: 600;
}

.download-item i {
  margin-right: 10px;
}

h3.tab-title {
  margin-bottom: 40px;
  text-align: center;
}

@media only screen and (min-width: 960px) {
  h3.tab-title {
    font-size: 29px !important;
  }
}

.fireplaces-features {
  background: url("../dist/img/fireplaces-features.png") center no-repeat #611900;
  background-size: cover;
  padding: 40px 0;
}

.fireplaces-features h3.tab-title {
  color: #fff;
}

@media (max-width: 1024px) {
  .fireplaces-features__img {
    margin-bottom: 20px;
  }
}

.fireplaces-features-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
}

@media (max-width: 1024px) {
  .fireplaces-features-inner {
    display: block;
  }
}

.fireplaces-features-inner > div {
  -webkit-box-flex: 50%;
  -ms-flex: 50%;
  flex: 50%;
  padding: 0 30px;
}

.fireplaces-specs {
  padding-bottom: 30px;
}

@media (max-width: 1024px) {
  .fireplaces-specs.prod-specs .spec-img-wrapper {
    margin-bottom: 20px !important;
  }
}

.fireplaces-specs.prod-specs .spec-img-wrapper .height p,
.fireplaces-specs.prod-specs .spec-img-wrapper .width p {
  font-size: 14px;
  white-space: nowrap;
}

.fireplaces-specs .prod-specs-table {
  margin-bottom: 50px;
}

.fireplaces-specs .btn-default {
  margin-right: 15px;
  margin-bottom: 20px;
}

.fireplaces-reviews {
  background: url("../dist/img/fireplaces-reviews.jpg") center no-repeat !important;
  background-size: cover;
  padding: 100px 0;
}

.fireplaces-reviews:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.42);
  z-index: 0;
}

.fireplaces-reviews .quote-section {
  position: relative;
}

.fireplaces-reviews .quote-author {
  margin-bottom: 0 !important;
}


#menu-item-1024374 .menu-item-image {
	background-color: transparent;
}

#menu-item-1024382 .sub-menu{
	    grid-template-columns: 1fr 1fr !important;
}

#menu-item-1024515 .ds-image-default{
	width:50%;
}
#menu-item-1024515 > .sub-menu{
	min-width: 500px;
}

#menu-item-1024382 .menu-item-image {
	padding-bottom: 110px !important;
}


@media screen and (min-width: 1200px) {

	#menu-item-1024515 > .sub-menu{
		min-width: 500px;
	}

}

@media screen and (max-width: 1250px) {
	.dsShowcaseSubMenu > li{
		    padding: 0 15px;
	}
}