@charset "UTF-8";
@font-face {
  font-family: "DM Sans";
  src: url("../../fonts/DM_Sans/DMSans-VariableFont_wght.ttf");
}
@font-face {
  font-family: "Baskervville";
  src: url("../../fonts/Baskervville/Baskervville-VariableFont_wght.ttf");
}
* {
  margin: 0;
  padding: 0;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

html {
  scroll-behavior: smooth;
  box-sizing: border-box;
}

body {
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #434852;
  line-height: 150%;
}
body::-webkit-scrollbar {
  width: 0.625rem;
}
body::-webkit-scrollbar-track {
  background-color: #FFF;
}
body::-webkit-scrollbar-thumb {
  border-radius: 3.125rem;
  background-color: #A06F65;
}
body.modal-show {
  overflow: hidden;
}

input, textarea, a, button {
  transition: all 0.2s linear;
}
input:hover, textarea:hover, a:hover, button:hover {
  transition: all 0.2s linear;
}
input:focus, textarea:focus, a:focus, button:focus {
  transition: all 0.2s linear;
  outline: none;
}
input:before, input:after, textarea:before, textarea:after, a:before, a:after, button:before, button:after {
  transition: all 0.2s linear;
}
input:focus-visible, textarea:focus-visible, a:focus-visible, button:focus-visible {
  outline: 1px solid #434852;
}

a {
  color: #6B6B6B;
  text-decoration: none;
}
a:hover {
  color: #6B6B6B;
  text-decoration: none;
  outline: none;
}
a:active {
  outline: none;
}

.big-title {
  font-size: 4rem;
  font-weight: 400;
  line-height: 120%;
}
@media only screen and (max-width: 48rem) {
  .big-title {
    font-size: 2.5rem;
    line-height: 100%;
  }
}

.main-title {
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0.025rem;
}
@media only screen and (max-width: 48rem) {
  .main-title {
    font-size: 2.25rem;
    line-height: 120%;
  }
}

.default-title {
  font-size: 2.25rem;
  font-weight: 500;
  line-height: 150%;
}

.small-title {
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 150%;
}

.extra-small-title {
  font-size: 1.25rem;
  font-weight: 500;
}

.main-container {
  max-width: 84.75rem;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-left: 1.875rem;
  padding-right: 1.875rem;
}
@media only screen and (max-width: 31.25rem) {
  .main-container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

.space-after-header {
  padding-top: 8rem;
}

.default-button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  text-align: center;
  color: #FFF;
  background-color: #C52728;
  border: 0.063rem solid #C52728;
  font-size: 1.5rem;
  line-height: 150%;
  cursor: pointer;
}
.default-button:hover {
  color: #FFF;
  background-color: #B32223;
  border-color: #B32223;
}
.default-button:active {
  background-color: #942021;
  border-color: #942021;
}
.default-button:disabled {
  background-color: #F37677;
  border-color: #F37677;
}
.default-button svg {
  width: 1.5rem;
  height: 1.5rem;
}
.default-button.button-regular {
  font-size: 1rem;
}

.gray-style-button {
  background-color: #535A67;
  border-color: #535A67;
}
.gray-style-button:hover {
  color: #FFF;
  background-color: #3F434B;
  border-color: #3F434B;
}
.gray-style-button:active {
  background-color: #22242A;
  border-color: #22242A;
}
.gray-style-button:disabled {
  background-color: #E4E7E9;
  border-color: #E4E7E9;
}

.transparent-style-button {
  background-color: transparent;
  border-color: #FFF;
}
.transparent-style-button:hover {
  background-color: transparent;
  border-color: #FFF;
}
.transparent-style-button:active {
  background-color: transparent;
  border-color: #FFF;
}
.transparent-style-button:disabled {
  background-color: transparent;
  border-color: #FFF;
}

.small-size-button {
  font-size: 1.125rem;
}

.button-wrapper {
  display: flex;
}

.default-tab {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0.625rem 0.75rem;
  color: #6B6B6B;
  background-color: transparent;
  font-weight: 600;
  transition: all 0.2s linear;
  cursor: pointer;
}
.default-tab.active {
  padding: 0.625rem 1.25rem;
  color: #FFF;
  background-color: #A06F65;
}
.default-tab:hover {
  color: #FFF;
  background-color: #A06F65;
}

.default-tab-content.hidden {
  display: none;
}

.slick-prev::before, .slick-next::before {
  content: none;
}

.common-pagination-outer {
  display: flex;
  justify-content: center;
}

.common-pagination {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.common-pagination .page-number {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 2.938rem;
  height: 3.125rem;
  border: 0.063rem solid #C9C9C9;
  background-color: transparent;
}
.common-pagination .page-number.current {
  background-color: #F2F2F2;
}
.common-pagination .page-number:hover {
  background-color: #F2F2F2;
}
@media only screen and (max-width: 48rem) {
  .common-pagination .page-number {
    width: 2.5rem;
    height: 2.5rem;
  }
}
.common-pagination .page-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 2.938rem;
  height: 2.938rem;
}
.common-pagination .page-nav.disabled {
  opacity: 0.6;
}
@media only screen and (max-width: 48rem) {
  .common-pagination .page-nav {
    width: 2.5rem;
    height: 2.5rem;
  }
}
.common-pagination .page-nav svg {
  width: 2.938rem;
  height: 2.938rem;
}
@media only screen and (max-width: 48rem) {
  .common-pagination .page-nav svg {
    width: 2.5rem;
    height: 2.5rem;
  }
}

.image-overlay-content-wrapper {
  position: relative;
}
.image-overlay-content-wrapper .overlay-content {
  position: relative;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}
.image-overlay-content-wrapper .overlay-content.overlay-content-centered {
  align-items: center;
  justify-content: center;
  text-align: center;
}
.image-overlay-content-wrapper .overlay-content .wysiwyg-styles h2 {
  margin-bottom: 0.75rem;
}
.image-overlay-content-wrapper .overlay-content .wysiwyg-styles p, .image-overlay-content-wrapper .overlay-content .wysiwyg-styles ol, .image-overlay-content-wrapper .overlay-content .wysiwyg-styles ul, .image-overlay-content-wrapper .overlay-content .wysiwyg-styles li {
  color: #FFF;
}
.image-overlay-content-wrapper .overlay-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.image-overlay-content-wrapper .overlay-image .video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.image-overlay-content-wrapper .background-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) -53.09%, rgba(0, 0, 0, 0.72) 100%);
}
.image-overlay-content-wrapper .background-gradient-dark {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(37, 41, 49, 0.8) 0%, rgba(37, 41, 49, 0.8) 100%);
}

.background-gradient-common {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.collapse-filters-sidebar.show {
  overflow: visible;
}

.collapse-filters-sidebar:not(.show) {
  display: none;
}

.product-gallery-thumbnails {
  display: flex;
  gap: 1.5rem;
}
@media only screen and (max-width: 31.25rem) {
  .product-gallery-thumbnails {
    flex-direction: column;
    gap: 1.25rem;
  }
}
.product-gallery-thumbnails .product-gallery-sidebar {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  scrollbar-width: none;
}
@media only screen and (max-width: 31.25rem) {
  .product-gallery-thumbnails .product-gallery-sidebar {
    flex-direction: row;
    overflow-y: hidden;
    overflow-x: auto;
    order: 2;
  }
}
@media only screen and (min-width: 31.313rem) {
  .product-gallery-thumbnails .product-gallery-sidebar {
    height: 21.5rem;
    overflow-y: auto;
    overflow-x: hidden;
  }
}
.product-gallery-thumbnails .product-gallery-sidebar .image-wrapper {
  flex-shrink: 0;
  width: 5.375rem;
  height: 4.813rem;
  cursor: pointer;
}
.product-gallery-thumbnails .product-gallery-sidebar .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-gallery-thumbnails .product-gallery-featured {
  position: relative;
  display: flex;
  flex-direction: column;
  width: calc(100% - 5.375rem - 1.5rem);
  min-height: 21.5rem;
}
@media only screen and (max-width: 31.25rem) {
  .product-gallery-thumbnails .product-gallery-featured {
    width: 100%;
    min-height: unset;
    order: 1;
  }
}
.product-gallery-thumbnails .product-gallery-featured .image-wrapper {
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 31.25rem) {
  .product-gallery-thumbnails .product-gallery-featured .image-wrapper {
    padding-top: 82.6923076923%;
  }
}
.product-gallery-thumbnails .product-gallery-featured .image-wrapper img {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-gallery-thumbnails .product-gallery-featured .image-title-wrapper {
  position: relative;
  margin-top: auto;
  padding-inline: 1rem;
  text-align: center;
  color: #FFF;
  z-index: 3;
}
.product-gallery-thumbnails .product-gallery-featured .image-title-wrapper * {
  font-size: 0.75rem;
}
.product-gallery-thumbnails.has-no-sidebar .product-gallery-featured {
  width: 100%;
}

.custom-scrollbar {
  position: relative;
  display: none;
  height: 0.313rem;
  background-color: #A06F65;
}
.custom-scrollbar .custom-scrollbar-thumb {
  position: relative;
  top: calc(50% - 0.969rem);
  left: 0;
  width: 1.813rem;
  height: 1.813rem;
  text-align: center;
  border-radius: 50%;
  background-color: #A06F65;
  background-image: url("../../svg/arrow-right-small.svg");
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}
.custom-scrollbar .custom-scrollbar-thumb svg {
  width: 0.75rem;
  height: 0.563rem;
}

.navigation-socials {
  display: flex;
  gap: 1.063rem;
}
.navigation-socials a {
  width: 1.5rem;
  height: 1.5rem;
  border: 0.063rem solid #6B6B6B;
  border-radius: 50%;
}
.navigation-socials a:hover svg path {
  stroke: #434852;
}
.navigation-socials a svg {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.2s ease;
}
.navigation-socials a svg path {
  stroke: #6B6B6B;
}

.custom-dots-navigation .slick-dots {
  position: relative;
  bottom: -1.25rem;
  display: flex !important;
  justify-content: space-between;
  list-style-type: none;
}
.custom-dots-navigation .slick-dots li {
  flex: 1;
  margin: 0;
}
.custom-dots-navigation .slick-dots li.slick-active button {
  height: 0.188rem;
  background-color: #C52728;
}
.custom-dots-navigation .slick-dots li button {
  width: 100%;
  height: 0.063rem;
  padding: 0;
  background-color: #A1A1A1;
  border: none;
  cursor: pointer;
}
.custom-dots-navigation .slick-dots li button::before {
  content: none;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 5rem;
  height: 5rem;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  cursor: pointer;
  z-index: 3;
}
.play-button svg {
  width: 100%;
  height: 100%;
}
.play-button.play-button-small {
  width: 3.188rem;
  height: 3.188rem;
}

.js-video {
  cursor: pointer;
}

.common-info-trigger {
  padding: 0;
  border: 0;
  background: none;
  line-height: 0;
  cursor: pointer;
}

.common-info-wrapper {
  position: relative;
}
.common-info-wrapper .common-info-trigger-wrapper {
  position: absolute;
  top: 100%;
  left: 1.5rem;
  width: 21.25rem;
  padding: 0.375rem 0.75rem;
  background-color: #FFF;
  border-radius: 0.25rem;
  font-size: 1rem;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  z-index: 10;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}
.common-info-wrapper .common-info-trigger-wrapper::before {
  content: "";
  position: absolute;
  top: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 0.5rem solid transparent;
  border-right: 0.5rem solid transparent;
  border-bottom: 0.5rem solid #FFF;
  pointer-events: none;
  z-index: 10;
}
.common-info-wrapper .common-info-trigger:hover + .common-info-trigger-wrapper,
.common-info-wrapper .common-info-trigger:focus-visible + .common-info-trigger-wrapper,
.common-info-wrapper .common-info-wrapper:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.required-symbol {
  color: #C52728;
}

.product-dimension-image {
  display: none;
}

.wysiwyg-styles * {
  word-wrap: break-word;
}
.wysiwyg-styles *:first-child {
  margin-top: 0;
}
.wysiwyg-styles *:last-child {
  margin-bottom: 0;
}
.wysiwyg-styles h2 {
  margin-bottom: 1rem;
  color: #434852;
  font-size: 2.25rem;
  font-weight: 500;
  line-height: 150%;
}
.wysiwyg-styles h3 {
  color: #434852;
}
.wysiwyg-styles p, .wysiwyg-styles ol, .wysiwyg-styles ul, .wysiwyg-styles li {
  color: #6B6B6B;
}
.wysiwyg-styles p {
  margin-bottom: 1rem;
}
.wysiwyg-styles a {
  font-weight: 600;
}
.wysiwyg-styles strong {
  font-weight: 600;
}
.wysiwyg-styles.wysiwyg-styles-white h2, .wysiwyg-styles.wysiwyg-styles-white h3, .wysiwyg-styles.wysiwyg-styles-white h4 {
  color: #FFF;
}
.wysiwyg-styles.wysiwyg-styles-white p, .wysiwyg-styles.wysiwyg-styles-white ol, .wysiwyg-styles.wysiwyg-styles-white ul, .wysiwyg-styles.wysiwyg-styles-white li {
  color: #F2F2F2;
}
.wysiwyg-styles.wysiwyg-styles-lg p, .wysiwyg-styles.wysiwyg-styles-lg ol, .wysiwyg-styles.wysiwyg-styles-lg ul, .wysiwyg-styles.wysiwyg-styles-lg li {
  font-size: 1.125rem;
}
.wysiwyg-styles > p:has(img) {
  position: relative;
  margin-bottom: 1.25rem;
}
@media only screen and (max-width: 48rem) {
  .wysiwyg-styles > p:has(img) {
    margin-bottom: 1rem;
  }
}
.wysiwyg-styles > p img {
  position: relative;
  max-width: 100%;
  width: auto;
  height: auto;
  margin-bottom: 1.25rem !important;
  object-fit: contain;
  overflow: hidden;
}
.wysiwyg-styles > p img:last-child {
  margin-bottom: 0 !important;
}

body.body-with-admin-bar .header-wrapper {
  top: 32px;
}
@media only screen and (max-width: 782px) {
  body.body-with-admin-bar .header-wrapper {
    top: 46px;
  }
}
body.body-with-admin-bar .header-wrapper.fixed {
  top: 32px;
}
@media only screen and (max-width: 782px) {
  body.body-with-admin-bar .header-wrapper.fixed {
    top: 46px;
  }
}

.header-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(0.625rem);
  z-index: 999;
}
.header-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background-color: rgba(201, 201, 201, 0.15);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.header-wrapper.is-scrolled::after {
  opacity: 1;
}
.header-wrapper .header-wrapper-inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-block: 1rem;
}
.header-wrapper .header-wrapper-inner::after {
  content: "";
  position: absolute;
  left: 1.875rem;
  right: 1.875rem;
  bottom: 0;
  border-bottom: 0.063rem solid #D7D7D7;
}
.header-wrapper .header-wrapper-inner .header-logo-wrapper a {
  display: flex;
  height: 100%;
}
.header-wrapper .header-wrapper-inner .header-logo-wrapper a svg {
  max-width: 4.5rem;
  max-height: 3.938rem;
  width: auto;
  height: auto;
  object-fit: contain;
}
.header-wrapper .header-wrapper-inner .header-logo-wrapper a svg path {
  transition: all 0.2s linear;
}
.header-wrapper .header-wrapper-inner .header-logo-wrapper a:hover svg path:last-child {
  fill: #C52728;
}
.header-wrapper .header-wrapper-inner .header-menu-wrapper {
  margin-left: auto;
  margin-right: 1rem;
}
@media only screen and (max-width: 1200px) {
  .header-wrapper .header-wrapper-inner .header-menu-wrapper {
    display: none;
  }
}
.header-wrapper .header-wrapper-inner .header-menu-wrapper ul {
  position: relative;
  display: flex;
}
.header-wrapper .header-wrapper-inner .header-menu-wrapper ul li {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  cursor: pointer;
}
.header-wrapper .header-wrapper-inner .header-menu-wrapper ul li.menu-item-has-children-custom a {
  padding: 1.438rem 1.313rem;
}
@media only screen and (max-width: 1100px) {
  .header-wrapper .header-wrapper-inner .header-menu-wrapper ul li.menu-item-has-children-custom a {
    padding: 1.438rem 1rem;
  }
}
.header-wrapper .header-wrapper-inner .header-menu-wrapper ul li.menu-item-has-children-custom a span {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.header-wrapper .header-wrapper-inner .header-menu-wrapper ul li.menu-item-has-children > a .menu-link-text {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.header-wrapper .header-wrapper-inner .header-menu-wrapper ul li.menu-item-has-children > a .menu-link-text svg {
  width: 1.5rem;
  height: 1.5rem;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.header-wrapper .header-wrapper-inner .header-menu-wrapper ul li.menu-item-has-children.open > .sub-menu {
  visibility: visible;
  opacity: 1;
}
.header-wrapper .header-wrapper-inner .header-menu-wrapper ul li .sub-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  width: 15.625rem;
  padding: 1rem;
  background-color: #FFF;
  border-radius: 0.313rem;
  box-shadow: 0 0.25rem 0.625rem 0 rgba(0, 0, 0, 0.15);
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.2s linear, visibility 0.2s linear;
  z-index: 7;
}
.header-wrapper .header-wrapper-inner .header-menu-wrapper ul li .sub-menu li {
  justify-content: start;
  width: 100%;
  padding: 0;
}
.header-wrapper .header-wrapper-inner .header-menu-wrapper ul li .sub-menu li a {
  padding: 0.5rem 0.5rem;
  border-left: 0;
  border-right: 0;
}
.header-wrapper .header-wrapper-inner .header-menu-wrapper ul li .sub-menu li:last-child a {
  border-right: 0;
}
.header-wrapper .header-wrapper-inner .header-menu-wrapper ul li.open > .sub-menu {
  visibility: visible;
  opacity: 1;
}
.header-wrapper .header-wrapper-inner .header-menu-wrapper ul li a {
  position: relative;
  padding: 1.438rem 1.15rem;
  font-size: 1.25rem;
  font-weight: 500;
  border-left: 0.063rem solid #D7D7D7;
}
@media only screen and (max-width: 1100px) {
  .header-wrapper .header-wrapper-inner .header-menu-wrapper ul li a {
    padding: 1.438rem 1.313rem;
  }
}
.header-wrapper .header-wrapper-inner .header-menu-wrapper ul li a span {
  position: relative;
}
.header-wrapper .header-wrapper-inner .header-menu-wrapper ul li a span::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 0;
  bottom: -0.313rem;
  width: 100%;
  height: 0.125rem;
  background: #434852;
  border-radius: 0.125rem;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.header-wrapper .header-wrapper-inner .header-menu-wrapper ul li a span:hover::after {
  opacity: 1;
}
.header-wrapper .header-wrapper-inner .header-menu-wrapper ul li a:hover {
  color: #434852;
}
.header-wrapper .header-wrapper-inner .header-menu-wrapper ul li:last-child a {
  border-right: 0.063rem solid #D7D7D7;
}
.header-wrapper .header-wrapper-inner .mobile-menu-opener {
  display: none;
}
@media only screen and (max-width: 1200px) {
  .header-wrapper .header-wrapper-inner .mobile-menu-opener {
    display: block;
  }
}
.header-wrapper .header-wrapper-inner .mobile-menu-opener svg {
  width: 2rem;
  height: 2rem;
  cursor: pointer;
}
.header-wrapper .header-catalog-wrapper-outer[hidden] {
  display: none;
}
.header-wrapper .header-catalog-wrapper-outer {
  width: 100%;
  padding-bottom: 1rem;
}
.header-wrapper .header-catalog-wrapper-outer.active {
  display: block;
}
@media only screen and (max-width: 1200px) {
  .header-wrapper .header-catalog-wrapper-outer {
    display: none !important;
  }
}
.header-wrapper .header-catalog-wrapper {
  display: flex;
  justify-content: center;
}
.header-wrapper .header-catalog-wrapper .single-catalog-item {
  padding-inline: 1.313rem;
  padding-bottom: 0.625rem;
  text-align: center;
  border-left: 0.063rem solid #D7D7D7;
}
.header-wrapper .header-catalog-wrapper .single-catalog-item:last-child {
  border-right: 0.063rem solid #D7D7D7;
}
.header-wrapper .header-catalog-wrapper .single-catalog-item.single-catalog-item-highlighted .title-wrapper span {
  color: #C52728;
}
.header-wrapper .header-catalog-wrapper .single-catalog-item.single-catalog-item-highlighted.active .title-wrapper span {
  color: #C52728;
}
.header-wrapper .header-catalog-wrapper .single-catalog-item.has-pdf {
  padding-inline: 1rem;
}
.header-wrapper .header-catalog-wrapper .single-catalog-item.has-pdf .single-catalog-item-inner:hover svg path {
  stroke: #434852;
}
.header-wrapper .header-catalog-wrapper .single-catalog-item.active span {
  color: #434852;
  border-bottom: 0.063rem solid #434852;
}
.header-wrapper .header-catalog-wrapper .single-catalog-item.disabled .image-wrapper {
  opacity: 0.3;
}
.header-wrapper .header-catalog-wrapper .single-catalog-item.disabled span {
  color: #A3A3A3;
}
@media only screen and (max-width: 85.438rem) {
  .header-wrapper .header-catalog-wrapper .single-catalog-item {
    padding-inline: 1rem;
  }
}
.header-wrapper .header-catalog-wrapper .single-catalog-item .image-wrapper img {
  width: 6.25rem;
  height: 6.25rem;
  margin: 0 auto;
  object-fit: contain;
  transition: filter 0.2s linear;
}
@media only screen and (max-width: 85.438rem) {
  .header-wrapper .header-catalog-wrapper .single-catalog-item .image-wrapper img {
    width: 5.313rem;
    height: 5.313rem;
  }
}
.header-wrapper .header-catalog-wrapper .single-catalog-item .title-wrapper {
  padding-bottom: 0.625rem;
}
.header-wrapper .header-catalog-wrapper .single-catalog-item .title-wrapper.has-pdf {
  display: inline-flex;
  gap: 0.25rem;
  align-items: center;
}
.header-wrapper .header-catalog-wrapper .single-catalog-item .title-wrapper.has-pdf span {
  width: calc(100% - 1.125rem - 0.25rem);
  white-space: nowrap;
}
.header-wrapper .header-catalog-wrapper .single-catalog-item .title-wrapper.has-pdf svg {
  width: 1.125rem;
  height: 1.125rem;
}
.header-wrapper .header-catalog-wrapper .single-catalog-item .title-wrapper.has-pdf svg path {
  transition: all 0.2s linear;
}
.header-wrapper .header-catalog-wrapper .single-catalog-item .title-wrapper span {
  color: #6B6B6B;
  transition: color 0.2s linear;
}
.header-wrapper .header-catalog-wrapper .single-catalog-item .single-catalog-item-inner:hover .image-wrapper img {
  filter: drop-shadow(0 0.25rem 0.375rem rgba(67, 72, 82, 0.3));
}
.header-wrapper .header-catalog-wrapper .single-catalog-item .single-catalog-item-inner:hover span {
  color: #434852;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  padding: 2rem 1.875rem 1rem 2.5rem;
  background-color: #FFF;
  transform: translateX(100%);
  overflow-y: auto;
  z-index: 999;
  transition: 0.2s all linear;
}
.mobile-menu .mobile-menu-close-wrapper {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 2rem;
  padding-top: 2rem;
}
@media only screen and (max-width: 48rem) {
  .mobile-menu .mobile-menu-close-wrapper {
    margin-bottom: 1rem;
  }
}
.mobile-menu .mobile-menu-close-wrapper .mobile-menu-closer svg {
  width: 1.75rem;
  height: 1.75rem;
  cursor: pointer;
}
.mobile-menu .header-menu {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2rem;
}
.mobile-menu .header-menu li {
  list-style: none;
}
.mobile-menu .header-menu li.menu-item-has-children-custom a {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
}
.mobile-menu .header-menu li.single-catalog-item-highlighted a {
  color: #C52728;
}
.mobile-menu .header-menu li a {
  position: relative;
}
.mobile-menu .header-menu li a::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 0;
  bottom: -0.313rem;
  width: 100%;
  height: 0.125rem;
  background: currentColor;
  border-radius: 0.125rem;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.mobile-menu .header-menu li a:hover {
  color: #434852;
}
.mobile-menu .header-menu li a:hover::after {
  opacity: 1;
}
.mobile-menu .header-menu li .sub-menu {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  margin-left: 1rem;
  padding-top: 0.75rem;
}

.header-socials {
  margin-right: 1rem;
}
.header-socials.header-socials-desktop {
  display: flex;
}
@media only screen and (min-width: 1201px) and (max-width: 1300px) {
  .header-socials.header-socials-desktop {
    flex-direction: column;
    gap: 0.5rem;
  }
}
@media only screen and (max-width: 48rem) {
  .header-socials.header-socials-desktop {
    display: none;
  }
}
.header-socials.header-socials-mobile {
  display: none;
}
@media only screen and (max-width: 48rem) {
  .header-socials.header-socials-mobile {
    display: flex;
  }
}
@media only screen and (max-width: 1200px) {
  .header-socials {
    margin-left: auto;
    margin-right: 0;
  }
}

@media only screen and (max-width: 48rem) {
  .header-cart-wrapper {
    margin-left: auto;
  }
}
.header-cart-wrapper.cart-page-active .cart-link .icon-default {
  opacity: 0;
}
.header-cart-wrapper.cart-page-active .cart-link .icon-active {
  opacity: 1;
}
.header-cart-wrapper.cart-page-active .cart-status.non-empty-cart {
  border: 0.063rem solid #D7D7D7;
  background-color: #FFF;
}
.header-cart-wrapper .cart-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 500;
}
.header-cart-wrapper .cart-link .icon-wrapper {
  position: relative;
  width: 1.5rem;
  height: 1.5rem;
  flex: 0 0 1.5rem;
}
.header-cart-wrapper .cart-link .icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.18s ease;
}
.header-cart-wrapper .cart-link .icon svg {
  display: block;
  width: 100%;
  height: 100%;
}
.header-cart-wrapper .cart-link .icon-default {
  opacity: 1;
}
.header-cart-wrapper .cart-link:hover {
  color: #434852;
}
.header-cart-wrapper .cart-link:hover .icon-default, .header-cart-wrapper .cart-link:focus-visible .icon-default {
  opacity: 0;
}
.header-cart-wrapper .cart-link:hover .icon-active, .header-cart-wrapper .cart-link:focus-visible .icon-active {
  opacity: 1;
}
.header-cart-wrapper .cart-status.non-empty-cart {
  position: absolute;
  top: 0;
  right: 0;
  width: 0.375rem;
  height: 0.375rem;
  background-color: #C52728;
  border-radius: 50%;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-active {
  overflow-y: hidden;
}

.footer-wrapper {
  position: relative;
  width: 100%;
  background-color: #FFF;
}
.footer-wrapper .footer-top-wrapper {
  display: flex;
  gap: 2rem;
  padding-top: 3rem;
  padding-bottom: 2rem;
}
@media only screen and (max-width: 85.438rem) {
  .footer-wrapper .footer-top-wrapper {
    flex-wrap: wrap;
    padding-top: 2rem;
  }
}
@media only screen and (min-width: 501px) and (max-width: 48rem) {
  .footer-wrapper .footer-top-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
.footer-wrapper .footer-top-wrapper .logo-wrapper {
  margin-right: 2rem;
}
@media only screen and (max-width: 85.438rem) {
  .footer-wrapper .footer-top-wrapper .logo-wrapper {
    width: 100%;
    grid-column: 1/-1;
    margin-right: 0;
  }
}
.footer-wrapper .footer-top-wrapper .logo-wrapper a {
  display: flex;
  height: 100%;
}
.footer-wrapper .footer-top-wrapper .logo-wrapper a img {
  max-width: 5.125rem;
  max-height: 4.5rem;
  width: 100%;
  height: 100%;
}
.footer-wrapper .footer-top-wrapper .logo-wrapper a svg {
  max-width: 5.125rem;
  max-height: 4.5rem;
}
.footer-wrapper .footer-top-wrapper .logo-wrapper a svg path {
  transition: all 0.2s linear;
}
.footer-wrapper .footer-top-wrapper .logo-wrapper a:hover svg path:last-child {
  fill: #C52728;
}
@media only screen and (max-width: 31.25rem) {
  .footer-wrapper .footer-top-wrapper .footer-col-menu {
    width: 100%;
  }
}
.footer-wrapper .footer-top-wrapper .footer-col-contacts {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 1.5rem;
}
@media only screen and (max-width: 31.25rem) {
  .footer-wrapper .footer-top-wrapper .footer-col-contacts {
    gap: 1rem;
  }
}
.footer-wrapper .footer-top-wrapper .footer-col-contacts .footer-col-contacts-items {
  display: flex;
  gap: 0.375rem;
}
.footer-wrapper .footer-top-wrapper .footer-col-contacts .footer-col-contacts-items * {
  color: #434852;
  font-weight: 400;
}
.footer-wrapper .footer-top-wrapper .footer-col ul {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 1.5rem;
}
@media only screen and (max-width: 48rem) {
  .footer-wrapper .footer-top-wrapper .footer-col ul {
    gap: 1rem;
  }
}
.footer-wrapper .footer-top-wrapper .footer-col ul li {
  list-style: none;
}
.footer-wrapper .footer-top-wrapper .footer-col ul li a {
  position: relative;
  color: #434852;
}
.footer-wrapper .footer-top-wrapper .footer-col ul li a::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 0;
  bottom: -0.313rem;
  width: 100%;
  height: 0.125rem;
  background: #434852;
  border-radius: 0.125rem;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.footer-wrapper .footer-top-wrapper .footer-col ul li a:hover::after {
  opacity: 1;
}
.footer-wrapper .footer-top-wrapper .footer-col-menu-left {
  margin-left: auto;
}
@media only screen and (max-width: 48rem) {
  .footer-wrapper .footer-top-wrapper .footer-col-menu-left {
    margin-left: 0;
  }
}
.footer-wrapper .footer-top-wrapper .footer-col-menu-left ul {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(4, auto);
  column-gap: clamp(2.5rem, 8vw, 9.375rem);
  row-gap: 1.5rem;
  margin: 0;
  padding: 0;
}
@media only screen and (max-width: 64rem) {
  .footer-wrapper .footer-top-wrapper .footer-col-menu-left ul {
    display: flex;
    flex-direction: column;
    grid-auto-flow: unset;
    grid-template-rows: none;
    column-gap: 0;
  }
}
@media only screen and (max-width: 48rem) {
  .footer-wrapper .footer-top-wrapper .footer-col-menu-left ul {
    row-gap: 1rem;
  }
}
.footer-wrapper .footer-top-wrapper .footer-col-menu-right {
  margin-left: auto;
}
@media only screen and (max-width: 48rem) {
  .footer-wrapper .footer-top-wrapper .footer-col-menu-right {
    margin-left: 0;
  }
}
.footer-wrapper .footer-bottom-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  padding-top: 2.5rem;
  padding-bottom: 2rem;
}
@media only screen and (max-width: 64rem) {
  .footer-wrapper .footer-bottom-wrapper {
    padding-top: 2rem;
  }
}
@media only screen and (max-width: 31.25rem) {
  .footer-wrapper .footer-bottom-wrapper {
    gap: 1.25rem;
  }
}
.footer-wrapper .footer-bottom-wrapper * {
  color: #6B6B6B;
}
.footer-wrapper .footer-bottom-wrapper .copyright {
  margin-left: auto;
}
@media only screen and (max-width: 64rem) {
  .footer-wrapper .footer-bottom-wrapper .copyright {
    order: 3;
    width: 100%;
  }
}
.footer-wrapper .footer-bottom-wrapper .footer-bottom-menu {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}
@media only screen and (max-width: 31.25rem) {
  .footer-wrapper .footer-bottom-wrapper .footer-bottom-menu {
    gap: 1.25rem;
  }
}
.footer-wrapper .footer-bottom-wrapper .footer-bottom-menu li {
  list-style: none;
}
.footer-wrapper .footer-bottom-wrapper .footer-bottom-menu li a {
  position: relative;
  color: #6B6B6B;
}
.footer-wrapper .footer-bottom-wrapper .footer-bottom-menu li a::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 0;
  bottom: -0.313rem;
  width: 100%;
  height: 0.125rem;
  background: #6B6B6B;
  border-radius: 0.125rem;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.footer-wrapper .footer-bottom-wrapper .footer-bottom-menu li a:hover::after {
  opacity: 1;
}
.footer-wrapper .footer-bottom-wrapper .footer-developers {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
@media only screen and (max-width: 31.25rem) {
  .footer-wrapper .footer-bottom-wrapper .footer-developers {
    width: 100%;
    order: 2;
  }
}
.footer-wrapper .footer-bottom-wrapper .footer-developers img {
  max-width: 15.188rem;
  max-height: 1.5rem;
  width: 100%;
  height: 100%;
}
.footer-wrapper .footer-border-separator {
  width: 100%;
  border-bottom: 0.063rem solid #D7D7D7;
}
.footer-wrapper .footer-socials {
  margin-left: auto;
}
@media only screen and (max-width: 31.25rem) {
  .footer-wrapper .footer-socials {
    width: 100%;
    order: 1;
  }
}

.pavement-shapes-slider-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: nowrap;
  padding-bottom: 0.938rem;
}
@media only screen and (max-width: 64rem) {
  .pavement-shapes-slider-wrapper {
    gap: 0.5rem;
  }
}
.pavement-shapes-slider-wrapper .slick-arrow-custom {
  position: relative;
  top: 0;
  transform: none;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 0 0 6.313rem;
  width: 6.313rem;
  height: 6.313rem;
}
@media only screen and (max-width: 64rem) {
  .pavement-shapes-slider-wrapper .slick-arrow-custom {
    flex: 0 0 5rem;
    width: 5rem;
  }
}
@media only screen and (max-width: 48rem) {
  .pavement-shapes-slider-wrapper .slick-arrow-custom {
    flex: 0 0 3rem;
    width: 3rem;
  }
}
.pavement-shapes-slider-wrapper .slick-arrow-custom .slick-arrow-img {
  width: 4rem;
  height: 4rem;
}
@media only screen and (max-width: 48rem) {
  .pavement-shapes-slider-wrapper .slick-arrow-custom .slick-arrow-img {
    width: 3rem;
    height: 3rem;
  }
}
.pavement-shapes-slider-wrapper .slick-prev {
  left: auto;
}
.pavement-shapes-slider-wrapper .slick-next {
  right: auto;
}
.pavement-shapes-slider-wrapper .slick-slide {
  position: relative;
}
.pavement-shapes-slider-wrapper .slick-slide + .slick-slide::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  border-left: 0.063rem solid #C9C9C9;
}
.pavement-shapes-slider-wrapper .js-pavement-shapes-slider {
  opacity: 0;
  visibility: hidden;
}
.pavement-shapes-slider-wrapper .js-pavement-shapes-slider.slick-initialized {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.2s ease;
}
.pavement-shapes-slider-wrapper .pavement-shapes-slider {
  flex: 1 1 0;
  min-width: 0;
  border-left: 0.063rem solid #C9C9C9;
  border-right: 0.063rem solid #C9C9C9;
  overflow: hidden;
}
.pavement-shapes-slider-wrapper .pavement-shapes-slider .single-pavement-shape {
  padding-inline: clamp(0.5rem, 1.8vw, 1rem);
  padding-bottom: 0.625rem;
  text-align: center;
}
.pavement-shapes-slider-wrapper .pavement-shapes-slider .single-pavement-shape .image-wrapper {
  width: 6rem;
  height: 6rem;
  margin: 0 auto;
}
@media only screen and (max-width: 48rem) {
  .pavement-shapes-slider-wrapper .pavement-shapes-slider .single-pavement-shape .image-wrapper {
    width: 5.625rem;
    height: 5.625rem;
  }
}
.pavement-shapes-slider-wrapper .pavement-shapes-slider .single-pavement-shape .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: filter 0.2s linear;
}
.pavement-shapes-slider-wrapper .pavement-shapes-slider .single-pavement-shape span {
  position: relative;
  display: inline-block;
  color: #6B6B6B;
  line-height: 1.5rem;
}
.pavement-shapes-slider-wrapper .pavement-shapes-slider .single-pavement-shape span::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.313rem;
  width: 0;
  height: 0.063rem;
  transform: translateX(-50%);
  background: #434852;
  transition: width 0.18s ease;
}
.pavement-shapes-slider-wrapper .pavement-shapes-slider .single-pavement-shape .single-pavement-shape-inner {
  cursor: pointer;
}
.pavement-shapes-slider-wrapper .pavement-shapes-slider .single-pavement-shape .single-pavement-shape-inner:hover .image-wrapper img {
  filter: drop-shadow(0 0.25rem 0.375rem rgba(67, 72, 82, 0.3));
}
.pavement-shapes-slider-wrapper .pavement-shapes-slider .single-pavement-shape .single-pavement-shape-inner:hover span {
  color: #434852;
}
.pavement-shapes-slider-wrapper .pavement-shapes-slider .single-pavement-shape .single-pavement-shape-inner.is-selected .image-wrapper img {
  filter: drop-shadow(0 0.25rem 0.375rem rgba(67, 72, 82, 0.3));
}
.pavement-shapes-slider-wrapper .pavement-shapes-slider .single-pavement-shape .single-pavement-shape-inner.is-selected span::after {
  width: 100%;
}
.pavement-shapes-slider-wrapper .pavement-shapes-slider .single-pavement-shape .single-pavement-shape-inner.is-selected span {
  color: #434852;
}

.pavement-shapes-progress-track {
  position: relative;
  width: 100%;
  height: 0.188rem;
  margin-bottom: 1.5rem;
  background-color: #A1A1A1;
  overflow: hidden;
  cursor: pointer;
}
.pavement-shapes-progress-track:active {
  cursor: grabbing;
}
.pavement-shapes-progress-track .pavement-shapes-progress-bar {
  width: 5%;
  height: 0.188rem;
  background-color: #C52728;
  transition: width 0.2s ease;
  will-change: width;
}

.single-item-card {
  background-color: #FFF;
  box-shadow: 0.125rem 0.125rem 2.188rem 0 rgba(0, 0, 0, 0.07);
}
.single-item-card:hover .item-image-wrapper.has-hover-image .img-default {
  opacity: 0;
  transform: scale(1.05);
}
.single-item-card:hover .item-image-wrapper.has-hover-image .img-hover-wrapper {
  opacity: 1;
}
.single-item-card:hover .item-image-wrapper.has-hover-image .img-hover-wrapper .img-hover {
  transform: scale(1.05);
}
.single-item-card:hover .item-image-wrapper:not(.has-hover-image).is-3d-main .img-default {
  transform: scale(1.1);
}
.single-item-card:hover .item-content .item-view {
  color: #434852;
  border-bottom: 0.063rem solid #434852;
}
.single-item-card .item-image-wrapper {
  position: relative;
  margin-bottom: 1rem;
  padding-top: 89.5424836601%;
  overflow: hidden;
  transition: opacity 0.2s ease;
  will-change: opacity;
}
.single-item-card .item-image-wrapper img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #FFF;
  transition: opacity 0.2s ease, transform 0.2s ease;
  will-change: opacity, transform;
}
.single-item-card .item-image-wrapper .img-default {
  opacity: 1;
  transform: scale(1);
  object-fit: cover;
}
.single-item-card .item-image-wrapper.is-3d-main .img-default {
  max-width: calc(100% - 1rem);
  margin: 0 auto;
  object-fit: contain;
}
.single-item-card .item-image-wrapper .img-hover-wrapper {
  opacity: 0;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: #FFF;
  transition: opacity 0.2s ease;
  will-change: opacity;
}
.single-item-card .item-image-wrapper .img-hover {
  position: relative;
  transform: scale(1);
  max-width: calc(100% - 1rem);
  margin: 0 auto;
  object-fit: contain;
}
.single-item-card .item-image-wrapper .tag {
  position: absolute;
  top: 0.688rem;
  left: -2.125rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0.625rem 2.125rem;
  transform: rotate(-45deg);
}
.single-item-card .item-image-wrapper .tag.tag-top-item {
  color: #FFF;
  background-color: #C52728;
}
.single-item-card .item-image-wrapper .tag.tag-new-item {
  color: #434852;
  background-color: #F2C718;
}
.single-item-card .item-content {
  padding: 0 0.5rem 1rem 0.5rem;
  text-align: center;
}
.single-item-card .item-content .item-title {
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  text-transform: capitalize;
}
.single-item-card .item-content .item-size-label {
  margin-bottom: 1rem;
  font-size: 0.875rem;
  line-height: 1rem;
}
.single-item-card .item-content .item-view {
  color: #6B6B6B;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.313rem;
  text-transform: uppercase;
  border-bottom: 0.063rem solid #6B6B6B;
}

@media (prefers-reduced-motion: reduce) {
  .single-item-card .item-image-wrapper img {
    transition: none;
  }
}
.form-group {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0;
}
.form-group * {
  font-family: "DM Sans", sans-serif;
}
.form-group .single-input {
  position: relative;
  margin-bottom: 1.5rem;
}
.form-group .single-input.margin-bottom-0 {
  margin-bottom: 0;
}
.form-group .single-input.single-input-full-width {
  width: 100%;
}
.form-group .single-input.warning-validation input {
  border-color: #C52728;
}
.form-group .single-input.warning-validation textarea {
  border-color: #C52728;
}
@media only screen and (max-width: 31.25rem) {
  .form-group .single-input {
    margin-bottom: 1rem;
  }
}
.form-group .single-input label {
  display: inline-block;
  margin-bottom: 0.625rem;
}
.form-group .single-input label span {
  margin-left: 0.375rem;
  color: #C52728;
}
.form-group .single-input input {
  width: 100%;
  padding: 0.438rem 0.75rem;
  color: #6B6B6B;
  background-color: #FFF;
  border: 0.063rem solid #C9C9C9;
  font-size: 1.25rem;
  outline: none;
}
.form-group .single-input input::placeholder {
  color: #6B6B6B;
  font-size: 1.25rem;
}
.form-group .single-input input:focus {
  border-color: #434852;
}
.form-group .single-input input:disabled {
  color: #C9C9C9;
}
@media only screen and (max-width: 48rem) {
  .form-group .single-input input {
    font-size: 1rem;
  }
  .form-group .single-input input::placeholder {
    font-size: 1rem;
  }
}
.form-group .single-input textarea {
  width: 100%;
  min-height: 7.5rem;
  padding: 0.438rem 0.75rem;
  color: #6B6B6B;
  background-color: #FFF;
  border: 0.063rem solid #C9C9C9;
  font-size: 1.25rem;
  outline: none;
  resize: none;
}
.form-group .single-input textarea::placeholder {
  color: #6B6B6B;
  font-size: 1.25rem;
}
.form-group .single-input textarea:focus {
  border-color: #434852;
}
.form-group .single-input textarea:disabled {
  color: #C9C9C9;
}
.form-group .single-input textarea::-webkit-scrollbar {
  width: 0.25rem;
}
.form-group .single-input textarea::-webkit-scrollbar-track {
  background-color: #FFF;
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}
.form-group .single-input textarea::-webkit-scrollbar-thumb {
  border-radius: 0.313rem;
  border: 0.063rem solid #A06F65;
  background-color: #A06F65;
}
@media only screen and (max-width: 48rem) {
  .form-group .single-input textarea {
    font-size: 1rem;
  }
  .form-group .single-input textarea::placeholder {
    font-size: 1rem;
  }
}
.form-group .single-input .form-message {
  color: #C52728;
  font-size: 0.875rem;
  font-weight: 500;
}
.form-group .single-input .form-message.hidden {
  display: none;
}

.form-button-row {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}
@media only screen and (max-width: 48rem) {
  .form-button-row {
    flex-wrap: wrap;
  }
}
.form-button-row .privacy-wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.form-button-row .privacy-wrapper .checkbox-single {
  width: 100%;
  margin-bottom: 0;
}
.form-button-row .privacy-wrapper .checkbox-title a:hover {
  color: #C52728;
}
.form-button-row .privacy-wrapper .form-message {
  color: #C52728;
  font-size: 0.875rem;
  font-weight: 500;
}
.form-button-row .privacy-wrapper .form-message.hidden {
  display: none;
}
.form-button-row .button-wrapper {
  position: relative;
  height: fit-content;
}
.form-button-row .button-wrapper .default-button {
  white-space: nowrap;
}
@media only screen and (max-width: 48rem) {
  .form-button-row .button-wrapper .default-button {
    white-space: normal;
  }
}

.global-form-message {
  margin-bottom: 0.625rem;
  color: #C52728;
  font-size: 0.875rem;
  font-weight: 500;
}
.global-form-message.hidden {
  display: none;
}

.checkbox-single {
  margin: 0 0 0.938rem;
  font-size: 0;
  line-height: normal;
}
.checkbox-single.warning-validation .checkbox-back {
  border-color: #C52728 !important;
}
.checkbox-single input {
  position: absolute;
  left: -9999px;
}
.checkbox-single input:checked ~ .checkbox-label .checkbox-back .checkbox-mark {
  opacity: 1;
}
.checkbox-single .checkbox-label {
  display: inline-flex;
  margin: 0;
}
.checkbox-single .checkbox-label .checkbox-custom-wrapper {
  display: flex;
  justify-content: center;
}
.checkbox-single .checkbox-title {
  display: flex;
  align-items: center;
  font-size: 0.75rem;
  line-height: 1rem;
  cursor: pointer;
}
.checkbox-single .checkbox-title a {
  position: relative;
  color: #434852;
  text-decoration: none;
}
.checkbox-single .checkbox-back {
  position: relative;
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.5rem;
  border: 0.063rem solid #A3A3A3;
  border-radius: 0.125rem;
  background-color: #FFF;
  transition: all 0.2s linear;
  cursor: pointer;
}
.checkbox-single .checkbox-back:hover {
  border: 0.063rem solid #6B6B6B;
  background-color: #F2F2F2;
}
.checkbox-single .checkbox-back .checkbox-mark {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  opacity: 0;
  background-color: transparent;
  transition: all 0.1s linear;
}
.checkbox-single .checkbox-back .checkbox-mark img {
  width: 0.75rem;
}

.input-radio input {
  position: absolute;
  opacity: 0;
  visibility: hidden;
}
.input-radio input:checked + label::after {
  visibility: visible;
}
.input-radio label {
  position: relative;
  display: block;
  padding-left: 1.75rem;
  font-size: 0.75rem;
}
.input-radio label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  transform: translateY(-50%);
  border: 0.063rem solid #A3A3A3;
  border-radius: 50%;
  background-color: #FFF;
  z-index: 0;
}
.input-radio label::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  display: inline-block;
  width: 0.625rem;
  height: 0.625rem;
  transform: translate(50%, -50%);
  background-color: #C52728;
  border-radius: 50%;
  z-index: 1;
  visibility: hidden;
}
.input-radio input + label:hover::before {
  border-color: #6B6B6B;
  background-color: #F2F2F2;
}

.common-select-style-button {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  width: 100%;
  padding: 0.625rem 2.938rem 0.625rem 0.813rem;
  background-color: transparent;
  line-height: normal;
  box-shadow: none;
  transition: all 0.2s linear;
  border: 0.063rem solid #C9C9C9;
  border-radius: 0;
  background-image: url("../../svg/arrow-down.svg");
  background-repeat: no-repeat;
  background-position: calc(100% - 1rem) 50%;
  background-size: 1.5rem 1.5rem;
  cursor: pointer;
}

.cart-area-input-wrapper {
  width: 6.875rem;
}

.form-group .single-input-area input {
  padding-right: 2.313rem;
  /* Chrome, Safari, Edge, Opera */
}
.form-group .single-input-area input::-webkit-outer-spin-button, .form-group .single-input-area input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.form-group .single-input-area input {
  /* Firefox */
}
.form-group .single-input-area input[type=number] {
  -moz-appearance: textfield;
}
.form-group .single-input-area::after {
  content: "m²";
  position: absolute;
  top: 50%;
  right: 0.75rem;
  transform: translateY(-50%);
  font-size: 1.25rem;
  color: #6B6B6B;
  pointer-events: none;
}
.form-group .single-input-quantity input {
  padding-right: 3rem;
  /* Chrome, Safari, Edge, Opera */
}
.form-group .single-input-quantity input::-webkit-outer-spin-button, .form-group .single-input-quantity input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.form-group .single-input-quantity input {
  /* Firefox */
}
.form-group .single-input-quantity input[type=number] {
  -moz-appearance: textfield;
}
.form-group .single-input-quantity::after {
  content: "gab";
  position: absolute;
  top: 50%;
  right: 0.75rem;
  transform: translateY(-50%);
  font-size: 1.25rem;
  color: #6B6B6B;
  pointer-events: none;
}

.search-form {
  display: flex;
  background-color: #FFF;
  border: 0.063rem solid #D7D7D7;
}
.search-form * {
  color: #6B6B6B;
  font-size: 0.875rem;
}
.search-form .single-input {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}
.search-form input {
  width: 100%;
  padding: 0.375rem 1.625rem 0.375rem 0.375rem;
  border: 0;
}
.search-form button {
  border: 0;
  cursor: pointer;
}
.search-form button svg {
  position: absolute;
  top: 0.375rem;
  right: 0.375rem;
  width: 1rem;
  height: 1rem;
}

.contact-section {
  padding-top: 3rem;
  padding-bottom: 6rem;
}
@media only screen and (max-width: 64rem) {
  .contact-section {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
.contact-section .contact-section-inner {
  padding: 4rem 3.125rem;
  background-color: #F2F2F2;
}
@media only screen and (max-width: 48rem) {
  .contact-section .contact-section-inner {
    padding: 1.5rem 1.875rem;
  }
}
@media only screen and (max-width: 31.25rem) {
  .contact-section .contact-section-inner {
    padding: 1.25rem;
  }
}
.contact-section .contact-section-inner .contact-section-header {
  max-width: 43.625rem;
  margin: 0 auto 3rem auto;
  text-align: center;
}
@media only screen and (max-width: 48rem) {
  .contact-section .contact-section-inner .contact-section-header {
    margin: 0 auto 2rem auto;
  }
}
.contact-section .contact-section-inner .contact-section-header .default-title {
  margin-bottom: 1rem;
}
.contact-section .contact-section-inner .form-wrapper .success-submit-wrapper {
  position: relative;
  max-width: 43.625rem;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.contact-section .contact-section-inner .form-wrapper .success-submit-wrapper .success-image {
  margin-bottom: 2rem;
}
@media only screen and (max-width: 31.25rem) {
  .contact-section .contact-section-inner .form-wrapper .success-submit-wrapper .success-image {
    margin-bottom: 1rem;
  }
}
.contact-section .contact-section-inner .form-wrapper .success-submit-wrapper .success-image img {
  width: 4rem;
  height: 4rem;
  object-fit: contain;
}
.contact-section .contact-section-inner .form-wrapper .success-submit-wrapper .success-title {
  margin-bottom: 2rem;
}
@media only screen and (max-width: 31.25rem) {
  .contact-section .contact-section-inner .form-wrapper .success-submit-wrapper .success-title {
    margin-bottom: 1rem;
  }
}
.contact-section .contact-section-inner .form-wrapper .success-submit-wrapper .success-title h3 {
  margin: 0;
}
.contact-section .contact-section-inner .contact-form .form-group .single-input-half-width {
  width: calc(50% - 0.75rem);
}
@media only screen and (max-width: 48rem) {
  .contact-section .contact-section-inner .contact-form .form-group .single-input-half-width {
    width: 100%;
  }
}
.contact-section .contact-section-inner .contact-form .form-group + .form-button-row {
  margin-top: 1.5rem;
}
@media only screen and (max-width: 48rem) {
  .contact-section .contact-section-inner .contact-form .form-group + .form-button-row {
    margin-top: 0;
  }
}

.common-selectize-wrapper .selectize-control {
  font-size: 0;
}
.common-selectize-wrapper .selectize-input {
  width: 100% !important;
  padding: 0.625rem 2.813rem 0.625rem 0.813rem !important;
  background-color: transparent !important;
  font-size: 0 !important;
  line-height: normal !important;
  box-shadow: none !important;
  transition: all 0.2s linear !important;
  border: 0.063rem solid #D7D7D7 !important;
  background-image: url("../../svg/arrow-down.svg") !important;
  background-repeat: no-repeat !important;
  background-position: calc(100% - 1rem) 50% !important;
  background-size: 1.5rem 1.5rem !important;
  border-radius: 0 !important;
}
.common-selectize-wrapper .selectize-input:focus {
  outline: none;
}
.common-selectize-wrapper .selectize-input:before, .common-selectize-wrapper .selectize-input:after {
  display: none !important;
}
.common-selectize-wrapper .selectize-input:hover {
  background-color: #F2F2F2 !important;
}
.common-selectize-wrapper .selectize-input input, .common-selectize-wrapper .selectize-input .item {
  font-size: 1rem !important;
  font-weight: 400;
  line-height: 1.5rem !important;
  color: #6B6B6B;
}
.common-selectize-wrapper .selectize-input input {
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100% !important;
  margin: 0 !important;
}
.common-selectize-wrapper .selectize-input input::-webkit-input-placeholder {
  color: #6B6B6B;
}
.common-selectize-wrapper .selectize-input input::-moz-placeholder {
  color: #6B6B6B;
}
.common-selectize-wrapper .selectize-input input:-moz-placeholder {
  color: #6B6B6B;
}
.common-selectize-wrapper .selectize-input input:-ms-input-placeholder {
  color: #6B6B6B;
}
.common-selectize-wrapper .selectize-input .item {
  width: 100% !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.common-selectize-wrapper .selectize-input .item ~ input {
  display: none !important;
}
.common-selectize-wrapper .selectize-dropdown {
  left: 0 !important;
  top: 2.625rem !important;
  width: 100% !important;
  background-color: #FFF !important;
  overflow: hidden !important;
  cursor: pointer;
  box-shadow: none;
  text-align: left;
  border: 0.063rem solid #D7D7D7 !important;
  border-radius: 0.375rem !important;
}
.common-selectize-wrapper .selectize-dropdown .option {
  padding: 0.75rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5rem;
  color: #6B6B6B;
  white-space: nowrap;
  text-align: left;
}
.common-selectize-wrapper .selectize-dropdown .active {
  background-color: #434852 !important;
  color: #FFF;
}
.common-selectize-wrapper .selectize-dropdown .selected {
  background-color: #434852 !important;
}
.common-selectize-wrapper .selectize-dropdown-content::-webkit-scrollbar {
  width: 0.313rem;
}
.common-selectize-wrapper .selectize-dropdown-content::-webkit-scrollbar-track {
  background-color: transparent;
}
.common-selectize-wrapper .selectize-dropdown-content::-webkit-scrollbar-thumb {
  background-color: #F2F2F2;
}
.common-selectize-wrapper .input-active {
  border: 0.063rem solid #D7D7D7 !important;
  border-radius: 0 !important;
  background-image: url("../../svg/arrow-up.svg") !important;
  background-color: transparent;
}
.common-selectize-wrapper .input-active ~ .selectize-dropdown {
  border: 0.063rem solid #D7D7D7 !important;
  border-radius: 0 !important;
}

.breadcrumbs {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 1.5rem;
}
.breadcrumbs .breadcrumb-separator {
  width: 1.5rem;
  height: 1.5rem;
  background-image: url("../../svg/arrow-left-small.svg");
  background-repeat: no-repeat;
}
.breadcrumbs .breadcrumb-link {
  position: relative;
  display: flex;
  gap: 0.625rem;
  align-items: center;
  color: #6B6B6B;
}
.breadcrumbs .breadcrumb-link:hover {
  color: #434852;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
}
.modal.show {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
}
.modal.show .modal-content {
  transform: translateY(0) scale(1);
}
.modal .modal-content {
  position: relative;
  top: auto;
  transform: translateY(1rem) scale(0.9);
  width: 35.875rem;
  max-height: calc(100dvh - 2rem);
  margin: 0 auto;
  padding: 1.5rem;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(0.625rem);
}
@media only screen and (max-width: 48rem) {
  .modal .modal-content {
    width: 95%;
    padding: 1rem;
  }
}
.modal .modal-content .modal-header-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 0.063rem dashed #C9C9C9;
}
@media only screen and (max-width: 48rem) {
  .modal .modal-content .modal-header-wrapper {
    gap: 0.75rem;
  }
}
@media only screen and (max-width: 31.25rem) {
  .modal .modal-content .modal-header-wrapper {
    gap: 0;
  }
}
.modal .modal-content .modal-header-wrapper .modal-title {
  display: flex;
  align-items: center;
  width: calc(100% - 1.5rem - 2rem);
}
@media only screen and (max-width: 48rem) {
  .modal .modal-content .modal-header-wrapper .modal-title {
    width: calc(100% - 1.5rem - 0.75rem);
  }
}
@media only screen and (max-width: 31.25rem) {
  .modal .modal-content .modal-header-wrapper .modal-title {
    width: 100%;
    order: 2;
  }
}
.modal .modal-content .modal-header-wrapper h4 {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 120%;
}
.modal .modal-content .modal-header-wrapper h4.large-title {
  font-size: 2.5rem;
}
@media only screen and (max-width: 48rem) {
  .modal .modal-content .modal-header-wrapper h4.large-title {
    font-size: 1.75rem;
  }
}
.modal .modal-content .modal-header-wrapper .modal-close {
  position: relative;
}
@media only screen and (max-width: 31.25rem) {
  .modal .modal-content .modal-header-wrapper .modal-close {
    right: -1.5rem;
    margin-left: auto;
  }
}
.modal .modal-content .modal-header-wrapper .modal-close svg {
  width: 1.5rem;
  height: 1.5rem;
  cursor: pointer;
}
.modal .modal-content .modal-header-wrapper .modal-close svg path {
  transition: all 0.2s linear;
}
.modal .modal-content .modal-header-wrapper .modal-close svg:hover path {
  stroke: #C52728;
}

.calculate-total-price-wrapper-outer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 0.063rem solid #C9C9C9;
}
@media only screen and (max-width: 48rem) {
  .calculate-total-price-wrapper-outer {
    margin-bottom: 1rem;
  }
}
.calculate-total-price-wrapper-outer.calculate-total-price-desktop {
  display: flex;
}
.calculate-total-price-wrapper-outer.calculate-total-price-tablet {
  display: none;
}
@media only screen and (max-width: 85.438rem) {
  .calculate-total-price-wrapper-outer {
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 64rem) {
  .calculate-total-price-wrapper-outer.calculate-total-price-desktop {
    display: none;
  }
  .calculate-total-price-wrapper-outer.calculate-total-price-tablet {
    display: flex;
  }
}
.calculate-total-price-wrapper-outer .calculate-total-price-wrapper {
  display: flex;
  gap: 3rem;
}
@media only screen and (min-width: 1024px) and (max-width: 85.438rem) {
  .calculate-total-price-wrapper-outer .calculate-total-price-wrapper {
    width: 100%;
  }
}
@media only screen and (max-width: 31.25rem) {
  .calculate-total-price-wrapper-outer .calculate-total-price-wrapper {
    gap: 1.5rem;
    flex-wrap: wrap;
  }
}
.calculate-total-price-wrapper-outer .calculate-total-price-wrapper .col-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media only screen and (max-width: 31.25rem) {
  .calculate-total-price-wrapper-outer .calculate-total-price-wrapper .col-wrapper {
    width: calc(50% - 0.75rem);
  }
}
.calculate-total-price-wrapper-outer .calculate-total-price-wrapper .title-wrapper {
  display: flex;
  gap: 0.313rem;
  margin-bottom: 0.625rem;
}
.calculate-total-price-wrapper-outer .calculate-total-price-wrapper .title-wrapper svg {
  width: 0.75rem;
  height: 0.75rem;
}
.calculate-total-price-wrapper-outer .calculate-total-price-wrapper .product-price {
  padding-bottom: 0.438rem;
  color: #C52728;
  font-size: 1.25rem;
}
.calculate-total-price-wrapper-outer .calculate-total-price-wrapper .total-price {
  padding-bottom: 0.438rem;
  font-size: 1.25rem;
}
.calculate-total-price-wrapper-outer .calculate-total-price-wrapper .area-input-wrapper {
  width: 6.875rem;
}
@media only screen and (max-width: 31.25rem) {
  .calculate-total-price-wrapper-outer .calculate-total-price-wrapper .area-input-wrapper {
    width: calc(50% - 0.75rem);
  }
}
.calculate-total-price-wrapper-outer .calculate-total-price-wrapper .area-input-wrapper .single-input-area {
  margin-bottom: 0;
}
.calculate-total-price-wrapper-outer .calculate-total-price-wrapper .area-input-wrapper .single-input-area input {
  padding-right: 2.5rem;
}
.calculate-total-price-wrapper-outer .calculate-total-price-wrapper .area-input-wrapper .single-input-quantity {
  margin-bottom: 0;
}
.calculate-total-price-wrapper-outer .calculate-total-price-wrapper .area-input-wrapper .single-input-quantity input {
  padding-right: 3rem;
}
.calculate-total-price-wrapper-outer .calculate-total-price-wrapper .total-price-wrapper {
  width: 9.188rem;
}
@media only screen and (max-width: 31.25rem) {
  .calculate-total-price-wrapper-outer .calculate-total-price-wrapper .total-price-wrapper {
    width: 100%;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 85.438rem) {
  .calculate-total-price-wrapper-outer .button-wrapper {
    width: 100%;
  }
}

.product-filters-wrapper-outer.single-product-filters-desktop {
  display: block;
}
.product-filters-wrapper-outer.single-product-filters-tablet {
  display: none;
}
@media only screen and (max-width: 64rem) {
  .product-filters-wrapper-outer.single-product-filters-desktop {
    display: none;
  }
  .product-filters-wrapper-outer.single-product-filters-tablet {
    display: block;
    margin-bottom: 1rem;
  }
}

.product-filters-wrapper {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 0.063rem solid #C9C9C9;
}
@media only screen and (max-width: 48rem) {
  .product-filters-wrapper {
    margin-bottom: 1rem;
  }
}
.product-filters-wrapper:last-child {
  margin-bottom: 0;
}
.product-filters-wrapper .product-filters-wrapper-title {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.product-sizes-wrapper .product-sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
@media only screen and (max-width: 400px) {
  .product-sizes-wrapper .product-sizes {
    gap: 1rem;
  }
}
.product-sizes-wrapper .product-sizes .product-size {
  width: calc((100% - 4.5rem) / 4.001);
}
@media only screen and (max-width: 31.25rem) {
  .product-sizes-wrapper .product-sizes .product-size {
    width: calc((100% - 3rem) / 3.001);
  }
}
@media only screen and (max-width: 400px) {
  .product-sizes-wrapper .product-sizes .product-size {
    width: calc(50% - 0.5rem);
  }
}
.product-sizes-wrapper .product-sizes .product-size .product-subtitle {
  display: block;
  margin-bottom: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
}
.product-sizes-wrapper .product-sizes .product-size .input-radio label::before {
  top: 0.125rem;
  transform: none;
}
.product-sizes-wrapper .product-sizes .product-size .input-radio label::after {
  top: 0.125rem;
  transform: translate(50%, 50%);
}

.paving-corners-wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-bottom: 1rem;
}

.colors-finishes-filters .colors-finishes-single-filter.inline-style {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.375rem;
}
@media only screen and (max-width: 31.25rem) {
  .colors-finishes-filters .colors-finishes-single-filter.inline-style {
    align-items: baseline;
  }
}
.colors-finishes-filters .colors-finishes-single-filter.inline-style:last-child {
  margin-bottom: 0;
}
.colors-finishes-filters .colors-finishes-single-filter.inline-style .colors-title {
  height: 5.063rem;
  text-align: center;
  margin: 0;
  writing-mode: sideways-lr;
  font-size: 0.875rem;
  white-space: nowrap;
}
@media only screen and (max-width: 31.25rem) {
  .colors-finishes-filters .colors-finishes-single-filter.inline-style .colors-title {
    height: auto;
    margin-bottom: 0;
  }
}
.colors-finishes-filters .colors-finishes-single-filter.inline-style .colors-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  overflow: visible;
}
.colors-finishes-filters .colors-finishes-single-filter.inline-style .colors-wrapper .image-wrapper {
  position: relative;
  width: 5.063rem;
  height: 5.063rem;
  box-sizing: border-box;
  cursor: pointer;
}
@media only screen and (max-width: 31.25rem) {
  .colors-finishes-filters .colors-finishes-single-filter.inline-style .colors-wrapper .image-wrapper {
    width: 3.75rem;
    height: 3.75rem;
  }
}
.colors-finishes-filters .colors-finishes-single-filter.inline-style .colors-wrapper .image-wrapper.color-option-with-title img {
  position: relative;
  z-index: 1;
}
.colors-finishes-filters .colors-finishes-single-filter.inline-style .colors-wrapper .image-wrapper.color-option-with-title .background-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 43.63%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 2;
  pointer-events: none;
}
.colors-finishes-filters .colors-finishes-single-filter.inline-style .colors-wrapper .image-wrapper.color-option-with-title .color-title-on-image {
  z-index: 3;
}
.colors-finishes-filters .colors-finishes-single-filter.inline-style .colors-wrapper .image-wrapper img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.colors-finishes-filters .colors-finishes-single-filter.inline-style .colors-wrapper .image-wrapper.is-selected {
  /*padding: 0.125rem;

  border: 0.125rem solid #A3A3A3;

  &::after {
    content: "";
    position: absolute;
    inset: 0;

    border: 0.063rem solid #A3A3A3;
    pointer-events: none;
  }*/
  padding: 0.125rem;
  background-color: #FFF;
  box-shadow: 0 0 0 0.125rem #A3A3A3;
}
.colors-finishes-filters .colors-finishes-single-filter.inline-style .colors-wrapper .image-wrapper.is-selected .background-gradient {
  inset: 0.125rem;
}
.colors-finishes-filters .colors-finishes-single-filter.inline-style .colors-wrapper .image-wrapper .color-title-on-image {
  position: absolute;
  bottom: 0.125rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: 100%;
  padding-inline: 0.188rem;
  color: #FFF;
  font-size: 0.75rem;
  pointer-events: none;
}

.colors-finishes-filters .colors-finishes-single-filter .colors-wrapper .image-wrapper[data-tip]:not([data-tip=""]) {
  /* --- tooltip --- */
}
.colors-finishes-filters .colors-finishes-single-filter .colors-wrapper .image-wrapper[data-tip]:not([data-tip=""])::before, .colors-finishes-filters .colors-finishes-single-filter .colors-wrapper .image-wrapper[data-tip]:not([data-tip=""])::after {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease, transform 0.15s ease;
  z-index: 10;
}
.colors-finishes-filters .colors-finishes-single-filter .colors-wrapper .image-wrapper[data-tip]:not([data-tip=""]) {
  /* bubble */
}
.colors-finishes-filters .colors-finishes-single-filter .colors-wrapper .image-wrapper[data-tip]:not([data-tip=""])::before {
  content: attr(data-tip);
  top: 100%;
  transform: translate(-50%, 0.25rem);
  padding: 0.375rem 0.75rem;
  background: #FFF;
  color: #6B6B6B;
  font-size: 0.75rem;
  line-height: 1;
  white-space: nowrap;
  border-radius: 0.25rem;
  box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.2);
}
.colors-finishes-filters .colors-finishes-single-filter .colors-wrapper .image-wrapper[data-tip]:not([data-tip=""]) {
  /* little arrow */
}
.colors-finishes-filters .colors-finishes-single-filter .colors-wrapper .image-wrapper[data-tip]:not([data-tip=""])::after {
  content: "";
  top: calc(100% - 0.5rem);
  transform: translate(-50%, 0.25rem);
  border-left: 0.5rem solid transparent;
  border-right: 0.5rem solid transparent;
  border-bottom: 0.5rem solid #FFF;
}
.colors-finishes-filters .colors-finishes-single-filter .colors-wrapper .image-wrapper[data-tip]:not([data-tip=""]):hover::before, .colors-finishes-filters .colors-finishes-single-filter .colors-wrapper .image-wrapper[data-tip]:not([data-tip=""]):hover::after, .colors-finishes-filters .colors-finishes-single-filter .colors-wrapper .image-wrapper[data-tip]:not([data-tip=""]):focus-visible::before, .colors-finishes-filters .colors-finishes-single-filter .colors-wrapper .image-wrapper[data-tip]:not([data-tip=""]):focus-visible::after {
  opacity: 1;
  transform: translate(-50%, 0);
}

.hero {
  position: relative;
  width: 100%;
  margin-bottom: 1.5rem;
}
.hero .overlay-content {
  max-width: 40.938rem;
  padding: 2.25rem 1.5rem;
  color: #FFF;
  z-index: 4;
}
@media only screen and (max-width: 48rem) {
  .hero .overlay-content {
    padding: 1.5rem;
  }
}
.hero .overlay-content h1 {
  margin-bottom: 0.75rem;
  line-height: 140%;
}
.hero .overlay-content .wysiwyg-styles {
  max-width: 40.938rem;
}

.single-project-gallery-slider-wrapper {
  padding-bottom: 1rem;
  overflow: hidden;
}
.single-project-gallery-slider-wrapper.single-project-gallery-slider-tablet {
  display: none;
}
@media only screen and (max-width: 64rem) {
  .single-project-gallery-slider-wrapper.single-project-gallery-slider-tablet {
    display: block;
  }
}
.single-project-gallery-slider-wrapper.single-project-gallery-slider-desktop {
  display: block;
}
@media only screen and (max-width: 64rem) {
  .single-project-gallery-slider-wrapper.single-project-gallery-slider-desktop {
    display: none;
  }
}
.single-project-gallery-slider-wrapper.single-project-gallery-slider-desktop .single-project-gallery-slider {
  max-height: 23rem;
  overflow-y: auto;
  overflow-x: hidden;
}
.single-project-gallery-slider-wrapper .single-project-gallery-slider {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  width: 100%;
  margin-right: 0;
  overflow: auto;
  scrollbar-width: none;
}
@media only screen and (max-width: 64rem) {
  .single-project-gallery-slider-wrapper .single-project-gallery-slider {
    flex-wrap: nowrap;
  }
}
.single-project-gallery-slider-wrapper .single-project-gallery-slider .single-gallery-slide {
  position: relative;
  width: calc((100% - 4.5rem) / 4.001);
  height: 100%;
}
.single-project-gallery-slider-wrapper .single-project-gallery-slider .single-gallery-slide:last-child {
  margin-right: 0;
}
@media only screen and (max-width: 64rem) {
  .single-project-gallery-slider-wrapper .single-project-gallery-slider .single-gallery-slide {
    min-width: 15.688rem;
    width: auto;
  }
}
.single-project-gallery-slider-wrapper .single-project-gallery-slider .single-gallery-slide .gallery-image {
  cursor: pointer;
}
.single-project-gallery-slider-wrapper .single-project-gallery-slider .single-gallery-slide .gallery-image img {
  position: relative;
  display: block;
  width: 100%;
  height: 10.75rem;
  object-fit: cover;
}
.single-project-gallery-slider-wrapper .custom-scrollbar {
  margin-top: 3rem;
}

.js-large-gallery-modal .modal-content {
  position: relative;
  max-width: 81rem;
  width: 80%;
  padding: 2.75rem 1.5rem;
}
@media only screen and (max-width: 64rem) {
  .js-large-gallery-modal .modal-content {
    padding: 2rem 0.75rem;
  }
}
@media only screen and (max-width: 48rem) {
  .js-large-gallery-modal .modal-content {
    width: 95%;
  }
}
@media only screen and (max-width: 31.25rem) {
  .js-large-gallery-modal .modal-content {
    padding: 1.5rem 0.75rem;
  }
}
.js-large-gallery-modal .modal-content .modal-header-wrapper {
  margin-inline: 5.375rem;
}
@media only screen and (max-width: 64rem) {
  .js-large-gallery-modal .modal-content .modal-header-wrapper {
    margin-inline: 4rem;
  }
}
@media only screen and (max-width: 48rem) {
  .js-large-gallery-modal .modal-content .modal-header-wrapper {
    margin-inline: 2.25rem;
  }
}
.js-large-gallery-modal .modal-content .js-large-gallery-featured {
  position: relative;
  margin-bottom: 1.5rem;
  padding-inline: 5.375rem;
}
.js-large-gallery-modal .modal-content .js-large-gallery-featured:last-child {
  margin-bottom: 0;
}
@media only screen and (max-width: 64rem) {
  .js-large-gallery-modal .modal-content .js-large-gallery-featured {
    padding-inline: 4rem;
  }
}
@media only screen and (max-width: 48rem) {
  .js-large-gallery-modal .modal-content .js-large-gallery-featured {
    padding-inline: 2.25rem;
  }
}
.js-large-gallery-modal .modal-content .js-large-gallery-featured .image-wrapper {
  position: relative;
  width: 100%;
  height: 37.813rem;
  max-height: calc(100vh - 159px - 136px);
}
@media only screen and (max-width: 80rem) {
  .js-large-gallery-modal .modal-content .js-large-gallery-featured .image-wrapper {
    height: 31.25rem;
  }
}
@media only screen and (max-width: 51.25rem) {
  .js-large-gallery-modal .modal-content .js-large-gallery-featured .image-wrapper {
    height: 21.875rem;
  }
}
@media only screen and (max-width: 37.5rem) {
  .js-large-gallery-modal .modal-content .js-large-gallery-featured .image-wrapper {
    height: 14.063rem;
  }
}
.js-large-gallery-modal .modal-content .js-large-gallery-featured .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.js-large-gallery-modal .modal-content .js-large-gallery-featured .image-wrapper.is-portrait img {
  object-position: 50% 67.5%;
}
.js-large-gallery-modal .modal-content .js-large-gallery-featured .background-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 43.63%, rgba(0, 0, 0, 0.7) 100%);
}
.js-large-gallery-modal .modal-content .js-large-gallery-featured .background-gradient.is-hidden {
  display: none;
}
.js-large-gallery-modal .modal-content .js-large-gallery-featured .image-title-wrapper {
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: 0.313rem;
  transform: translateX(-50%);
  width: 100%;
  margin-top: auto;
  padding-inline: 5.875rem;
  text-align: center;
  color: #FFF;
  z-index: 3;
}
@media only screen and (max-width: 64rem) {
  .js-large-gallery-modal .modal-content .js-large-gallery-featured .image-title-wrapper {
    padding-inline: 4.5rem;
  }
}
@media only screen and (max-width: 48rem) {
  .js-large-gallery-modal .modal-content .js-large-gallery-featured .image-title-wrapper {
    padding-inline: 2.75rem;
  }
}
.js-large-gallery-modal .modal-content .slick-arrow-custom {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 6.313rem;
  height: 6.313rem;
  z-index: 3;
}
@media only screen and (max-width: 64rem) {
  .js-large-gallery-modal .modal-content .slick-arrow-custom {
    width: 5rem;
  }
}
@media only screen and (max-width: 48rem) {
  .js-large-gallery-modal .modal-content .slick-arrow-custom {
    width: 3rem;
  }
}
.js-large-gallery-modal .modal-content .slick-arrow-custom .slick-arrow-img {
  width: 4rem;
  height: 4rem;
}
@media only screen and (max-width: 48rem) {
  .js-large-gallery-modal .modal-content .slick-arrow-custom .slick-arrow-img {
    width: 3rem;
    height: 3rem;
  }
}
.js-large-gallery-modal .modal-content .slick-prev {
  left: 0;
}
.js-large-gallery-modal .modal-content .slick-next {
  right: 0;
}
.js-large-gallery-modal .large-gallery-modal-slider-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: nowrap;
}
.js-large-gallery-modal .js-large-gallery-modal-slider {
  display: flex;
  width: calc(100% + 1.5rem);
  margin: -0.75rem;
  padding-inline: 5.375rem;
}
@media only screen and (max-width: 64rem) {
  .js-large-gallery-modal .js-large-gallery-modal-slider {
    padding-inline: 4rem;
  }
}
@media only screen and (max-width: 48rem) {
  .js-large-gallery-modal .js-large-gallery-modal-slider {
    width: calc(100% + 1rem);
    margin: -0.5rem;
    padding-inline: 2.25rem;
  }
}
@media only screen and (max-width: 31.25rem) {
  .js-large-gallery-modal .js-large-gallery-modal-slider {
    padding-inline: 0;
  }
}
.js-large-gallery-modal .js-large-gallery-modal-slider .slick-list {
  width: 100%;
}
.js-large-gallery-modal .js-large-gallery-modal-slider .slick-track {
  display: flex !important;
  margin-inline: unset !important;
}
.js-large-gallery-modal .js-large-gallery-modal-slider .slick-slide {
  position: relative;
  margin-inline: 0.75rem;
}
@media only screen and (max-width: 48rem) {
  .js-large-gallery-modal .js-large-gallery-modal-slider .slick-slide {
    margin-inline: 0.5rem;
  }
}
.js-large-gallery-modal .js-large-gallery-modal-slider .slick-slide.active .single-gallery-slide {
  opacity: 1;
}
.js-large-gallery-modal .js-large-gallery-modal-slider .single-gallery-slide {
  opacity: 0.75;
  transition: opacity 0.2s linear;
  cursor: pointer;
}
.js-large-gallery-modal .js-large-gallery-modal-slider .single-gallery-slide:hover {
  opacity: 1;
}
.js-large-gallery-modal .js-large-gallery-modal-slider .single-gallery-slide .gallery-image {
  height: 8.063rem;
}
.js-large-gallery-modal .js-large-gallery-modal-slider .single-gallery-slide .gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gm-style .gm-ui-hover-effect span {
  width: 1.5rem !important;
  height: 1.5rem !important;
  -webkit-mask: var(--gm-close-icon) no-repeat center/contain !important;
  mask: var(--gm-close-icon) no-repeat center/contain !important;
}
.gm-style .gm-style-iw {
  max-width: 25.75rem !important;
  border-radius: 0.25rem;
}
.gm-style .gm-style-iw-c {
  padding: 2.5rem !important;
}
@media only screen and (max-width: 48rem) {
  .gm-style .gm-style-iw-c {
    max-height: 373px !important;
    padding: 1rem !important;
  }
}
.gm-style .gm-style-iw-d {
  padding: 0 !important;
  overflow: auto !important;
}

.info-window-custom-wrapper .info-window-modal-title {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}
@media only screen and (max-width: 48rem) {
  .info-window-custom-wrapper .info-window-modal-title {
    margin-bottom: 1rem;
  }
}
.info-window-custom-wrapper .info-window-modal-image {
  height: 12.063rem;
  margin-bottom: 2rem;
}
@media only screen and (max-width: 48rem) {
  .info-window-custom-wrapper .info-window-modal-image {
    margin-bottom: 1rem;
  }
}
.info-window-custom-wrapper .info-window-modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.info-window-custom-wrapper .info-window-title {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
}
.info-window-custom-wrapper .info-window-address {
  margin-bottom: 0.5rem;
}
.info-window-custom-wrapper .info-window-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.preloader {
  position: absolute;
  width: 5rem;
  height: 0.938rem;
  transition: all 0.1s linear;
  visibility: hidden;
  opacity: 0;
}
.preloader div {
  position: absolute;
  top: 0.063rem;
  width: 0.813rem;
  height: 0.813rem;
  background-color: #C52728;
  border-radius: 50%;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.preloader div:nth-child(1) {
  left: 0.5rem;
  animation: preloader-animation-1 0.6s infinite;
}
.preloader div:nth-child(2) {
  left: 0.5rem;
  animation: preloader-animation-2 0.6s infinite;
}
.preloader div:nth-child(3) {
  left: 2rem;
  animation: preloader-animation-2 0.6s infinite;
}
.preloader div:nth-child(4) {
  left: 3.5rem;
  animation: preloader-animation-3 0.6s infinite;
}

.preloader-visible {
  visibility: visible;
  opacity: 1;
}

@keyframes preloader-animation-1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes preloader-animation-3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes preloader-animation-2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(1.5rem, 0);
  }
}
.contact-form-preloader,
.cart-form-preloader {
  top: calc(100% + 1.563rem);
  left: 50%;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 31.25rem) {
  .contact-form-preloader,
  .cart-form-preloader {
    top: calc(100% - 1.5rem);
    left: unset;
    right: -50%;
    transform: unset;
  }
}

.cart-form-preloader div {
  background-color: #535A67;
}

.homepage .hero-home {
  position: relative;
  display: flex;
  align-items: flex-end;
  width: 100%;
  min-height: 51.25rem;
}
@media only screen and (max-width: 48rem) {
  .homepage .hero-home {
    min-height: 40.625rem;
  }
}
.homepage .hero-home .overlay-outer {
  padding-block: 2.75rem;
}
@media only screen and (max-width: 48rem) {
  .homepage .hero-home .overlay-outer {
    padding-block: 1.5rem;
  }
}
.homepage .hero-home .overlay-content {
  max-width: 54.25rem;
  margin-bottom: 6.125rem;
  z-index: 4;
}
@media only screen and (max-width: 48rem) {
  .homepage .hero-home .overlay-content {
    margin-bottom: 1rem;
  }
}
.homepage .hero-home .overlay-content h1 {
  margin-bottom: 0.75rem;
  color: #F2F2F2;
  font-family: "Baskervville", sans-serif;
  line-height: 120%;
  text-transform: uppercase;
}
.homepage .hero-home .overlay-content .wysiwyg-styles {
  margin-bottom: 1.5rem;
}
.homepage .hero-home .overlay-content .wysiwyg-styles * {
  color: #DCDCDC;
  font-size: 1.5rem;
  line-height: 170%;
}
@media only screen and (max-width: 48rem) {
  .homepage .hero-home .overlay-content .wysiwyg-styles * {
    font-size: 1.25rem;
  }
}
.homepage .hero-home .values {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 0.063rem solid #434852;
  z-index: 4;
}
.homepage .hero-home .values .single-value {
  width: calc((100% - 3rem) / 4.001);
  padding: 1.25rem 1.75rem;
  background: rgba(67, 72, 82, 0.4);
}
@media only screen and (max-width: 64rem) {
  .homepage .hero-home .values .single-value {
    width: calc(50% - 0.5rem);
  }
}
@media only screen and (max-width: 48rem) {
  .homepage .hero-home .values .single-value {
    padding: 1rem;
  }
}
@media only screen and (max-width: 31.25rem) {
  .homepage .hero-home .values .single-value {
    width: 100%;
  }
}
.homepage .hero-home .values .single-value .value-title {
  margin-bottom: 0.25rem;
  color: #C9C9C9;
  font-family: "Baskervville", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  font-style: italic;
  line-height: 120%;
  text-transform: uppercase;
}
.homepage .hero-home .values .single-value .wysiwyg-styles * {
  color: #A1A1A1;
  font-size: 0.875rem;
  line-height: 170%;
}
.homepage .hero-home .background-gradient-custom {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(99deg, rgba(0, 0, 0, 0.48) 14.16%, rgba(0, 0, 0, 0.05) 64.94%), linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.03) 101.88%), linear-gradient(180deg, rgba(0, 0, 0, 0.09) 0%, rgba(0, 0, 0, 0.9) 101.88%);
}
.homepage .hero-hidden {
  margin-block: 2rem;
}
.homepage .projects-section {
  padding-block: 3.75rem;
  overflow: hidden;
}
@media only screen and (max-width: 64rem) {
  .homepage .projects-section {
    padding-block: 2rem;
  }
}
.homepage .projects-section .section-header {
  max-width: 69.375rem;
  margin-bottom: 5rem;
}
@media only screen and (max-width: 64rem) {
  .homepage .projects-section .section-header {
    margin-bottom: 2rem;
  }
}
.homepage .projects-section .section-header .main-title {
  margin-bottom: 1.5rem;
  font-family: "Baskervville", sans-serif;
  text-transform: uppercase;
}
@media only screen and (max-width: 48rem) {
  .homepage .projects-section .section-header .main-title {
    font-size: 1.75rem;
  }
}
.homepage .projects-section .projects-floating-slider-wrapper {
  overflow: visible;
}
.homepage .projects-section .projects-floating-slider {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}
.homepage .projects-section .projects-floating-slider.multiple-slides {
  margin-bottom: 2.75rem;
}
@media only screen and (max-width: 48rem) {
  .homepage .projects-section .projects-floating-slider {
    width: 100%;
    margin-left: 0;
  }
}
@media only screen and (max-width: 85.438rem) {
  .homepage .projects-section .projects-floating-slider .slick-list {
    padding: 0 10% 0 1.875rem !important;
  }
}
@media only screen and (max-width: 48rem) {
  .homepage .projects-section .projects-floating-slider .slick-list {
    padding: 0 !important;
  }
}
.homepage .projects-section .projects-floating-slider .slick-track {
  display: flex !important;
  align-items: center;
}
@media only screen and (max-width: 48rem) {
  .homepage .projects-section .projects-floating-slider .slick-track {
    align-items: flex-start;
  }
}
.homepage .projects-section .projects-floating-slider .slick-slide {
  margin-right: 2rem;
}
@media only screen and (min-width: 1367px) {
  .homepage .projects-section .projects-floating-slider .slick-slide {
    width: 1296px;
  }
}
@media only screen and (max-width: 48rem) {
  .homepage .projects-section .projects-floating-slider .slick-slide {
    width: 100% !important;
    margin-right: 2rem;
  }
}
.homepage .projects-section .projects-floating-slider .slick-slide[data-slick-index="0"]:not(.slick-cloned) {
  margin-left: calc((100vw - 1296px) / 2);
}
@media only screen and (max-width: 85.438rem) {
  .homepage .projects-section .projects-floating-slider .slick-slide[data-slick-index="0"]:not(.slick-cloned) {
    margin-left: 1.875rem;
  }
}
@media only screen and (max-width: 48rem) {
  .homepage .projects-section .projects-floating-slider .slick-slide[data-slick-index="0"]:not(.slick-cloned) {
    margin-left: 0;
  }
}
.homepage .projects-section .projects-floating-slider .single-project {
  position: relative;
  padding: 0;
}
.homepage .projects-section .projects-floating-slider .single-project .image-wrapper {
  position: relative;
  display: block;
  width: calc(100% - 3.5rem);
  margin-left: auto;
}
@media only screen and (max-width: 64rem) {
  .homepage .projects-section .projects-floating-slider .single-project .image-wrapper {
    width: 100%;
  }
}
@media only screen and (max-width: 48rem) {
  .homepage .projects-section .projects-floating-slider .single-project .image-wrapper {
    width: calc(100% - 1.875rem);
    padding-top: 50.8064516129%;
  }
}
@media only screen and (max-width: 31.25rem) {
  .homepage .projects-section .projects-floating-slider .single-project .image-wrapper {
    width: calc(100% - 1.25rem);
  }
}
.homepage .projects-section .projects-floating-slider .single-project .image-wrapper img {
  max-height: 39.375rem;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media only screen and (max-width: 48rem) {
  .homepage .projects-section .projects-floating-slider .single-project .image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
  }
}
.homepage .projects-section .projects-floating-slider .single-project .card-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  max-width: 39.438rem;
  width: 100%;
  padding: 2.625rem 2.5rem 2.625rem 0;
  background-color: #FFF;
}
@media only screen and (max-width: 64rem) {
  .homepage .projects-section .projects-floating-slider .single-project .card-wrapper {
    padding: 1rem 1rem 1rem 1.875rem;
  }
}
@media only screen and (max-width: 48rem) {
  .homepage .projects-section .projects-floating-slider .single-project .card-wrapper {
    position: relative;
    max-width: unset;
    padding-right: 0;
  }
}
@media only screen and (max-width: 31.25rem) {
  .homepage .projects-section .projects-floating-slider .single-project .card-wrapper {
    padding-left: 1.25rem;
  }
}
.homepage .projects-section .projects-floating-slider .single-project .card-wrapper .project-title {
  margin-bottom: 0.75rem;
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 150%;
  text-transform: uppercase;
}
@media only screen and (max-width: 48rem) {
  .homepage .projects-section .projects-floating-slider .single-project .card-wrapper .project-title {
    font-size: 1.5rem;
  }
}
.homepage .projects-section .projects-floating-slider .single-project .card-wrapper .wysiwyg-styles * {
  font-weight: 200;
  line-height: 200%;
}
.homepage .projects-section .projects-floating-slider .single-project .card-wrapper .wysiwyg-styles.is-clamp-3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.homepage .projects-section .projects-floating-slider-navigation-outer {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.homepage .projects-section .projects-floating-slider-navigation-outer .slick-prev {
  left: 0;
  width: 7.5rem;
}
.homepage .projects-section .projects-floating-slider-navigation-outer .slick-next {
  right: 0;
  width: 5.688rem;
}
.homepage .projects-section .projects-floating-slider-navigation-outer .slick-arrow-custom {
  position: absolute;
  top: 100%;
  bottom: 0;
  transform: none;
  display: flex;
  gap: 0.5rem;
  height: unset;
  color: #A1A1A1;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.125rem;
  text-transform: uppercase;
}
.homepage .projects-section .projects-floating-slider-navigation-outer .projects-floating-slider-navigation {
  width: calc(100% - 7.5rem - 5.688rem - 3rem);
  margin: 0 auto;
}
.homepage .image-text-split-section {
  padding-block: 3.75rem;
}
@media only screen and (max-width: 64rem) {
  .homepage .image-text-split-section {
    padding-block: 2rem;
  }
}
.homepage .image-text-split-section .section-content {
  position: relative;
  display: flex;
  gap: 1.5rem;
  min-height: 28.438rem;
  padding-bottom: 6rem;
}
@media only screen and (max-width: 48rem) {
  .homepage .image-text-split-section .section-content {
    gap: 0;
    flex-wrap: wrap;
    padding-bottom: 0;
  }
}
.homepage .image-text-split-section .section-content .image-side {
  position: absolute;
  bottom: 0;
  z-index: 2;
}
@media only screen and (max-width: 48rem) {
  .homepage .image-text-split-section .section-content .image-side {
    position: relative;
    width: 100%;
  }
}
.homepage .image-text-split-section .section-content .image-side .image-wrapper {
  width: 27.5rem;
  height: 16.875rem;
}
@media only screen and (max-width: 64rem) {
  .homepage .image-text-split-section .section-content .image-side .image-wrapper {
    width: 23.438rem;
  }
}
@media only screen and (max-width: 48rem) {
  .homepage .image-text-split-section .section-content .image-side .image-wrapper {
    width: 100%;
  }
}
.homepage .image-text-split-section .section-content .image-side .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.homepage .image-text-split-section .section-content .text-side {
  position: relative;
  width: calc(100% - 8.5rem);
  height: fit-content;
  padding-block: 6rem;
  background-color: #F2F2F2;
}
@media only screen and (max-width: 85.438rem) {
  .homepage .image-text-split-section .section-content .text-side {
    padding-block: 4rem;
  }
}
@media only screen and (max-width: 64rem) {
  .homepage .image-text-split-section .section-content .text-side {
    padding-block: 2rem;
  }
}
@media only screen and (max-width: 48rem) {
  .homepage .image-text-split-section .section-content .text-side {
    width: 100%;
    padding: 1rem;
  }
}
.homepage .image-text-split-section .section-content .text-side .text-wrapper {
  position: relative;
  width: calc(100% - 6rem - 18.5rem);
  font-family: "Baskervville", sans-serif;
  z-index: 1;
}
@media only screen and (max-width: 85.438rem) {
  .homepage .image-text-split-section .section-content .text-side .text-wrapper {
    width: calc(100% - 4rem - 18.5rem);
  }
}
@media only screen and (max-width: 64rem) {
  .homepage .image-text-split-section .section-content .text-side .text-wrapper {
    width: calc(100% - 2rem - 13.75rem);
  }
}
@media only screen and (max-width: 48rem) {
  .homepage .image-text-split-section .section-content .text-side .text-wrapper {
    width: 100%;
  }
}
.homepage .image-text-split-section .section-content .text-side .text-wrapper * {
  font-weight: 400;
  text-transform: uppercase;
}
@media only screen and (max-width: 64rem) {
  .homepage .image-text-split-section .section-content .text-side .text-wrapper * {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 48rem) {
  .homepage .image-text-split-section .section-content .text-side .text-wrapper * {
    font-size: 1.75rem;
  }
}
.homepage .image-text-split-section .section-content .text-side .line-wrapper {
  position: absolute;
  top: -2rem;
  width: 8.75rem;
  z-index: 0;
}
.homepage .image-text-split-section .section-content .text-side .line-wrapper svg {
  width: 100%;
}
@media only screen and (max-width: 64rem) {
  .homepage .image-text-split-section .section-content .text-side .line-wrapper {
    top: -4rem;
  }
}
@media only screen and (max-width: 48rem) {
  .homepage .image-text-split-section .section-content .text-side .line-wrapper {
    display: none;
  }
}
.homepage .image-text-split-section .section-left-layout-image .image-side {
  order: 1;
  left: 0;
}
.homepage .image-text-split-section .section-left-layout-image .text-side {
  order: 2;
  margin-left: auto;
  padding-right: 6rem;
}
@media only screen and (max-width: 85.438rem) {
  .homepage .image-text-split-section .section-left-layout-image .text-side {
    padding-right: 4rem;
  }
}
@media only screen and (max-width: 64rem) {
  .homepage .image-text-split-section .section-left-layout-image .text-side {
    padding-right: 2rem;
  }
}
@media only screen and (max-width: 48rem) {
  .homepage .image-text-split-section .section-left-layout-image .text-side {
    padding-right: 1rem;
  }
}
.homepage .image-text-split-section .section-left-layout-image .text-side .text-wrapper {
  margin-left: auto;
  text-align: right;
}
@media only screen and (max-width: 48rem) {
  .homepage .image-text-split-section .section-left-layout-image .text-side .text-wrapper {
    text-align: left;
  }
}
.homepage .image-text-split-section .section-left-layout-image .text-side .line-wrapper {
  right: 3rem;
  transform: rotate(90deg);
}
@media only screen and (max-width: 85.438rem) {
  .homepage .image-text-split-section .section-left-layout-image .text-side .line-wrapper {
    right: 1.5rem;
  }
}
@media only screen and (max-width: 64rem) {
  .homepage .image-text-split-section .section-left-layout-image .text-side .line-wrapper {
    right: 1.25rem;
    transform: rotate(70deg);
  }
}
.homepage .image-text-split-section .section-right-layout-image .image-side {
  order: 2;
  right: 0;
}
@media only screen and (max-width: 48rem) {
  .homepage .image-text-split-section .section-right-layout-image .image-side {
    order: 1;
  }
}
.homepage .image-text-split-section .section-right-layout-image .image-side .image-wrapper {
  margin-left: auto;
}
.homepage .image-text-split-section .section-right-layout-image .text-side {
  order: 1;
  padding-left: 6rem;
}
@media only screen and (max-width: 85.438rem) {
  .homepage .image-text-split-section .section-right-layout-image .text-side {
    padding-left: 4rem;
  }
}
@media only screen and (max-width: 64rem) {
  .homepage .image-text-split-section .section-right-layout-image .text-side {
    padding-left: 2rem;
  }
}
@media only screen and (max-width: 48rem) {
  .homepage .image-text-split-section .section-right-layout-image .text-side {
    order: 2;
    padding-left: 1rem;
  }
}
.homepage .image-text-split-section .section-right-layout-image .text-side .text-wrapper {
  margin-right: auto;
}
.homepage .image-text-split-section .section-right-layout-image .text-side .line-wrapper {
  left: 3rem;
}
@media only screen and (max-width: 85.438rem) {
  .homepage .image-text-split-section .section-right-layout-image .text-side .line-wrapper {
    left: 1.5rem;
  }
}
@media only screen and (max-width: 64rem) {
  .homepage .image-text-split-section .section-right-layout-image .text-side .line-wrapper {
    left: 1.25rem;
    transform: rotate(20deg);
  }
}
.homepage .tutorials-section .tutorials-container {
  padding-block: 3.75rem;
}
@media only screen and (max-width: 64rem) {
  .homepage .tutorials-section .tutorials-container {
    padding-block: 2rem;
  }
}
.homepage .tutorials-section .tutorials-container .section-header {
  margin-bottom: 3rem;
  text-align: center;
}
.homepage .tutorials-section .tutorials-container .section-header .main-title {
  margin-bottom: 0.75rem;
  font-family: "Baskervville", sans-serif;
  text-transform: uppercase;
}
.homepage .tutorials-section .tutorials-container .section-header .wysiwyg-styles * {
  font-size: 1.25rem;
}
.homepage .tutorials-section .tutorials-container .tutorials {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
@media only screen and (max-width: 64rem) {
  .homepage .tutorials-section .tutorials-container .tutorials {
    margin-bottom: 2rem;
  }
}
.homepage .tutorials-section .tutorials-container .tutorials .single-tutorial {
  width: calc((100% - 3rem) / 3.001);
}
@media only screen and (max-width: 64rem) {
  .homepage .tutorials-section .tutorials-container .tutorials .single-tutorial {
    width: calc(50% - 0.75rem);
  }
}
@media only screen and (max-width: 48rem) {
  .homepage .tutorials-section .tutorials-container .tutorials .single-tutorial {
    width: 100%;
  }
}
.homepage .tutorials-section .tutorials-container .tutorials .single-tutorial .video-wrapper {
  position: relative;
  width: 100%;
  min-height: 15.5rem;
  margin-bottom: 1.25rem;
  padding-top: 59.6153846154%;
  overflow: hidden;
}
@media only screen and (max-width: 48rem) {
  .homepage .tutorials-section .tutorials-container .tutorials .single-tutorial .video-wrapper {
    margin-bottom: 1rem;
  }
}
.homepage .tutorials-section .tutorials-container .tutorials .single-tutorial .video-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.homepage .tutorials-section .tutorials-container .tutorials .single-tutorial .video-wrapper iframe, .homepage .tutorials-section .tutorials-container .tutorials .single-tutorial .video-wrapper video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}
.homepage .tutorials-section .tutorials-container .tutorials .single-tutorial .video-wrapper .background-gradient-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.48) 0%, rgba(0, 0, 0, 0.48) 100%);
}
.homepage .tutorials-section .tutorials-container .tutorials .single-tutorial .tutorial-title {
  padding-inline: 1rem;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 150%;
}
@media only screen and (max-width: 48rem) {
  .homepage .tutorials-section .tutorials-container .tutorials .single-tutorial .tutorial-title {
    padding-inline: 0;
  }
}
.homepage .tutorials-section .tutorials-container .button-wrapper {
  justify-content: center;
}
.homepage .call-to-action-section {
  padding-block: 4rem;
}
@media only screen and (max-width: 64rem) {
  .homepage .call-to-action-section {
    padding-block: 2rem;
  }
}
.homepage .call-to-action-section .call-to-action {
  position: relative;
  display: flex;
  min-height: 34.313rem;
}
@media only screen and (max-width: 48rem) {
  .homepage .call-to-action-section .call-to-action {
    min-height: 25rem;
  }
}
.homepage .call-to-action-section .call-to-action .main-container {
  flex: 1;
  display: flex;
  align-items: center;
}
.homepage .call-to-action-section .call-to-action .overlay-content {
  max-width: 53.5rem;
  margin: 0 auto;
  padding-block: 4rem;
  color: #FFF;
  z-index: 4;
}
@media only screen and (max-width: 48rem) {
  .homepage .call-to-action-section .call-to-action .overlay-content {
    padding-block: 1.5rem;
  }
}
.homepage .call-to-action-section .call-to-action .overlay-content .big-title {
  margin-bottom: 0.75rem;
  font-family: "Baskervville", sans-serif;
  text-transform: uppercase;
}
.homepage .call-to-action-section .call-to-action .overlay-content .text-wrapper {
  max-width: 68.125rem;
  margin-bottom: 1.75rem;
  color: #DCDCDC;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 170%;
}

.catalog-page .filters-sidebar-products-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-bottom: 4rem;
}
@media only screen and (max-width: 64rem) {
  .catalog-page .filters-sidebar-products-wrapper {
    padding-bottom: 2rem;
  }
}
.catalog-page .filters-sidebar-products-wrapper .filters-sidebar-toggle-mobile {
  display: inline-block;
  border: 0;
  background-color: transparent;
  color: #C52728;
  font-size: 1.25rem;
  font-weight: 500;
  cursor: pointer;
}
@media only screen and (min-width: 48rem) {
  .catalog-page .filters-sidebar-products-wrapper .filters-sidebar-toggle-mobile {
    display: none;
  }
}
.catalog-page .filters-sidebar-products-wrapper .filters-sidebar {
  width: 19.125rem;
  height: 100%;
  padding: 1.25rem;
  background-color: #FFF;
  box-shadow: 0.125rem 0.125rem 2.188rem 0 rgba(0, 0, 0, 0.07);
}
@media only screen and (max-width: 48rem) {
  .catalog-page .filters-sidebar-products-wrapper .filters-sidebar {
    width: 100%;
  }
}
@media only screen and (min-width: 48rem) {
  .catalog-page .filters-sidebar-products-wrapper .filters-sidebar.collapse-filters-sidebar {
    display: block !important;
  }
}
.catalog-page .filters-sidebar-products-wrapper .filters-sidebar .filters-sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 0.625rem;
}
.catalog-page .filters-sidebar-products-wrapper .filters-sidebar .filters-sidebar-header h3 {
  font-size: 1.25rem;
}
.catalog-page .filters-sidebar-products-wrapper .filters-sidebar .filters-sidebar-header .clean-filters {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: #6B6B6B;
  font-size: 0.875rem;
  transition: color 0.18s ease;
  cursor: pointer;
}
.catalog-page .filters-sidebar-products-wrapper .filters-sidebar .filters-sidebar-header .clean-filters svg {
  width: 1rem;
  height: 1rem;
}
.catalog-page .filters-sidebar-products-wrapper .filters-sidebar .filters-sidebar-header .clean-filters svg path {
  transition: all 0.18s ease;
}
.catalog-page .filters-sidebar-products-wrapper .filters-sidebar .filters-sidebar-header .clean-filters:hover {
  color: #C52728;
}
.catalog-page .filters-sidebar-products-wrapper .filters-sidebar .filters-sidebar-header .clean-filters:hover svg path {
  stroke: #C52728;
}
.catalog-page .filters-sidebar-products-wrapper .filters-sidebar .filters-title-toggle-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 1rem;
  padding-top: 1rem;
}
.catalog-page .filters-sidebar-products-wrapper .filters-sidebar .filters-title-toggle-wrapper.active .toggle-icon {
  transform: rotate(180deg);
}
.catalog-page .filters-sidebar-products-wrapper .filters-sidebar .filters-title-toggle-wrapper .filters-title {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
}
.catalog-page .filters-sidebar-products-wrapper .filters-sidebar .filters-title-toggle-wrapper .filters-title svg {
  width: 0.75rem;
  height: 0.75rem;
}
.catalog-page .filters-sidebar-products-wrapper .filters-sidebar .filters-title-toggle-wrapper .toggle-icon {
  transition: transform 0.2s ease;
}
.catalog-page .filters-sidebar-products-wrapper .filters-sidebar .filters-title-toggle-wrapper .toggle-icon svg {
  width: 1rem;
  height: 1rem;
}
.catalog-page .filters-sidebar-products-wrapper .filters-sidebar .filters-wrapper-common {
  padding-bottom: 1rem;
  border-bottom: 0.063rem solid #C9C9C9;
}
.catalog-page .filters-sidebar-products-wrapper .filters-sidebar .filters-wrapper-common .filters-subtitle {
  font-size: 0.875rem;
}
.catalog-page .filters-sidebar-products-wrapper .filters-sidebar .colors-finishes-filters .colors-finishes-single-filter {
  margin-bottom: 0.75rem;
}
.catalog-page .filters-sidebar-products-wrapper .filters-sidebar .colors-finishes-filters .colors-finishes-single-filter:last-child {
  margin-bottom: 0;
}
.catalog-page .filters-sidebar-products-wrapper .filters-sidebar .colors-finishes-filters .colors-finishes-single-filter .colors-title {
  margin-bottom: 0.5rem;
}
.catalog-page .filters-sidebar-products-wrapper .filters-sidebar .colors-finishes-filters .colors-finishes-single-filter .colors-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  overflow: visible;
}
.catalog-page .filters-sidebar-products-wrapper .filters-sidebar .colors-finishes-filters .colors-finishes-single-filter .colors-wrapper .image-wrapper {
  position: relative;
  width: 3.875rem;
  height: 3.875rem;
  box-sizing: border-box;
  cursor: pointer;
}
.catalog-page .filters-sidebar-products-wrapper .filters-sidebar .colors-finishes-filters .colors-finishes-single-filter .colors-wrapper .image-wrapper img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.catalog-page .filters-sidebar-products-wrapper .filters-sidebar .colors-finishes-filters .colors-finishes-single-filter .colors-wrapper .image-wrapper.is-selected {
  padding: 0.125rem;
  border: 0.125rem solid #A3A3A3;
}
.catalog-page .filters-sidebar-products-wrapper .filters-sidebar .paving-corners-filters .corners-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
}
.catalog-page .filters-sidebar-products-wrapper .filters-sidebar .paving-corners-filters .corners-wrapper .single-corner-type {
  width: 4.5rem;
}
.catalog-page .filters-sidebar-products-wrapper .filters-sidebar .paving-corners-filters .corners-wrapper .single-corner-type .image-wrapper {
  margin-bottom: 0.625rem;
}
.catalog-page .filters-sidebar-products-wrapper .filters-sidebar .paving-corners-filters .corners-wrapper .single-corner-type .image-wrapper img {
  width: 4.5rem;
  height: 2.5rem;
}
.catalog-page .filters-sidebar-products-wrapper .filters-sidebar .paving-corners-filters .corners-wrapper .single-corner-type .checkbox-single {
  text-align: center;
}
.catalog-page .filters-sidebar-products-wrapper .filters-sidebar .paving-corners-filters .corners-wrapper .single-corner-type span {
  display: block;
  text-align: center;
  font-size: 0.875rem;
}
.catalog-page .filters-sidebar-products-wrapper .products-side {
  width: calc(100% - 19.125rem - 1.5rem);
}
@media only screen and (max-width: 48rem) {
  .catalog-page .filters-sidebar-products-wrapper .products-side {
    width: 100%;
  }
}
.catalog-page .filters-sidebar-products-wrapper .products-side .products-side-header {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 1.5rem;
}
@media only screen and (max-width: 64rem) {
  .catalog-page .filters-sidebar-products-wrapper .products-side .products-side-header {
    gap: 1rem;
    flex-wrap: wrap;
  }
}
.catalog-page .filters-sidebar-products-wrapper .products-side .products-side-header .products-filter-selectize {
  width: 15.188rem;
}
.catalog-page .filters-sidebar-products-wrapper .products-side .products-side-header .right-side {
  display: flex;
  gap: 0.813rem;
}
.catalog-page .filters-sidebar-products-wrapper .products-side .products-side-header .right-side .products-count-selectize {
  max-width: 5.125rem;
}
.catalog-page .filters-sidebar-products-wrapper .products-side .products-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
@media only screen and (max-width: 64rem) {
  .catalog-page .filters-sidebar-products-wrapper .products-side .products-wrapper {
    gap: 1rem;
  }
}
.catalog-page .filters-sidebar-products-wrapper .products-side .products-wrapper .single-item-card {
  width: calc((100% - 3rem) / 3.001);
}
@media only screen and (max-width: 64rem) {
  .catalog-page .filters-sidebar-products-wrapper .products-side .products-wrapper .single-item-card {
    width: calc(50% - 0.5rem);
  }
}
@media only screen and (max-width: 31.25rem) {
  .catalog-page .filters-sidebar-products-wrapper .products-side .products-wrapper .single-item-card {
    width: 100%;
  }
}

.single-product-page .product-details-wrapper {
  display: flex;
  gap: 4.5rem;
  flex-wrap: wrap;
  padding-bottom: 4rem;
}
@media only screen and (max-width: 1280px) {
  .single-product-page .product-details-wrapper {
    gap: 3rem;
  }
}
@media only screen and (max-width: 64rem) {
  .single-product-page .product-details-wrapper {
    gap: 0;
    padding-bottom: 2rem;
  }
}
.single-product-page .product-details-wrapper .left-side {
  width: 32.875rem;
}
@media only screen and (max-width: 1280px) {
  .single-product-page .product-details-wrapper .left-side {
    width: 50%;
  }
}
@media only screen and (max-width: 64rem) {
  .single-product-page .product-details-wrapper .left-side {
    width: 100%;
  }
}
.single-product-page .product-details-wrapper .left-side .left-side-header {
  margin-bottom: 1.5rem;
  padding-block: 1rem;
  border-bottom: 0.063rem solid #C9C9C9;
}
.single-product-page .product-details-wrapper .left-side .left-side-header > *:last-child {
  margin-bottom: 0 !important;
}
.single-product-page .product-details-wrapper .left-side .left-side-header .product-title {
  margin-bottom: 0.75rem;
}
.single-product-page .product-details-wrapper .left-side .left-side-header .product-values-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.single-product-page .product-details-wrapper .left-side .left-side-header .product-values-wrapper .outline-wrapper {
  position: relative;
  display: flex;
}
.single-product-page .product-details-wrapper .left-side .left-side-header .product-values-wrapper .outline-wrapper .outline-title {
  margin-right: 0.625rem;
}
.single-product-page .product-details-wrapper .left-side .left-side-header .product-values-wrapper .outline-wrapper .outline-icons-wrapper {
  width: 4.75rem;
  height: 1.5rem;
  margin-right: 0.375rem;
}
.single-product-page .product-details-wrapper .left-side .left-side-header .product-values-wrapper .outline-wrapper .outline-icons-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.single-product-page .product-details-wrapper .left-side .left-side-header .product-values-wrapper .outline-wrapper .outline-info-trigger {
  padding: 0;
  border: 0;
  background: none;
  line-height: 0;
  cursor: pointer;
}
.single-product-page .product-details-wrapper .left-side .left-side-header .product-values-wrapper .outline-wrapper .outline-info-wrapper {
  position: absolute;
  top: 100%;
  left: 2.4rem;
  width: 19.75rem;
  padding: 0.375rem 0.75rem;
  background-color: #FFF;
  border-radius: 0.25rem;
  box-shadow: 0.125rem 0.125rem 2.188rem 0 rgba(0, 0, 0, 0.07);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  z-index: 10;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}
.single-product-page .product-details-wrapper .left-side .left-side-header .product-values-wrapper .outline-wrapper .outline-info-wrapper::before {
  content: "";
  position: absolute;
  top: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 0.5rem solid transparent;
  border-right: 0.5rem solid transparent;
  border-bottom: 0.5rem solid #FFF;
  pointer-events: none;
  z-index: 10;
}
@media only screen and (max-width: 31.25rem) {
  .single-product-page .product-details-wrapper .left-side .left-side-header .product-values-wrapper .outline-wrapper .outline-info-wrapper::before {
    content: none;
  }
}
@media only screen and (max-width: 31.25rem) {
  .single-product-page .product-details-wrapper .left-side .left-side-header .product-values-wrapper .outline-wrapper .outline-info-wrapper {
    left: 0;
    transform: translateX(0);
  }
}
.single-product-page .product-details-wrapper .left-side .left-side-header .product-values-wrapper .outline-wrapper .outline-info-trigger:hover + .outline-info-wrapper,
.single-product-page .product-details-wrapper .left-side .left-side-header .product-values-wrapper .outline-wrapper .outline-info-trigger:focus-visible + .outline-info-wrapper,
.single-product-page .product-details-wrapper .left-side .left-side-header .product-values-wrapper .outline-wrapper .outline-info-wrapper:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.single-product-page .product-details-wrapper .left-side .left-side-header .product-values-wrapper .occupancy-wrapper {
  display: flex;
}
.single-product-page .product-details-wrapper .left-side .left-side-header .product-values-wrapper .occupancy-wrapper .occupancy-title {
  margin-right: 0.313rem;
}
.single-product-page .product-details-wrapper .left-side .left-side-header .product-values-wrapper .occupancy-wrapper .occupancy-icon {
  width: 1.5rem;
  height: 1.5rem;
}
.single-product-page .product-details-wrapper .left-side .left-side-header .product-values-wrapper .occupancy-wrapper .occupancy-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.single-product-page .product-details-wrapper .left-side .left-side-header .product-values-wrapper .occupancy-wrapper .occupancies {
  display: flex;
  gap: 0.25rem;
  text-transform: lowercase;
}
.single-product-page .product-details-wrapper .left-side .left-side-header .product-values-wrapper .occupancy-wrapper .occupancy-info-trigger {
  padding: 0;
  border: 0;
  background: none;
  line-height: 0;
  cursor: pointer;
}
.single-product-page .product-details-wrapper .left-side .product-gallery-thumbnails {
  margin-bottom: 1.5rem;
}
.single-product-page .product-details-wrapper .left-side .product-gallery-thumbnails .product-gallery-featured {
  cursor: pointer;
}
.single-product-page .product-details-wrapper .left-side .product-gallery-thumbnails .product-gallery-featured .background-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 43.63%, rgba(0, 0, 0, 0.7) 100%);
}
.single-product-page .product-details-wrapper .left-side .product-gallery-thumbnails .product-gallery-featured .background-gradient.is-hidden {
  display: none;
}
.single-product-page .product-details-wrapper .left-side .product-description-outer .product-outline-description {
  margin-bottom: 0.75rem;
  color: #6B6B6B;
}
.single-product-page .product-details-wrapper .left-side .product-description-image-wrapper {
  position: relative;
  margin-right: auto;
  margin-bottom: 1.5rem;
}
.single-product-page .product-details-wrapper .left-side .product-description-image-wrapper .product-description-float-media {
  float: right;
  margin-left: 1.25rem;
  margin-bottom: 0.625rem;
}
.single-product-page .product-details-wrapper .left-side .product-description-image-wrapper .product-description {
  width: 100%;
  z-index: 3;
}
@media only screen and (max-width: 31.25rem) {
  .single-product-page .product-details-wrapper .left-side .product-description-image-wrapper .product-description {
    order: 2;
    width: 100%;
  }
}
.single-product-page .product-details-wrapper .left-side .product-description-image-wrapper .clear-float {
  clear: both;
}
@media only screen and (max-width: 31.25rem) {
  .single-product-page .product-details-wrapper .left-side .product-description-image-wrapper .product-sizes-image-wrapper {
    margin-bottom: 1rem;
  }
}
.single-product-page .product-details-wrapper .left-side .product-tabs-content-wrapper .product-tabs-menu {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 0.313rem 0.438rem;
  overflow: auto;
  background-color: #F2F2F2;
  scrollbar-width: none;
}
@media only screen and (max-width: 48rem) {
  .single-product-page .product-details-wrapper .left-side .product-tabs-content-wrapper .product-tabs-menu {
    gap: 0.625rem;
  }
}
.single-product-page .product-details-wrapper .left-side .product-tabs-content-wrapper .product-tabs-menu .product-tab {
  white-space: nowrap;
}
.single-product-page .product-details-wrapper .left-side .product-tabs-content-wrapper .product-tabs-content .product-tab-content.active {
  display: block;
}
.single-product-page .product-details-wrapper .left-side .product-tabs-content-wrapper .product-tabs-content .product-tab-content.hidden {
  display: none;
}
.single-product-page .product-details-wrapper .left-side .product-tabs-content-wrapper .product-tabs-content .product-tab-content * {
  color: #6B6B6B;
  font-size: 0.875rem;
}
.single-product-page .product-details-wrapper .left-side .product-tabs-content-wrapper .product-tabs-content .product-specification-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.625rem;
  padding-top: 0.75rem;
  padding-bottom: 0.375rem;
  border-bottom: 0.063rem solid #C9C9C9;
}
.single-product-page .product-details-wrapper .left-side .product-tabs-content-wrapper .product-tabs-content .product-specification-row:first-child {
  padding-top: 0;
}
.single-product-page .product-details-wrapper .left-side .product-tabs-content-wrapper .product-tabs-content .product-specification-row .product-specification-col-title {
  width: 50%;
}
.single-product-page .product-details-wrapper .left-side .product-tabs-content-wrapper .product-tabs-content .product-specification-row .product-specification-col-value {
  width: 50%;
}
.single-product-page .product-details-wrapper .left-side .product-tabs-content-wrapper .product-tabs-content .product-drawings {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  background-color: #FFF;
  z-index: 4;
  width: min(100vw - 3.75rem, 84.75rem);
}
.single-product-page .product-details-wrapper .left-side .product-tabs-content-wrapper .product-tabs-content .product-drawings .product-drawing {
  display: block;
}
.single-product-page .product-details-wrapper .left-side .product-tabs-content-wrapper .product-tabs-content .product-drawings .product-drawing img {
  display: block;
  max-width: 12.5rem;
  max-height: 12.5rem;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media only screen and (max-width: 85.438rem) {
  .single-product-page .product-details-wrapper .left-side .product-tabs-content-wrapper .product-tabs-content .product-drawings .product-drawing img {
    max-width: 9.375rem;
    max-height: 9.375rem;
  }
}
@media only screen and (max-width: 48rem) {
  .single-product-page .product-details-wrapper .left-side .product-tabs-content-wrapper .product-tabs-content .product-drawings .product-drawing img {
    max-width: 7.5rem;
    max-height: 7.5rem;
  }
}
.single-product-page .product-details-wrapper .right-side {
  width: calc(100% - 32.875rem - 4.5rem);
}
@media only screen and (max-width: 1280px) {
  .single-product-page .product-details-wrapper .right-side {
    width: calc(50% - 3rem);
  }
}
@media only screen and (max-width: 64rem) {
  .single-product-page .product-details-wrapper .right-side {
    width: 100%;
  }
}
.single-product-page .product-3d-zoom-in-modal .product-gallery-sidebar .image-wrapper {
  background-color: #FFF;
  cursor: pointer;
}
.single-product-page .product-3d-zoom-in-modal .product-gallery-sidebar .image-wrapper img {
  object-fit: contain;
}
.single-product-page .product-3d-zoom-in-modal .product-gallery-sidebar .modal-layout-thumbnail-wrapper img {
  object-fit: cover;
}
.single-product-page .product-3d-zoom-in-modal .product-gallery-sidebar .modal-layout-thumbnail-wrapper.is-hidden {
  display: none;
}
.single-product-page .product-3d-zoom-in-modal .product-gallery-featured {
  width: 26rem;
  min-height: unset;
  background-color: #FFF;
  overflow: hidden;
}
.single-product-page .product-3d-zoom-in-modal .product-gallery-featured .image-wrapper {
  background-color: #FFF;
  cursor: default;
}
.single-product-page .product-3d-zoom-in-modal .product-gallery-featured .image-wrapper img {
  object-fit: contain;
}
.single-product-page .related-products-section .related-products-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding-block: 4rem;
}
@media only screen and (max-width: 64rem) {
  .single-product-page .related-products-section .related-products-container {
    padding-block: 2rem;
  }
}
.single-product-page .related-products-section .related-products-container .text-side {
  width: 18.25rem;
}
@media only screen and (max-width: 64rem) {
  .single-product-page .related-products-section .related-products-container .text-side {
    width: 100%;
  }
}
.single-product-page .related-products-section .related-products-container .text-side .main-title {
  margin-bottom: 1.125rem;
}
.single-product-page .related-products-section .related-products-container .products-side {
  width: calc(100% - 18.25rem - 2rem);
}
@media only screen and (max-width: 64rem) {
  .single-product-page .related-products-section .related-products-container .products-side {
    width: 100%;
  }
}
.single-product-page .related-products-section .related-products-container .products-side .products-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
@media only screen and (max-width: 48rem) {
  .single-product-page .related-products-section .related-products-container .products-side .products-wrapper {
    gap: 1rem;
  }
}
.single-product-page .related-products-section .related-products-container .products-side .products-wrapper .single-item-card {
  width: calc((100% - 3rem) / 3.001);
}
@media only screen and (max-width: 48rem) {
  .single-product-page .related-products-section .related-products-container .products-side .products-wrapper .single-item-card {
    width: calc(50% - 0.5rem);
  }
}
@media only screen and (max-width: 31.25rem) {
  .single-product-page .related-products-section .related-products-container .products-side .products-wrapper .single-item-card {
    width: 100%;
  }
}
.single-product-page .projects-section .projects-container {
  padding-top: 4rem;
  padding-bottom: 8rem;
}
@media only screen and (max-width: 64rem) {
  .single-product-page .projects-section .projects-container {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
.single-product-page .projects-section .section-header {
  margin-bottom: 3rem;
  text-align: center;
}
@media only screen and (max-width: 48rem) {
  .single-product-page .projects-section .section-header {
    margin-bottom: 1.5rem;
  }
}
.single-product-page .projects-section .projects {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.single-product-page .projects-section .projects .single-project {
  width: calc((100% - 3rem) / 3.001);
}
@media only screen and (max-width: 48rem) {
  .single-product-page .projects-section .projects .single-project {
    width: calc(50% - 0.75rem);
  }
  .single-product-page .projects-section .projects .single-project:nth-child(odd):last-child {
    width: 100%;
  }
  .single-product-page .projects-section .projects .single-project:nth-child(odd):last-child .image-wrapper {
    padding-top: 55%;
  }
}
@media only screen and (max-width: 31.25rem) {
  .single-product-page .projects-section .projects .single-project {
    width: 100%;
  }
}
.single-product-page .projects-section .projects .single-project .image-wrapper {
  position: relative;
  margin-bottom: 1rem;
  padding-top: 85.0961538462%;
}
.single-product-page .projects-section .projects .single-project .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.single-product-page .projects-section .projects .single-project .image-wrapper .project-category {
  position: absolute;
  top: 1.5rem;
  left: 1.75rem;
  width: 4.625rem;
  padding: 1rem 0.5rem;
  text-align: center;
  background-color: #FEFEFE;
}
@media only screen and (max-width: 48rem) {
  .single-product-page .projects-section .projects .single-project .image-wrapper .project-category {
    padding: 0.5rem;
  }
}
.single-product-page .projects-section .projects .single-project .image-wrapper .project-category span {
  font-size: 0.875rem;
}
.single-product-page .projects-section .projects .single-project .content-wrapper .extra-small-title {
  margin-bottom: 1rem;
}
.single-product-page .product-sizes-image-wrapper {
  width: 12.438rem;
}
@media only screen and (max-width: 31.25rem) {
  .single-product-page .product-sizes-image-wrapper {
    order: 1;
    width: 100%;
  }
}
.single-product-page .product-sizes-image-wrapper .image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  max-height: 12.5rem;
  height: 100%;
  cursor: pointer;
}
.single-product-page .product-sizes-image-wrapper .image-wrapper .product-3d-image {
  width: var(--product-3d-image-custom-width, 90%);
  height: auto;
  object-fit: contain;
  z-index: 1;
}
@media only screen and (max-width: 64rem) {
  .single-product-page .product-sizes-image-wrapper .image-wrapper .product-3d-image {
    width: 100%;
  }
}
.single-product-page .product-sizes-image-wrapper .image-wrapper .product-dimension-image {
  position: absolute;
  bottom: var(--dimension-bottom-value, -15px);
  right: var(--dimension-right-value, -15px);
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
  z-index: 2;
}
.single-product-page .product-sizes-image-wrapper-modal {
  width: 85%;
  margin: 0 auto;
}
.single-product-page .product-sizes-image-wrapper-modal.no-dimensions .image-wrapper .js-modal-3d-image {
  top: 0;
  right: 0;
  max-width: unset;
}
.single-product-page .product-sizes-image-wrapper-modal.no-dimensions .product-dimension-image {
  display: none;
}
.single-product-page .product-sizes-image-wrapper-modal:not(.no-dimensions):hover .image-wrapper .js-modal-3d-image {
  transform: scale(1.45);
}
.single-product-page .product-sizes-image-wrapper-modal .image-wrapper {
  height: 21.5rem;
  max-height: unset;
}
.single-product-page .product-sizes-image-wrapper-modal .image-wrapper .js-modal-3d-image {
  position: relative;
  bottom: unset;
  width: var(--product-3d-image-custom-width, 90%);
  transition: transform 0.2s ease;
}
.single-product-page .product-sizes-image-wrapper-modal .image-wrapper .product-dimension-image {
  width: calc(100% - 2rem);
}
.single-product-page .product-sizes-image-wrapper-modal .product-3d-image {
  max-width: 12rem;
}

.projects-page .projects-container {
  padding-bottom: 8rem;
}
@media only screen and (max-width: 64rem) {
  .projects-page .projects-container {
    padding-bottom: 2rem;
  }
}
.projects-page .project-tabs-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding: 0.438rem;
  background-color: #F2F2F2;
}
.projects-page .project-tabs-menu .project-tab {
  width: calc(50% - 0.25rem);
}
@media only screen and (max-width: 31.25rem) {
  .projects-page .project-tabs-menu .project-tab {
    width: 100%;
  }
}
.projects-page .project-tab-content.active {
  display: flex;
}
.projects-page .projects {
  flex-wrap: wrap;
  gap: 1.5rem;
}
@media only screen and (max-width: 48rem) {
  .projects-page .projects {
    gap: 1rem;
  }
}
.projects-page .projects .single-item-card {
  width: calc((100% - 4.5rem) / 4.001);
}
@media only screen and (max-width: 64rem) {
  .projects-page .projects .single-item-card {
    width: calc((100% - 3rem) / 3.001);
  }
}
@media only screen and (max-width: 48rem) {
  .projects-page .projects .single-item-card {
    width: calc(50% - 0.5rem);
  }
}
@media only screen and (max-width: 31.25rem) {
  .projects-page .projects .single-item-card {
    width: 100%;
  }
}

.single-project-page .wysiwyg-content-wrapper a {
  text-decoration: underline;
}
.single-project-page .section-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 0.063rem dashed #C9C9C9;
}
.single-project-page .image-content-wrapper {
  display: flex;
  gap: 1.5rem;
  min-height: 22.375rem;
  margin-bottom: 1.5rem;
}
@media only screen and (max-width: 64rem) {
  .single-project-page .image-content-wrapper {
    flex-wrap: wrap;
  }
}
.single-project-page .image-content-wrapper .featured-image-wrapper {
  position: relative;
  width: 50%;
  height: 100%;
  aspect-ratio: 318/179;
  z-index: 1;
}
@media only screen and (max-width: 64rem) {
  .single-project-page .image-content-wrapper .featured-image-wrapper {
    width: 100%;
  }
}
.single-project-page .image-content-wrapper .featured-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}
.single-project-page .image-content-wrapper .featured-image-wrapper .hotspot {
  position: absolute;
  transform: translate(-50%, -50%);
  border: none;
  background: transparent;
  cursor: pointer;
}
@media only screen and (max-width: 31.25rem) {
  .single-project-page .image-content-wrapper .featured-image-wrapper .hotspot {
    padding-bottom: 0.25rem;
  }
}
.single-project-page .image-content-wrapper .featured-image-wrapper .hotspot .hotspot-dot {
  position: relative;
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background-color: #434852;
  z-index: 1;
}
.single-project-page .image-content-wrapper .featured-image-wrapper .hotspot .hotspot-dot::before, .single-project-page .image-content-wrapper .featured-image-wrapper .hotspot .hotspot-dot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
}
.single-project-page .image-content-wrapper .featured-image-wrapper .hotspot .hotspot-dot::before {
  inset: 0.125rem;
  background: #C52728;
}
.single-project-page .image-content-wrapper .featured-image-wrapper .hotspot .hotspot-dot::after {
  inset: 0.25rem;
  background: #FFF;
}
.single-project-page .image-content-wrapper .featured-image-wrapper .hotspot .hotspot-card {
  position: absolute;
  bottom: 0;
  display: flex;
  flex-direction: column;
  width: 12.625rem;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0.083rem 0.083rem 1.653rem 0 rgba(0, 0, 0, 0.14);
  pointer-events: auto;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 10;
}
@media only screen and (max-width: 31.25rem) {
  .single-project-page .image-content-wrapper .featured-image-wrapper .hotspot .hotspot-card {
    bottom: auto;
    top: 1.75rem;
    left: 50%;
    transform: translateX(-50%);
  }
}
.single-project-page .image-content-wrapper .featured-image-wrapper .hotspot .hotspot-card .hotspot-card-inner {
  display: block;
  padding: 0.625rem 0.313rem;
  background-color: #FFF;
  text-align: center;
  cursor: pointer;
}
.single-project-page .image-content-wrapper .featured-image-wrapper .hotspot .hotspot-card .hotspot-card-inner img {
  width: 100%;
  height: auto;
  margin: 0 auto 2rem;
}
@media only screen and (max-width: 31.25rem) {
  .single-project-page .image-content-wrapper .featured-image-wrapper .hotspot .hotspot-card .hotspot-card-inner img {
    height: 8.75rem;
    object-fit: contain;
  }
}
.single-project-page .image-content-wrapper .featured-image-wrapper .hotspot .hotspot-card .hotspot-card-inner h4 {
  margin-bottom: 1rem;
  font-family: "DM Sans", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: capitalize;
}
.single-project-page .image-content-wrapper .featured-image-wrapper .hotspot .hotspot-card .hotspot-card-inner .hotspot-card-btn {
  background: transparent;
  border: none;
  border-bottom: 0.021rem solid #434852;
  text-transform: uppercase;
  font-family: "DM Sans", sans-serif;
  font-size: 0.625rem;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.single-project-page .image-content-wrapper .featured-image-wrapper .hotspot .hotspot-card .hotspot-card-inner .hotspot-card-btn:hover {
  color: #C52728;
  border-color: #C52728;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 10;
}
.single-project-page .image-content-wrapper .featured-image-wrapper .hotspot.hotspot-card-left {
  margin-right: 0.531rem;
  padding-left: 1.063rem;
}
.single-project-page .image-content-wrapper .featured-image-wrapper .hotspot.hotspot-card-left .hotspot-card {
  left: auto;
  right: 2.313rem;
}
@media only screen and (max-width: 31.25rem) {
  .single-project-page .image-content-wrapper .featured-image-wrapper .hotspot.hotspot-card-left .hotspot-card {
    right: 0;
  }
}
.single-project-page .image-content-wrapper .featured-image-wrapper .hotspot.hotspot-card-right {
  margin-left: 0.531rem;
  padding-right: 1.063rem;
}
.single-project-page .image-content-wrapper .featured-image-wrapper .hotspot.hotspot-card-right .hotspot-card {
  left: 2.313rem;
  right: auto;
}
@media only screen and (max-width: 31.25rem) {
  .single-project-page .image-content-wrapper .featured-image-wrapper .hotspot.hotspot-card-right .hotspot-card {
    left: 0;
  }
}
.single-project-page .image-content-wrapper .featured-image-wrapper .hotspot:hover .hotspot-dot::before {
  background-color: #FFF;
}
.single-project-page .image-content-wrapper .featured-image-wrapper .hotspot:hover .hotspot-dot::after {
  background-color: #C52728;
}
.single-project-page .image-content-wrapper .featured-image-wrapper .hotspot:hover .hotspot-card {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.single-project-page .image-content-wrapper .content-wrapper {
  width: 50%;
}
@media only screen and (max-width: 64rem) {
  .single-project-page .image-content-wrapper .content-wrapper {
    width: 100%;
  }
}
.single-project-page .image-content-wrapper .content-wrapper .wysiwyg-styles {
  margin-bottom: 1rem;
}
.single-project-page .image-content-wrapper .content-wrapper .address-wrapper {
  display: flex;
  gap: 0.75rem;
  font-size: 1.125rem;
}
.single-project-page .articles-container {
  padding-block: 4rem;
}
@media only screen and (max-width: 64rem) {
  .single-project-page .articles-container {
    padding-block: 2rem;
  }
}
.single-project-page .articles-container .main-title {
  margin-bottom: 3rem;
  text-align: center;
}
@media only screen and (max-width: 64rem) {
  .single-project-page .articles-container .main-title {
    margin-bottom: 2rem;
  }
}
.single-project-page .articles {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
@media only screen and (max-width: 48rem) {
  .single-project-page .articles {
    gap: 1rem;
  }
}
.single-project-page .articles .single-item-card {
  width: calc((100% - 4.5rem) / 4.001);
}
@media only screen and (max-width: 64rem) {
  .single-project-page .articles .single-item-card {
    width: calc((100% - 3rem) / 3.001);
  }
}
@media only screen and (max-width: 48rem) {
  .single-project-page .articles .single-item-card {
    width: calc(50% - 0.5rem);
  }
}
@media only screen and (max-width: 31.25rem) {
  .single-project-page .articles .single-item-card {
    width: 100%;
  }
}

.articles-page .articles-container {
  padding-bottom: 8rem;
}
@media only screen and (max-width: 64rem) {
  .articles-page .articles-container {
    padding-bottom: 2rem;
  }
}
.articles-page .articles-container .articles-filters {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.articles-page .articles-container .articles-filters *:last-child {
  margin-left: auto;
}
.articles-page .articles-container .articles {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
@media only screen and (max-width: 48rem) {
  .articles-page .articles-container .articles {
    gap: 1rem;
  }
}
.articles-page .articles-container .articles .single-item-card {
  width: calc((100% - 4.5rem) / 4.001);
}
@media only screen and (max-width: 64rem) {
  .articles-page .articles-container .articles .single-item-card {
    width: calc((100% - 3rem) / 3.001);
  }
}
@media only screen and (max-width: 48rem) {
  .articles-page .articles-container .articles .single-item-card {
    width: calc(50% - 0.5rem);
  }
}
@media only screen and (max-width: 31.25rem) {
  .articles-page .articles-container .articles .single-item-card {
    width: 100%;
  }
}

.single-tutorial-page .tutorial-container {
  padding-bottom: 4rem;
}
@media only screen and (max-width: 64rem) {
  .single-tutorial-page .tutorial-container {
    padding-bottom: 2rem;
  }
}
.single-tutorial-page .section-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 0.063rem dashed #C9C9C9;
}
.single-tutorial-page .related-tutorials {
  padding-bottom: 4rem;
}
@media only screen and (max-width: 64rem) {
  .single-tutorial-page .related-tutorials {
    padding-bottom: 2rem;
  }
}
.single-tutorial-page .related-tutorials-container .main-title {
  margin-bottom: 3rem;
  text-align: center;
}
@media only screen and (max-width: 64rem) {
  .single-tutorial-page .related-tutorials-container .main-title {
    margin-bottom: 2rem;
  }
}
.single-tutorial-page .tutorials {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
@media only screen and (max-width: 48rem) {
  .single-tutorial-page .tutorials {
    gap: 1rem;
  }
}
.single-tutorial-page .tutorials .single-item-card {
  width: calc((100% - 4.5rem) / 4.001);
}
@media only screen and (max-width: 64rem) {
  .single-tutorial-page .tutorials .single-item-card {
    width: calc((100% - 3rem) / 3.001);
  }
}
@media only screen and (max-width: 48rem) {
  .single-tutorial-page .tutorials .single-item-card {
    width: calc(50% - 0.5rem);
  }
}
@media only screen and (max-width: 31.25rem) {
  .single-tutorial-page .tutorials .single-item-card {
    width: 100%;
  }
}
.single-tutorial-page .single-tutorial-steps-layout .tutorial-featured-images-wrapper {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 4rem;
}
@media only screen and (max-width: 64rem) {
  .single-tutorial-page .single-tutorial-steps-layout .tutorial-featured-images-wrapper {
    flex-wrap: wrap;
    margin-bottom: 2rem;
  }
}
.single-tutorial-page .single-tutorial-steps-layout .tutorial-featured-images-wrapper .large-image-wrapper-outer {
  width: calc(100% - 25.938rem - 1.5rem);
}
@media only screen and (max-width: 85.438rem) {
  .single-tutorial-page .single-tutorial-steps-layout .tutorial-featured-images-wrapper .large-image-wrapper-outer {
    width: 65%;
  }
}
@media only screen and (max-width: 64rem) {
  .single-tutorial-page .single-tutorial-steps-layout .tutorial-featured-images-wrapper .large-image-wrapper-outer {
    width: 100%;
  }
}
.single-tutorial-page .single-tutorial-steps-layout .tutorial-featured-images-wrapper .large-image-wrapper {
  position: relative;
  padding-top: 43.793911007%;
}
.single-tutorial-page .single-tutorial-steps-layout .tutorial-featured-images-wrapper .large-image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.single-tutorial-page .single-tutorial-steps-layout .tutorial-featured-images-wrapper .small-image-wrapper-outer {
  width: 25.938rem;
}
@media only screen and (max-width: 85.438rem) {
  .single-tutorial-page .single-tutorial-steps-layout .tutorial-featured-images-wrapper .small-image-wrapper-outer {
    width: 35%;
  }
}
@media only screen and (max-width: 64rem) {
  .single-tutorial-page .single-tutorial-steps-layout .tutorial-featured-images-wrapper .small-image-wrapper-outer {
    width: 100%;
  }
}
.single-tutorial-page .single-tutorial-steps-layout .tutorial-featured-images-wrapper .small-image-wrapper {
  position: relative;
  padding-top: 90.1204819277%;
}
.single-tutorial-page .single-tutorial-steps-layout .tutorial-featured-images-wrapper .small-image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.single-tutorial-page .single-tutorial-steps-layout .steps-wrapper {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
@media only screen and (max-width: 64rem) {
  .single-tutorial-page .single-tutorial-steps-layout .steps-wrapper {
    flex-direction: column;
  }
}
.single-tutorial-page .single-tutorial-steps-layout .steps-wrapper .steps-col {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
}
.single-tutorial-page .single-tutorial-steps-layout .steps-wrapper .single-step {
  display: flex;
  gap: 0.75rem;
}
.single-tutorial-page .single-tutorial-steps-layout .steps-wrapper .single-step .step-count {
  width: 1.5rem;
  height: 1.5rem;
  text-align: center;
  color: #FFF;
  background-color: #434852;
  font-size: 0.875rem;
}
.single-tutorial-page .single-tutorial-steps-layout .steps-wrapper .single-step .content-wrapper {
  width: calc(100% - 1.5rem - 0.75rem);
}
.single-tutorial-page .single-tutorial-steps-layout .steps-wrapper .single-step .content-wrapper .content-wrapper-inner {
  margin-bottom: 0.5rem;
}
.single-tutorial-page .single-tutorial-steps-layout .steps-wrapper .single-step .additional-content-wrapper {
  display: flex;
  gap: 0.5rem;
}
.single-tutorial-page .single-tutorial-steps-layout .steps-wrapper .single-step .additional-content-wrapper .additional-content-visual {
  width: 1.25rem;
  height: 1.25rem;
  text-align: center;
  color: #FFF;
  background-color: #C52728;
  font-size: 0.75rem;
}
.single-tutorial-page .single-tutorial-steps-layout .steps-wrapper .single-step .additional-content-wrapper .additional-content-text {
  width: calc(100% - 1.25rem - 0.5rem);
}
.single-tutorial-page .single-tutorial-steps-layout .steps-wrapper .single-step .additional-content-wrapper .additional-content-text * {
  color: #C52728;
  font-size: 0.75rem;
}
.single-tutorial-page .single-tutorial-steps-layout .download-button {
  color: #535A67;
  background-color: #FFF;
  border: 0.063rem solid #535A67;
}
.single-tutorial-page .single-tutorial-steps-layout .download-button svg path {
  transition: all 0.2s linear;
}
.single-tutorial-page .single-tutorial-steps-layout .download-button:hover {
  color: #FFF;
  background-color: #535A67;
  border: 0.063rem solid #535A67;
}
.single-tutorial-page .single-tutorial-steps-layout .download-button:hover svg path {
  stroke: #FFF;
}
.single-tutorial-page .single-tutorial-article-layout .article-hero {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.single-tutorial-page .single-tutorial-article-layout .article-hero .article-hero-video-side {
  width: calc(100% - 32.875rem - 1.5rem);
}
@media only screen and (max-width: 1200px) {
  .single-tutorial-page .single-tutorial-article-layout .article-hero .article-hero-video-side {
    width: 34.375rem;
  }
}
@media only screen and (max-width: 64rem) {
  .single-tutorial-page .single-tutorial-article-layout .article-hero .article-hero-video-side {
    width: 100%;
  }
}
.single-tutorial-page .single-tutorial-article-layout .article-hero .article-hero-video-side .article-hero-gallery {
  width: calc(100% + 1rem);
  margin-inline: -0.5rem;
  overflow: hidden;
}
.single-tutorial-page .single-tutorial-article-layout .article-hero .article-hero-video-side .article-hero-gallery.has-arrows {
  margin-bottom: 2.5rem;
}
.single-tutorial-page .single-tutorial-article-layout .article-hero .article-hero-video-side .article-hero-gallery .slick-slide {
  position: relative;
  margin: 0 0.5rem;
}
.single-tutorial-page .single-tutorial-article-layout .article-hero .article-hero-video-side .article-hero-gallery .gallery-slide {
  position: relative;
  padding-top: 100%;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .single-tutorial-page .single-tutorial-article-layout .article-hero .article-hero-video-side .article-hero-gallery .gallery-slide {
    padding-top: 75%;
  }
}
.single-tutorial-page .single-tutorial-article-layout .article-hero .article-hero-video-side .article-hero-gallery .gallery-slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.single-tutorial-page .single-tutorial-article-layout .article-hero .article-hero-video-side .tutorial-gallery-arrows {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.single-tutorial-page .single-tutorial-article-layout .article-hero .article-hero-video-side .tutorial-gallery-arrows .slick-arrow-custom {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  z-index: 3;
}
.single-tutorial-page .single-tutorial-article-layout .article-hero .article-hero-video-side .tutorial-gallery-arrows .slick-prev {
  left: calc(50% - 3rem - 1rem);
}
.single-tutorial-page .single-tutorial-article-layout .article-hero .article-hero-video-side .tutorial-gallery-arrows .slick-next {
  right: calc(50% - 3rem - 1rem);
}
.single-tutorial-page .single-tutorial-article-layout .article-hero .article-hero-video-side .video-wrapper {
  position: relative;
  width: 100%;
  min-height: 26.188rem;
  padding-top: 56.1662198391%;
  overflow: hidden;
}
@media only screen and (max-width: 64rem) {
  .single-tutorial-page .single-tutorial-article-layout .article-hero .article-hero-video-side .video-wrapper {
    min-height: unset;
    padding-top: 60%;
  }
}
.single-tutorial-page .single-tutorial-article-layout .article-hero .article-hero-video-side .video-wrapper.is-playing .play-button {
  display: none;
}
.single-tutorial-page .single-tutorial-article-layout .article-hero .article-hero-video-side .video-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.single-tutorial-page .single-tutorial-article-layout .article-hero .article-hero-video-side .video-wrapper iframe, .single-tutorial-page .single-tutorial-article-layout .article-hero .article-hero-video-side .video-wrapper video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}
.single-tutorial-page .single-tutorial-article-layout .article-hero .article-hero-content-side {
  width: 32.875rem;
}
@media only screen and (max-width: 1200px) {
  .single-tutorial-page .single-tutorial-article-layout .article-hero .article-hero-content-side {
    width: calc(100% - 34.375rem - 1.5rem);
  }
}
@media only screen and (max-width: 64rem) {
  .single-tutorial-page .single-tutorial-article-layout .article-hero .article-hero-content-side {
    width: 100%;
  }
}
.single-tutorial-page .single-tutorial-article-layout .article-body {
  margin-top: 1.5rem;
}

.cart-page .page-container {
  padding-bottom: 8rem;
}
@media only screen and (max-width: 64rem) {
  .cart-page .page-container {
    padding-bottom: 2rem;
  }
}
.cart-page .cart-page-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 0.063rem dashed #C9C9C9;
}
.cart-page .cart-checkout-form .success-message {
  margin-bottom: 1rem;
  color: #A06F65;
  font-size: 1.5rem;
}
.cart-page .cart .form-message.hidden {
  display: none;
}
.cart-page .cart .cart-pavement-wrapper {
  margin-bottom: 3rem;
}
@media only screen and (max-width: 64rem) {
  .cart-page .cart .cart-pavement-wrapper {
    margin-bottom: 2rem;
  }
}
.cart-page .cart .cart-pavement-model-select {
  position: relative;
}
.cart-page .cart .cart-pavement-model-select .js-pavement-model-current-title {
  color: #6B6B6B;
  font-size: 1rem;
  text-align: left;
}
.cart-page .cart .cart-pavement-model-select.warning-validation .common-select-style-button {
  border-color: #C52728;
}
.cart-page .cart .pavement-model-select-outer {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 0;
  width: 16.938rem;
  padding: 0.75rem;
  border: 0.063rem solid #D7D7D7;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(0.625rem);
  z-index: 10;
}
.cart-page .cart .pavement-model-select-outer.hidden {
  display: none;
}
.cart-page .cart .pavement-model-select-outer .search-form {
  margin-bottom: 0.625rem;
}
.cart-page .cart .pavement-model-select-outer .pavement-model-list {
  height: 14.375rem;
  overflow-y: auto;
}
.cart-page .cart .pavement-model-select-outer .pavement-model-list::-webkit-scrollbar {
  width: 0.188rem;
}
.cart-page .cart .pavement-model-select-outer .pavement-model-list::-webkit-scrollbar-track {
  background-color: transparent;
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}
.cart-page .cart .pavement-model-select-outer .pavement-model-list::-webkit-scrollbar-thumb {
  border-radius: 0.313rem;
  border: 0.063rem solid #A3A3A3;
  background-color: #A3A3A3;
}
.cart-page .cart .pavement-model-select-outer .pavement-model-list .pavement-model-option {
  width: 100%;
  margin-bottom: 0.625rem;
  text-align: left;
  border: 0;
  color: #6B6B6B;
  background: none;
  font-size: 1rem;
  cursor: pointer;
}
.cart-page .cart .pavement-model-select-outer .pavement-model-list .pavement-model-option:last-child {
  margin-bottom: 0;
}
.cart-page .cart .cart-curbs-wrapper {
  margin-bottom: 3rem;
}
@media only screen and (max-width: 64rem) {
  .cart-page .cart .cart-curbs-wrapper {
    margin-bottom: 2rem;
  }
}
.cart-page .cart .cart-other-products-wrapper {
  margin-bottom: 3rem;
}
@media only screen and (max-width: 64rem) {
  .cart-page .cart .cart-other-products-wrapper {
    margin-bottom: 2rem;
  }
}
.cart-page .cart .cart-item-large-title {
  margin-bottom: 1.5rem;
}
@media only screen and (max-width: 64rem) {
  .cart-page .cart .cart-item-large-title {
    margin-bottom: 1rem;
  }
}
.cart-page .cart .single-cart-row {
  display: flex;
  align-items: stretch;
  margin-bottom: 1.5rem;
}
@media only screen and (max-width: 48rem) {
  .cart-page .cart .single-cart-row {
    flex-wrap: wrap;
  }
}
.cart-page .cart .single-cart-row.is-empty .cart-image-col .image-wrapper-inner {
  filter: blur(0.125rem);
}
.cart-page .cart .single-cart-row.has-model .cart-image-col .image-wrapper-inner {
  filter: none;
}
.cart-page .cart .single-cart-row.hidden {
  display: none;
}
.cart-page .cart .single-cart-row .cart-image-col {
  position: relative;
  display: flex;
  align-items: center;
  width: 7.563rem;
  margin-right: 1.5rem;
}
@media only screen and (max-width: 48rem) {
  .cart-page .cart .single-cart-row .cart-image-col {
    width: 100%;
    margin-right: 0;
    margin-bottom: 1rem;
  }
}
.cart-page .cart .single-cart-row .cart-image-col .image-wrapper-inner {
  position: relative;
  width: 100%;
  padding-top: 64.4628099174%;
}
.cart-page .cart .single-cart-row .cart-image-col .image-wrapper-inner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cart-page .cart .single-cart-row .cart-main {
  flex: 1 1 auto;
}
.cart-page .cart .single-cart-row .cart-heading {
  display: flex;
  align-items: center;
  column-gap: 1.5rem;
}
@media only screen and (max-width: 31.25rem) {
  .cart-page .cart .single-cart-row .cart-heading {
    display: none;
  }
}
.cart-page .cart .single-cart-row .cart-heading .cart-heading-title {
  padding-bottom: 0.625rem;
}
.cart-page .cart .single-cart-row .cart-body {
  display: flex;
  align-items: center;
  column-gap: 1.5rem;
  row-gap: 0.75rem;
}
@media only screen and (max-width: 80rem) {
  .cart-page .cart .single-cart-row .cart-body {
    margin-bottom: 1rem;
  }
}
@media only screen and (max-width: 48rem) {
  .cart-page .cart .single-cart-row .cart-body {
    flex-wrap: wrap;
  }
}
.cart-page .cart .single-cart-row .cart-body .cart-color-select {
  position: relative;
}
.cart-page .cart .single-cart-row .cart-body .cart-color-select .color-finishes-filters-outer {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 0;
  display: none;
  width: 41.5rem;
  padding: 1rem;
  border: 0.063rem solid rgba(201, 201, 201, 0.3);
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(0.625rem);
  z-index: 10;
}
.cart-page .cart .single-cart-row .cart-body .cart-color-select .color-finishes-filters-outer.is-open {
  display: block;
}
@media only screen and (max-width: 80rem) {
  .cart-page .cart .single-cart-row .cart-body .cart-color-select .color-finishes-filters-outer {
    left: unset;
    right: 0;
  }
}
@media only screen and (max-width: 48rem) {
  .cart-page .cart .single-cart-row .cart-body .cart-color-select .color-finishes-filters-outer {
    width: calc(100vw - 3.75rem - 0.5rem);
  }
}
@media only screen and (max-width: 31.25rem) {
  .cart-page .cart .single-cart-row .cart-body .cart-color-select .color-finishes-filters-outer {
    width: calc(100vw - 2.5rem - 0.5rem);
  }
}
.cart-page .cart .single-cart-row .cart-body .cart-color-select .color-finishes-filters-outer .color-finishes-filters-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.cart-page .cart .single-cart-row .cart-body .cart-color-select .color-finishes-filters-outer .color-finishes-filters-header .title-wrapper {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.cart-page .cart .single-cart-row .cart-body .cart-color-select .color-finishes-filters-outer .color-finishes-filters-header .close-wrapper {
  height: 1.5rem;
  cursor: pointer;
}
.cart-page .cart .single-cart-row .cart-body .cart-color-select .color-finishes-filters-outer .color-finishes-filters-header .close-wrapper:hover svg path {
  stroke: #C52728;
}
.cart-page .cart .single-cart-row .cart-body .cart-color-select.warning-validation .common-select-style-button {
  border-color: #C52728;
}
.cart-page .cart .single-cart-row .cart-body .color-select-trigger .color-select-image {
  width: 1.5rem;
  height: 1.5rem;
}
.cart-page .cart .single-cart-row .cart-body .color-select-trigger .color-select-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cart-page .cart .single-cart-row .cart-body .color-select-trigger .color-select-title {
  width: calc(100% - 1.5rem - 0.75rem);
  text-align: left;
  color: #6B6B6B;
  font-size: 1rem;
}
.cart-page .cart .single-cart-row .cart-item-price {
  color: #C52728;
  font-size: 1.25rem;
}
.cart-page .cart .single-cart-row .cart-item-total-price {
  font-size: 1.5rem;
  font-weight: 500;
  white-space: nowrap;
}
.cart-page .cart .single-cart-row .cart-delete-item-wrapper {
  position: relative;
}
.cart-page .cart .single-cart-row .cart-delete-item-wrapper .cart-delete-item-confirm {
  position: absolute;
  top: 2.25rem;
  right: 0;
  padding: 1rem;
  background-color: #FFF;
  border-radius: 0.313rem;
  box-shadow: 0 0.125rem 1.875rem 0 rgba(0, 0, 0, 0.1);
  z-index: 10;
}
@media only screen and (max-width: 80rem) {
  .cart-page .cart .single-cart-row .cart-delete-item-wrapper .cart-delete-item-confirm {
    top: 4.5rem;
  }
}
.cart-page .cart .single-cart-row .cart-delete-item-wrapper .cart-delete-item-confirm.hidden {
  display: none;
}
.cart-page .cart .single-cart-row .cart-delete-item-wrapper .cart-delete-item-confirm .cart-delete-item-confirm-inner {
  display: inline-flex;
  gap: 0.5rem;
  white-space: nowrap;
}
.cart-page .cart .single-cart-row .cart-delete-item-wrapper .cart-delete-item-confirm .cart-delete-item-confirm-inner .product-delete-confirm {
  margin-right: 0.5rem;
  color: #C52728;
}
.cart-page .cart .single-cart-row .cart-delete-item {
  text-align: center;
}
@media only screen and (max-width: 31.25rem) {
  .cart-page .cart .single-cart-row .cart-delete-item {
    text-align: right;
  }
}
.cart-page .cart .single-cart-row .cart-delete-item svg {
  width: 2rem;
  height: 2rem;
  cursor: pointer;
}
.cart-page .cart .single-cart-row .cart-delete-item svg path {
  transition: all 0.2s linear;
}
.cart-page .cart .single-cart-row .cart-delete-item svg:hover path {
  stroke: #C52728;
}
.cart-page .cart .single-cart-row .cart-heading > *:nth-child(1),
.cart-page .cart .single-cart-row .cart-body .cart-pavement-model-select {
  width: 16.938rem;
}
@media only screen and (max-width: 80rem) {
  .cart-page .cart .single-cart-row .cart-heading > *:nth-child(1),
  .cart-page .cart .single-cart-row .cart-body .cart-pavement-model-select {
    width: calc(50% - 0.75rem);
  }
}
@media only screen and (max-width: 31.25rem) {
  .cart-page .cart .single-cart-row .cart-heading > *:nth-child(1),
  .cart-page .cart .single-cart-row .cart-body .cart-pavement-model-select {
    width: 100%;
  }
}
.cart-page .cart .single-cart-row .cart-heading > *:nth-child(2),
.cart-page .cart .single-cart-row .cart-body .cart-color-select {
  width: 19.125rem;
}
@media only screen and (max-width: 80rem) {
  .cart-page .cart .single-cart-row .cart-heading > *:nth-child(2),
  .cart-page .cart .single-cart-row .cart-body .cart-color-select {
    width: calc(50% - 0.75rem);
  }
}
@media only screen and (max-width: 31.25rem) {
  .cart-page .cart .single-cart-row .cart-heading > *:nth-child(2),
  .cart-page .cart .single-cart-row .cart-body .cart-color-select {
    width: 100%;
  }
}
.cart-page .cart .single-cart-row .cart-heading > *:nth-child(3),
.cart-page .cart .single-cart-row .cart-body .cart-item-price {
  flex-basis: 0;
  flex-grow: 1;
  text-align: center;
}
.cart-page .cart .single-cart-row .cart-heading > *:nth-child(4),
.cart-page .cart .single-cart-row .cart-body .cart-area-input-wrapper {
  width: 6.875rem;
}
.cart-page .cart .single-cart-row .cart-heading > *:nth-child(5),
.cart-page .cart .single-cart-row .cart-body .cart-item-total-price {
  flex-basis: 0;
  flex-grow: 1;
  text-align: right;
}
.cart-page .cart .single-cart-row .cart-heading > *:nth-child(6),
.cart-page .cart .single-cart-row .cart-body .cart-delete-item-wrapper {
  width: 5.375rem;
}
@media only screen and (max-width: 80rem) {
  .cart-page .cart .single-cart-row .cart-item-desktop {
    display: none;
  }
}
.cart-page .cart .single-cart-row .cart-body-lgx {
  display: none;
  align-items: stretch;
  justify-content: flex-end;
  gap: 1.5rem;
}
@media only screen and (max-width: 80rem) {
  .cart-page .cart .single-cart-row .cart-body-lgx {
    display: flex;
  }
}
@media only screen and (max-width: 31.25rem) {
  .cart-page .cart .single-cart-row .cart-body-lgx {
    flex-wrap: wrap;
  }
}
.cart-page .cart .single-cart-row .cart-body-lgx .cart-body-item-wrapper-lgx {
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 31.25rem) {
  .cart-page .cart .single-cart-row .cart-body-lgx .cart-body-item-wrapper-lgx {
    width: calc(50% - 0.75rem);
  }
  .cart-page .cart .single-cart-row .cart-body-lgx .cart-body-item-wrapper-lgx .cart-area-input-wrapper {
    width: 100%;
  }
  .cart-page .cart .single-cart-row .cart-body-lgx .cart-body-item-wrapper-lgx .cart-area-input-wrapper .single-input {
    width: 100%;
  }
}
.cart-page .cart .single-cart-row .cart-body-lgx .cart-body-item-wrapper-lgx .title-wrapper {
  padding-bottom: 0.625rem;
}
.cart-page .cart .single-cart-row .cart-body-lgx .cart-body-item-wrapper-lgx .cart-body-item {
  margin-top: auto;
  margin-bottom: auto;
}
.cart-page .cart .single-cart-row .cart-body-lgx .cart-body-item-wrapper-lgx .cart-delete-item {
  margin-top: auto;
}
.cart-page .cart .single-cart-row .cart-body-lgx .cart-area-input-wrapper-lgx {
  min-width: 6.875rem;
}
.cart-page .cart .single-cart-row .cart-pavement-model-select-heading-mobile,
.cart-page .cart .single-cart-row .cart-color-select-heading-mobile {
  display: none;
  padding-bottom: 0.625rem;
}
@media only screen and (max-width: 31.25rem) {
  .cart-page .cart .single-cart-row .cart-pavement-model-select-heading-mobile,
  .cart-page .cart .single-cart-row .cart-color-select-heading-mobile {
    display: block;
  }
}
.cart-page .cart .add-other-option {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  color: #6B6B6B;
  font-size: 1.125rem;
  font-weight: 600;
  transition: color 0.2s linear;
  cursor: pointer;
}
.cart-page .cart .add-other-option svg path {
  transition: all 0.2s linear;
}
.cart-page .cart .add-other-option:hover {
  color: #434852;
}
.cart-page .cart .add-other-option:hover svg path {
  stroke: #C52728;
}
.cart-page .cart .optional-fields-wrapper {
  margin-bottom: 3rem;
}
@media only screen and (max-width: 48rem) {
  .cart-page .cart .optional-fields-wrapper {
    margin-bottom: 2rem;
  }
}
.cart-page .cart .optional-fields-wrapper .is-disabled {
  opacity: 0.35;
}
.cart-page .cart .optional-fields-wrapper .is-disabled input, .cart-page .cart .optional-fields-wrapper .is-disabled textarea, .cart-page .cart .optional-fields-wrapper .is-disabled select {
  pointer-events: none;
}
.cart-page .cart .optional-fields-wrapper .input-with-suffix {
  position: relative;
}
.cart-page .cart .optional-fields-wrapper .input-with-suffix input {
  padding-right: 2rem;
}
.cart-page .cart .optional-fields-wrapper .input-with-suffix input:not(:placeholder-shown) + .input-suffix {
  opacity: 1;
  visibility: visible;
}
.cart-page .cart .optional-fields-wrapper .input-with-suffix .input-suffix {
  position: absolute;
  top: 50%;
  right: 0.75rem;
  transform: translateY(-50%);
  color: #6B6B6B;
  font-size: 1.25rem;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.15s ease, visibility 0.15s ease;
}
.cart-page .cart .optional-fields-wrapper .input-with-suffix.is-focused .input-suffix {
  opacity: 1;
  visibility: visible;
}
.cart-page .cart .optional-fields-wrapper .input-with-suffix.has-value .input-suffix {
  opacity: 1;
  visibility: visible;
}
.cart-page .cart .optional-fields-wrapper .checkbox-single .checkbox-back {
  margin-right: 0.75rem;
}
.cart-page .cart .optional-fields-wrapper .shipping-wrapper {
  display: flex;
  flex-direction: column;
}
.cart-page .cart .optional-fields-wrapper .shipping-wrapper .checkbox-label {
  align-items: center;
}
.cart-page .cart .optional-fields-wrapper .shipping-wrapper .shipping-input-wrapper {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.cart-page .cart .optional-fields-wrapper .shipping-wrapper .shipping-input-wrapper .title-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-bottom: 0.625rem;
}
.cart-page .cart .optional-fields-wrapper .shipping-wrapper .shipping-input-wrapper .title-wrapper .shipping-info {
  color: #6B6B6B;
}
.cart-page .cart .optional-fields-wrapper .shipping-wrapper .shipping-input-wrapper .form-group {
  margin-top: auto;
}
.cart-page .order-summary {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
@media only screen and (max-width: 48rem) {
  .cart-page .order-summary {
    gap: 1rem;
    margin-bottom: 2rem;
  }
}
.cart-page .order-summary .order-summary-price {
  color: #C52728;
}
.cart-page .client-information .small-title {
  margin-bottom: 1.5rem;
}
.cart-page .client-information .form-group-first .single-input {
  width: calc((100% - 3rem) / 3.001);
}
@media only screen and (max-width: 64rem) {
  .cart-page .client-information .form-group-first .single-input {
    width: calc(50% - 0.75rem);
  }
}
@media only screen and (max-width: 31.25rem) {
  .cart-page .client-information .form-group-first .single-input {
    width: 100%;
  }
}
.cart-page .curbs-info-trigger {
  margin-left: 0.25rem;
}

.contacts-page .hero-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media only screen and (max-width: 64rem) {
  .contacts-page .hero-section-header {
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
  }
}
@media only screen and (max-width: 64rem) {
  .contacts-page .hero-section-header .main-title {
    width: 100%;
  }
}
.contacts-page .hero-section-header .contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
@media only screen and (max-width: 64rem) {
  .contacts-page .hero-section-header .contacts {
    width: 100%;
  }
}
.contacts-page .hero-section-header .contacts .single-contact {
  display: flex;
}
.contacts-page .hero-section-header .contacts .single-contact * {
  text-decoration: none;
  font-weight: 400;
}
@media only screen and (max-width: 48rem) {
  .contacts-page .hero-section-header .contacts .single-contact {
    width: 100%;
  }
}
.contacts-page .hero-section-header .contacts .single-contact .image-wrapper {
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 0.75rem;
  padding: 0.25rem;
  background-color: #A06F65;
}
.contacts-page .hero-section-header .contacts .single-contact .image-wrapper img {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1.25rem;
  height: 1.25rem;
}
.contacts-page .hero-section-header .contacts .single-contact .contact-text {
  margin-right: 0.375rem;
  color: #6B6B6B;
}
.contacts-page .hero-section-header .contacts .single-contact .contact-text a {
  color: #434852;
}
.contacts-page .hero-section-header .contacts .single-contact .contact-text a:hover {
  color: #6B6B6B;
}
.contacts-page .contacts-hero-section {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-bottom: 8rem;
}
@media only screen and (max-width: 64rem) {
  .contacts-page .contacts-hero-section {
    padding-bottom: 2rem;
  }
}
.contacts-page .contacts-hero-section .contacts-hero-left-side {
  width: calc(100% - 46.625rem - 1.5rem);
}
@media only screen and (max-width: 75rem) {
  .contacts-page .contacts-hero-section .contacts-hero-left-side {
    width: 100%;
  }
}
.contacts-page .contacts-hero-section .contacts-hero-left-side .contacts-area-wrapper {
  margin-bottom: 2rem;
}
.contacts-page .contacts-hero-section .contacts-hero-left-side .contacts-area-wrapper:last-child {
  margin-bottom: 0;
}
@media only screen and (max-width: 75rem) {
  .contacts-page .contacts-hero-section .contacts-hero-left-side .contacts-area-wrapper {
    max-width: 37.5rem;
  }
}
@media only screen and (max-width: 64rem) {
  .contacts-page .contacts-hero-section .contacts-hero-left-side .contacts-area-wrapper {
    margin-bottom: 1.5rem;
  }
}
.contacts-page .contacts-hero-section .contacts-hero-left-side .contacts-area-wrapper .contacts-area-location-title {
  margin-bottom: 0.75rem;
}
.contacts-page .contacts-hero-section .contacts-hero-left-side .contacts-area-wrapper .single-area-wrapper .single-area-item-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 31.25rem) {
  .contacts-page .contacts-hero-section .contacts-hero-left-side .contacts-area-wrapper .single-area-wrapper .single-area-item-wrapper {
    align-items: unset;
  }
}
.contacts-page .contacts-hero-section .contacts-hero-left-side .contacts-area-wrapper .single-area-wrapper .single-area-item-wrapper * {
  color: #434852;
  font-weight: 400;
  text-decoration: none;
}
.contacts-page .contacts-hero-section .contacts-hero-left-side .contacts-area-wrapper .single-area-wrapper .single-area-item-wrapper a:hover {
  color: #6B6B6B;
}
.contacts-page .contacts-hero-section .contacts-hero-left-side .contacts-area-wrapper .single-area-wrapper .single-area-item-wrapper:last-child {
  margin-bottom: 0;
}
.contacts-page .contacts-hero-section .contacts-hero-left-side .contacts-area-wrapper .single-area-wrapper .single-area-item-wrapper .image-wrapper {
  width: 2rem;
  height: 2rem;
  padding: 0.25rem;
  background-color: #535A67;
}
.contacts-page .contacts-hero-section .contacts-hero-left-side .contacts-area-wrapper .single-area-wrapper .single-area-item-wrapper .image-wrapper img {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1.5rem;
  height: 1.5rem;
}
@media only screen and (max-width: 31.25rem) {
  .contacts-page .contacts-hero-section .contacts-hero-left-side .contacts-area-wrapper .single-area-wrapper .single-area-item-wrapper .wysiwyg-styles {
    display: flex;
    align-items: center;
  }
}
.contacts-page .contacts-hero-section .contacts-hero-right-side {
  width: 46.625rem;
  overflow: hidden;
}
@media only screen and (max-width: 75rem) {
  .contacts-page .contacts-hero-section .contacts-hero-right-side {
    width: 100%;
  }
}
.contacts-page .contacts-hero-section .contacts-hero-right-side .contacts-gallery-slider-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}
@media only screen and (max-width: 48rem) {
  .contacts-page .contacts-hero-section .contacts-hero-right-side .contacts-gallery-slider-wrapper {
    gap: 1rem;
  }
}
.contacts-page .contacts-hero-section .contacts-hero-right-side .contacts-gallery-slider-wrapper .slick-slide {
  font-size: 0;
}
.contacts-page .contacts-hero-section .contacts-hero-right-side .contacts-gallery-slider-wrapper .contacts-gallery-slider-left {
  min-height: 32.125rem;
  width: 50%;
  overflow: hidden;
}
@media only screen and (max-width: 48rem) {
  .contacts-page .contacts-hero-section .contacts-hero-right-side .contacts-gallery-slider-wrapper .contacts-gallery-slider-left {
    min-height: 27.625rem;
  }
}
@media only screen and (max-width: 31.25rem) {
  .contacts-page .contacts-hero-section .contacts-hero-right-side .contacts-gallery-slider-wrapper .contacts-gallery-slider-left {
    width: 100%;
  }
}
.contacts-page .contacts-hero-section .contacts-hero-right-side .contacts-gallery-slider-wrapper .contacts-gallery-slider-left .single-gallery-slide {
  height: 32.125rem;
}
@media only screen and (max-width: 48rem) {
  .contacts-page .contacts-hero-section .contacts-hero-right-side .contacts-gallery-slider-wrapper .contacts-gallery-slider-left .single-gallery-slide {
    height: 27.625rem;
  }
}
.contacts-page .contacts-hero-section .contacts-hero-right-side .contacts-gallery-slider-wrapper .contacts-gallery-slider-left .single-gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contacts-page .contacts-hero-section .contacts-hero-right-side .contacts-gallery-slider-wrapper .contacts-gallery-slider-right {
  width: calc(50% - 1.5rem);
}
@media only screen and (max-width: 48rem) {
  .contacts-page .contacts-hero-section .contacts-hero-right-side .contacts-gallery-slider-wrapper .contacts-gallery-slider-right {
    width: calc(50% - 1rem);
  }
}
@media only screen and (max-width: 31.25rem) {
  .contacts-page .contacts-hero-section .contacts-hero-right-side .contacts-gallery-slider-wrapper .contacts-gallery-slider-right {
    display: none;
  }
}
.contacts-page .contacts-hero-section .contacts-hero-right-side .contacts-gallery-slider-wrapper .contacts-gallery-slider-right .contacts-gallery-preview .single-gallery-slide {
  height: 27.625rem;
}
.contacts-page .contacts-hero-section .contacts-hero-right-side .contacts-gallery-slider-wrapper .contacts-gallery-slider-right .contacts-gallery-preview .single-gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contacts-page .contacts-hero-section .contacts-hero-right-side .contacts-gallery-slider-wrapper {
  /* Before slick init, only show the first slide in MAIN */
}
.contacts-page .contacts-hero-section .contacts-hero-right-side .contacts-gallery-slider-wrapper .js-contacts-gallery-slider-main:not(.slick-initialized) .single-gallery-slide {
  display: none;
}
.contacts-page .contacts-hero-section .contacts-hero-right-side .contacts-gallery-slider-wrapper .js-contacts-gallery-slider-main:not(.slick-initialized) .single-gallery-slide:first-child {
  display: block;
}
.contacts-page .contacts-hero-section .contacts-hero-right-side .contacts-gallery-slider-wrapper {
  /* Before slick init, only show the second slide in PREVIEW (because preview is "next") */
}
.contacts-page .contacts-hero-section .contacts-hero-right-side .contacts-gallery-slider-wrapper .js-contacts-gallery-slider-preview:not(.slick-initialized) .single-gallery-slide {
  display: none;
}
.contacts-page .contacts-hero-section .contacts-hero-right-side .contacts-gallery-slider-wrapper .js-contacts-gallery-slider-preview:not(.slick-initialized) .single-gallery-slide:nth-child(2) {
  display: block;
}
.contacts-page .contacts-hero-section .contacts-hero-right-side .contacts-gallery-slider-nav {
  display: flex;
  justify-content: center;
  gap: 0.813rem;
  margin-top: 1.5rem;
}
@media only screen and (max-width: 48rem) {
  .contacts-page .contacts-hero-section .contacts-hero-right-side .contacts-gallery-slider-nav.nav-desktop {
    display: none;
  }
}
@media only screen and (min-width: 48.063rem) {
  .contacts-page .contacts-hero-section .contacts-hero-right-side .contacts-gallery-slider-nav.nav-mobile {
    display: none;
  }
}
.contacts-page .contacts-hero-section .contacts-hero-right-side .contacts-gallery-slider-nav .slick-arrow-custom {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  transform: none;
  border: 0.063rem solid #6B6B6B;
}
.contacts-page .contacts-hero-section .contacts-hero-right-side .contacts-gallery-slider-nav .slick-arrow-custom img {
  width: 1.5rem;
  height: 1.5rem;
}
.contacts-page .specialists-section-wrapper {
  padding-block: 4rem;
  background-color: #F2F2F2;
}
@media only screen and (max-width: 64rem) {
  .contacts-page .specialists-section-wrapper {
    padding-block: 2rem;
  }
}
.contacts-page .specialists-section-wrapper h2 {
  margin-bottom: 2rem;
}
.contacts-page .specialists-section-wrapper .specialists {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}
@media only screen and (max-width: 48rem) {
  .contacts-page .specialists-section-wrapper .specialists {
    gap: 1rem;
  }
}
.contacts-page .specialists-section-wrapper .specialists .single-specialist {
  width: calc((100% - 6rem) / 5.001);
  background-color: #FFF;
}
@media only screen and (max-width: 85.438rem) {
  .contacts-page .specialists-section-wrapper .specialists .single-specialist {
    width: calc((100% - 4.5rem) / 4.001);
  }
}
@media only screen and (max-width: 64rem) {
  .contacts-page .specialists-section-wrapper .specialists .single-specialist {
    width: calc((100% - 3rem) / 3.001);
  }
}
@media only screen and (max-width: 48rem) {
  .contacts-page .specialists-section-wrapper .specialists .single-specialist {
    width: calc(50% - 0.5rem);
  }
}
@media only screen and (max-width: 31.25rem) {
  .contacts-page .specialists-section-wrapper .specialists .single-specialist {
    width: 100%;
  }
}
.contacts-page .specialists-section-wrapper .specialists .single-specialist .image-wrapper {
  position: relative;
  width: 100%;
  padding-top: 116.6666666667%;
}
.contacts-page .specialists-section-wrapper .specialists .single-specialist .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.contacts-page .specialists-section-wrapper .specialists .single-specialist .content-wrapper {
  width: 100%;
  padding: 1rem 0.5rem 1rem 0.5rem;
  text-align: center;
}
.contacts-page .specialists-section-wrapper .specialists .single-specialist .content-wrapper p {
  font-size: 0.875rem;
}
.contacts-page .specialists-section-wrapper .specialists .single-specialist .content-wrapper .email,
.contacts-page .specialists-section-wrapper .specialists .single-specialist .content-wrapper .phone {
  display: block;
  width: 100%;
}
.contacts-page .specialists-section-wrapper .specialists .single-specialist .content-wrapper .email *,
.contacts-page .specialists-section-wrapper .specialists .single-specialist .content-wrapper .phone * {
  color: #434852;
  font-size: 0.875rem;
}
.contacts-page .specialists-section-wrapper .specialists .single-specialist .content-wrapper .email *:hover,
.contacts-page .specialists-section-wrapper .specialists .single-specialist .content-wrapper .phone *:hover {
  color: #C52728;
}
.contacts-page .contacts-map-section-wrapper {
  padding-block: 8rem;
}
@media only screen and (max-width: 64rem) {
  .contacts-page .contacts-map-section-wrapper {
    padding-block: 2rem;
  }
}
.contacts-page .contacts-map-section-wrapper .contacts-map-section {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.contacts-page .contacts-map-section-wrapper .locations-wrapper {
  width: 26.563rem;
  height: 54rem;
  overflow-y: auto;
}
@media only screen and (max-width: 64rem) {
  .contacts-page .contacts-map-section-wrapper .locations-wrapper {
    width: 100%;
    height: unset;
    overflow-y: unset;
  }
}
.contacts-page .contacts-map-section-wrapper .locations-wrapper::-webkit-scrollbar {
  width: 0.25rem;
}
.contacts-page .contacts-map-section-wrapper .locations-wrapper::-webkit-scrollbar-track {
  background-color: transparent;
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}
.contacts-page .contacts-map-section-wrapper .locations-wrapper::-webkit-scrollbar-thumb {
  border-radius: 0.313rem;
  border: 0.063rem solid #6B6B6B;
  background-color: #6B6B6B;
}
.contacts-page .contacts-map-section-wrapper .locations-wrapper .single-location {
  margin-bottom: 1.5rem;
}
.contacts-page .contacts-map-section-wrapper .locations-wrapper .single-location:last-child {
  margin-bottom: 0;
}
.contacts-page .contacts-map-section-wrapper .locations-wrapper .single-location .location-name {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
}
.contacts-page .contacts-map-section-wrapper .locations-wrapper .single-location .location-address-wrapper {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.contacts-page .contacts-map-section-wrapper .locations-wrapper .single-location .location-address-wrapper .image-wrapper {
  width: 1.5rem;
  height: 1.5rem;
}
.contacts-page .contacts-map-section-wrapper .locations-wrapper .single-location .location-address-wrapper .image-wrapper svg {
  width: 100%;
  height: 100%;
}
.contacts-page .contacts-map-section-wrapper .locations-wrapper .single-location .location-address-wrapper .address {
  width: calc(100% - 1.5rem - 0.5rem);
}
.contacts-page .contacts-map-section-wrapper .locations-wrapper .single-location .location-openers-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.contacts-page .contacts-map-section-wrapper .locations-wrapper .single-location .location-openers-wrapper .location-opener {
  width: 1.5rem;
  height: 1.5rem;
}
.contacts-page .contacts-map-section-wrapper .locations-wrapper .single-location .location-openers-wrapper .location-opener svg {
  width: 100%;
  height: 100%;
}
.contacts-page .contacts-map-section-wrapper .map-side {
  width: calc(100% - 26.563rem - 1.5rem);
}
@media only screen and (max-width: 64rem) {
  .contacts-page .contacts-map-section-wrapper .map-side {
    width: 100%;
  }
}
.contacts-page .contacts-map-section-wrapper .map-side .map-wrapper {
  height: 54rem;
}
@media only screen and (max-width: 64rem) {
  .contacts-page .contacts-map-section-wrapper .map-side .map-wrapper {
    height: 37.5rem;
  }
}
@media only screen and (max-width: 48rem) {
  .contacts-page .contacts-map-section-wrapper .map-side .map-wrapper {
    height: 28.75rem;
  }
}

.thank-you-page .thank-you-section-wrapper {
  padding-block: 4rem;
}
@media only screen and (max-width: 64rem) {
  .thank-you-page .thank-you-section-wrapper {
    padding-block: 2rem;
  }
}
.thank-you-page .thank-you-section-wrapper .thank-you-section {
  position: relative;
  display: flex;
  min-height: 36.875rem;
}
@media only screen and (max-width: 48rem) {
  .thank-you-page .thank-you-section-wrapper .thank-you-section {
    min-height: 25rem;
  }
}
.thank-you-page .thank-you-section-wrapper .thank-you-section .main-container {
  flex: 1;
  display: flex;
  align-items: center;
}
.thank-you-page .thank-you-section-wrapper .thank-you-section .overlay-content {
  max-width: 53.5rem;
  margin: 0 auto;
  padding-block: 4rem;
  color: #FFF;
  z-index: 4;
}
@media only screen and (max-width: 48rem) {
  .thank-you-page .thank-you-section-wrapper .thank-you-section .overlay-content {
    padding-block: 1.5rem;
  }
}
.thank-you-page .thank-you-section-wrapper .thank-you-section .overlay-content .big-title {
  margin-bottom: 0.75rem;
  font-family: "Baskervville", sans-serif;
  text-transform: uppercase;
}
.thank-you-page .thank-you-section-wrapper .thank-you-section .overlay-content .text-wrapper {
  max-width: 68.125rem;
  margin-bottom: 1.75rem;
  color: #DCDCDC;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 170%;
}

.single-page {
  min-height: calc(100vh - 8rem - 22rem);
  margin: 0 auto;
  padding: 4rem 0;
}
@media only screen and (max-width: 85.438rem) {
  .single-page {
    min-height: calc(100vh - 8rem - 27rem);
  }
}
@media only screen and (max-width: 64rem) {
  .single-page {
    min-height: calc(100vh - 7.625rem - 38.938rem);
  }
}
@media only screen and (max-width: 48rem) {
  .single-page {
    min-height: calc(100vh - 7.625rem - 46.875rem);
  }
}
.single-page h1 {
  margin-bottom: 1.25rem;
}

.files-list-page .hero .overlay-content {
  justify-content: center;
  min-height: 13.5rem;
}
.files-list-page .files-list-container {
  padding-top: 2rem;
  padding-bottom: 4rem;
}
@media only screen and (max-width: 64rem) {
  .files-list-page .files-list-container {
    padding-bottom: 2rem;
  }
}
.files-list-page .files-list-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 3rem;
}
.files-list-page .files-list-tabs .default-tab {
  flex: 1;
}
@media only screen and (max-width: 31.25rem) {
  .files-list-page .files-list-tabs .default-tab {
    flex-basis: auto;
    width: 100%;
  }
}
.files-list-page .files-groups-wrapper {
  column-count: 2;
  column-gap: 3rem;
}
.files-list-page .files-groups-wrapper.single-group {
  column-count: 1;
}
@media only screen and (max-width: 48rem) {
  .files-list-page .files-groups-wrapper {
    flex-direction: column;
    column-count: 1;
  }
}
.files-list-page .files-group {
  width: 100%;
  break-inside: avoid;
  margin-bottom: 2rem;
}
@media only screen and (max-width: 48rem) {
  .files-list-page .files-group {
    width: 100%;
  }
}
.files-list-page .files-group-title {
  padding-bottom: 1rem;
  color: #434852;
  font-size: 1.5rem;
  font-weight: 500;
  border-bottom: 0.063rem dashed #C9C9C9;
}
.files-list-page .files-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.files-list-page .files-list-item {
  border-bottom: 0.063rem solid rgba(215, 215, 215, 0.4);
}
.files-list-page .files-list-item a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.75rem 0 0.75rem 0;
  color: #6B6B6B;
  text-decoration: underline;
  transition: color 0.2s linear;
}
.files-list-page .files-list-item a:hover {
  color: #A06F65;
}
.files-list-page .file-icon svg {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
}

.page-404 .page-404-content {
  min-height: calc(100vh - 8rem - 22rem);
  margin: 0 auto;
  padding: 4rem 0;
}
@media only screen and (max-width: 85.438rem) {
  .page-404 .page-404-content {
    min-height: calc(100vh - 8rem - 27rem);
  }
}
@media only screen and (max-width: 64rem) {
  .page-404 .page-404-content {
    min-height: calc(100vh - 7.625rem - 38.938rem);
  }
}
@media only screen and (max-width: 48rem) {
  .page-404 .page-404-content {
    min-height: calc(100vh - 7.625rem - 46.875rem);
  }
}
.page-404 .page-404-content h1 {
  margin-bottom: 1.25rem;
}

/*# sourceMappingURL=style.css.map */
