/*!**********************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./style/main.scss ***!
  \**********************************************************************************************************/
* {
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
  font-family: "Outfit", sans-serif;
  color: #000;
}

body {
  background-color: #F3F1ED;
}

main {
  padding-top: 130px;
}

section {
  margin: 0 auto;
}

h1 {
  font-size: 40px;
  font-weight: 400;
  font-family: "Albra Regular";
}

h2 {
  font-family: "Albra Regular";
}

a {
  text-decoration: none;
}

.btn {
  border: 1px solid #000;
  border-radius: 22px;
  background-color: transparent;
  color: #000;
  font-weight: 400;
  font-size: 13px;
  text-decoration: none;
  padding: 15.5px 20px;
  display: flex !important;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin: 0;
  transition: all 0.15s ease-in-out;
}
.btn:hover {
  background-color: #000;
  color: #fff;
}
.btn:hover svg {
  filter: invert(1);
}

.black-btn {
  background-color: #000;
  color: #fff;
  transition: all 0.15s ease-in-out;
}
.black-btn:hover {
  background-color: transparent;
  color: #000;
  border: 1px solid #000;
}
.black-btn:hover svg {
  filter: invert(1);
}

h2 {
  font-weight: 400;
  font-size: 36px;
  margin-bottom: 30px;
}

.w-btn {
  background-color: #fff;
  color: #000;
  border: none;
  margin-bottom: 17px;
}

@keyframes marquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
.contact-form {
  max-width: 800px;
  margin: 0 auto;
  background-color: #f4f1eb;
  padding: 40px;
  border-radius: 20px;
  font-family: sans-serif;
}
.contact-form__heading {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
}
.contact-form__subheading {
  font-size: 18px;
  margin-bottom: 32px;
  color: #333;
}
.contact-form .wpforms-field {
  margin-bottom: 24px;
}
.contact-form .wpforms-field-label {
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
  color: #000;
}
.contact-form .wpforms-field input,
.contact-form .wpforms-field select,
.contact-form .wpforms-field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 16px;
  background: #fff;
}
.contact-form .wpforms-field.wpforms-field-checkbox ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.contact-form .wpforms-field.wpforms-field-checkbox li {
  margin: 0;
}
.contact-form .wpforms-field.wpforms-field-checkbox li input {
  display: none;
}
.contact-form .wpforms-field.wpforms-field-checkbox li label {
  display: inline-block;
  padding: 12px 20px;
  border: 1px solid #000;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: #fff;
  font-weight: 500;
}
.contact-form .wpforms-field.wpforms-field-checkbox li label:hover {
  background-color: #eee;
}
.contact-form .wpforms-field.wpforms-field-checkbox li input:checked + label {
  background-color: #000;
  color: #fff;
}
.contact-form .wpforms-field-description {
  font-size: 14px;
  color: #666;
}
.contact-form .wpforms-submit-container {
  margin-top: 24px;
  text-align: center;
}
.contact-form .wpforms-submit-container .wpforms-submit {
  background-color: #000;
  color: #fff;
  border: none;
  padding: 14px 36px;
  font-size: 16px;
  border-radius: 32px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.contact-form .wpforms-submit-container .wpforms-submit:hover {
  background-color: #333;
}
.contact-form .wpforms-field.wpforms-field-terms {
  display: flex;
  align-items: center;
  gap: 12px;
}
.contact-form .wpforms-field.wpforms-field-terms input[type=checkbox] {
  width: auto;
}
.contact-form .wpforms-field.wpforms-field-terms label {
  font-size: 14px;
  font-weight: 400;
}
@media (max-width: 900px) {
  .contact-form {
    padding: 24px;
  }
  .contact-form__heading {
    font-size: 28px;
  }
  .contact-form__subheading {
    font-size: 16px;
  }
}

.post-hero {
  width: 100%;
  padding: 30px 20px;
}
@media only screen and (min-width: 900px) {
  .post-hero {
    padding: 60px 20px;
  }
}
.post-hero__wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  max-width: 1440px;
  margin: 0 auto;
}
@media only screen and (min-width: 900px) {
  .post-hero__wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (min-width: 1200px) {
  .post-hero__wrapper {
    grid-template-columns: 2fr 3fr;
    gap: 80px;
  }
}
.post-hero__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
}
.post-hero__category {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  background-color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  color: #555;
  margin: 0;
  width: fit-content;
  margin-bottom: 25px;
  font-size: 14px;
  font-weight: 400;
}
.post-hero__title {
  font-size: 34px;
  font-weight: 400;
  color: #000;
  line-height: 1.2;
  margin: 0;
  margin-bottom: 20px;
}
.post-hero__excerpt {
  margin: 0;
  font-size: 16px;
  font-weight: 300;
  color: #555;
}
.post-hero__image {
  width: 100%;
  border-radius: 25px;
  max-height: 320px;
}
.post-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 25px;
}

.post-outline-layout {
  width: 100%;
  padding: 30px 20px;
}
@media only screen and (min-width: 900px) {
  .post-outline-layout {
    padding: 60px 20px;
  }
}
.post-outline-layout__wrapper {
  display: grid;
  grid-template-columns: 1fr;
  padding: 0;
  gap: 48px;
  max-width: 1440px;
  margin: 0 auto;
}
@media only screen and (min-width: 900px) {
  .post-outline-layout__wrapper {
    grid-template-columns: 1fr 2fr;
  }
}
@media only screen and (min-width: 1200px) {
  .post-outline-layout__wrapper {
    grid-template-columns: 1fr 3fr;
  }
}

.post-outline {
  width: 100%;
  position: static;
  align-self: flex-start;
}
@media only screen and (min-width: 900px) {
  .post-outline {
    position: sticky;
    top: 130px;
    left: 0;
  }
}
@media only screen and (min-width: 1100px) {
  .post-outline {
    top: 160px;
  }
}
.post-outline h3 {
  font-size: 18px;
  margin-bottom: 16px;
}
.post-outline .outline-content {
  background-color: #fff;
  padding: 30px 20px;
  border-radius: 20px;
}
.post-outline #progress-bar {
  width: 0;
  height: 4px;
  background-color: #746750;
  margin: 0;
  margin-bottom: 24px;
  border-radius: 2px;
  transition: width 0.3s ease-out;
}
.post-outline__list {
  list-style: none;
  padding-left: 0;
  margin-top: 16px;
}
.post-outline__list li {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #E8E6E1;
}
.post-outline__list li a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
  line-height: 1.4;
}
.post-outline__list li a:hover {
  color: #000;
}

.post-content {
  flex: 1;
  min-width: 0;
}
.post-content h2 {
  margin-top: 32px;
  scroll-margin-top: 80px;
}
@media only screen and (min-width: 900px) {
  .post-content h2 {
    margin-top: 64px;
    scroll-margin-top: 130px;
  }
}
@media only screen and (min-width: 1100px) {
  .post-content h2 {
    scroll-margin-top: 160px;
  }
}
.post-content p {
  margin: 16px 0;
}
@media only screen and (min-width: 900px) {
  .post-content p {
    margin: 20px 0;
  }
}

.reading-time {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #000;
  justify-content: space-between;
  margin-bottom: 13px;
}
.reading-time__icon {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}
.reading-time__icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}
.reading-time__text {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.page-template-legal-page .post-hero {
  display: flex;
  flex-direction: column;
  max-width: 1440px;
  margin: 0 auto;
}

.breadcrumbs {
  max-width: 1440px;
  padding: 0 20px;
}
.breadcrumbs a,
.breadcrumbs span {
  color: #A39D97;
  font-weight: 400;
  font-size: 14px;
}
/*!************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./style/header.scss ***!
  \************************************************************************************************************/
@charset "UTF-8";
header {
  position: fixed;
  width: 100%;
  z-index: 9999;
  padding: 24px 20px 0;
}
header .header__wrapper {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
}
header a {
  text-decoration: none;
}
header .header_inner {
  position: relative;
  background-color: #fff;
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 1100px) {
  header .header_inner {
    display: none;
  }
}
header .header_inner .header-logo,
header .header_inner .header-nav {
  margin: 0;
}
header .header_inner .header-logo {
  max-height: 60px;
  height: 60px;
  transition: opacity 0.15s ease-in-out;
}
header .header_inner .header-logo:hover {
  opacity: 0.7;
}
header .header_inner .header-logo__wrapper {
  flex: 0 0 auto;
  margin: 0 2rem;
}
header .header_inner .header-logo img {
  display: block;
  width: auto;
  height: 60px;
}
header .header_inner .contact-element {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 0.5px solid #000;
  border-radius: 11px;
  padding: 12px 20px;
  font-weight: 400;
  font-size: 8px;
}
header .header_inner .contact-element img {
  width: 14px;
  height: 16px;
  margin-right: 12px;
}
header .header_inner .contact-element a {
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  color: #000;
}
header .header_inner .contact-element::after {
  width: 11px;
  height: 5px;
  margin-left: 13px;
}
header .header_inner .contact-element:hover {
  cursor: pointer;
}
header .header_inner .header-nav {
  height: 100%;
}
header .header_inner .header-nav--left {
  flex: 1;
  display: flex;
  justify-content: flex-end; /* default, will tweak below */
  align-items: center;
}
header .header_inner .header-nav--right {
  flex: 1;
  display: flex;
  justify-content: space-between; /* default, will tweak below */
  align-items: center;
}
header .header_inner .header__aside-nav {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 0;
}
header .header_inner .header__ctas {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 1rem;
  margin: 0;
}
header .header_inner .header__schedule-link {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0 1rem;
  height: 3rem;
  border: 1px solid #A98C5F;
  border-radius: 5px;
  background: #A98C5F;
  color: #FFFFFF;
  font-size: 14px;
  transition: all 0.15s ease-in-out;
}
header .header_inner .header__schedule-link:hover {
  background: transparent;
  color: #A98C5F;
}
header .header_inner .main-navigation {
  height: 100%;
  margin: 0;
}
header .header_inner .main-menu-list {
  list-style-type: none;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
header .header_inner .main-menu-list li {
  height: 100%;
}
header .header_inner .main-menu-list li a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.15s ease-in-out;
}
header .header_inner .main-menu-list li a:hover {
  color: #A98C5F;
}
header .header_inner .main-menu-list li + li {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 35px;
}
header .header_inner .main-menu-list > li.menu-item-has-children > a::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-left: 0.5rem;
  vertical-align: middle;
  background-image: url("data:image/svg+xml;utf8,<svg fill=\"black\" viewBox=\"0 0 16 16\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M4.646 6.646a.5.5 0 0 1 .708 0L8 9.293l2.646-2.647a.5.5 0 0 1 .708.708l-3 3a.5.5 0 0 1-.708 0l-3-3a.5.5 0 0 1 0-.708z\"/></svg>");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
header .header_inner .main-menu-list > li a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 0;
  color: #000;
  text-decoration: none;
}
header .header_inner .main-menu-list > li > ul {
  position: absolute;
  top: 96px;
  width: 100%;
  height: 80px;
  padding: 0 20px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}
header .header_inner .main-menu-list > li > ul li {
  position: relative;
  height: 100%;
  padding: 0;
}
header .header_inner .main-menu-list > li > ul li a {
  height: 100%;
  color: #000;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
}
header .header_inner .main-menu-list > li > ul li a:hover {
  opacity: 0.8;
}
header .header_inner .main-menu-list > li > ul li ul {
  position: absolute;
  top: 96px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  background-color: #fff;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
  z-index: 1000;
  min-width: 220px;
  list-style: none;
}
header .header_inner .main-menu-list > li > ul li ul li {
  margin-left: 0;
  text-align: left;
}
header .header_inner .main-menu-list > li > ul li ul li a {
  text-align: left;
  white-space: nowrap;
}
header .header_inner .main-menu-list > li > ul li:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
header .header_inner .main-menu-list > li > ul li.menu-item-has-children > a::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-left: 0.5rem;
  vertical-align: middle;
  background-image: url("data:image/svg+xml;utf8,<svg fill=%27black%27 viewBox=%270 0 16 16%27 xmlns=%27http://www.w3.org/2000/svg%27><path d=%27M4.646 6.646a.5.5 0 0 1 .708 0L8 9.293l2.646-2.647a.5.5 0 0 1 .708.708l-3 3a.5.5 0 0 1-.708 0l-3-3a.5.5 0 0 1 0-.708z%27/></svg>");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
header .header_inner .main-menu-list > li:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
header .header-contacts {
  position: relative;
  z-index: 100;
  display: inline-block;
  margin: 0;
}
header .header-contacts .contacts-toggle {
  background: #fff;
  border: 1px solid #000;
  border-radius: 5px;
  padding: 0 20px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  height: 3rem;
}
header .header-contacts .contacts-toggle .contact-icon {
  max-height: 16px;
  object-fit: contain;
}
header .header-contacts .contacts-toggle .contacts-phone {
  font-weight: 700;
}
header .header-contacts .contacts-toggle .contacts-arrow {
  width: 12px;
  height: 6px;
  transition: transform 0.15s ease-in-out;
  transform: rotate(180deg);
}
header .header-contacts .contacts-toggle[aria-expanded=true] .contacts-arrow {
  transform: rotate(0deg);
}
header .header-contacts .contacts-toggle .contacts-block {
  display: flex;
  flex-direction: column;
}
header .header-contacts .contacts-toggle .contacts-block span {
  margin: 0;
}
header .header-contacts .contacts-toggle .contact-icon {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}
header .header-contacts .contacts-toggle .contact-title {
  font-weight: 400;
  font-size: 16px;
  margin-right: 4px;
}
header .header-contacts .contacts-toggle .contacts-phone {
  font-weight: 700;
  font-size: 16px;
}
header .header-contacts .contacts-dropdown {
  position: absolute;
  top: 100%;
  left: -50%;
  background: #fff;
  padding: 24px;
  margin-top: 8px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  width: 340px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
}
@media all and (max-width: 1300px) {
  header .header-contacts .contacts-dropdown {
    left: -30%;
  }
}
@media all and (max-width: 900px) {
  header .header-contacts .contacts-dropdown {
    left: -880%;
  }
}
header .header-contacts .contacts-dropdown.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
header .header-contacts .contacts-dropdown .contact-item {
  margin-bottom: 24px;
  font-size: 16px;
}
header .header-contacts .contacts-dropdown .contact-item .contact-location {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #eee;
  padding: 4px 8px;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 16px;
  margin-bottom: 8px;
  width: fit-content;
  margin-left: 0;
}
header .header-contacts .contacts-dropdown .contact-item .contact-location .icon-pin {
  width: 16px;
  height: 16px;
}
header .header-contacts .contacts-dropdown .contact-item .contact-phone {
  font-weight: 700;
  margin-bottom: 4px;
}
header .header-contacts .contacts-dropdown .contact-item .contact-address,
header .header-contacts .contacts-dropdown .contact-item .contact-email {
  font-weight: 400;
}
header .header-mobile {
  width: 100%;
  position: relative;
  height: 60px;
  z-index: 1000;
}
@media only screen and (min-width: 1100px) {
  header .header-mobile {
    display: none;
  }
}
header .header-mobile__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 16px;
  background-color: #fff;
  border-bottom: 1px solid #e5e5e5;
  border-radius: 10px;
  position: relative;
}
header .header-mobile .open {
  visibility: visible;
  opacity: 1;
}
header .header-mobile__logo {
  display: inline-block;
  max-height: 50px;
  height: 50px;
  margin: 0;
  transition: opacity 0.15s ease-in-out;
}
header .header-mobile__logo:hover {
  opacity: 0.7;
}
header .header-mobile__logo img {
  width: auto;
  height: 50px;
  display: block;
}
header .header-mobile__actions {
  display: flex;
  align-items: center;
  margin: 0;
}
header .header-mobile__burger {
  background: none;
  border: none;
  padding: 8px;
  margin-left: 12px;
  cursor: pointer;
}
header .header-mobile__burger .burger-icon {
  display: block;
  width: 20px;
  height: 2px;
  background-color: #000;
  position: relative;
  transition: all 0.3s;
}
header .header-mobile__burger .burger-icon::before, header .header-mobile__burger .burger-icon::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 2px;
  background-color: #000;
  transition: all 0.3s;
  left: 0;
}
header .header-mobile__burger .burger-icon::before {
  top: -6px;
}
header .header-mobile__burger .burger-icon::after {
  bottom: -6px;
}
header .header-mobile__burger.open .burger-icon {
  background-color: transparent;
}
header .header-mobile__burger.open .burger-icon::before {
  transform: rotate(45deg);
  top: 0;
}
header .header-mobile__burger.open .burger-icon::after {
  transform: rotate(-45deg);
  bottom: 0;
}
header .header-mobile__menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transform: translateY(-100%);
  transition: transform 0.4s ease;
  overflow-y: auto;
  z-index: 999;
}
header .header-mobile__menu.open {
  transform: translateY(0);
}
header .header-mobile__menu-inner {
  padding: 16px;
}
header .header-mobile__menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #eee;
  padding-bottom: 12px;
  margin-bottom: 12px;
}
header .header-mobile__menu-header .header-mobile__logo {
  max-width: 140px;
}
header .header-mobile__menu-header .header-mobile__close {
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  margin: 0;
}
header .header-mobile__menu-header .header-mobile__close .close-icon {
  position: relative;
  display: block;
  width: 20px;
  height: 20px;
}
header .header-mobile__menu-header .header-mobile__close .close-icon::before, header .header-mobile__menu-header .header-mobile__close .close-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 20px;
  height: 2px;
  background-color: #000;
}
header .header-mobile__menu-header .header-mobile__close .close-icon::before {
  transform: rotate(45deg);
}
header .header-mobile__menu-header .header-mobile__close .close-icon::after {
  transform: rotate(-45deg);
}
header .header-mobile .mobile-navigation nav {
  display: block;
}
header .header-mobile .mobile-navigation .mobile-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
header .header-mobile .mobile-navigation .mobile-menu-list > li {
  border-bottom: 1px solid #eee;
}
header .header-mobile .mobile-navigation .mobile-menu-list > li a {
  display: block;
  padding: 16px 0;
  text-decoration: none;
  color: #000;
  font-size: 16px;
  font-weight: 500;
}
header .header-mobile .mobile-navigation .mobile-menu-list > li.menu-item-has-children > a {
  position: relative;
}
header .header-mobile .mobile-navigation .mobile-menu-list > li.menu-item-has-children > a::after {
  content: "▼";
  position: absolute;
  right: 0;
  font-size: 12px;
  transition: transform 0.3s;
}
header .header-mobile .mobile-navigation .mobile-menu-list > li.open > a::after {
  transform: rotate(180deg);
}
header .header-mobile .mobile-navigation .mobile-menu-list > li ul.sub-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding-left: 12px;
}
header .header-mobile .mobile-navigation .mobile-menu-list > li ul.sub-menu li a {
  padding: 12px 0;
  font-size: 15px;
}
header .header-mobile .mobile-navigation .mobile-menu-list > li.open ul.sub-menu {
  max-height: 1000px;
}
header .header-mobile .mobile-navigation .mobile-menu-list .submenu-open > .sub-menu {
  display: flex;
  flex-direction: column;
  max-height: unset;
  list-style-type: none;
  padding: 0;
}
header .header-mobile .mobile-navigation .mobile-menu-list .submenu-open > .sub-menu li {
  margin: 0;
}
header .header-mobile .mobile-navigation .mobile-menu-list .sub-menu {
  display: none;
}
header .header-mobile .header-contacts {
  position: relative;
}
header .header-mobile .header-contacts .contacts-toggle {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #000;
  border-radius: 50%;
  padding: 0;
  cursor: pointer;
}
header .header-mobile .header-contacts .contacts-toggle .contact-icon {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}
header .header-mobile .header-contacts .contacts-toggle .contacts-block {
  display: flex;
  flex-direction: column;
  text-align: left;
}
header .header-mobile .header-contacts .contacts-toggle .contacts-block .contact-title {
  font-weight: 600;
  font-size: 14px;
}
header .header-mobile .header-contacts .contacts-toggle .contacts-block .contacts-phone {
  font-size: 12px;
  color: #000;
  text-decoration: none;
}
header .header-mobile .header-contacts .contacts-toggle .contacts-arrow {
  margin-left: 8px;
}
header .header-mobile .header-contacts .contacts-toggle .contacts-arrow svg {
  transition: transform 0.3s;
}
header .header-mobile .header-contacts .contacts-toggle[aria-expanded=true] .contacts-arrow svg {
  transform: rotate(180deg);
}
header .header-mobile .header-contacts .contacts-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  width: 260px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  border-radius: 4px;
  z-index: 999;
}
header .header-mobile .header-contacts .contacts-dropdown.open {
  max-height: 1000px;
  padding: 14px;
}
header .header-mobile .header-contacts .contacts-dropdown .contact-item {
  padding: 12px;
  border-bottom: 1px solid #eee;
}
header .header-mobile .header-contacts .contacts-dropdown .contact-item .contact-location {
  display: flex;
  align-items: center;
  margin-bottom: 4px;
}
header .header-mobile .header-contacts .contacts-dropdown .contact-item .contact-location svg {
  margin-right: 8px;
}
header .header-mobile .header-contacts .contacts-dropdown .contact-item .contact-location span {
  font-size: 14px;
}
header .header-mobile .header-contacts .contacts-dropdown .contact-item .contact-phone,
header .header-mobile .header-contacts .contacts-dropdown .contact-item .contact-address,
header .header-mobile .header-contacts .contacts-dropdown .contact-item .contact-email {
  display: block;
  font-size: 14px;
  margin-top: 4px;
  color: #000;
  text-decoration: none;
}
/*!******************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./style/hero-section.scss ***!
  \******************************************************************************************************************/
.hero {
  padding: 0 0 0px 20px;
  margin: 0 auto;
  max-width: 1440px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media all and (max-width: 1300px) {
  .hero {
    padding: 0 0 50px 40px;
  }
}
@media all and (max-width: 900px) {
  .hero {
    flex-direction: column;
    padding: 0 20px 50px;
  }
}
@media all and (max-width: 900px) {
  .hero .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 50px;
  }
  .hero .hero-content .hero-rating {
    display: flex;
    align-items: center;
  }
  .hero .hero-content .hero-title {
    font-size: 32px;
    text-align: center;
  }
  .hero .hero-content .hero-content-text {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    padding: 0 20px;
  }
  .hero .hero-content .hero-content-text .hero-content-text-item {
    margin: 20px 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 2px;
    background-color: #E8E6E1;
    border-radius: 10px;
  }
  .hero .hero-content .hero-content-text .hero-content-text-item img {
    margin: 0 0 15px 0;
  }
  .hero .hero-content .hero-content-text .hero-content-text-item span {
    text-align: center;
    font-size: 14px;
  }
}
.hero .hero-rating-top {
  display: flex;
  align-items: center;
}
.hero .hero-rating-top * {
  margin: 0;
}
.hero .rating {
  margin-left: 7px;
  font-size: 16px;
  font-weight: 500;
  color: #000;
}
.hero .rating .stars {
  color: gold;
  margin-left: 4px;
}
.hero .hero-title {
  margin-top: 30px;
}
.hero .hero-content-text-item {
  font-weight: 300;
  font-size: 16px;
}
.hero .hero-content-text-item + .hero-content-text-item {
  margin-top: 12px;
}
.hero .hero-content-text-item img {
  margin-right: 14px;
}
.hero .hero-slider {
  width: 1135px;
  margin-top: 0;
  overflow: hidden;
}
.hero .hero-slider .swiper-slide {
  width: 115px;
  border-radius: 20px;
  transition: width 0.5s ease;
  flex-shrink: 0;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  user-select: none;
}
.hero .hero-slider .swiper-slide img {
  display: block;
  width: 100%;
  height: 345px;
  object-fit: cover;
  border-radius: 25px;
}
@media all and (max-width: 900px) {
  .hero .hero-slider {
    width: 100%;
  }
}
.hero .hero-slider .swiper-wrapper {
  display: flex;
  gap: 13px;
}
.hero .hero-slider .swiper-slide.active-slide {
  width: 292px;
  z-index: 10;
}
.hero .hero-buttons {
  display: flex;
  align-items: center;
}
.hero .hero-buttons .black-btn {
  margin-right: 20px;
}
.hero .hero-content-text {
  margin-top: 50px;
  margin-bottom: 50px;
}
/*!**************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./style/about-us.scss ***!
  \**************************************************************************************************************/
.about-us {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 30px;
  width: 100%;
  padding: 30px 20px;
  max-width: 1440px;
  margin: 0 auto;
}
@media only screen and (min-width: 900px) {
  .about-us {
    grid-template-columns: 1fr 1fr;
    padding: 60px 20px;
  }
}
.about-us .about-us_images {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 24px;
  order: 2;
}
.about-us .about-us_image {
  width: 100%;
  height: 350px;
  border-radius: 20px;
}
.about-us .about-us_image:nth-child(2) {
  height: 451px;
}
.about-us .about-us_image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 20px;
}
@media all and (max-width: 900px) {
  .about-us .about-us_images {
    gap: 12px;
    order: 2;
  }
  .about-us .about-us_images .about-us_image {
    width: 100%;
    height: 40vw;
    border-radius: 20px;
  }
  .about-us .about-us_images .about-us_image:nth-child(2) {
    height: 55vw;
  }
  .about-us .about-us_images .about-us_image img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 20px;
  }
}
.about-us .about-us_content {
  order: 2;
}
.about-us .about-us_content .about-us_experience {
  background-color: #fff;
  border-radius: 8px;
  padding: 6px 8px;
  font-weight: 400;
  font-size: 12px;
  line-height: 24px;
  color: #252525;
  display: flex;
  align-items: center;
  max-width: 251px;
  margin: 0;
  width: fit-content;
  margin-bottom: 20px;
}
.about-us .about-us_content .about-us_experience svg {
  margin: 0 6px 0 0;
}
.about-us .about-us_content p {
  font-weight: 300;
  font-size: 16px;
  line-height: 140%;
}
.about-us .about-us_content .btn {
  margin: 0;
  margin-top: 50px;
  display: block;
  width: fit-content;
}
@media only screen and (max-width: 900px) {
  .about-us .about-us_content {
    order: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .about-us .about-us_content * {
    text-align: center;
  }
  .about-us .about-us_content .btn {
    display: none;
  }
}
/*!**************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./style/our-services-section.scss ***!
  \**************************************************************************************************************************/
.our-services {
  background-color: #E8E6E1;
  width: 100%;
  padding: 30px 20px;
}
@media only screen and (min-width: 900px) {
  .our-services {
    padding: 60px 20px;
  }
}
.our-services__inner {
  max-width: 1440px;
  margin: 0 auto;
  overflow: hidden;
}

.our-services h2 {
  font-size: 32px;
  margin: 0;
  margin-bottom: 40px;
  text-align: center;
  color: #111;
  width: fit-content;
}
@media all and (max-width: 525px) {
  .our-services h2 {
    width: 100%;
    margin-bottom: 80px;
  }
}
.our-services .services-slider {
  position: relative;
  overflow: visible;
}
.our-services .services-slider .swiper-wrapper {
  display: flex;
}
.our-services .services-slider .swiper-slide {
  flex-shrink: 0;
  width: auto;
}
.our-services .services-slider .service-card {
  position: relative;
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  opacity: 1;
  transition: opacity 0.15s ease-in-out;
}
.our-services .services-slider .service-card:hover {
  opacity: 0.7;
}
.our-services .services-slider .service-card .service-overlay {
  width: 100%;
  height: 100%;
  min-height: 400px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
  padding: 24px;
  display: flex;
  align-items: flex-end;
}
.our-services .services-slider .service-card .service-content {
  color: #fff;
  width: 100%;
  height: 100%;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
.our-services .services-slider .service-card .service-content div {
  margin: 0;
}
.our-services .services-slider .service-card .service-content .service-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}
.our-services .services-slider .service-card .service-content .service-categories .service-category {
  background-color: rgba(255, 255, 255, 0.15);
  padding: 4px 8px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  line-height: 1;
  color: #fff;
  margin: 0;
}
.our-services .services-slider .service-card .service-content .service-categories .service-category img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}
.our-services .services-slider .service-card .service-content .service-icon {
  margin-bottom: 10px;
}
.our-services .services-slider .service-card .service-content .service-icon img {
  width: 32px;
  height: 32px;
}
.our-services .services-slider .service-card .service-content h3 {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 10px;
  color: #fff;
}
.our-services .services-slider .service-card .service-content p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 15px;
}
.our-services .services-slider .service-card .service-content .learn-more {
  font-weight: 400;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  margin: 0;
  margin-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
.our-services .services-slider .swiper-button-next,
.our-services .services-slider .swiper-button-prev {
  width: 40px;
  height: 40px;
  background-color: #000;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  color: #fff;
  top: -8%;
  transform: translateY(-50%);
  transition: background-color 0.3s ease;
  z-index: 10;
}
.our-services .services-slider .swiper-button-next:hover,
.our-services .services-slider .swiper-button-prev:hover {
  background-color: #fff;
  color: #000;
}
.our-services .services-slider .swiper-button-next::after,
.our-services .services-slider .swiper-button-prev::after {
  font-size: 18px;
  font-weight: bold;
}
@media all and (max-width: 525px) {
  .our-services .services-slider .swiper-button-next,
  .our-services .services-slider .swiper-button-prev {
    top: -5%;
  }
}
.our-services .services-slider .swiper-button-prev {
  left: unset;
  right: 5%;
}
@media all and (max-width: 1200px) {
  .our-services .services-slider .swiper-button-prev {
    right: 8%;
  }
}
@media all and (max-width: 650px) {
  .our-services .services-slider .swiper-button-prev {
    right: 12%;
  }
}
@media all and (max-width: 525px) {
  .our-services .services-slider .swiper-button-prev {
    right: 55%;
  }
}
.our-services .services-slider .swiper-button-next {
  right: 1%;
}
@media all and (max-width: 525px) {
  .our-services .services-slider .swiper-button-next {
    right: 35%;
  }
}
@media screen and (max-width: 1024px) {
  .our-services .service-card {
    min-height: 360px;
  }
}
@media screen and (max-width: 900px) {
  .our-services .service-card {
    min-height: 320px;
  }
  .our-services .service-card .service-content h3 {
    font-size: 18px;
  }
  .our-services .service-card .service-content p {
    font-size: 14px;
  }
  .our-services .service-card .service-content .learn-more {
    font-size: 13px;
  }
  .our-services .service-card .service-icon img {
    width: 28px;
    height: 28px;
  }
}
/*!*************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./style/our-process-section.scss ***!
  \*************************************************************************************************************************/
.our-process {
  max-width: 1440px;
  margin: 0 auto;
  padding: 30px 20px;
}
@media only screen and (min-width: 900px) {
  .our-process {
    padding: 60px 20px;
  }
}
.our-process .our-process_title-block {
  display: flex;
  flex-direction: column;
  margin-bottom: 50px;
}
.our-process__nav {
  display: none;
  font-family: sans-serif;
}
@media only screen and (min-width: 900px) {
  .our-process__nav {
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
  }
}
.our-process__nav .our-process__nav-item {
  padding: 0 30px 21px 30px;
  border: none;
  border-bottom: 1px solid #000;
  color: #000;
  cursor: pointer;
  font-weight: 500;
  font-size: 16px;
  background-color: transparent;
  opacity: 1;
  transition: opacity 0.15s ease-in-out, border-bottom 0.15s ease-in-out, color 0.15s ease-in-out;
}
.our-process__nav .our-process__nav-item:hover {
  opacity: 0.7;
  border-bottom: 1px solid #A98C5F;
  color: #A98C5F;
}
.our-process__nav .our-process__nav-item.is-active {
  border-bottom: 1px solid #A98C5F;
  color: #A98C5F;
}
.our-process__nav__content {
  padding-top: 13px;
}
.our-process__nav__panel {
  display: none;
}
.our-process__nav__panel--active {
  display: block;
}
@media only screen and (max-width: 900px) {
  .our-process__nav__panel {
    display: block;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease, padding 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    padding: 0 16px;
  }
  .our-process__nav__panel.tabs__panel--active {
    max-height: 1000px;
    opacity: 1;
    padding: 16px;
  }
}
.our-process__nav__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}
.our-process__layout {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 30px;
  max-width: 600px;
}
@media only screen and (min-width: 900px) {
  .our-process__layout {
    max-width: 800px;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}
@media only screen and (min-width: 1280px) {
  .our-process__layout {
    max-width: 1100px;
    grid-template-columns: 3fr 2fr;
  }
}
.our-process__layout .tabs__title {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 500;
  color: #000;
}
.our-process__layout .tabs__subtitle {
  margin: 20px 0 40px;
  font-size: 15px;
  font-weight: 500;
  color: #000;
}
.our-process__layout .tabs__list {
  list-style-type: none;
  padding-left: 0;
}
.our-process__layout .tabs__item {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26.5px;
  font-weight: 300;
  font-size: 16px;
}
.our-process__layout .tabs__item svg {
  margin: 0;
}
.our-process__info {
  margin: 0;
}
.our-process__image {
  margin: 0;
}
.our-process__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}
.our-process .swiper-button-prev,
.our-process .swiper-button-next {
  width: 40px;
  height: 40px;
  background-color: #000;
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
  top: 25%;
  transition: opacity 0.15s ease-in-out;
}
@media only screen and (min-width: 900px) {
  .our-process .swiper-button-prev,
  .our-process .swiper-button-next {
    top: 50%;
  }
}
.our-process .swiper-button-prev:hover,
.our-process .swiper-button-next:hover {
  opacity: 0.7;
}
.our-process .swiper-button-prev::after,
.our-process .swiper-button-next::after {
  content: "";
  display: block;
  width: 20px;
  height: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2710%27 viewBox=%270 0 20 10%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M1.15625 5.19529L18.8405 5.19529M18.8405 5.19529L14.6957 1M18.8405 5.19529L14.6957 9.33334%27 stroke=%27white%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E");
}
.our-process .swiper-button-prev {
  transform: rotate(180deg);
}
/*!************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./style/promotions-section.scss ***!
  \************************************************************************************************************************/
.promotions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 30px 20px;
}
@media only screen and (min-width: 900px) {
  .promotions {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    padding: 60px 20px;
  }
}
.promotions .promotions-element__wrapper {
  padding: 23px 20px;
  border: 1px solid #282828;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.promotions .promotions-element {
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 900px) {
  .promotions .promotions-element {
    width: 100%;
  }
  .promotions .promotions-element .promotions-element_title {
    font-size: 35px;
  }
}
.promotions .promotions-element * {
  margin: 0;
}
.promotions .promotions-element .promotions-element_label {
  padding: 6px 10px;
  background-color: #fff;
  border-radius: 8px;
  display: flex;
  gap: 8px;
  width: fit-content;
  align-items: center;
  margin-bottom: 52px;
}
.promotions .promotions-element .promotions-element_title {
  font-weight: 400;
  font-size: 30px;
  color: #0D0D0D;
  margin-bottom: 26px;
}
@media only screen and (min-width: 900px) {
  .promotions .promotions-element .promotions-element_title {
    font-size: 35px;
  }
}
@media only screen and (min-width: 1500px) {
  .promotions .promotions-element .promotions-element_title {
    font-size: 46px;
  }
}
.promotions .promotions-element .promotions-element_text {
  font-weight: 300;
  font-size: 16px;
  color: #1D1D1D;
  margin-bottom: 52px;
}
@media only screen and (min-width: 900px) {
  .promotions .promotions-element .promotions-element_text {
    min-height: 64px;
  }
}
.promotions .promotions-element .promotions-element_link {
  font-weight: 400;
  font-size: 16px;
  text-decoration: none;
  padding-bottom: 6px;
  display: flex;
  align-items: center;
  width: fit-content;
  gap: 6px;
  border-bottom: 1px solid rgba(5, 5, 5, 0.1);
  transition: opacity 0.15s ease-in-out;
}
.promotions .promotions-element .promotions-element_link:hover {
  opacity: 0.7;
}
/*!*****************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./style/cta-section.scss ***!
  \*****************************************************************************************************************/
.call-to-action {
  width: 100%;
  padding: 30px 20px;
}
@media only screen and (min-width: 900px) {
  .call-to-action {
    padding: 60px 20px;
  }
}
.call-to-action__wrapper {
  max-width: 1440px;
  margin: 0 auto;
}
.call-to-action .call-to-action_inner {
  background-color: #303030;
  border-radius: 25px;
  padding: 60px 89px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.call-to-action .call-to-action_inner .call-to-action_title {
  font-size: 50px;
  font-weight: 400;
  color: #FFFFFF;
  font-family: "Albra Regular";
  text-align: center;
}
.call-to-action .call-to-action_inner .cta-subtitle {
  font-weight: 400;
  font-size: 14px;
  color: #fff;
  margin-top: 25px;
  text-align: center;
}
.call-to-action .call-to-action_inner .btn {
  margin-top: 50px;
  margin-bottom: 0;
}
.call-to-action .call-to-action_inner .call-to-action_link {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  margin-top: 17px;
  transition: opacity 0.15s ease-in-out;
}
.call-to-action .call-to-action_inner .call-to-action_link:hover {
  opacity: 0.7;
}
@media all and (max-width: 900px) {
  .call-to-action .call-to-action_inner {
    padding: 50px 37px;
  }
  .call-to-action .call-to-action_inner .call-to-action_title {
    font-size: 30px;
    text-align: center;
  }
}
/*!**********************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./style/marquee-sections.scss ***!
  \**********************************************************************************************************************/
.marquee-list {
  overflow: hidden;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 30px 20px;
}
@media only screen and (min-width: 900px) {
  .marquee-list {
    padding: 60px 20px;
  }
}
.marquee-list .marquee-wrapper {
  position: relative;
  display: flex;
  gap: 72px;
  max-width: 100%;
  overflow-x: hidden;
}
.marquee-list .marquee-content {
  display: flex;
  flex-shrink: 0;
  justify-content: space-around;
  min-width: 100%;
  gap: 72px;
  animation: scroll-left 30s linear infinite;
}
.marquee-list .marquee-item__wrapper {
  display: inline-block;
  max-width: 72px;
}
.marquee-list .marquee-item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 72px;
  height: 72px;
  background-color: #fff;
  border-radius: 8px;
}
.marquee-list .marquee-item img {
  max-height: 48px;
  width: auto;
  display: block;
}
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-100% - 72px));
  }
}

.text-marquee {
  margin: 0 auto;
  width: 100%;
  overflow: hidden;
  background: #E8E6E1;
  white-space: nowrap;
  padding: 30px 0;
}
@media only screen and (min-width: 900px) {
  .text-marquee {
    padding: 60px 0px;
  }
}
.text-marquee .marquee-content {
  display: inline-block;
  white-space: nowrap;
  animation: scroll-left 15s linear infinite;
}
.text-marquee .marquee-content span {
  display: inline-block;
  margin: 0 40px;
  font-weight: 300;
  font-size: 65px;
  color: #A39D97;
  font-family: "Albra Regular";
}
@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
/*!**********************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./style/benefits-section.scss ***!
  \**********************************************************************************************************************/
.benefits {
  max-width: 1440px;
  margin: 0 auto;
  padding: 30px 20px;
}
@media only screen and (min-width: 900px) {
  .benefits {
    padding: 60px 20px;
  }
}

.benefits-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 1440px;
}
.benefits-inner .benefits-inner_top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
}
@media only screen and (min-width: 600px) {
  .benefits-inner .benefits-inner_top {
    align-items: center;
  }
}
.benefits-inner .benefits-inner_top .benefits-inner-top_title {
  font-weight: 400;
  font-size: 26px;
  margin-left: 0;
  margin-right: 0;
  color: #252525;
  margin-bottom: 18px;
  font-family: "Albra Regular";
  text-align: left;
}
@media only screen and (min-width: 600px) {
  .benefits-inner .benefits-inner_top .benefits-inner-top_title {
    text-align: center;
  }
}
@media only screen and (min-width: 900px) {
  .benefits-inner .benefits-inner_top .benefits-inner-top_title {
    font-size: 40px;
  }
}
.benefits-inner .benefits-inner_top .benefits-inner-top_subtitle {
  font-weight: 300;
  font-size: 16px;
  color: #505050;
  text-align: left;
}
@media only screen and (min-width: 600px) {
  .benefits-inner .benefits-inner_top .benefits-inner-top_subtitle {
    text-align: center;
  }
}
.benefits-inner .benefits-inner_bottom {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 40px;
}
@media only screen and (min-width: 600px) {
  .benefits-inner .benefits-inner_bottom {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (min-width: 900px) {
  .benefits-inner .benefits-inner_bottom {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
@media only screen and (min-width: 1200px) {
  .benefits-inner .benefits-inner_bottom {
    gap: 50px;
  }
}
.benefits-inner .benefits-inner_bottom .benefits-inner-bottom_element {
  display: flex;
  flex-direction: column;
  padding-bottom: 20px;
  border-bottom: 1px solid #D2D2D2;
}
@media only screen and (min-width: 900px) {
  .benefits-inner .benefits-inner_bottom .benefits-inner-bottom_element {
    border-bottom: 0;
    padding-bottom: 0;
  }
}
.benefits-inner .benefits-inner_bottom .benefits-inner-bottom_element * {
  margin: 0;
}
.benefits-inner .benefits-inner_bottom .benefits-inner-bottom_element img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}
.benefits-inner .benefits-inner_bottom .benefits-inner-bottom_element .benefits-inner-bottom_title {
  font-weight: 500;
  font-size: 18px;
  margin-top: 30px;
  margin-bottom: 20px;
  font-family: "Albra Medium";
}
.benefits-inner .benefits-inner_bottom .benefits-inner-bottom_element .benefits-inner-bottom_text {
  font-weight: 300;
  font-size: 16px;
}
/*!*********************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./style/reviews-section.scss ***!
  \*********************************************************************************************************************/
.reviews {
  margin-top: 70px;
  margin: 0 auto;
  max-width: 1440px;
}
.reviews .reviews-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.reviews .reviews-inner .reviews-inner-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.reviews .reviews-inner .reviews-inner-top .reviews-inner-top_title {
  font-weight: 400;
  font-size: 40px;
  color: #252525;
  margin-bottom: 18px;
  font-family: "Albra Regular";
}
.reviews .reviews-inner .reviews-inner-top .reviews-inner-top_subtitle {
  font-weight: 300;
  font-size: 16px;
  color: #505050;
}
.reviews .reviews-inner .reviews-inner-bottom {
  margin-top: 40px;
  overflow: hidden;
  width: 100%;
}
.reviews .reviews-inner .reviews-inner-bottom .testimonial-swiper {
  overflow: visible;
}
@media all and (max-width: 900px) {
  .reviews .reviews-inner .reviews-inner-bottom .testimonial-swiper {
    max-width: 390px;
  }
}
.reviews .reviews-inner .reviews-inner-bottom .testimonial-swiper .swiper-wrapper {
  display: flex;
}
.reviews .reviews-inner .reviews-inner-bottom .testimonial-swiper .testimonial-slide {
  display: flex;
  justify-content: center;
}
.reviews .reviews-inner .reviews-inner-bottom .testimonial-swiper .testimonial-slide__inner {
  display: flex;
  gap: 40px;
  align-items: center;
  max-width: 100%;
}
@media all and (max-width: 900px) {
  .reviews .reviews-inner .reviews-inner-bottom .testimonial-swiper .testimonial-slide__inner {
    flex-direction: column;
  }
}
.reviews .reviews-inner .reviews-inner-bottom .testimonial-swiper .testimonial-slide__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.reviews .reviews-inner .reviews-inner-bottom .testimonial-swiper .testimonial-slide__content {
  flex: 1;
  max-width: 480px;
  background-color: #fff;
  padding: 32px;
  border-radius: 16px;
}
.reviews .reviews-inner .reviews-inner-bottom .testimonial-swiper .testimonial-slide__quote {
  font-size: 32px;
  line-height: 1;
  margin: 0;
  margin-bottom: 16px;
}
.reviews .reviews-inner .reviews-inner-bottom .testimonial-swiper .testimonial-slide__stars {
  color: #d5a300;
  font-size: 18px;
  margin: 0;
  margin-bottom: 16px;
}
.reviews .reviews-inner .reviews-inner-bottom .testimonial-swiper .testimonial-slide__stars .star-empty {
  opacity: 0.3;
}
.reviews .reviews-inner .reviews-inner-bottom .testimonial-swiper .testimonial-slide__stars .star-filled {
  color: #A98C5F;
}
.reviews .reviews-inner .reviews-inner-bottom .testimonial-swiper .testimonial-slide__text {
  font-size: 16px;
  color: #333;
  margin-bottom: 20px;
}
.reviews .reviews-inner .reviews-inner-bottom .testimonial-swiper .testimonial-slide__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.reviews .reviews-inner .reviews-inner-bottom .testimonial-swiper .testimonial-slide__author {
  font-weight: 600;
  margin: 0;
}
.reviews .reviews-inner .reviews-inner-bottom .testimonial-swiper .testimonial-slide__platform {
  width: 24px;
  margin: 0;
}
.reviews .reviews-inner .reviews-inner-bottom .testimonial-swiper .testimonial-slide__image {
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
  width: 590px;
  height: 300px;
}
@media all and (max-width: 900px) {
  .reviews .reviews-inner .reviews-inner-bottom .testimonial-swiper .testimonial-slide__image {
    width: 100%;
  }
}
.reviews .reviews-inner .reviews-inner-bottom .testimonial-swiper .testimonial-slide__image img {
  display: block;
  width: 100%;
  object-fit: cover;
  height: 100%;
}
.reviews .reviews-inner .reviews-inner-bottom .testimonial-swiper .swiper-button-prev,
.reviews .reviews-inner .reviews-inner-bottom .testimonial-swiper .swiper-button-next {
  background: #fff;
  border-radius: 50%;
  border: 1px solid #ccc;
  width: 40px;
  height: 40px;
  top: 50%;
  transform: translateY(-50%);
  color: #000;
}
.reviews .reviews-inner .reviews-inner-bottom .testimonial-swiper .swiper-button-prev:after,
.reviews .reviews-inner .reviews-inner-bottom .testimonial-swiper .swiper-button-next:after {
  font-size: 16px;
}
@media all and (max-width: 450px) {
  .reviews .reviews-inner .reviews-inner-bottom .testimonial-swiper .swiper-button-prev,
  .reviews .reviews-inner .reviews-inner-bottom .testimonial-swiper .swiper-button-next {
    top: 57%;
  }
}
.reviews .reviews-inner .reviews-inner-bottom .testimonial-swiper .swiper-button-prev {
  left: 0;
}
.reviews .reviews-inner .reviews-inner-bottom .testimonial-swiper .swiper-button-next {
  right: 0;
}
/*!************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./style/footer.scss ***!
  \************************************************************************************************************/
footer {
  background-color: #E8E6E1;
  padding: 30px 20px;
}
@media only screen and (min-width: 900px) {
  footer {
    padding: 60px 20px;
  }
}
footer .footer-inner {
  max-width: 1440px;
  margin: 0 auto;
}
footer .footer-inner_top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
@media only screen and (min-width: 768px) {
  footer .footer-inner_top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}
@media only screen and (min-width: 1024px) {
  footer .footer-inner_top {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
footer .footer-inner_top img {
  width: 150px;
  height: auto;
  object-fit: contain;
}
footer .footer-inner_top * {
  margin: 0;
}
footer .footer-inner_top .footer-inner-first,
footer .footer-inner_top .footer-inner-second,
footer .footer-inner_top .footer-inner-third,
footer .footer-inner_top .footer-inner-fourth {
  width: 100%;
}
footer .footer-inner_top .footer-inner-first {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 30px;
}
@media only screen and (min-width: 768px) {
  footer .footer-inner_top .footer-inner-first {
    align-items: flex-start;
  }
}
footer .footer-inner_top .footer-inner-first .footer-inner_social {
  display: flex;
  gap: 25px;
}
footer .footer-inner_top .footer-inner-first .footer-inner_social .social {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease-in-out;
}
footer .footer-inner_top .footer-inner-first .footer-inner_social .social:hover {
  background: #000;
}
footer .footer-inner_top .footer-inner-first .footer-inner_social .social:hover img {
  filter: invert(100%);
}
footer .footer-inner_top .footer-inner-first .footer-inner_social .social img {
  object-fit: contain;
  width: unset;
  height: unset;
}
footer .footer-inner_top .footer-inner-second .footer-inner-second_title {
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 20px;
  display: block;
}
footer .footer-inner_top .footer-inner-second .showroom-item.active .showroom-content {
  height: auto;
}
footer .footer-inner_top .footer-inner-second .showroom-content {
  transition: max-height 0.4s ease;
  overflow: hidden;
}
footer .footer-inner_top .footer-inner-second .showroom-toggle-icon {
  transition: transform 0.3s ease;
}
footer .footer-inner_top .footer-inner-second .showroom-content {
  overflow: hidden;
}
footer .footer-inner_top .footer-inner-second .showroom-content p {
  font-size: 14px;
  font-weight: 300;
  margin-top: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
}
footer .footer-inner_top .footer-inner-second .showroom-content p + p {
  margin-top: 8px;
}
footer .footer-inner_top .footer-inner-second .showroom-item {
  padding: 0px 0px 12px 0px;
  margin-bottom: 12px;
  border-bottom: 0.5px solid rgba(0, 0, 0, 0.3);
  transition: all 0.15s ease-in-out;
}
footer .footer-inner_top .footer-inner-second .showroom-item:hover {
  border-bottom: 0.5px solid #A98C5F;
}
footer .footer-inner_top .footer-inner-second .showroom-item:hover .showroom-title {
  color: #A98C5F;
}
footer .footer-inner_top .footer-inner-second .showroom-item:hover .showroom-toggle-icon {
  color: #A98C5F;
}
footer .footer-inner_top .footer-inner-second .showroom-title {
  cursor: pointer;
  font-weight: 500;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.15s ease-in-out;
}
footer .footer-inner_top .footer-inner-second .showroom-toggle-icon {
  font-size: 18px;
  margin-left: 10px;
  transition: all 0.15s ease-in-out;
}
footer .footer-inner_top .footer-inner-third .working-hours_title {
  font-weight: 500;
  font-size: 18px;
  color: #000;
  display: block;
  margin-bottom: 20px;
}
footer .footer-inner_top .footer-inner-third .working-hours_item {
  margin-bottom: 13px;
}
footer .footer-inner_top .footer-inner-third .working-hours_item span {
  font-size: 14px;
  font-weight: 300;
  color: #252525;
}
footer .footer-inner_top .footer-inner-fourth .blackstone-contact__form {
  padding: 0;
  background-color: transparent;
  border-radius: 0;
}
footer .footer-inner_top .footer-inner-fourth .blackstone-contact__form div.wpforms-container {
  margin-top: 16px !important;
  margin-bottom: 0 !important;
}
footer .footer-inner_top .footer-inner-fourth .blackstone-contact__form div.wpforms-container .wpforms-field-container .wpforms-field {
  padding: 0 !important;
}
footer .footer-inner_top .footer-inner-fourth .blackstone-contact__form div.wpforms-container .wpforms-submit-container {
  margin: 0 !important;
}
footer .footer-inner_top .footer-inner-fourth .newsletter-title {
  font-weight: 500;
  font-size: 18px;
  display: block;
  margin-bottom: 15px;
}
footer .footer-inner_top .footer-inner-fourth .newsletter-descr {
  font-weight: 300;
  font-size: 14px;
  color: #252525;
  margin-bottom: 28px;
  max-width: 292px;
}
footer .footer-inner_top .footer-inner-fourth .newsletter-container {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}
footer .footer-inner_top .footer-inner-fourth .newsletter-container form .wpforms-field-checkbox.custom-options ul.wpforms-icon-choices.wpforms-icon-choices-modern li label {
  background-color: #F8F7F6 !important;
  border-radius: 5px !important;
  border: none !important;
}
footer .footer-inner_top .footer-inner-fourth .newsletter-container form .wpforms-field-checkbox.custom-options ul.wpforms-icon-choices.wpforms-icon-choices-modern .wpforms-selected label {
  background-color: #000 !important;
}
footer .footer-inner_top .footer-inner-fourth .newsletter-container form .wpforms-field-checkbox.custom-options ul.wpforms-icon-choices.wpforms-icon-choices-modern .wpforms-selected label span.wpforms-icon-choices-label {
  color: #FFF !important;
}
footer .footer-inner_top .footer-inner-fourth .newsletter-container form .wpforms-uploader {
  border-radius: 10px !important;
  border: none !important;
  outline: none !important;
}
footer .footer-inner_top .footer-inner-fourth .newsletter-container form button,
footer .footer-inner_top .footer-inner-fourth .newsletter-container form input[type=submit] {
  background-color: #000 !important;
  color: #fff !important;
  border: none !important;
  outline: none !important;
  padding: 15px 25px !important;
  border-radius: 15px !important;
  font-size: 16px !important;
  width: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  cursor: pointer;
  transition: 0.2s;
}
footer .footer-inner_top .footer-inner-fourth .newsletter-container form button::after,
footer .footer-inner_top .footer-inner-fourth .newsletter-container form input[type=submit]::after {
  content: url("https://blackstonehomeservices.com/wp-content/uploads/2025/07/Vector-10.png");
}
footer .footer-inner_top .footer-inner-fourth .newsletter-container form button:hover,
footer .footer-inner_top .footer-inner-fourth .newsletter-container form input[type=submit]:hover {
  background: #222 !important;
}
footer .footer-inner_top .footer-inner-fourth .newsletter-email_block {
  display: flex;
  align-items: center;
  gap: 12px;
}
footer .footer-inner_top .footer-inner-fourth .newsletter-email_block input {
  padding: 15.5px 20px;
  background-color: #000;
  border-radius: 22px;
  color: #9B9B9B;
  border: none;
}
footer .footer-inner_top .footer-inner-fourth .newsletter-email_block input::placeholder {
  color: #9B9B9B;
}
footer .footer-inner_top .footer-inner-fourth .newsletter-email_block .send {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #000;
  transition: all 0.5s ease;
}
footer .footer-inner_top .footer-inner-fourth .newsletter-email_block .send:hover {
  background-color: #000;
}
footer .footer-inner_top .footer-inner-fourth .newsletter-email_block .send:hover svg path {
  fill: #fff;
  stroke: #fff;
}
@media all and (max-width: 900px) {
  footer .footer-inner_top .footer-inner-second {
    width: 100%;
  }
  footer .footer-inner_top .footer-inner-second .showroom-item {
    width: 100%;
  }
}
footer .footer-inner-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 80px;
}
footer .footer-inner-bottom .copyrights {
  margin: 0;
  text-align: center;
}
@media only screen and (min-width: 900px) {
  footer .footer-inner-bottom .copyrights {
    text-align: left;
  }
}
footer .footer-inner-bottom .copyrights span {
  font-weight: 400;
  font-weight: 14;
  color: #252525;
}
footer .footer-inner-bottom .terms-and-policy {
  margin: 0;
}
footer .footer-inner-bottom .terms-and-policy a {
  font-weight: 400;
  font-weight: 14;
  color: #252525;
  text-decoration: none;
}
footer .footer-inner-bottom .terms-and-policy a + a {
  margin-left: 8px;
  padding-left: 8px;
  border-left: 1px solid #252525;
}
@media all and (max-width: 900px) {
  footer .footer-inner-bottom {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding-top: 80px;
    flex-direction: column-reverse;
  }
  footer .footer-inner-bottom .terms-and-policy {
    margin: 0;
    margin-bottom: 20px;
  }
}
/*!********************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./style/company-values.scss ***!
  \********************************************************************************************************************/
@charset "UTF-8";
.company-values {
  background-color: #f9f8f6;
  width: 100%;
  padding: 30px 20px;
}
@media only screen and (min-width: 900px) {
  .company-values {
    padding: 60px 20px;
  }
}
.company-values__inner {
  max-width: 1440px;
  margin: 0 auto;
}
.company-values__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  width: 100%;
}
@media only screen and (min-width: 600px) {
  .company-values__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 1100px) {
  .company-values__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
  }
}
.company-values__label {
  padding: 6px 10px;
  background-color: rgba(176, 172, 169, 0.2);
  border-radius: 8px;
  display: flex;
  gap: 8px;
  width: fit-content;
  align-items: center;
  margin: 0;
  font-size: 16px;
}
@media only screen and (min-width: 600px) {
  .company-values__label {
    font-size: 14px;
  }
}
@media only screen and (min-width: 900px) {
  .company-values__label {
    font-size: 16px;
  }
}
.company-values__item {
  position: relative;
  background-color: #fff;
  padding: 30px 20px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  max-height: 300px;
  height: 300px;
}
@media all and (min-width: 900px) {
  .company-values__item {
    padding: 40px 20px;
  }
}
.company-values__item__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
}
.company-values__item .company-values__photo img {
  width: 100%;
  height: 100%;
}
.company-values__item .company-values__icon {
  margin-right: 0;
}
.company-values__item--dark {
  background-color: #756a59;
  color: #fff;
}
.company-values__item--dark * {
  margin: 0;
}
.company-values__item--dark .company-values__label {
  color: #fff;
}
.company-values__item--dark .company-values__text p {
  color: #fff;
  font-size: 16px;
  font-weight: 300;
}
.company-values__item--dark .company-values__list li {
  color: #fff;
  font-weight: 500;
  margin-bottom: 8px;
}
.company-values__item--dark .company-values__list li::before {
  content: "↳";
  margin-right: 8px;
}
.company-values__item--image {
  position: relative;
  padding: 0;
  overflow: hidden;
  border-radius: 20px;
}
.company-values__item--image .company-values__photo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 20px;
}
.company-values__item--image .company-values__overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 24px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.company-values__item--image .company-values__overlay p {
  color: #fff;
  font-size: 45px;
  font-weight: 400;
  text-align: center;
}
@media all and (max-width: 900px) {
  .company-values__item--image {
    padding: 0 !important;
  }
}
.company-values .company-values__item--image.first p {
  font-size: 16px;
  font-weight: 400;
  text-align: left;
}
.company-values .company-values__item--image.first .company-values__label {
  background-color: rgba(255, 255, 255, 0.2);
  left: 30px;
  color: #fff;
  top: unset;
  bottom: 100px;
  z-index: 2;
}
.company-values .company-values__item--image.first .company-values__overlay {
  align-items: flex-end;
}
.company-values__text {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  color: #252525;
}
.company-values__list {
  list-style: none;
  padding: 0;
  margin-top: 16px;
}
.company-values__list li {
  font-size: 16px;
  color: #252525;
  margin-bottom: 8px;
}
/*!*************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./style/remodel.scss ***!
  \*************************************************************************************************************/
.remodel {
  width: 100%;
  background-color: #f9f8f6;
  padding: 30px 20px;
}
@media only screen and (min-width: 900px) {
  .remodel {
    padding: 60px 20px;
  }
}
.remodel__inner {
  max-width: 1440px;
  margin: 0 auto;
}
.remodel__header {
  text-align: center;
  margin-bottom: 48px;
}
.remodel__title {
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 16px;
}
.remodel__subtitle {
  font-size: 16px;
  font-weight: 300;
  color: #666;
  margin: 0 auto;
}
.remodel__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  width: 100%;
}
@media only screen and (min-width: 900px) {
  .remodel__content {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}
@media only screen and (min-width: 1200px) {
  .remodel__content {
    gap: 100px;
  }
}
.remodel__info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  width: 100%;
}
@media only screen and (min-width: 600px) {
  .remodel__info {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (min-width: 900px) {
  .remodel__info {
    grid-template-columns: 1fr;
  }
}
.remodel__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}
.remodel__card * {
  margin: 0;
}
.remodel__card-icon {
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.remodel__card-title {
  font-weight: 400;
  margin-bottom: 8px;
  font-size: 14px;
  text-transform: uppercase;
  color: #000000;
  background-color: #E8E6E1;
  padding: 6px 10px;
  border-radius: 8px;
}
.remodel__card-text {
  font-size: 16px;
  font-weight: 300;
  color: #000;
}
.remodel__promos {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  width: 100%;
}
.remodel__promo {
  width: 100%;
  background-color: #f1efeb;
  padding: 30px 20px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
}
.remodel__promo * {
  margin: 0;
}
.remodel__promo-label {
  background-color: #fff;
  color: #333;
  font-size: 0.75rem;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 4px;
  align-self: flex-start;
  margin-bottom: 16px;
  font-weight: 600;
}
.remodel__promo-title {
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 12px;
  color: #000;
}
.remodel__promo-text {
  font-size: 16px;
  font-weight: 300;
  color: #000;
  margin-bottom: 16px;
}
.remodel__promo-link {
  font-size: 0.95rem;
  color: #333;
  text-decoration: underline;
  align-self: flex-start;
  transition: color 0.3s;
}
.remodel__promo-link:hover {
  color: #000;
}
/*!***********************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./style/instagram-section.scss ***!
  \***********************************************************************************************************************/
.instagram {
  background-color: #f9f8f6;
  width: 100%;
}
.instagram__inner {
  padding: 30px 20px;
  max-width: 1440px;
  margin: 0 auto;
  text-align: center;
}
@media only screen and (min-width: 900px) {
  .instagram__inner {
    padding: 60px 20px;
  }
}
.instagram__header {
  margin-bottom: 48px;
}
.instagram__title {
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 12px;
  color: #252525;
}
.instagram__subtitle {
  font-size: 16px;
  color: #505050;
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto;
}
.instagram__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 0 auto 48px;
}
@media only screen and (min-width: 600px) {
  .instagram__grid {
    gap: 24px;
  }
}
@media only screen and (min-width: 900px) {
  .instagram__grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.instagram__item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  max-height: 400px;
  width: 100%;
  height: 100%;
}
.instagram__item:hover .instagram__overlay {
  opacity: 1;
}
.instagram__image {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
}
.instagram__image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.instagram__overlay {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  padding: 8px 12px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 1rem;
  border-radius: 6px;
  opacity: 0;
  transition: opacity 0.3s;
  text-align: left;
}
.instagram__footer {
  margin-top: 24px;
}
.instagram__button {
  display: inline-block;
  background-color: #111;
  color: #fff;
  padding: 12px 24px;
  border-radius: 24px;
  text-decoration: none;
  font-size: 0.95rem;
  transition: background-color 0.15s ease-in-out;
}
.instagram__button:hover {
  background-color: #333;
}
/*!***********************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./style/resources-section.scss ***!
  \***********************************************************************************************************************/
.resources {
  background-color: #f9f8f6;
  width: 100%;
  padding: 30px 20px;
}
@media only screen and (min-width: 900px) {
  .resources {
    padding: 60px 20px;
  }
}
.resources__inner {
  max-width: 1440px;
  margin: 0 auto;
  text-align: center;
}
.resources__header {
  max-width: 800px;
  margin: 0 auto 48px;
}
.resources__title {
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 18px;
}
.resources__subtitle {
  font-size: 16px;
  font-weight: 300;
  color: #505050;
}
.resources__grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
  width: 100%;
  margin: 0 auto 48px;
}
@media only screen and (min-width: 900px) {
  .resources__grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.resources__card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  color: #fff;
  text-align: left;
  width: 100%;
  height: 340px;
  transition: opacity 0.15s ease-in-out;
}
@media only screen and (min-width: 900px) {
  .resources__card {
    height: 400px;
  }
}
@media only screen and (min-width: 1200px) {
  .resources__card {
    height: 340px;
  }
}
.resources__card:hover {
  opacity: 0.7;
}
.resources__card * {
  margin: 0;
}
.resources__image-wrapper {
  height: 100%;
  overflow: hidden;
}
.resources__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 16px;
}
.resources__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.resources__overlay {
  position: absolute;
  inset: 0;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.3);
  transition: background 0.3s;
}
.resources__label {
  display: inline-block;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  font-weight: 400;
  width: fit-content;
}
.resources__card-title {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 12px;
  color: #fff;
}
.resources__text {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 16px;
  color: #fff;
}
.resources__link {
  font-size: 0.9rem;
  color: #fff;
  text-decoration: underline;
}
.resources__link:hover {
  opacity: 0.8;
}
.resources__footer {
  margin-top: 24px;
}
.resources__button {
  display: flex;
  background-color: #111;
  color: #fff;
  padding: 12px 24px;
  border-radius: 24px;
  text-decoration: none;
  font-size: 0.95rem;
  transition: background-color 0.3s;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}
.resources__button svg {
  margin: 0;
}
.resources__button:hover {
  background-color: #333;
}
@media all and (max-width: 900px) {
  .resources .resources {
    padding: 64px 20px;
  }
  .resources .resources__inner {
    padding: 64px 0;
    max-width: 1440px;
    margin: 0 auto;
    text-align: center;
  }
}
/*!**********************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./style/blog.scss ***!
  \**********************************************************************************************************/
.news-archive {
  display: flex;
  padding: 64px 20px;
  gap: 64px;
  max-width: 1440px;
  margin: 0 auto;
}
@media all and (max-width: 1000px) {
  .news-archive {
    flex-direction: column;
  }
}
.news-archive__sidebar {
  width: 25%;
  max-width: 280px;
}
@media all and (max-width: 1000px) {
  .news-archive__sidebar {
    width: 100%;
    max-width: unset;
  }
}
.news-archive__title {
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 24px;
}
.news-archive__desc {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 32px;
  font-weight: 300;
}
.news-archive__filter {
  margin-top: 32px;
}
.news-archive .search-form input.search-field {
  width: 100%;
  padding: 8px;
  font-size: 16px;
  border-radius: 10px;
  outline: none;
  border: none;
  color: #6B6B6B;
  font-weight: 300;
}
.news-archive__content {
  width: 100%;
  padding-top: 0;
}
@media all and (min-width: 1000px) {
  .news-archive__content {
    width: 75%;
  }
}
.news-archive .news-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: 340px;
  gap: 32px;
}
@media only screen and (min-width: 600px) {
  .news-archive .news-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.news-archive .news-grid .news-card:nth-child(1) {
  grid-column: span 1;
  grid-row: span 1;
  max-height: 340px;
  width: 100%;
}
@media only screen and (min-width: 600px) {
  .news-archive .news-grid .news-card:nth-child(1) {
    grid-column: span 2;
  }
}
.news-archive .news-grid .news-card:nth-child(2),
.news-archive .news-grid .news-card:nth-child(3),
.news-archive .news-grid .news-card:nth-child(4),
.news-archive .news-grid .news-card:nth-child(5),
.news-archive .news-grid .news-card:nth-child(6),
.news-archive .news-grid .news-card:nth-child(7) {
  grid-column: span 1;
}
.news-archive .news-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  color: white;
  width: 100%;
  transition: opacity 0.15s ease-in-out;
}
.news-archive .news-card:hover {
  opacity: 0.7;
}
.news-archive .news-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-color: #000;
  opacity: 0.3;
}
.news-archive .news-card__image {
  z-index: -1;
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-archive .news-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.news-archive .news-card__content {
  width: 100%;
  height: 100%;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
}
.news-archive .news-card__meta {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 12px;
  text-transform: uppercase;
  color: #fff;
  z-index: 2;
}
.news-archive .news-card__category {
  text-transform: uppercase;
  color: #fff;
  font-weight: 400;
  font-size: 14px;
}
.news-archive .news-card__title {
  font-size: 18px;
  line-height: 22px;
  color: #fff;
  font-weight: 500;
  z-index: 2;
  position: relative;
  margin: 0;
  margin-bottom: 15px;
}
@media only screen and (min-width: 1200px) {
  .news-archive .news-card__title {
    font-size: 24px;
    line-height: 28px;
  }
}
.news-archive .news-card__excerpt {
  font-size: 16px;
  font-weight: 400;
  z-index: 2;
  position: relative;
  margin: 0;
  margin-bottom: 40px;
}
.news-archive .news-card__excerpt p {
  color: #fff;
}
.news-archive .news-card__link {
  position: relative;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  color: white;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  z-index: 2;
  margin: 0;
}
.news-archive__pagination {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 100%;
  margin-top: 64px;
}
.news-archive__pagination a {
  text-decoration: underline;
  transition: all 0.15s ease-in-out;
}
.news-archive__pagination a:hover {
  color: #746750;
  opacity: 0.7;
}
.news-archive__pagination .page-numbers {
  font-size: 16px;
}
.news-archive__pagination .current {
  color: #746750;
}

.custom-dropdown {
  position: relative;
  width: 100%;
  font-family: inherit;
  cursor: pointer;
  margin: 0;
}
.custom-dropdown__selected {
  background-color: transparent;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  user-select: none;
  transition: all 0.3s ease;
  font-size: 16px;
  font-weight: 500;
  color: #000000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.custom-dropdown__selected:hover {
  cursor: pointer;
}
.custom-dropdown__selected #dropdownLabel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.custom-dropdown__selected #dropdownLabel .label-text {
  margin: 0;
}
.custom-dropdown__selected #dropdownLabel #dropdownIcon {
  margin: 0;
  font-weight: bold;
  transition: transform 0.3s ease;
}
.custom-dropdown__label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
}
.custom-dropdown__label::after {
  content: "+";
  margin-left: 8px;
  font-weight: bold;
  transition: transform 0.3s ease;
}
.custom-dropdown.open .custom-dropdown__label::after {
  content: "-";
}
.custom-dropdown__options {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  width: 100%;
  background-color: transparent;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 4px;
  z-index: 100;
  overflow: hidden;
  transform-origin: top;
  transform: scaleY(0);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
@media all and (max-width: 1000px) {
  .custom-dropdown__options {
    background-color: #F3F1ED;
  }
}
.custom-dropdown.open .custom-dropdown__options {
  transform: scaleY(1);
  opacity: 1;
}
.custom-dropdown__option {
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  transition: background 0.2s ease;
  font-weight: 300;
  font-size: 16px;
}
.custom-dropdown__option:hover {
  cursor: pointer;
}
.custom-dropdown__option:last-child {
  border-bottom: none;
}
/*!****************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./style/error-page.scss ***!
  \****************************************************************************************************************/
.error-page {
  padding: 80px 20px;
  max-width: 1440px;
  margin: 0 auto;
}
.error-page__container {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.error-page__text {
  max-width: 500px;
}
.error-page__title {
  font-size: 45px;
  line-height: 1.2;
  font-weight: 400;
  color: #000;
  margin-bottom: 20px;
}
.error-page__description {
  font-size: 16px;
  color: #000;
  font-weight: 400;
  margin-bottom: 30px;
}
.error-page__button {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 500;
  transition: background-color 0.3s;
}
.error-page__button:hover {
  background-color: #333;
}
.error-page__arrow {
  margin-left: 8px;
  font-size: 16px;
}
.error-page__image-wrapper {
  max-width: 500px;
  width: 100%;
  padding: 20px;
  padding-bottom: 0;
  background-color: #E8E6E1;
  border-radius: 20px;
}
.error-page__image {
  width: 100%;
  height: auto;
  border-radius: 16px;
}
/*!*************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./style/unique-hero-section.scss ***!
  \*************************************************************************************************************************/
.unique-hero {
  padding: 30px 20px;
  max-width: 1440px;
  margin: 0 auto;
}
@media only screen and (min-width: 900px) {
  .unique-hero {
    padding: 60px 20px;
  }
}
.unique-hero__container {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 48px;
  max-width: 1440px;
  margin: 0;
}
@media only screen and (min-width: 900px) {
  .unique-hero__container {
    grid-template-columns: 2fr 3fr;
  }
}
.unique-hero__content {
  width: 100%;
  margin: 0;
}
.unique-hero__content .hero-rating {
  margin-bottom: 30px;
}
.unique-hero__content .hero-rating-top {
  display: flex;
  align-items: center;
}
.unique-hero__content .hero-rating-top * {
  margin: 0;
}
.unique-hero__content .rating {
  margin-left: 7px;
  font-size: 16px;
  font-weight: 500;
  color: #000;
}
.unique-hero__content .rating .stars {
  color: gold;
  margin-left: 4px;
}
.unique-hero__content h1 {
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #000;
}
@media only screen and (min-width: 900px) {
  .unique-hero__content h1 {
    font-size: 40px;
  }
}
.unique-hero__content .unique-hero__subtitle {
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  margin-bottom: 32px;
}
@media only screen and (min-width: 900px) {
  .unique-hero__content .unique-hero__subtitle {
    font-size: 18px;
  }
}
.unique-hero__content .unique-hero__features {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
}
.unique-hero__content .unique-hero__features li {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  padding-left: 0px;
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.4;
  color: #222;
}
.unique-hero__content .unique-hero__features li img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  margin: 0;
}
.unique-hero__content .unique-hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.unique-hero__gallery {
  position: relative;
  width: 100%;
  aspect-ratio: 2/1.7;
  display: flex;
  align-items: center;
  margin: 0;
}
@media only screen and (min-width: 1200px) {
  .unique-hero__gallery {
    aspect-ratio: 2/1.4;
  }
}
.unique-hero__gallery .unique-hero__image {
  position: absolute;
  border-radius: 12px;
  overflow: hidden;
}
.unique-hero__gallery .unique-hero__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}
.unique-hero__gallery .unique-hero__image--1 {
  top: 0;
  left: 0;
  width: 30%;
  max-height: 300px;
  height: 38vw;
}
@media only screen and (min-width: 900px) {
  .unique-hero__gallery .unique-hero__image--1 {
    max-height: 320px;
  }
}
@media only screen and (min-width: 1200px) {
  .unique-hero__gallery .unique-hero__image--1 {
    max-height: 300px;
  }
}
.unique-hero__gallery .unique-hero__image--2 {
  position: unset;
  width: 80%;
  max-height: 350px;
  height: 40vw;
  border-radius: 20px;
}
@media only screen and (min-width: 900px) {
  .unique-hero__gallery .unique-hero__image--2 {
    max-height: 300px;
  }
}
@media only screen and (min-width: 1200px) {
  .unique-hero__gallery .unique-hero__image--2 {
    max-height: 350px;
  }
}
.unique-hero__gallery .unique-hero__image--3 {
  bottom: 0;
  right: 0;
  width: 40%;
  max-height: 250px;
  height: 22vw;
}
@media only screen and (min-width: 900px) {
  .unique-hero__gallery .unique-hero__image--3 {
    max-height: 200px;
  }
}
@media only screen and (min-width: 1200px) {
  .unique-hero__gallery .unique-hero__image--3 {
    max-height: 250px;
  }
}
.unique-hero__gallery .unique-hero__testimonial {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 244px;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.unique-hero__gallery .unique-hero__testimonial p {
  margin: 0 0 12px;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
}
.unique-hero__gallery .unique-hero__testimonial span {
  display: block;
  font-weight: 600;
  font-size: 14px;
  color: #000;
  margin: 0;
}
/*!************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./style/hero-stats-gallery.scss ***!
  \************************************************************************************************************************/
.hero-stats-gallery {
  padding: 30px 20px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
@media only screen and (min-width: 900px) {
  .hero-stats-gallery {
    padding: 60px 20px;
  }
}
.hero-stats-gallery__container {
  max-width: 1440px;
  width: 100%;
  margin: 0;
  text-align: center;
}
.hero-stats-gallery__header {
  margin-bottom: 48px;
}
.hero-stats-gallery__header h1 {
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 12px;
  color: #000;
}
.hero-stats-gallery__header .subheadline {
  font-size: 18px;
  color: #000;
  font-weight: 400;
  margin-bottom: 24px;
}
.hero-stats-gallery__header .hero-stats-gallery__buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.hero-stats-gallery__images {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2%;
  margin-bottom: 48px;
}
.hero-stats-gallery__images .hero-stats-gallery__image {
  border-radius: 16px;
  overflow: hidden;
  height: 300px;
}
.hero-stats-gallery__images .hero-stats-gallery__image:first-child {
  width: 22%;
}
.hero-stats-gallery__images .hero-stats-gallery__image:nth-child(2) {
  width: 32%;
}
.hero-stats-gallery__images .hero-stats-gallery__image:nth-child(3) {
  width: 22%;
}
.hero-stats-gallery__images .hero-stats-gallery__image:last-child {
  width: 18%;
}
.hero-stats-gallery__images .hero-stats-gallery__image img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 16px;
  object-fit: cover;
}
.hero-stats-gallery__stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  background-color: #E8E6E1;
  padding: 32px 24px;
  border-radius: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.hero-stats-gallery__stats .stat {
  text-align: center;
  min-width: 100px;
}
.hero-stats-gallery__stats .stat__number {
  font-size: 45px;
  font-weight: 300;
  color: #000;
}
.hero-stats-gallery__stats .stat__number::after {
  content: "+";
  margin-left: 2px;
}
.hero-stats-gallery__stats .stat__label {
  margin-top: 8px;
  font-size: 16px;
  color: #666;
}
@media (max-width: 900px) {
  .hero-stats-gallery__header h1 {
    font-size: 32px;
  }
  .hero-stats-gallery__images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
    justify-content: center;
    align-items: center;
  }
  .hero-stats-gallery__images .hero-stats-gallery__image {
    height: auto;
  }
  .hero-stats-gallery__images .hero-stats-gallery__image:first-child {
    grid-column: 1/2;
    grid-row: 1/3;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .hero-stats-gallery__images .hero-stats-gallery__image:nth-child(2) {
    grid-column: 2/3;
    grid-row: 1/2;
    width: 100%;
    height: 28vw;
    object-fit: cover;
  }
  .hero-stats-gallery__images .hero-stats-gallery__image:nth-child(3) {
    grid-column: 2/3;
    grid-row: 2/3;
    width: 100%;
    height: 28vw;
    object-fit: cover;
  }
  .hero-stats-gallery__images .hero-stats-gallery__image:last-child {
    display: none;
  }
  .hero-stats-gallery__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 0;
    gap: 0;
    padding: 0;
    overflow: hidden;
    background-color: #E8E6E1;
  }
  .hero-stats-gallery__stats .stat {
    padding: 32px 16px;
  }
  .hero-stats-gallery__stats .stat__number {
    font-size: 28px;
  }
  .hero-stats-gallery__stats .stat__number::after {
    content: "+";
    margin-left: 2px;
  }
  .hero-stats-gallery__stats .stat__label {
    margin-top: 8px;
    font-size: 14px;
    color: #666;
  }
}
@media (max-width: 900px) {
  .hero-stats-gallery__header h1 {
    font-size: 28px;
  }
  .hero-stats-gallery__stats {
    grid-template-columns: 1fr 1fr;
    padding: 18px;
  }
  .hero-stats-gallery__stats .stat {
    padding: 24px 12px;
    width: 100%;
  }
  .hero-stats-gallery__stats .stat:nth-child(1) {
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
  }
  .hero-stats-gallery__stats .stat:nth-child(2) {
    border-bottom: 1px solid #ccc;
  }
  .hero-stats-gallery__stats .stat:nth-child(3) {
    border-right: 1px solid #ccc;
  }
  .hero-stats-gallery__stats .stat__number {
    font-size: 24px;
  }
  .hero-stats-gallery__stats .stat__label {
    font-size: 13px;
  }
}
/*!*******************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./style/services-grid.scss ***!
  \*******************************************************************************************************************/
.services-grid-section {
  text-align: center;
  padding: 30px 20px;
  margin: 0 auto;
  max-width: 1440px;
}
@media only screen and (min-width: 900px) {
  .services-grid-section {
    padding: 60px 20px;
  }
}
.services-grid-section .section-title {
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 0.5rem;
}
.services-grid-section .section-subtitle {
  color: #000;
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 50px;
}
.services-grid-section .services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media only screen and (min-width: 500px) {
  .services-grid-section .services-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (min-width: 900px) {
  .services-grid-section .services-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media only screen and (min-width: 1100px) {
  .services-grid-section .services-grid {
    gap: 24px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
.services-grid-section .service-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.25rem;
  color: #fff;
  width: 100%;
  height: 420px;
  opacity: 1;
  transition: opacity 0.15s ease-in-out;
}
.services-grid-section .service-card:hover {
  opacity: 0.7;
}
.services-grid-section .service-card .service-image {
  background-size: cover;
  background-position: center;
  filter: brightness(0.6);
  height: 100%;
  width: 100%;
  position: absolute;
  inset: 0;
  transition: transform 0.3s ease;
}
.services-grid-section .service-card .service-image:hover {
  transform: scale(1.03);
}
.services-grid-section .service-card .service-content {
  padding: 16px;
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.15) 10%, transparent 100%);
  border-radius: 1.25rem;
}
.services-grid-section .service-card .service-content * {
  margin: 0;
  text-align: left;
  color: #fff;
  font-weight: 400;
}
.services-grid-section .service-card .service-content .service-categories {
  margin-bottom: 20px;
}
.services-grid-section .service-card .service-content .service-categories .service-category {
  display: flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  background-color: rgba(255, 255, 255, 0.2);
  font-weight: 400;
  font-size: 14px;
  padding: 6px 10px;
  border-radius: 8px;
}
.services-grid-section .service-card .service-content .service-categories .service-category img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}
.services-grid-section .service-card .service-content h3 {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 0.5rem;
}
.services-grid-section .service-card .service-content p {
  font-size: 0.95rem;
  margin-bottom: auto;
}
.services-grid-section .service-card .service-content .learn-more {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-weight: 400;
  font-size: 0.9rem;
  color: #fff;
  text-decoration: none;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  width: fit-content;
}
.services-grid-section .service-card .service-content .learn-more:hover {
  cursor: pointer;
}
.services-grid-section .service-card .service-icon {
  margin-bottom: 0.75rem;
}
.services-grid-section .service-card .service-icon img {
  width: 28px;
  height: 28px;
}
/*!*********************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./style/blackstone-form.scss ***!
  \*********************************************************************************************************************/
.blackstone-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  background-color: #f5f3ef;
  padding: 30px 20px;
  border-radius: 16px;
  max-width: 1440px;
  margin: 0 auto;
}
@media only screen and (min-width: 900px) {
  .blackstone-contact {
    padding: 60px 20px;
  }
}
.blackstone-contact__form {
  flex: 1 1 500px;
  padding: 40px 10px;
  background-color: #E5E3DC;
  border-radius: 15px;
}
@media only screen and (min-width: 600px) {
  .blackstone-contact__form {
    padding: 40px 20px;
  }
}
@media only screen and (min-width: 1200px) {
  .blackstone-contact__form {
    padding: 40px;
  }
}
.blackstone-contact__form h2 {
  font-weight: 400;
  font-size: 38px;
  color: #000;
}
.blackstone-contact__form p {
  font-weight: 400;
  font-size: 16px;
  color: #000;
}
.blackstone-contact__form form {
  display: grid;
  gap: 16px;
}
.blackstone-contact__form form legend {
  font-weight: 400 !important;
  font-size: 14px !important;
  color: #000 !important;
}
.blackstone-contact__form form .wpforms-field-name legend {
  font-weight: 400 !important;
  font-size: 14px !important;
  color: #000 !important;
}
.blackstone-contact__form form input,
.blackstone-contact__form form textarea,
.blackstone-contact__form form select {
  width: 100% !important;
  padding: 16px 15px !important;
  font-size: 16px !important;
  background-color: #F8F7F6 !important;
  border-radius: 10px !important;
  outline: none !important;
  color: #787878 !important;
  border: none !important;
}
.blackstone-contact__form form textarea {
  min-height: 135px !important;
}
.blackstone-contact__form form input[type=checkbox] {
  width: auto !important;
  padding: 0 !important;
  background-color: transparent !important;
  margin-right: 8px;
}
.blackstone-contact__form form .wpforms-field-checkbox.custom-options ul.wpforms-icon-choices.wpforms-icon-choices-modern li label {
  background-color: #F8F7F6 !important;
  border-radius: 5px !important;
  border: none !important;
}
.blackstone-contact__form form .wpforms-field-checkbox.custom-options ul.wpforms-icon-choices.wpforms-icon-choices-modern .wpforms-selected label {
  background-color: #000 !important;
}
.blackstone-contact__form form .wpforms-field-checkbox.custom-options ul.wpforms-icon-choices.wpforms-icon-choices-modern .wpforms-selected label span.wpforms-icon-choices-label {
  color: #FFF !important;
}
.blackstone-contact__form form .wpforms-uploader {
  border-radius: 10px !important;
  border: none !important;
  outline: none !important;
}
.blackstone-contact__form form button,
.blackstone-contact__form form input[type=submit] {
  background-color: #000 !important;
  color: #fff !important;
  border: none !important;
  outline: none !important;
  padding: 15px 25px !important;
  border-radius: 15px !important;
  font-size: 16px !important;
  width: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  cursor: pointer;
  transition: 0.2s;
}
.blackstone-contact__form form button::after,
.blackstone-contact__form form input[type=submit]::after {
  content: url("https://blackstone-main.exploreagency.dev/wp-content/uploads/2025/07/Vector-10.png");
}
.blackstone-contact__form form button:hover,
.blackstone-contact__form form input[type=submit]:hover {
  background: #222 !important;
}
.blackstone-contact__form form .custom-input legend {
  font-weight: 400 !important;
  font-size: 14px !important;
  color: #000 !important;
}
.blackstone-contact__form form .custom-input label {
  font-weight: 400 !important;
  font-size: 14px !important;
  color: #000 !important;
}
.blackstone-contact__form form .custom-input .wpforms-field-layout .wpforms-layout-row .wpforms-layout-column {
  padding: 15px 10px !important;
}
.blackstone-contact__form form .custom-area label {
  font-weight: 400 !important;
  font-size: 14px !important;
  color: #000 !important;
}
.blackstone-contact__form form .custom-drop {
  padding: 15px 0 !important;
}
.blackstone-contact__form form .custom-drop label {
  font-weight: 400 !important;
  font-size: 14px !important;
  color: #000 !important;
}
.blackstone-contact__form form .custom-drop select {
  padding: 0 15px !important;
}
.blackstone-contact__form form .custom-upload label {
  font-weight: 400 !important;
  font-size: 14px !important;
  color: #000 !important;
}
.blackstone-contact__form form .custom-check fieldset ul li input[type=checkbox] {
  display: none;
}
.blackstone-contact__form form .custom-check fieldset ul li label.wpforms-field-label-inline {
  position: relative;
  padding-left: 32px;
  cursor: pointer;
  font-size: 16px;
  line-height: 1.4;
  user-select: none;
  color: #000;
  padding-inline-start: 40px !important;
}
.blackstone-contact__form form .custom-check fieldset ul li label.wpforms-field-label-inline::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border: 2px solid #000;
  border-radius: 4px;
  background-color: transparent;
  box-sizing: border-box;
  transition: 0.2s;
}
.blackstone-contact__form form .custom-check fieldset ul li label.wpforms-field-label-inline::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  width: 9px;
  height: 6px;
  border-left: 2px solid #000;
  border-bottom: 2px solid #000;
  transform: rotate(316deg);
  opacity: 0;
  transition: 0.2s;
}
.blackstone-contact__form form .custom-check fieldset ul li input[type=checkbox]:checked + label.wpforms-field-label-inline::after {
  opacity: 1;
}
.blackstone-contact__form form .custom-check fieldset ul li input[aria-invalid=true] + label.wpforms-field-label-inline::before {
  border-color: red;
}
.blackstone-contact__info {
  flex: 1 1 300px;
  background-color: #fff;
  padding: 24px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 380px;
  height: fit-content;
}
.blackstone-contact__info h3 {
  font-size: 20px;
  margin: 0 0 12px 0;
}
.blackstone-contact__info .location {
  font-size: 14px;
  line-height: 1.4;
  margin: 0;
}
.blackstone-contact__info .location strong {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  background-color: rgba(176, 172, 169, 0.2);
  border-radius: 8px;
  width: fit-content;
  margin: 0;
  margin-bottom: 20px;
}
.blackstone-contact__info .location strong svg {
  margin: 0;
}
.blackstone-contact__info .location div {
  font-size: 16px;
  color: #000;
  font-weight: 500;
  margin-bottom: 15px;
}
.blackstone-contact__info .location div + div {
  font-weight: 300;
  margin-bottom: 15px;
}
.blackstone-contact__info .location a {
  color: inherit;
  text-decoration: none;
}
.blackstone-contact__info .hours {
  font-size: 14px;
  color: #444;
  display: flex;
  flex-direction: column;
  margin: 0;
}
.blackstone-contact__info .hours .working-hours {
  display: flex;
  justify-content: space-between;
}
.blackstone-contact__info .hours * {
  margin: 0;
}
.blackstone-contact__info .hours strong {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  background-color: rgba(176, 172, 169, 0.2);
  border-radius: 8px;
  width: fit-content;
  margin: 0;
  margin-bottom: 20px;
}
.blackstone-contact__info .hours strong svg {
  margin: 0;
}
.blackstone-contact__info .socials {
  display: flex;
  gap: 10px;
}
.blackstone-contact__info .socials svg,
.blackstone-contact__info .socials i {
  font-size: 20px;
}
/*!*************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./style/blackstone-schedule.scss ***!
  \*************************************************************************************************************************/
.blackstone-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  background-color: #f5f3ef;
  padding: 30px 20px;
  border-radius: 16px;
  max-width: 1440px;
  margin: 0 auto;
}
@media only screen and (min-width: 900px) {
  .blackstone-contact {
    padding: 60px 20px;
  }
}
.blackstone-contact .form-container {
  width: 100%;
  height: auto;
}
.blackstone-contact__form-schedule {
  flex: 1 1 500px;
  padding: 40px 10px;
  background-color: #FFFFFF;
  border-radius: 15px;
}
@media only screen and (min-width: 600px) {
  .blackstone-contact__form-schedule {
    padding: 40px 20px;
  }
}
@media only screen and (min-width: 1200px) {
  .blackstone-contact__form-schedule {
    padding: 40px;
  }
}
.blackstone-contact__form-schedule h2 {
  font-weight: 400;
  font-size: 38px;
  color: #000;
}
.blackstone-contact__form-schedule p {
  font-weight: 400;
  font-size: 16px;
  color: #000;
  margin-bottom: 16px;
}
.blackstone-contact__form-schedule form {
  display: grid;
  gap: 16px;
}
.blackstone-contact__form-schedule form legend {
  font-weight: 400 !important;
  font-size: 14px !important;
  color: #000 !important;
}
.blackstone-contact__form-schedule form .wpforms-field-name legend {
  font-weight: 400 !important;
  font-size: 14px !important;
  color: #000 !important;
}
.blackstone-contact__form-schedule form input,
.blackstone-contact__form-schedule form textarea,
.blackstone-contact__form-schedule form select {
  width: 100% !important;
  padding: 16px 15px !important;
  font-size: 16px !important;
  background-color: #F8F7F6 !important;
  border-radius: 10px !important;
  outline: none !important;
  color: #787878 !important;
  border: none !important;
}
.blackstone-contact__form-schedule form textarea {
  min-height: 135px !important;
}
.blackstone-contact__form-schedule form input[type=checkbox] {
  width: auto !important;
  padding: 0 !important;
  background-color: transparent !important;
  margin-right: 8px;
}
.blackstone-contact__form-schedule form .wpforms-field-checkbox.custom-options ul.wpforms-icon-choices.wpforms-icon-choices-modern li label {
  background-color: #F8F7F6 !important;
  border-radius: 5px !important;
  border: none !important;
}
.blackstone-contact__form-schedule form .wpforms-field-checkbox.custom-options ul.wpforms-icon-choices.wpforms-icon-choices-modern .wpforms-selected label {
  background-color: #000 !important;
}
.blackstone-contact__form-schedule form .wpforms-field-checkbox.custom-options ul.wpforms-icon-choices.wpforms-icon-choices-modern .wpforms-selected label span.wpforms-icon-choices-label {
  color: #FFF !important;
}
.blackstone-contact__form-schedule form .wpforms-uploader {
  border-radius: 10px !important;
  border: none !important;
  outline: none !important;
}
.blackstone-contact__form-schedule form button,
.blackstone-contact__form-schedule form input[type=submit] {
  background-color: #000 !important;
  color: #fff !important;
  border: none !important;
  outline: none !important;
  padding: 15px 25px !important;
  border-radius: 15px !important;
  font-size: 16px !important;
  width: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  cursor: pointer;
  transition: 0.2s;
}
.blackstone-contact__form-schedule form button::after,
.blackstone-contact__form-schedule form input[type=submit]::after {
  content: url("https://blackstone-main.exploreagency.dev/wp-content/uploads/2025/07/Vector-10.png");
}
.blackstone-contact__form-schedule form button:hover,
.blackstone-contact__form-schedule form input[type=submit]:hover {
  background: #222 !important;
}
.blackstone-contact__form-schedule form .custom-input legend {
  font-weight: 400 !important;
  font-size: 14px !important;
  color: #000 !important;
}
.blackstone-contact__form-schedule form .custom-input label {
  font-weight: 400 !important;
  font-size: 14px !important;
  color: #000 !important;
}
.blackstone-contact__form-schedule form .custom-input .wpforms-field-layout .wpforms-layout-row .wpforms-layout-column {
  padding: 15px 10px !important;
}
.blackstone-contact__form-schedule form .custom-area label {
  font-weight: 400 !important;
  font-size: 14px !important;
  color: #000 !important;
}
.blackstone-contact__form-schedule form .custom-drop {
  padding: 15px 0 !important;
}
.blackstone-contact__form-schedule form .custom-drop label {
  font-weight: 400 !important;
  font-size: 14px !important;
  color: #000 !important;
}
.blackstone-contact__form-schedule form .custom-drop select {
  padding: 0 15px !important;
}
.blackstone-contact__form-schedule form .custom-upload label {
  font-weight: 400 !important;
  font-size: 14px !important;
  color: #000 !important;
}
.blackstone-contact__form-schedule form .custom-check fieldset ul li input[type=checkbox] {
  display: none;
}
.blackstone-contact__form-schedule form .custom-check fieldset ul li label.wpforms-field-label-inline {
  position: relative;
  padding-left: 32px;
  cursor: pointer;
  font-size: 16px;
  line-height: 1.4;
  user-select: none;
  color: #000;
  padding-inline-start: 40px !important;
}
.blackstone-contact__form-schedule form .custom-check fieldset ul li label.wpforms-field-label-inline::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border: 2px solid #000;
  border-radius: 4px;
  background-color: transparent;
  box-sizing: border-box;
  transition: 0.2s;
}
.blackstone-contact__form-schedule form .custom-check fieldset ul li label.wpforms-field-label-inline::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  width: 9px;
  height: 6px;
  border-left: 2px solid #000;
  border-bottom: 2px solid #000;
  transform: rotate(316deg);
  opacity: 0;
  transition: 0.2s;
}
.blackstone-contact__form-schedule form .custom-check fieldset ul li input[type=checkbox]:checked + label.wpforms-field-label-inline::after {
  opacity: 1;
}
.blackstone-contact__form-schedule form .custom-check fieldset ul li input[aria-invalid=true] + label.wpforms-field-label-inline::before {
  border-color: red;
}
.blackstone-contact__info {
  flex: 1 1 300px;
  background-color: #fff;
  padding: 24px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 380px;
  height: fit-content;
}
.blackstone-contact__info h3 {
  font-size: 20px;
  margin: 0 0 12px 0;
}
.blackstone-contact__info .location {
  font-size: 14px;
  line-height: 1.4;
  margin: 0;
}
.blackstone-contact__info .location strong {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  background-color: rgba(176, 172, 169, 0.2);
  border-radius: 8px;
  width: fit-content;
  margin: 0;
  margin-bottom: 20px;
}
.blackstone-contact__info .location strong svg {
  margin: 0;
}
.blackstone-contact__info .location div {
  font-size: 16px;
  color: #000;
  font-weight: 500;
  margin-bottom: 15px;
}
.blackstone-contact__info .location div + div {
  font-weight: 300;
  margin-bottom: 15px;
}
.blackstone-contact__info .location a {
  color: inherit;
  text-decoration: none;
}
.blackstone-contact__info .hours {
  font-size: 14px;
  color: #444;
  display: flex;
  flex-direction: column;
  margin: 0;
}
.blackstone-contact__info .hours .working-hours {
  display: flex;
  justify-content: space-between;
}
.blackstone-contact__info .hours * {
  margin: 0;
}
.blackstone-contact__info .hours strong {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  background-color: rgba(176, 172, 169, 0.2);
  border-radius: 8px;
  width: fit-content;
  margin: 0;
  margin-bottom: 20px;
}
.blackstone-contact__info .hours strong svg {
  margin: 0;
}
.blackstone-contact__info .socials {
  display: flex;
  gap: 10px;
}
.blackstone-contact__info .socials svg,
.blackstone-contact__info .socials i {
  font-size: 20px;
}
/*!***********************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./style/types-of-flooring.scss ***!
  \***********************************************************************************************************************/
.flooring-section {
  padding: 30px 20px;
  max-width: 1440px;
}
@media only screen and (min-width: 900px) {
  .flooring-section {
    padding: 60px 20px;
  }
}
.flooring-section__title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 12px;
}
.flooring-section__subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 50px;
}
.flooring-section .flooring-cards {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
.flooring-section .flooring-card__wrapper {
  flex: 0 0 100%;
  margin: 0;
}
@media only screen and (min-width: 600px) {
  .flooring-section .flooring-card__wrapper {
    flex: 0 0 50%;
  }
}
@media only screen and (min-width: 900px) {
  .flooring-section .flooring-card__wrapper {
    flex: 0 0 33.3333%;
  }
}
@media only screen and (min-width: 1200px) {
  .flooring-section .flooring-card__wrapper {
    flex: 0 0 25%;
  }
}
.flooring-section .flooring-card {
  overflow: hidden;
  width: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s;
  padding: 1rem;
}
.flooring-section .flooring-card:hover {
  transform: translateY(-4px);
}
.flooring-section .flooring-card__image {
  background-size: cover;
  background-position: center;
  aspect-ratio: 3/2;
  width: 100%;
  height: 100px;
  margin: 0;
  border-radius: 25px;
}
.flooring-section .flooring-card__content {
  padding: 24px;
  background-color: #fff;
  border-radius: 25px;
  margin-top: 8px;
  min-height: 260px;
  width: 100%;
}
.flooring-section .flooring-card__tag {
  display: flex;
  align-items: center;
  width: fit-content;
  font-size: 12px;
  background-color: #eee;
  color: #000;
  padding: 4px 12px;
  border-radius: 999px;
  margin: 0;
  margin-bottom: 25px;
  font-weight: 400;
  text-transform: uppercase;
  gap: 8px;
}
.flooring-section .flooring-card__title {
  font-size: 20px;
  font-weight: 400;
  margin: 0 0 12px;
  color: #000;
}
.flooring-section .flooring-card__desc {
  font-size: 14px;
  font-weight: 300;
  color: #000;
  margin-bottom: 20px;
}
.flooring-section .flooring-card__desc ul {
  padding-left: 15px;
}
.flooring-section .flooring-card__desc ol {
  padding-left: 15px;
}
.flooring-section .flooring-card__link {
  font-weight: 600;
  text-decoration: none;
  color: #000;
  font-size: 0.9rem;
}
.flooring-section .flooring-card__link:hover {
  text-decoration: underline;
}
/*!**********************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./style/testimonial-tabs.scss ***!
  \**********************************************************************************************************************/
.testimonial-tabs {
  width: 100%;
  padding: 30px 20px;
}
@media only screen and (min-width: 900px) {
  .testimonial-tabs {
    padding: 60px 20px;
  }
}
.testimonial-tabs .container {
  max-width: 1440px;
  margin: 0 auto;
}
.testimonial-tabs__title {
  text-align: center;
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 8px;
  color: #000;
}
.testimonial-tabs__subtitle {
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 30px;
  color: #000;
}
.testimonial-tabs .btn {
  margin: 0 auto;
  margin-bottom: 50px;
}
.testimonial-tabs__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
}
.testimonial-tabs__nav .tab-btn {
  margin: 0;
  border: none;
  padding: 10px 20px;
  background: transparent;
  border-radius: 20px;
  font-weight: 400;
  font-size: 14px;
  cursor: pointer;
  border: 1px solid #000;
  transition: all 0.15s ease-in-out;
}
.testimonial-tabs__nav .tab-btn:hover {
  background: #000;
  color: #FFF;
}
.testimonial-tabs__nav .tab-btn.active {
  background: #000;
  color: #fff;
}
.testimonial-tabs__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  width: 100%;
}
@media only screen and (min-width: 1000px) {
  .testimonial-tabs__content {
    grid-template-columns: 1fr 1fr;
  }
}

.testimonial-tabs__card {
  width: 100%;
  background: #fff;
  border-radius: 16px;
  padding: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}
.testimonial-tabs__card__content {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
@media (max-width: 900px) {
  .testimonial-tabs__card__content {
    flex-direction: column;
  }
}
.testimonial-tabs__card__text {
  flex: 1 1 40%;
  display: flex;
  flex-direction: column;
  padding: 0 50px 0 30px;
}
@media (max-width: 900px) {
  .testimonial-tabs__card__text {
    padding: 0;
    flex: unset;
  }
}
.testimonial-tabs__card__text .testimonial-card__label {
  font-size: 14px;
  font-weight: 400;
  color: #000;
  text-transform: uppercase;
  background: #f3f3f3;
  padding: 4px 10px;
  border-radius: 10px;
  display: inline-block;
  margin: 0;
  margin-bottom: 50px;
  width: fit-content;
}
.testimonial-tabs__card__text .testimonial-card__title {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 10px;
  margin: 0;
  margin-bottom: 25px;
}
.testimonial-tabs__card__text .testimonial-card__desc {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 20px;
  color: #000;
}
.testimonial-tabs__card__text .testimonial-card__author {
  font-weight: 500;
  font-size: 16px;
  margin: 0;
  margin-top: auto;
  color: #000;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid rgba(144, 144, 144, 0.2);
}
.testimonial-tabs__card__text .hero-rating {
  margin: 0;
}
.testimonial-tabs__card__text .hero-rating .hero-rating-top {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 13px;
}
.testimonial-tabs__card__text .stars {
  color: #FBBA27;
}
.testimonial-tabs__card .testimonial-card__images-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  width: 100%;
}
@media only screen and (min-width: 700px) {
  .testimonial-tabs__card .testimonial-card__images-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  }
}
.testimonial-tabs__card .testimonial-card__images-grid__img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
}
.testimonial-tabs__card .testimonial-card__images-grid__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
@media only screen and (min-width: 600px) {
  .testimonial-tabs__card .testimonial-card__images-grid__img {
    height: 200px;
  }
}
.testimonial-tabs__card .testimonial-card__images-grid__img:nth-child(1) {
  grid-column: span 3;
}
.testimonial-tabs__card .testimonial-card__images-grid__img:nth-child(2) {
  grid-column: span 2;
}
.testimonial-tabs__card .testimonial-card__images-grid__img:nth-child(3) {
  grid-column: span 1;
}
@media only screen and (min-width: 700px) {
  .testimonial-tabs__card .testimonial-card__images-grid__img:nth-child(3) {
    grid-column: span 2;
  }
}
.testimonial-tabs__card .testimonial-card__images-grid__img:nth-child(4) {
  grid-column: span 1;
}
@media only screen and (min-width: 700px) {
  .testimonial-tabs__card .testimonial-card__images-grid__img:nth-child(4) {
    grid-column: span 2;
  }
}
.testimonial-tabs__card .testimonial-card__images-grid__img:nth-child(5) {
  grid-column: span 2;
}
@media only screen and (min-width: 700px) {
  .testimonial-tabs__card .testimonial-card__images-grid__img:nth-child(5) {
    grid-column: span 1;
  }
}
.testimonial-tabs__card .testimonial-card__images {
  flex: 1 1 55%;
  display: grid;
  grid-template-areas: "img1 img1" "img2 img3";
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.testimonial-tabs__card .testimonial-card__images picture {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  max-height: 252px;
}
.testimonial-tabs__card .testimonial-card__images picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.testimonial-tabs__card .testimonial-card__images picture:nth-child(1) {
  grid-area: img1;
}
.testimonial-tabs__card .testimonial-card__images picture:nth-child(2) {
  grid-area: img2;
}
.testimonial-tabs__card .testimonial-card__images picture:nth-child(3) {
  grid-area: img3;
}
@media (max-width: 900px) {
  .testimonial-tabs__card .testimonial-card__images {
    flex: unset;
    grid-template-areas: "img1" "img2" "img3";
    grid-template-columns: 1fr;
    margin: 0;
  }
}

[lightbox-toggle] {
  cursor: zoom-in;
  transition: all 0.15s ease-in-out;
}
[lightbox-toggle]:hover {
  opacity: 0.7;
}

.c-lightbox {
  pointer-events: none;
  position: fixed;
  opacity: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9000000;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.85);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s;
}
.c-lightbox.open {
  opacity: 1;
  pointer-events: all;
}
.c-lightbox .c-lightbox__container {
  width: 100%;
  height: 100%;
}
.c-lightbox .c-lightbox__close {
  z-index: 999999;
  position: absolute;
  cursor: pointer;
  top: 1vh;
  right: 1vw;
  font-size: 30px;
  padding: 20px;
  color: white;
}
.c-lightbox .c-lightbox__close:hover {
  opacity: 0.7;
}
.c-lightbox .swiper-container {
  width: 100%;
  height: 100%;
}
.c-lightbox .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
.c-lightbox .swiper-pagination {
  color: white;
}
.c-lightbox .swiper-pagination span {
  color: white;
}
.c-lightbox .swiper-button-next,
.c-lightbox .swiper-button-prev {
  color: white;
}
.c-lightbox .swiper-button-next:hover,
.c-lightbox .swiper-button-prev:hover {
  opacity: 0.7;
}
.c-lightbox .swiper-button-next:after,
.c-lightbox .swiper-button-prev:after {
  font-size: 30px;
}
.c-lightbox .c-lightbox__image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 75%;
  width: 75%;
  text-align: center;
}
.c-lightbox .c-lightbox__image img {
  width: auto;
  height: auto;
  max-height: 90vh;
  max-width: 90vw;
}
/*!********************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./style/special-offers.scss ***!
  \********************************************************************************************************************/
.discount-cards {
  padding: 30px 20px;
  max-width: 1440px;
}
@media only screen and (min-width: 900px) {
  .discount-cards {
    padding: 60px 20px;
  }
}
.discount-cards__title {
  font-size: 38px;
  font-weight: 400;
  margin-bottom: 20px;
  text-align: center;
}
.discount-cards__subtitle {
  font-size: 16px;
  font-weight: 300;
  text-align: center;
  margin-bottom: 50px;
  color: #000;
  max-width: 692px;
}
.discount-cards__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media only screen and (min-width: 600px) {
  .discount-cards__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (min-width: 1100px) {
  .discount-cards__grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
  }
}
.discount-cards .discount-tabs__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}
.discount-cards .discount-tabs__nav .tab-btn {
  border: none;
  margin: 0;
  padding: 10px 20px;
  background: transparent;
  border-radius: 20px;
  font-weight: 400;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.15s ease-in-out;
  border: 1px solid #000;
}
.discount-cards .discount-tabs__nav .tab-btn:hover {
  background: #000;
  color: #FFF;
}
.discount-cards .discount-tabs__nav .tab-btn.active {
  background: #000;
  color: #fff;
}

.discount-card {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  transition: 0.3s ease;
  width: 100%;
}
.discount-card--highlighted {
  background: #8C7F68 !important;
}
.discount-card--highlighted .discount-card__tag {
  color: #fff;
  background-color: rgba(232, 230, 225, 0.4) !important;
}
.discount-card--highlighted .discount-card__tag img {
  filter: invert(1);
}
.discount-card--highlighted .discount-card__title {
  color: #fff !important;
}
.discount-card--highlighted .discount-card__desc {
  color: #fff !important;
}
.discount-card--highlighted .discount-card__note {
  color: #fff !important;
}
.discount-card--highlighted .discount-card__link {
  color: #fff !important;
}
.discount-card:nth-child(2n) {
  background-color: #E8E6E1;
}
.discount-card:nth-child(2n) .discount-card__tag {
  background-color: #F0EEE9;
}
.discount-card__content {
  margin: 0;
}
.discount-card__tag {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 400;
  margin: 0;
  margin-bottom: 30px;
  color: #000;
  background-color: #E8E6E1;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.discount-card__title {
  font-size: 24px;
  font-weight: 500;
  margin: 0 0 17px;
}
@media only screen and (min-width: 900px) {
  .discount-card__title {
    font-size: 40px;
  }
}
.discount-card__desc {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 24px;
}
.discount-card__note {
  font-size: 16px;
  font-weight: 300;
  color: #1D1D1D;
  margin: 0;
  margin-bottom: 30px;
  width: 100%;
}
.discount-card__link {
  font-weight: 400;
  text-decoration: none;
  font-size: 14px;
  color: #000;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(5, 5, 5, 0.1);
}
/*!*****************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./style/hero_slider.scss ***!
  \*****************************************************************************************************************/
.banner-slider {
  position: relative;
  margin-top: -130px;
  padding-bottom: 30px;
}
.banner-slider .swiper {
  width: 100%;
  height: 95vh;
}
.banner-slider .hero-slide {
  display: flex;
  align-items: center;
  padding: 0;
  background-size: cover;
  background-position: center;
  color: #fff;
}
.banner-slider .hero-slide__wrapper {
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
}
@media only screen and (min-width: 900px) {
  .banner-slider .hero-slide__wrapper {
    background: linear-gradient(to right, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
  }
}
.banner-slider .hero-slide__content {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
@media all and (max-width: 900px) {
  .banner-slider .hero-slide__content {
    padding: 20px;
    align-items: stretch;
  }
}
.banner-slider .hero-slide__title {
  max-width: unset;
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 20px;
  color: #fff;
  text-align: center;
}
@media only screen and (min-width: 900px) {
  .banner-slider .hero-slide__title {
    max-width: 750px;
    font-size: 48px;
    text-align: left;
    margin: 0;
    margin-bottom: 50px;
  }
}
.banner-slider .hero-slide__subtitle {
  font-size: 24px;
  margin-bottom: 20px;
  margin: 0;
}
.banner-slider .hero-slide__features {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 20px 0 50px;
}
@media only screen and (min-width: 900px) {
  .banner-slider .hero-slide__features {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
}
.banner-slider .hero-slide__features li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  margin: 0;
}
@media only screen and (max-width: 900px) {
  .banner-slider .hero-slide__features li {
    flex-direction: column;
    gap: 15px;
    padding: 20px 8px;
    background-color: rgba(26, 26, 26, 0.6);
    border-radius: 10px;
    text-align: center;
  }
}
.banner-slider .hero-slide__features li .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  margin: 0;
}
.banner-slider .hero-slide__features li .icon img {
  width: 100%;
  height: 100%;
}
.banner-slider .hero-slide__buttons {
  display: flex;
  gap: 16px;
  margin: 0;
}
@media all and (max-width: 900px) {
  .banner-slider .hero-slide__buttons {
    align-self: center;
  }
}
.banner-slider .hero-slide__buttons .btn {
  padding: 14px 24px;
  border-radius: 22px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s;
  color: #fff;
  border-color: #fff;
}
.banner-slider .hero-slide__buttons .btn:hover {
  color: #000;
  background-color: #fff;
}
.banner-slider .hero-slide__buttons .black-btn {
  background: #fff;
  color: #000;
}
.banner-slider .hero-slide__buttons .black-btn:hover {
  background: #000;
  color: #fff;
  border-color: #000;
}
.banner-slider .hero-slide__buttons .black-btn:hover svg {
  filter: invert(1);
}
.banner-slider .hero-slider__pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  position: absolute;
  bottom: 2%;
  left: 50%;
  z-index: 9;
  transform: translate(-50%, 0);
}
.banner-slider .hero-slider__arrow {
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  width: 40px;
  height: 20px;
  opacity: 1;
  transition: opacity 0.15s ease-in-out;
}
.banner-slider .hero-slider__arrow:hover {
  opacity: 0.7;
}
.banner-slider .hero-slider__arrow span {
  display: block;
  height: 2px;
  background: white;
  width: 100%;
  position: relative;
}
.banner-slider .hero-slider__arrow--prev span::before,
.banner-slider .hero-slider__arrow--next span::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid white;
  border-right: 2px solid white;
  transform: translateY(-50%) rotate(-135deg);
}
.banner-slider .hero-slider__arrow--next span::before {
  right: 0;
  transform: translateY(-50%) rotate(45deg);
}
.banner-slider .hero-slider__arrow--prev span::before {
  left: 0;
  transform: translateY(-50%) rotate(-135deg);
}
.banner-slider .hero-slider__numbers {
  display: flex;
  gap: 20px;
  position: relative;
}
.banner-slider .hero-slider__numbers::after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.3);
  position: absolute;
  bottom: -6px;
}
.banner-slider .hero-slider__number {
  color: white;
  font-size: 18px;
  position: relative;
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.15s ease-in-out;
}
.banner-slider .hero-slider__number:hover {
  opacity: 0.7;
}
.banner-slider .hero-slider__number.active::after {
  content: "";
  display: block;
  height: 2px;
  background: white;
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
}
/*!**************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./style/real-projects-slider.scss ***!
  \**************************************************************************************************************************/
.real-projects-slider {
  text-align: center;
  padding: 30px 20px;
  max-width: 1440px;
  margin: 0 auto;
}
@media only screen and (min-width: 900px) {
  .real-projects-slider {
    padding: 60px 20px;
  }
}
.real-projects-slider__title {
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 10px;
  color: #252525;
}
.real-projects-slider__subtitle {
  font-size: 16px;
  color: #505050;
  margin-bottom: 40px;
}
.real-projects-slider__swiper {
  margin: 0 auto 30px;
}
.real-projects-slider__swiper .swiper-wrapper {
  align-items: center;
  height: 440px;
}
.real-projects-slider__swiper .swiper-slide {
  transition: all 0.45s ease;
  max-height: 260px;
  transform: scale(0.95);
}
@media only screen and (min-width: 768px) {
  .real-projects-slider__swiper .swiper-slide {
    max-height: 260px;
  }
}
@media only screen and (min-width: 1200px) {
  .real-projects-slider__swiper .swiper-slide {
    max-height: 350px;
  }
}
.real-projects-slider__swiper .swiper-slide img {
  border-radius: 12px;
  max-width: 100%;
  height: 100%;
  max-height: 260px;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}
@media only screen and (min-width: 768px) {
  .real-projects-slider__swiper .swiper-slide img {
    max-width: 260px;
    max-height: 260px;
  }
}
@media only screen and (min-width: 1200px) {
  .real-projects-slider__swiper .swiper-slide img {
    max-width: 350px;
    max-height: 350px;
  }
}
.real-projects-slider__swiper .swiper-slide-active {
  z-index: 5;
  max-height: 300px;
  height: 100%;
  transform: scale(1);
  transition: all 0.45s ease;
}
@media only screen and (min-width: 768px) {
  .real-projects-slider__swiper .swiper-slide-active {
    max-height: 340px;
  }
}
@media only screen and (min-width: 1200px) {
  .real-projects-slider__swiper .swiper-slide-active {
    max-height: 400px;
  }
}
.real-projects-slider__swiper .swiper-slide-active img {
  max-width: 100%;
  width: 100%;
  max-height: 100%;
  height: 100%;
  object-fit: cover;
}
.real-projects-slider__swiper .swiper-button-prev,
.real-projects-slider__swiper .swiper-button-next {
  color: #000;
  background: #F3F1ED;
  border: 1px solid #000;
  border-radius: 50%;
  padding: 16px 11px;
  width: fit-content;
  height: fit-content;
  transition: color 0.15s ease-in-out;
}
.real-projects-slider__swiper .swiper-button-prev svg,
.real-projects-slider__swiper .swiper-button-next svg {
  height: auto;
  transition: all 0.15s ease-in-out;
}
.real-projects-slider__swiper .swiper-button-prev::after,
.real-projects-slider__swiper .swiper-button-next::after {
  content: none;
}
.real-projects-slider__swiper .swiper-button-prev:hover,
.real-projects-slider__swiper .swiper-button-next:hover {
  background: #000;
  border: 1px solid #000;
  color: #F3F1ED;
}
.real-projects-slider__swiper .swiper-button-prev:hover svg,
.real-projects-slider__swiper .swiper-button-next:hover svg {
  filter: invert(100%);
}
.real-projects-slider__btn {
  color: #000;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(5, 5, 5, 0.1);
  text-transform: capitalize;
  transition: all 0.3s ease;
}
.real-projects-slider__btn:hover {
  border-bottom: 1px solid #000;
}

.real-projects-slider__modal {
  display: none;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1000;
}
.real-projects-slider__modal__container {
  max-width: 1440px;
  height: 100%;
  margin: 0 auto;
}
/*!********************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./style/client-testimonials-slider.scss ***!
  \********************************************************************************************************************************/
.client-testimonials-slider {
  padding: 30px 20px;
  overflow: hidden;
  max-width: 1440px;
}
@media only screen and (min-width: 900px) {
  .client-testimonials-slider {
    padding: 60px 20px;
  }
}
.client-testimonials-slider__title {
  font-weight: 400;
  color: #000;
  text-align: center;
  margin: 0;
  margin-bottom: 10px;
  width: fit-content;
}
.client-testimonials-slider__subtitle {
  width: fit-content;
  margin: 0;
  font-size: 16px;
  color: #505050;
  text-align: center;
  margin-bottom: 40px;
}
.client-testimonials-slider__layout {
  display: flex;
  align-items: flex-start;
  position: relative;
}
@media only screen and (max-width: 1600px) {
  .client-testimonials-slider__layout {
    justify-content: unset;
    flex-wrap: nowrap;
  }
}
@media only screen and (max-width: 900px) {
  .client-testimonials-slider__layout {
    flex-direction: column;
    max-width: 95%;
  }
}
.client-testimonials-slider__trusted {
  background-color: #E8E6E1;
  padding: 24px;
  border-radius: 8px;
  margin-right: 32px;
  flex: 0 0 240px;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 900px) {
  .client-testimonials-slider__trusted {
    background-color: #E8E6E1;
    padding: 24px;
    border-radius: 8px;
    flex: 0 0 240px;
    display: flex;
    flex-direction: column;
    margin: 0 0 32px 0;
    width: 100%;
    align-items: center;
  }
}
.client-testimonials-slider__trusted-title {
  font-size: 20px;
  color: #000;
  margin: 0;
  margin-bottom: 8px;
}
.client-testimonials-slider__trusted-number {
  font-size: 44px;
  font-weight: 500;
  color: #000;
  margin-bottom: 24px;
  text-align: center;
}
@media only screen and (min-width: 900px) {
  .client-testimonials-slider__trusted-number {
    text-align: left;
  }
}
.client-testimonials-slider__trusted-avatars {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
}
.client-testimonials-slider__trusted-avatars picture {
  margin-left: 0;
}
.client-testimonials-slider__trusted-avatars picture + picture {
  margin-left: -65px;
}
@media only screen and (max-width: 900px) {
  .client-testimonials-slider__trusted-avatars picture + picture {
    margin-left: 0;
  }
}
.client-testimonials-slider__trusted-avatars img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: -8px;
  border: 2px solid #E8E6E1;
}
.client-testimonials-slider__trusted-avatars img:last-child {
  margin-right: 0;
}
.client-testimonials-slider__wrapper {
  flex: 1;
  position: relative;
  max-width: 1470px;
  width: 100%;
}
.client-testimonials-slider__nav {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 20px;
}
.client-testimonials-slider__nav .swiper-button-prev,
.client-testimonials-slider__nav .swiper-button-next {
  width: 40px;
  height: 40px;
  background-color: #000;
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
  right: 0;
  top: -20%;
  transition: all 0.15s ease-in-out;
}
.client-testimonials-slider__nav .swiper-button-prev:hover,
.client-testimonials-slider__nav .swiper-button-next:hover {
  opacity: 0.7;
}
.client-testimonials-slider__nav .swiper-button-prev::after,
.client-testimonials-slider__nav .swiper-button-next::after {
  content: "";
  display: block;
  width: 20px;
  height: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2710%27 viewBox=%270 0 20 10%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M1.15625 5.19529L18.8405 5.19529M18.8405 5.19529L14.6957 1M18.8405 5.19529L14.6957 9.33334%27 stroke=%27white%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E");
}
@media only screen and (max-width: 900px) {
  .client-testimonials-slider__nav .swiper-button-prev,
  .client-testimonials-slider__nav .swiper-button-next {
    top: 65%;
  }
}
.client-testimonials-slider__nav .swiper-button-prev {
  transform: rotate(180deg);
}
.client-testimonials-slider__nav .swiper-button-next {
  right: 10%;
  left: unset;
}
@media only screen and (max-width: 1600px) {
  .client-testimonials-slider__nav .swiper-button-next {
    right: 10%;
  }
}
@media only screen and (max-width: 900px) {
  .client-testimonials-slider__nav .swiper-button-next {
    right: -28px;
  }
}
.client-testimonials-slider__nav .swiper-button-prev {
  right: -65%;
}
@media only screen and (max-width: 1600px) {
  .client-testimonials-slider__nav .swiper-button-prev {
    right: -65%;
  }
}
@media only screen and (max-width: 900px) {
  .client-testimonials-slider__nav .swiper-button-prev {
    right: unset;
    left: -28px;
  }
}

.testimonial-card {
  background-color: #ffffff;
  padding: 35px 24px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.testimonial-card__stars {
  color: #FBBA27;
  margin: 0;
  font-size: 18px;
}
.testimonial-card__text {
  margin: 0;
  padding: 0;
  font-size: 14px;
  color: #1c1c1c;
  line-height: 1.6;
  margin-top: 43px;
  margin-bottom: 24px;
}
.testimonial-card__author {
  margin: 0;
  font-weight: 700;
  margin-top: 16px;
  font-size: 16px;
  color: #000;
}
