:root {
  --fp-one:
    "Brandon Printed One", system-ui, -apple-system, Segoe UI, Roboto,
    sans-serif;
  --fp-two:
    "Brandon Printed Two", system-ui, -apple-system, Segoe UI, Roboto,
    sans-serif;
  --fp-inline:
    "Brandon Printed Inline", system-ui, -apple-system, Segoe UI, Roboto,
    sans-serif;
  --fp-double:
    "Brandon Printed Double", system-ui, -apple-system, Segoe UI, Roboto,
    sans-serif;
  --fp-shadow:
    "Brandon Printed Shadow", system-ui, -apple-system, Segoe UI, Roboto,
    sans-serif;

  --c1: #ffffff;
  --c2: #000000;
  --c3: #f8f6f6;

  --body: 16px;
  --menu: 18px;
  --sub: 20px;
  --spacing: 45px;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: #888 transparent;
}

html::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

html::-webkit-scrollbar-track {
  background: transparent;
}

html::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 999px;
}

html::-webkit-scrollbar-thumb:hover {
  background-color: #555;
}

body {
  background-color: var(--c1);
  font-weight: 400;
  font-size: var(--body);
  line-height: 1.3;
  letter-spacing: normal;
  font-family: "Source Sans Pro";
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-family: var(--fp-double);
}

.site {
  min-height: 100vh;
}

.container {
  max-width: 1320px;
  margin: 0 auto;
}

.btn {
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.15s ease;
}

.btn-white {
  background-color: var(--c1);
  color: var(--c2);
  border: 1px solid var(--c1);
}

.btn-border {
  background-color: #1d000033;
  border: 1px solid var(--c2);
  backdrop-filter: blur(5px);
}

.btn-white {
  background-color: var(--c1);
}

.transparent {
  color: var(--c1);
}

.section-header-subtitle {
  margin-top: var(--spacing);
  font-size: var(--sub);
  text-align: center;
}

.menu-mobile {
  display: none;
}

.menu-mobile.mob span:nth-child(1) {
  top: calc(50% - 5px);
  transform: translateY(-50%);
}

.menu-mobile.mob span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.menu-mobile.mob span:nth-child(3) {
  top: calc(50% + 5px);
  transform: translateY(-50%);
}

.menu-mobile.mob.is-open span:nth-child(1) {
  transform: rotate(45deg) translateY(-50%);
  top: 49%;
}

.menu-mobile.mob.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-mobile.mob.is-open span:nth-child(3) {
  transform: rotate(-45deg) translateY(-50%);
  top: 49%;
}

.header_mobile__menu {
  position: fixed;
  inset: 0;
  background: #ffffff;
  z-index: 9;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10%);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

@media (min-width: 1024px) {
  .header_mobile__menu {
    display: none;
  }
}

.header_mobile__menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

body.mob-menu-open {
  overflow: hidden;
}

.mob-submenu {
  display: none;
}

.mob-submenu-inner {
  padding: 16px 0 8px;
}

.mob-link .menu-arrow svg {
  transition: transform 0.25s ease;
}

.mob-link.active .menu-arrow svg {
  transform: rotate(180deg);
}

.btn-tab {
  padding-left: 30px;
  padding-right: 30px;
  border: 1px solid;
  font-weight: 600;
}

.menu-about-buttons .btn.active {
  background-color: var(--c2);
  color: var(--c1);
}

.btn-tab:hover {
  background-color: var(--c2);
  color: var(--c1);
}

.btn-tab.active {
  background-color: var(--c2);
  color: var(--c1);
  border: 1px solid var(--c2);
}

.card-hover .h4 {
  margin-top: 15px;
}

.card-hover img {
  border-radius: 10px;
  aspect-ratio: 4 / 3;
}

.container-min {
  max-width: 900px;
  margin: 0 auto;
}

.dark {
  background-color: var(--c2);
  color: var(--c1);
}

.card-1 {
  aspect-ratio: 1 / 1;
  position: relative;
  color: var(--c1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--c2);
}

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

.card-1.color-black {
  color: var(--c2);
  justify-content: start;
  gap: 48px;
  aspect-ratio: auto;
}

.card.card-1.black {
  background-color: var(--c2);
}

.card-1:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
}

.card-1.color-black:after {
  content: none;
}

.s3-1.two-rows .card.card-1 {
  aspect-ratio: 21 / 9;
  color: var(--c2);
}

.s3-1.two-rows .card.card-1:after {
  background: #ffffff33;
  backdrop-filter: blur(8px);
}

.s3-1 .card.card-1 {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
}

.s3-1 .card.card-1 .card-footer {
  display: flex;
  flex-direction: column;
  min-height: 0;
  max-height: 100%;
  align-self: end;
}

.s3-1 .card.card-1 .card-description {
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-right: 8px;
  scrollbar-width: thin;
}

.card-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.card-2 {
  display: flex;
  border-radius: 10px;
  background-color: #f8f6f6;
  overflow: hidden;
}

.card-2-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-2-image,
.card-2-content {
  flex: 1;
}

.card-2-image img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

.card-2-button a {
  display: block;
  width: fit-content;
}

.card-2-content .h2 {
  display: flex;
  gap: 16px;
}

.card-2-content .h2 span {
  position: relative;
  display: flex;
  height: fit-content;
  align-items: center;
  flex-direction: row-reverse;
  gap: 15px;
}

.card-2-content .h2 span:after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 100%;
  background-color: var(--c2);
}

.card-3-image {
  border-radius: 10px;
  overflow: hidden;
}

.card-3-image img {
  aspect-ratio: 11 / 10;
  object-fit: cover;
  object-position: center;
}

.card-4-image {
  border-radius: 10px;
  overflow: hidden;
}

.card-4-image img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
}

.card-4-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-4-date {
  color: #7a7c79;
  margin-right: 20px;
}

.card-5 {
  display: flex;
  gap: 20px;
}

.card-5-image {
  flex: 0 0 33.333%;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.card-5-name {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 2;
  color: var(--c1);
}

.card-5-content {
  flex: 0 0 66.666%;
  border: 1px solid;
  border-radius: 10px;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.card-5:not(:last-child) {
  margin-bottom: 20px;
}

.card-5-image img {
  aspect-ratio: 5 / 3;
}

.card-5-image:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.5) 100%
  );
}

.cover {
  object-fit: cover;
}

.card-image img {
  height: 100%;
}

.card-number,
.card-footer,
.card-number-v2 {
  z-index: 3;
  position: relative;
}

.card-number,
.card-number-v2 {
  font-family: "Brandon Printed Double";
  display: flex;
  align-items: center;
}

.card-number:before,
.card-number-v2:before {
  content: "";
  width: 6px;
  height: 6px;
  background-color: var(--c1);
  border-radius: 100%;
  display: inline-flex;
  margin-right: 15px;
}

.card-number-v2:before {
  background-color: var(--c2);
}

.btn-black {
  background-color: var(--c2);
  color: var(--c1);
  border: 1px solid var(--c2);
}

.image-testimonials,
.container-testimonials {
  flex: 1;
}

.image-testimonials img {
  aspect-ratio: 6 / 5;
}

.slide-wrapper-testimonials {
  display: flex;
  background-color: var(--c1);
  border-radius: 10px;
  overflow: hidden;
}

.container-testimonials .header-testimonials {
  padding: 50px;
  height: 80%;
  max-height: 90%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.arrow-testimonials {
  position: absolute;
  bottom: 0;
  right: 0;
}

.arrow-testimonials {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.slick-dots {
  display: flex;
  gap: 5px;
}

.dots-testimonials li {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ebebeb;
  transition: all 0.1s ease;
}

.dots-testimonials li button {
  opacity: 0;
  display: none;
}

.slick-arrow {
  background-color: var(--c2);
  border: 1px solid var(--c2);
  border-radius: 100%;
  line-height: 1;
  padding: 0px 1px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.17s ease;
}

.slick-arrow.slick-disabled {
  background-color: transparent;
}

.dots-testimonials li.slick-active {
  background-color: var(--c2);
}

.slick-arrow svg path {
  fill: var(--c1);
  transition: all 0.17s ease;
}

.slick-arrow.slick-disabled svg path {
  fill: var(--c2);
}

.tag-map {
  border: 1px solid;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.2s ease;
  cursor: pointer;
  transition: all 0.17s ease;
}

.tag-map.active {
  background-color: var(--c2);
  color: var(--c1);
}

.header-faq {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 30px;
  cursor: pointer;
}

.last-faq {
  display: flex;
  gap: 10px;
  justify-content: flex-start;
  width: 100%;
}

.arrow-faq svg {
  fill: transparent;
}

.card-faq {
  border-bottom: 1px solid;
}

.arrow-faq,
.arrow-faq svg {
  transition: all 0.1s ease;
  line-height: 1;
}

.header-faq.open .arrow-faq {
  transform: rotate(180deg);
}

.header-faq svg rect {
  transition: all 0.15s ease;
}

@media (min-width: 1024px) {
  .mob {
    display: none !important;
  }

  .slick-arrow:hover svg path {
    fill: var(--c2);
  }

  .btn-tab.active:hover {
    background-color: #7a7c79;
  }

  .slick-arrow:hover {
    background-color: #7a7c79;
    border-color: #7a7c79;
  }

  .slick-arrow.slick-disabled:hover {
    background-color: var(--c2);
    border-color: var(--c2);
  }

  .slick-arrow.slick-disabled:hover svg path {
    fill: var(--c1);
  }

  .header-faq:hover svg rect {
    fill: var(--c2);
  }

  .header-faq:hover svg path {
    fill: var(--c1);
  }

  .tag-map:hover,
  .tag-map.active:hover {
    background-color: #7a7c79;
    color: var(--c1);
    border-color: #7a7c79;
  }

  .btn {
    padding-top: 13px;
    padding-bottom: 13px;
  }

  .btn-default {
    padding-left: 50px;
    padding-right: 50px;
  }

  .btn-max {
    padding-left: 80px;
    padding-right: 80px;
  }

  .btn-min {
    padding-left: 30px;
    padding-right: 30px;
  }

  .tag-map {
    padding: 8px 20px;
  }

  h1 {
    font-size: 60px;
  }

  h2,
  .h2 {
    font-size: 40px;
  }

  h3,
  .h3 {
    font-size: 25px;
  }

  h4,
  .h4 {
    font-size: 20px;
  }

  .card-number {
    font-size: 60px;
  }

  .card-description {
    margin-top: 15px;
  }

  .description-testimonials {
    margin-top: 80px;
  }

  .info-testimonials {
    margin-top: 40px;
  }

  .arrow-testimonials {
    padding: 50px;
    width: 50%;
  }

  .sub-name {
    font-size: 18px;
  }

  .slick-arrow {
    width: 38px;
    height: 38px;
  }

  .card-2-content {
    padding: 50px 30px;
  }

  .card-3-footer {
    margin-top: 15px;
  }

  .card-3-description {
    margin-top: 10px;
  }

  .card-4-content {
    margin-top: 15px;
  }

  .card-4-description {
    margin-top: 10px;
  }

  .card-4-footer {
    margin-top: 20px;
  }

  .card-faq {
    padding-bottom: 25px;
    margin-bottom: 30px;
  }

  .contant-faq {
    margin-top: 15px;
  }

  .card-number-v2 {
    font-size: 25px;
  }
}

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

/*Header*/
.header-wrapper {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}

.menu ul {
  display: grid;
  grid-auto-flow: column;
}

.menu ul li {
  font-size: var(--menu);
}

.quote {
  text-align: end;
}

.menu-popups {
  position: fixed;
  left: 0;
  right: 0;
  top: 0%;
  z-index: -1;
  background-color: var(--c1);
  transition: all 0.3s ease;
}

.menu-popup-open .menu-popups {
  z-index: 101;
}

.site-header.white-header {
  background-color: var(--c1);
}

.header-scrolled .white-header {
  background-color: var(--c2);
  color: var(--c1);
}

.header-scrolled .white-header .menu ul li .menu-arrow svg path {
  fill: var(--c1);
}

.header-scrolled .white-header .logo svg path {
  fill: var(--c1);
}

.site-header.white-header .logo svg path {
  fill: var(--c2);
}

.header-scrolled .site-header.white-header .logo svg path {
  fill: var(--c1);
}

.site-header {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 102;
  transition:
    transform 0.7s ease,
    background-color 0.7s ease,
    box-shadow 0.7s ease;
}

.header-scrolled .site-header {
  position: fixed;
  transform: translateY(0);
}

.header-scrolled .transparent {
  background-color: var(--c2);
}

body.header-show .site-header {
  transform: translateY(0);
  position: fixed;
}

body.header-hide .site-header {
  transform: translateY(-100%);
}

.header-show .site-header {
  background-color: var(--c2);
}

.header-scrolled .quote .btn.btn-black.btn-default {
  background-color: var(--c1);
  color: var(--c2);
}

.menu-popup {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition:
    max-height 0.8s cubic-bezier(0.25, 0.8, 0.25, 1),
    opacity 0.7s ease,
    transform 0.7s ease;
  background: var(--c1);
}

.menu-popup.active {
  max-height: 700px;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  padding-top: 78.8px;
}

.menu-popup-open .site-header .logo svg path {
  fill: var(--c2) !important;
}

.menu-popup-open .site-header .menu {
  color: var(--c2) !important;
}

.menu-popup-open .site-header .menu .menu-arrow path {
  fill: var(--c2) !important;
}

.menu-popup-open .site-header .quote .btn.btn-white.btn-default {
  background-color: var(--c2);
  color: var(--c1);
  border-color: var(--c2);
}

.menu-popup-open .site-header {
  background-color: var(--c1);
}

.menu-popup-inner {
  display: flex;
  padding: 33px 0 45px;
}

.btn.btn-menu {
  padding: 8px 20px;
  border: 1px solid;
  border-radius: 100px;
}

.menu-popup-about-left {
  flex: 0 0 70%;
  padding-right: 20px;
  padding-bottom: 56px;
}

.menu-about-title {
  font-size: 18px;
  font-weight: 700;
}

.transparent .menu-arrow svg path {
  fill: var(--c1);
}

.menu-arrow {
  line-height: 1;
  display: inline-flex;
}

.menu-popup-about-right {
  flex: 1;
  border-left: 1px solid #e0e0e0;
  padding-left: 40px;
}

.menu-about-buttons {
  display: flex;
  gap: 10px;
}

.menu-popup-build {
  align-items: flex-start;
}

.menu-build-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  padding-right: 100px;
  flex: 0 0 70%;
}

.menu-build-card {
  display: block;
  text-decoration: none;
}

.menu-build-card-image img {
  aspect-ratio: 2 / 1.3;
  object-fit: cover;
  width: 100%;
  display: block;
  border-radius: 10px;
}
.menu-build-card-title {
  margin-top: 10px;
}

.menu-build-sidebar li {
  font-size: 18px;
}

.menu-build-sidebar li:not(:first-child) {
  margin-top: 25px;
}

.menu-build-sidebar li.active {
  font-weight: 700;
}

.menu-build-sidebar {
  flex: 1;
  padding-left: 40px;
  border-left: 1px solid #e0e0e0;
}

.menu-popup-locations {
  flex-direction: column;
}

.popup__textarea.is-error,
.ms-error {
  border-color: #e53935 !important;
}

.btn.btn-outline {
  border: 1px solid;
  padding: 8px 30px;
  border-radius: 100px;
}

.menu-locations-header {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 25px;
  margin-bottom: 24px;
  flex-direction: column;
}

.menu-locations-list ul {
  column-count: 4;
  gap: 20px;
}

.menu-locations-list li {
  padding-bottom: 20px;
  font-size: 18px;
}

.header-show .site-header.white-header .menu {
  color: var(--c1);
}

.header-show .site-header.white-header .menu .menu-arrow svg path {
  fill: var(--c1);
}

.menu-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  line-height: 1.5;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
  padding: 0 5px;
  border-radius: 100px;
}

.menu-link.active {
  background-color: #f8f6f6;
}

.menu-arrow svg {
  transition: transform 0.25s ease;
}

.menu-link.active .menu-arrow svg {
  transform: rotate(180deg);
}

body.menu-popup-open {
  overflow: hidden;
  position: relative;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  opacity: 0;
  pointer-events: none;
  z-index: 3;
  transition:
    opacity 0.3s ease,
    background 0.3s ease;
}

body.menu-popup-open::after {
  opacity: 1;
  background: rgba(0, 0, 0, 0.25);
  pointer-events: auto;
}

.popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.popup.is-open {
  display: flex;
}

.popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.popup__dialog {
  position: relative;
  max-width: 1050px;
  width: 100%;
  max-height: 90vh;
  background: #fff;
  border-radius: 18px;
  padding: 40px 50px 35px;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  z-index: 1;
}

@media (max-width: 767px) {
  .popup__dialog {
    padding: 24px 18px 22px;
    border-radius: 14px;
  }
}

.popup__close {
  position: absolute;
  top: 18px;
  right: 18px;
  border: none;
  background: none;
  cursor: pointer;
}

.popup__title {
  margin: 0 0 35px;
  text-align: center;
}

.popup__subtitle {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 30px;
}

.popup__subtitle--center {
  max-width: 520px;
}

.popup__step {
  display: none;
}

.popup__field .popup__label {
  margin-bottom: 5px;
}

.popup__step.is-active {
  display: block;
}

.popup__section {
  margin-bottom: 24px;
}

.popup__label {
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 16px;
}

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

.popup__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
  justify-content: space-between;
}

.popup-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 14px;
  padding: 10px 18px;
  border: 1px solid #1d0000;
  background: #fff;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
}

.popup-btn--choice {
  min-width: 120px;
}

.popup-btn--choice.is-active {
  background: #1d0000;
  color: #fff;
}

.popup-btn--primary {
  background: #1d0000;
  color: #fff;
}

.popup-btn--ghost {
  background: #fff;
  color: #1d0000;
}

.popup__textarea,
.popup__input,
.popup__select,
.ms-select,
.s25-row textarea,
.s25-row input {
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--c2);
  padding: 10px 12px;
  font-size: 14px;
  box-sizing: border-box;
}

.popup__textarea {
  min-height: 120px;
  resize: vertical;
  margin-top: 15px;
}

.popup__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 18px;
  margin-bottom: 14px;
}

@media (max-width: 767px) {
  .popup__grid {
    grid-template-columns: 1fr;
  }
}

.popup__field {
  display: flex;
  flex-direction: column;
}

.popup__checkbox {
  display: inline-flex;
  align-items: center;
  margin-right: 20px;
  cursor: pointer;
  font-size: 14px;
  margin-top: 8px;
}

.popup__checkbox--full {
  display: flex;
  align-items: flex-start;
  margin-top: 18px;
}

.popup__checkbox input {
  display: none;
}

.popup__checkbox-box {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 1px solid #1d0000;
  margin-right: 8px;
  position: relative;
  flex-shrink: 0;
}

.popup__checkbox input:checked + .popup__checkbox-box::after {
  content: "";
  position: absolute;
  inset: 2px;
  background: #1d0000;
  border-radius: 2px;
}

.popup__checkbox-label {
  line-height: 1.4;
}

.popup__footer {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}

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

.black-section {
  background-color: var(--c2);
  color: var(--c1);
}

.step-title {
  text-align: center;
  margin-bottom: var(--spacing);
}

.step-content {
  display: flex;
}

.cards-grid {
  display: grid;
}

.card-choice img {
  border-radius: 10px;
  aspect-ratio: 1.9 / 1;
}

.card-choice span:not(:first-child) {
  margin-top: 10px;
  display: block;
}

.card-choice {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.card-choice.active .cards-grid-image:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(/wp-content/uploads/2025/11/Group-57.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.cards-grid-image {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.step-note {
  background-color: var(--c1);
  border-radius: 10px;
}

.menu-build-cards {
  display: none;
}

.menu-build-cards.is-active {
  display: grid;
}

.form-step {
  display: none;
}

.form-step.is-active {
  display: block;
}

.step-footer {
  margin-top: var(--spacing);
}

.step-footer {
  margin-top: var(--spacing);
  display: flex;
  gap: 15px;
  align-items: center;
}

.step-counter {
  margin-left: 25px;
}

.dimensions-row {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: var(--spacing);
  gap: 50px;
}

.dimensions-row input {
  width: 100%;
  max-width: 180px;
  min-height: 48px;
  border: 1px solid;
  border-radius: 10px;
  padding: 10px;
  background-color: var(--c1);
}

.svg-close {
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-note.step-note-bottom {
  margin: 0;
  text-align: center;
}

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

.buttons-grid {
  display: grid;
}

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

.field,
.ms-field {
  display: flex;
  flex-direction: column;
}

.field label {
  margin-bottom: 5px;
  font-size: 16px;
}

.ms-field label {
  margin-bottom: 15px;
}

.field input,
.field textarea,
.ms-field textarea,
.ms-field input {
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--c2);
  padding: 10px 12px;
  font-size: 14px;
  box-sizing: border-box;
  background-color: var(--c1);
}

.ms-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-column-gap: 100px;
  grid-row-gap: 20px;
}

.ms-grid .ms-field .ms-label {
  font-weight: 400;
  margin-bottom: 5px;
}

.field textarea,
.ms-field textarea {
  min-height: 120px;
  resize: vertical;
}

.ms-section {
  margin-top: 35px;
}

.ms-label {
  font-weight: 600;
  margin-bottom: 15px;
}

.field.field--full {
  margin-top: 20px;
}

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

.form-thanks h2 {
  margin-bottom: var(--spacing);
}

.step-progress {
  position: relative;
  margin: 24px 0 32px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
}

.step-progress::after {
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  height: 2px;
  background: #1d0000;
  transform: translateY(-50%);
  width: var(--progress-fill, 0%);
}

.step-progress::before {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  top: 50%;
  height: 2px;
  background: #e0ddda;
  transform: translateY(-50%);
}

.step-progress-dot {
  position: relative;
  z-index: 1;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #e0ddda;
}

.step-progress-dot.is-active {
  width: 14px;
  height: 14px;
  background: var(--c2);
}

.step-progress-dot.is-done {
  background: #3c1a18;
}

.step-subtitle {
  margin-bottom: 35px;
  text-align: center;
}

.ms-label.ms-label--center {
  text-align: center;
  margin-bottom: 20px;
  font-weight: 600;
}

.ms-tabs {
  display: flex;
  gap: 15px;
  justify-content: space-between;
}

.ms-field label {
  font-weight: 600;
}

.ms-radio {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  cursor: pointer;
}

.ms-radio input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.ms-radio-box {
  position: relative;
  width: 18px;
  height: 18px;
  box-sizing: border-box;
  border: 1px solid var(--c2);
  border-radius: 3px;
  flex-shrink: 0;
}

.ms-radio-box::before {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 2px;
  background: var(--c2);
  transform: scale(0);
  transition: transform 0.15s ease-out;
}

.ms-radio input[type="radio"]:checked + .ms-radio-box::before {
  transform: scale(1.5);
}

.ms-radio-label {
  line-height: 1;
}

.ms-upload {
  border: 1px dashed #000000;
  border-radius: 10px;
  padding: 15px;
  background: #f8f6f6;
}

.ms-upload-drop {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  cursor: pointer;
}

.ms-upload-text {
  font-size: 14px;
  line-height: 1.4;
  color: #b1a9a5;
}

.ms-upload-file {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  border-radius: 12px;
  border: 2px solid #23223a;
  background: #ffffff;
}

.ms-footer {
  display: flex;
  margin-top: 35px;
  justify-content: center;
  gap: 15px;
}

.ms-upload-file-name {
  position: relative;
  padding-left: 56px;
  font-size: 14px;
  font-weight: 500;
}

.ms-upload-file-name::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 40px;
  height: 40px;
  transform: translateY(-50%);
  border-radius: 8px;
  background: #f2f2f2;
}

.ms-upload-file-size {
  display: block;
  font-size: 12px;
  color: #b1a9a5;
  margin-top: 2px;
}

.ms-upload-remove {
  margin-left: auto;
  border: none;
  background: none;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

.ms-step {
  display: none;
}

.ms-step.is-active {
  display: block;
}

label.ms-checkbox.ms-checkbox--full {
  margin-right: 20px;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: flex-start;
  margin-top: 18px;
}

label.ms-checkbox.ms-checkbox--full input[type="checkbox"] {
  display: none;
}

.ms-checkbox-box {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 1px solid #1d0000;
  margin-right: 8px;
  position: relative;
  flex-shrink: 0;
}

.ms-checkbox-label {
  line-height: 1.4;
}

.ms-checkbox.ms-checkbox--full input:checked + span.ms-checkbox-box::after {
  content: "";
  position: absolute;
  inset: 3px;
  background: #1d0000;
  border-radius: 2px;
}

.garage-specs__wrap {
  margin-top: var(--spacing);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: 1fr;
  gap: 26px;
}

.garage-specs__content {
  grid-area: 1 / 2 / 2 / 6;
}

.garage-specs__tabs {
  grid-area: 1 / 1 / 2 / 2;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.btn.garage-specs__tab {
  text-align: center;
  height: 50px;
  padding: 0 10px;
}

.garage-specs__panel {
  display: none;
}

.garage-specs__panel.is-active {
  display: block;
  position: relative;
}

.garage-specs__text--two {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
}

.garage-specs__image {
  margin-top: 40px;
  border-radius: 10px;
  overflow: hidden;
}

.garage-specs__image img {
  max-height: 520px;
  height: 100%;
  object-fit: cover;
}

.garage-specs__palette-head {
  padding: 10px 20px;
  border: 1px solid;
  width: fit-content;
  border-radius: 10px;
  background-color: var(--c1);
}

.garage-specs__palette-tab:not(:last-child) {
  margin-right: 30px;
  padding-right: 30px;
  position: relative;
}

.garage-specs__palette-tab:not(:last-child)::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 1px;
  background-color: var(--c2);
  right: 0;
}

.garage-specs__palette-tab.is-active {
  font-weight: 600;
}

.garage-specs__palette-grid {
  display: none;
  max-height: 567px;
  overflow: hidden;
  overflow-y: scroll;
}

.garage-specs__palette-grid.is-active {
  display: block;
}

.btn.garage-specs__tab:not(:hover):not(.is-active) {
  background-color: var(--c1);
}

.garage-specs__colour-preview {
  border: 1px solid #d9d9d9;
  border-radius: 10px;
  width: 100%;
  height: 100%;
  min-height: 120px;
  max-height: 120px;
  display: block;
  position: relative;
}

.garage-specs__colour-name {
  text-transform: uppercase;
  margin-top: 5px;
}

.pallete-block {
  margin-top: var(--spacing);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  padding-right: 20px;
}

.name-pallete {
  grid-area: 1 / 1 / 2 / 6;
}

@media (min-width: 1024px) {
  .btn-white:active,
  .btn-white:hover {
    background-color: var(--c2);
    color: var(--c1);
  }

  .menu-popup-open .site-header .quote .btn.btn-white.btn-default:hover {
    background-color: #7a7c79;
  }

  .popup-btn--primary:hover {
    background: #420000;
  }

  .header-wrapper {
    padding: 20px 0;
  }

  .logo img {
    width: 172px;
  }

  .menu ul {
    grid-gap: 60px;
  }

  section {
    margin-top: 80px;
  }

  .black-section {
    padding: 80px 0;
  }

  .cards-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    flex: 0.7;
    margin-right: 30px;
  }

  .step-note {
    flex: 0.3;
    margin-left: 30px;
    padding: 20px;
    min-width: 420px;
  }

  .buttons-grid {
    flex: 0.7;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding-right: 100px;
  }

  .contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-column-gap: 100px;
    grid-row-gap: 20px;
  }

  .garage-specs__tab.is-active {
    background-color: var(--c2);
    color: var(--c1);
  }
}

section:first-child {
  margin-top: 0;
}

/*Footer*/

.footer {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: max-content;
}

.footer__brand {
  order: 1;
}

.footer-nav {
  order: 2;
}

.footer-services {
  order: 3;
}

.footer-contacts {
  order: 4;
}

.location-list {
  order: 5;
}

.footer-brand a img {
  max-width: 285px;
}

.footer-contacts-cta a {
  display: block;
  width: fit-content;
}

.location-list {
  margin-top: var(--spacing);
}

.location-list-chip {
  margin-top: 25px;
  width: fit-content;
  padding: 8px 30px;
  border: 1px solid;
  border-radius: 200px;
  font-weight: 600;
}

.location-list-group {
  display: grid;
}

.site-footer-legal {
  border-top: 1px solid;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-footer-copyright {
  font-size: 14px;
  color: #7a7c79;
}

.site-footer-policy-list {
  display: flex;
  gap: 30px;
  font-size: 18px;
}

.site-footer-policy-list li a {
  text-decoration: underline;
}

.breadcrumbs {
  color: #c7c7c7;
  text-transform: uppercase;
}

@media (min-width: 640px) {
  .footer {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--footer-gap-lg);
  }

  .footer__brand {
    grid-column: 1 / -1;
  }

  .footer-nav,
  .footer-services,
  .footer-contacts {
    grid-column: span 1;
  }

  .location-list {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1024px) {
  .footer {
    grid-template-columns: 4fr 2fr 3fr 3fr;
    align-items: start;
    margin-top: 80px;
    padding-bottom: 80px;
  }

  .footer__brand {
    grid-column: 1;
  }

  .footer-nav {
    grid-column: 2;
  }

  .footer-services {
    grid-column: 3;
  }

  .footer-contacts {
    grid-column: 4;
  }

  .location-list {
    grid-column: 1 / -1;
  }

  .footer-brand {
    padding-right: 20px;
  }

  .footer-nav-list {
    margin-top: 25px;
  }

  .footer-nav-list li:not(:first-child) {
    margin-top: 15px;
  }

  .footer-nav-list li a {
    font-size: 18px;
  }

  .footer-contacts-cta {
    margin-top: 20px;
  }

  .location-list-group {
    margin-top: 25px;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
  }

  .site-footer-legal {
    margin-top: 45px;
    padding-top: 15px;
  }
}

.location-list {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: var(--footer-gap);
}

@media (min-width: 768px) {
  .location-list {
    grid-template-columns: 1fr;
  }
}

.location-list__group {
  margin: 0;
  padding: 0;
  column-gap: 24px;
  column-fill: balance;
  columns: 1;
}

@media (min-width: 640px) {
  .location-list__group {
    columns: 2;
  }
}

@media (min-width: 1024px) {
  .location-list__group {
    columns: 5;
  }
}

.footer__legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__policy-list {
  display: flex;
  gap: 16px;
}

.content h4,
.content h3,
.content h2,
.content h1,
.content p {
  padding: 0.5em 0 1em;
}

.content p {
  margin: 0;
}

.content ul,
.content ol {
  margin: 1em 0;
}

.content a {
  text-decoration: underline;
}

.content em {
  font-style: italic;
}

.content strong {
  font-weight: 700;
}

.content ul li {
  list-style: disc;
  margin-left: 1.2em;
}

.content ol li {
  list-style: auto;
  margin-left: 1.2em;
}

.content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1em 0 1.5em;
  font-size: 16px;
  line-height: 1.4;
}

.content table td,
.content table th {
  padding: 12px 14px;
  border: 1px solid #e0e0e0;
  vertical-align: top;
}

.content table tr:first-child td,
.content table thead td,
.content table th {
  font-weight: 700;
  background: #f6f6f6;
}

.content table tr:nth-child(even) td {
  background: #fafafa;
}

.footer-tagline {
  font-weight: 500;
  font-size: 18px;
}

.footer-nav-list .current {
  font-weight: 700;
}

.s1 {
  position: relative;
  overflow: hidden;
}

.s1-breadcrumbs {
  position: absolute;
  top: 85px;
  z-index: 2;
}

.s1-breadcrumbs .breadcrumbs {
  color: var(--c1);
}

.s1-1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: calc(100vh + 74px);
  justify-content: center;
  color: var(--c1);
}

.s1-2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.s1-2-1 {
  position: relative;
  height: 100%;
}

.s1-2-1 img {
  object-fit: cover;
  height: 100%;
}

.s1-2-1:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #00000045;
}

.s1-3,
.s1-4,
.s1-5 {
  z-index: 2;
  position: relative;
  text-align: center;
}

.s2-1-1 {
  margin: var(--spacing) 0;
  padding-bottom: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.s2-embla.embla {
  overflow: hidden;
}

.s2-embla .embla__container {
  display: flex;
}

.s2-embla .embla__slide {
  flex: 0 0 calc((100% - 2 * 5px) / 3);
  min-width: 0;
  margin-right: 5px;
}

@media (max-width: 767px) {
  .s2-embla .embla__slide {
    flex: 0 0 100%;
  }
}

.s3 {
  position: relative;
}

.s3:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(/wp-content/uploads/2025/11/process.png);
  z-index: 1;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.s3 .container {
  z-index: 2;
  position: relative;
}

.s3-1 {
  margin-top: var(--spacing);
  display: grid;
}

.s3-1.two-rows {
  grid-template-columns: repeat(2, 1fr);
}

.s3-2 {
  margin-top: var(--spacing);
  text-align: center;
  display: flex;
  justify-content: center;
}

.s3-2 a {
  display: block;
}

.s3-1.two-rows .card.card-1 .card-number:before {
  background-color: var(--c2);
}

.s4 {
  background-color: var(--c3);
}

.s4-1 {
  position: relative;
}

.s5-1 {
  margin-top: var(--spacing);
}

.s5-1-2 {
  display: grid;
  gap: 5px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  padding: 0 5px;
}

.s5-1-2-1 {
  overflow: hidden;
  border-radius: 10px;
}

.s5-1-2-1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s5-1-2-1 img {
  object-fit: cover;
  object-position: center;
}

.s7 {
  padding: 100px 0;
}

.s7-1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.s7-1-2 {
  margin-top: 20px;
}

.s7-2 {
  text-align: center;
  margin-top: 60px;
}

.s8-1 {
  margin-top: var(--spacing);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.s8-1-item {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.s8-1-item--reverse .s8-1-1 {
  order: 2;
}

.s8-1-item--reverse .s8-1-2 {
  order: 1;
}

.s8-1-1 {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.s8-1-1 img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.s8-1-2 {
  border: 1px solid var(--c2);
  border-radius: 10px;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.s8-1-2-3 a,
.s8-2 a {
  display: block;
  width: fit-content;
}

.s8-2 {
  margin-top: var(--spacing);
  display: flex;
  justify-content: center;
}

.s9-1 {
  display: grid;
  grid-column-gap: 5px;
  grid-row-gap: var(--spacing);
  margin-top: var(--spacing);
}

.s9-2 {
  margin-top: var(--spacing);
  display: flex;
  justify-content: center;
}

.s9-2 a {
  display: block;
}

.s10-1 {
  margin-top: var(--spacing);
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.s10-2 {
  margin-top: var(--spacing);
}

.s10-2 iframe {
  width: 100%;
  height: 650px;
}

.s11-1 {
  margin-top: var(--spacing);
  display: flex;
  overflow: hidden;
}

.s11-1 .card-4 {
  box-sizing: border-box;
  margin: 0 !important;
}

.s11-embla.embla {
  overflow: hidden;
}
.s11-embla .embla__container {
  display: flex;
  gap: 5px;
}
.s11-embla .embla__slide {
  flex: 0 0 calc((100% - 3 * 5px) / 4);
  min-width: 0;
}
@media (max-width: 767px) {
  .s11-embla .embla__slide {
    flex: 0 0 100%;
  }
}

.s12-1 {
  margin-top: var(--spacing);
}

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

.s13-2 a {
  display: block;
}

.s13-2 {
  display: flex;
  justify-content: center;
}

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

.s14-1-1 {
  font-size: 20px;
}

.s14-1-4 {
  margin-top: 25px;
}

.s14-1-5 {
  display: flex;
  justify-content: center;
  margin-top: var(--spacing);
}

.s14-1-5 a {
  display: inline-flex;
}

.s15-1 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.s15-1-1 {
  padding-bottom: 28px;
  padding-right: 50px;
  padding-left: 50px;
  position: relative;
}

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

.s15-1-1-2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.s15-1-1:not(:first-child):after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: url(/wp-content/uploads/2025/11/Line-7.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.s16-1 {
  margin-top: var(--spacing);
}

.s17-1 {
  margin-top: var(--spacing);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.s17-item img {
  aspect-ratio: 2 / 1;
}

.s17-2 a {
  display: inline-flex;
}

.s17-2 {
  text-align: center;
  margin-top: var(--spacing);
}

.s18 {
  background-color: #f8f6f6;
  padding: 80px 0;
}

.s19 {
  padding-top: 15px;
}

.s19 + .s14 {
  margin-top: 12px;
}

.s20,
.s21 {
  background-image: url("/wp-content/uploads/2025/11/order.png");
  background-size: cover;
  background-position: center;
}

.s20-1,
.s21-1 {
  background-color: #f8f6f6;
  color: var(--c2);
  border: 1px solid #ffffff;
  border-radius: 10px;
}

.s22 {
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  background-size: cover;
}

.s22:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00000045;
}

.s22-1 {
  position: relative;
  display: flex;
  flex-direction: column;
  height: calc(547px + 78px);
  align-items: center;
  justify-content: center;
  color: var(--c1);
  z-index: 2;
}

.s22-1-1 {
  font-size: 20px;
  margin-bottom: 25px;
}

.s23 .container {
  max-width: 920px;
}

.s23-block .container {
  max-width: 1320px;
}

.s23-1 {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  font-size: 20px;
}

.s23-2 {
  margin-top: var(--spacing);
}

.s23-1-2 svg {
  fill: transparent;
}

.s23-1-2 {
  display: flex;
  gap: 20px;
}

.s24-1-1 img {
  border-radius: 10px;
  height: 100%;
}

.s25 .container {
  max-width: 920px;
}

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

.s25-row {
  display: flex;
  gap: 20px;
  order: 1;
}

.s25-row.s25-row-textarea {
  flex-direction: column;
  gap: 5px;
  order: 2;
}

.s25-row textarea {
  min-height: 120px;
  resize: vertical;
}

.comment-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: var(--spacing);
}

.s25-col {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.comment-form-cookies-consent {
  display: none;
}

.s25-row.s25-row-submit {
  justify-content: center;
  margin-top: 25px;
  order: 3;
}

.s25-comments-block {
  margin-top: var(--spacing);
  margin-bottom: var(--spacing);
}

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

.s25-comment:not(:first-child) {
  margin-top: 20px;
}

.s25-comment {
  background-color: #f8f6f6;
  border-radius: 10px;
  padding: 40px 30px;
}

.s25-comments-list {
  margin-top: var(--spacing);
}

.s25-comment-top {
  display: flex;
  justify-content: space-between;
}

.s25-comment-author {
  font-family: "Brandon Printed Double";
  font-size: 20px;
}

.s25-comment-meta {
  display: flex;
  flex-direction: row-reverse;
  gap: 30px;
  color: #7a7c79;
}

.s25-comment-reply {
  font-weight: 600;
  text-decoration: underline;
}

.s25-comment-text {
  margin-top: 20px;
}

.children {
  margin-top: 20px;
  margin-left: 20px;
}

.children .s25-comment {
  background-color: #ebebeb;
}

.s25-comment-response {
  color: #7a7c79;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.s25-comment-response:before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background-image: url(/wp-content/uploads/2025/11/Vector-1.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.s22 .s1-breadcrumbs {
  top: 15px;
}

@media (min-width: 1024px) {
  .btn-black:hover,
  .btn-black:active {
    background-color: #7a7c79;
  }

  .main .s1 {
    margin-top: -78.8px;
  }

  .s1-4 {
    margin-top: 25px;
    font-size: var(--sub);
  }

  .s1-5 {
    margin-top: 45px;
    display: flex;
    gap: 40px;
  }

  .s2-1 {
    padding-top: 40px;
  }

  .s3 {
    padding: 80px 0;
  }

  .s3-1 {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .s4 {
    padding: 80px 0;
  }

  .s5-1-2-1 img {
    height: 420px;
  }

  .s5-1-2-1:nth-child(1) {
    grid-column: span 4;
  }
  .s5-1-2-1:nth-child(2) {
    grid-column: span 3;
  }
  .s5-1-2-1:nth-child(3) {
    grid-column: span 5;
  }

  .s5-1-2-1:nth-child(4) {
    grid-column: span 5;
  }
  .s5-1-2-1:nth-child(5) {
    grid-column: span 4;
  }
  .s5-1-2-1:nth-child(6) {
    grid-column: span 3;
  }

  .s8-1-2-2,
  .s8-1-2-3 {
    margin-top: 30px;
  }

  /*.s8-1-1 img {
		min-height: 600px;
	}*/

  .s8-1-1 img {
    aspect-ratio: 1 / 1;
  }

  .s8-1-item .s8-1-1,
  .s8-1-item .s8-1-2 {
    width: 50%;
  }

  .s8-1-2-row:not(:first-child) {
    margin-top: 30px;
  }

  .s9-1 {
    grid-template-columns: repeat(3, 1fr);
  }

  .s13 {
    padding: 180px 0;
  }

  .s13-2 {
    margin-top: 60px;
  }

  .s14-1 {
    padding: 160px 0 200px;
  }

  .s14-1-1 {
    margin-bottom: 25px;
  }

  .s14-1-5 {
    gap: 40px;
  }

  .s15-1-1 {
    padding-bottom: 28px;
  }

  .s15-1-1-2 {
    margin-top: 20px;
    font-size: 20px;
  }

  .s20-1,
  .s21-1 {
    padding: 45px 90px;
  }

  .s24-1 {
    display: grid;
    gap: 5px;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    padding: 0 5px;
  }

  .s24-1-1:nth-child(1) {
    grid-column: span 4;
  }
  .s24-1-1:nth-child(2) {
    grid-column: span 3;
  }
  .s24-1-1:nth-child(3) {
    grid-column: span 5;
  }

  .s24-1-1:nth-child(4) {
    grid-column: span 5;
  }
  .s24-1-1:nth-child(5) {
    grid-column: span 4;
  }
  .s24-1-1:nth-child(6) {
    grid-column: span 3;
  }
}

@media (max-width: 1023px) {
  :root {
    --spacing: 15px;
  }

  h1 {
    font-size: 22px;
  }

  h2,
  .h2 {
    font-size: 20px;
  }

  h3,
  .h3 {
    font-size: 18px;
  }

  h4,
  .h4 {
    font-size: 15px;
  }

  section {
    margin-top: 50px;
  }

  .container {
    padding: 0 16px;
  }

  .btn {
    display: block;
    text-align: center;
  }

  .btn-max {
    padding: 13px;
    width: 100%;
    display: block;
    text-align: center;
  }

  .btn-tab {
    width: calc(50% - 5px);
    text-align: center;
    padding: 10px;
  }

  .card-number {
    font-size: 22px;
  }

  .card-description {
    margin-top: 15px;
  }

  .container-testimonials .header-testimonials {
    height: 100%;
    max-width: none;
    padding: 20px;
    justify-content: space-between;
  }

  .slide-wrapper-testimonials {
    flex-direction: column;
  }

  .description-testimonials {
    margin-top: 15px;
  }

  .info-testimonials {
    padding-top: 30px;
  }

  .arrow-testimonials.mob {
    position: relative;
    padding: 20px;
  }

  .slick-arrow {
    width: 38px;
    height: 38px;
  }

  .card.card-2 {
    flex-direction: column;
  }

  .card-2-content {
    padding: 20px;
  }

  .card-2-description {
    margin-top: 15px;
  }

  .card-2-button {
    margin-top: 30px;
  }

  .card-2-button .btn-default {
    padding: 13px;
    width: 100%;
    text-align: center;
  }

  .card-3-footer {
    margin-top: 10px;
  }

  .card-4-description {
    margin-top: 10px;
  }

  .card-4-title {
    margin-top: 15px;
  }

  .card-4-footer {
    margin-top: 20px;
  }

  .tag-map {
    padding: 6px 10px;
  }

  .contant-faq {
    margin-top: 15px;
  }

  .container-min {
    padding: 0 16px;
  }

  .card-faq {
    padding-bottom: 15px;
    padding-top: 15px;
  }

  .footer {
    padding-top: 50px;
    gap: 15px;
  }

  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    grid-area: 1 / 1 / 2 / 3;
  }

  .footer-nav {
    grid-area: 2 / 1 / 3 / 2;
  }

  .footer-services {
    grid-area: 2 / 2 / 3 / 3;
  }

  .footer-contacts {
    grid-area: 3 / 1 / 4 / 3;
  }

  .location-list {
    grid-area: 4 / 1 / 5 / 3;
  }

  .footer-nav-list {
    margin-top: 10px;
  }

  .footer-contacts-cta a {
    width: 100%;
  }

  .location-list-group {
    margin-top: 20px;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .location-list h4 {
    text-align: center;
  }

  .site-footer-legal {
    margin-top: 20px;
    padding-top: 15px;
    padding-bottom: 15px;
    flex-direction: column-reverse;
    gap: 10px;
  }

  .footer-contacts-cta {
    margin-top: 20px;
  }

  .location-list-chip {
    margin-top: 20px;
    width: 100%;
    text-align: center;
  }

  .menu-mobile {
    background-color: var(--c1);
    width: 35px;
    height: 35px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
    position: relative;
  }

  .menu-mobile span {
    width: 70%;
    height: 2px;
    border-radius: 10px;
    background-color: var(--c2);
    position: absolute;
  }

  .header-wrapper {
    padding: 12px 0;
    display: flex;
    justify-content: space-between;
  }

  .logo,
  .logo a {
    line-height: 1;
    display: flex;
    align-items: center;
  }

  .menu-popups {
    display: none;
  }

  .menu-popup {
    max-height: none;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    overflow: hidden;
    display: none;
    border-top: none;
    padding-top: 0;
  }

  .menu-popup.active-mobile {
    display: block;
  }

  .menu-popup-inner {
    padding: 16px 20px 24px;
    flex-direction: column;
    gap: 16px;
  }

  .mob-menu-inner {
    padding: calc(60px + 50px) 16px;
  }

  .mob-link {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }

  .mob-menu-list li:not(:first-child) {
    margin-top: 30px;
  }

  .mob-submenu-buttons a,
  .mob-submenu-inner a {
    display: block;
    text-align: center;
  }

  .mob-submenu-buttons a:not(:first-child),
  .mob-submenu-inner a:not(:first-child) {
    margin-top: 10px;
  }

  .mob-locations-region {
    width: 100%;
    text-align: center;
    background-color: var(--c2);
    color: var(--c1);
    padding: 8px;
    border-radius: 100px;
    font-weight: 600;
  }

  .mob-locations-grid {
    margin-top: 15px;
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, 1fr);
  }

  .submenu-city img {
    border-radius: 12px;
    margin-bottom: 5px;
  }

  .mob-menu-bottom,
  .mob-menu-contacts {
    margin-top: 30px;
  }

  .mob-menu-contacts {
    display: flex;
    gap: 10px;
  }

  .mob-menu-open .site-header.transparent .logo svg path {
    fill: var(--c2);
  }

  .mob-menu-open.header-show .site-header.transparent .logo svg path {
    fill: var(--c1);
  }

  .btn.btn-outline.btn-popup {
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 13px;
    width: 100%;
    justify-content: center;
  }

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

  .arrow-testimonials {
    position: relative;
    margin-top: 30px;
  }

  .card-1.color-black {
    gap: 30px;
  }

  .card.card-5 {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 0;
  }

  .card-5-content {
    margin-top: 10px;
  }

  .sticky-footer {
    background-color: var(--c1);
    position: sticky;
    bottom: -50px;
    left: 0;
    z-index: 8;
    width: 100%;
    padding-bottom: 60px;
  }

  .sticky-footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .btn-sticky {
    padding: 10px 18px;
    background-color: var(--c2);
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--c1);
    font-weight: 600;
    height: 45px;
  }

  .main .s1 {
    margin-top: -65px;
  }

  .popup-form {
    margin-top: 40px;
  }

  .btn-tab {
    padding: 0 10px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .step-content .step-note {
    display: none;
  }

  .card-choice img {
    aspect-ratio: 1 / 1;
  }

  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .step-footer {
    flex-direction: column;
  }

  .step-counter {
    order: 1;
  }

  .step-footer button {
    order: 2;
    width: 100%;
  }

  .dimensions-row {
    flex-direction: column;
    gap: 20px;
  }

  .dimensions-row input {
    width: 100%;
    max-width: 100%;
  }

  .step-note.step-note-bottom {
    padding: 20px;
    margin-top: 20px;
  }

  .buttons-grid {
    width: 100%;
    gap: 15px;
  }

  .buttons-grid button {
    width: 100%;
  }

  .field,
  .ms-field {
    gap: 10px;
    margin-bottom: 10px;
  }

  .ms-tabs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .ms-tabs button {
    width: 100%;
  }

  .ms-upload-btn {
    padding: 10px;
    width: 100%;
  }

  .ms-footer {
    flex-direction: column;
  }

  .ms-footer button {
    width: 100%;
  }

  .footer-nav-list li:not(:last-child) {
    margin-bottom: 10px;
  }

  .content h4,
  .content h3,
  .content h2,
  .content h1 {
    padding: 15px 0;
  }

  .garage-specs__wrap {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: auto;
  }

  .garage-specs__tabs {
    grid-area: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .garage-specs__content {
    grid-area: auto;
  }

  .garage-specs__tabs button {
    width: 100%;
  }

  .pallete-block {
    grid-template-columns: repeat(2, 1fr);
  }

  .name-pallete {
    grid-area: 1 / 1 / 2 / 3;
  }

  .mob-locations-grid .submenu-city {
    text-align: start;
    margin: 0 !important;
  }

  .mob-locations-grid .submenu-city img {
    object-fit: cover;
    aspect-ratio: 1.1 / 1;
  }

  .mob-menu-open .site-header {
    background-color: var(--c1);
  }

  .header_mobile__menu.is-open {
    overflow: auto;
  }

  .ms-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 0px;
  }

  .logo svg {
    width: 200px;
    height: 100%;
  }

  .s1-1 {
    height: 80vh;
  }

  .s1-4 {
    margin-top: 10px;
  }

  .s1-5 {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }

  .s2-1 {
    margin-top: 15px;
  }

  .s2-1-1 {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px;
    margin: 15px 0;
    padding: 0 16px;
  }

  .s2-1-2 .card-hover {
    flex: 0 0 100%;
    width: 100%;
  }

  .s3-1 {
    gap: 15px;
  }

  .s3-1.two-rows {
    grid-template-columns: repeat(1, 1fr);
  }

  .s3-1.two-rows .card.card-1 {
    aspect-ratio: auto;
  }

  .s4-1 {
    padding: 50px 0;
  }

  .s5-1-2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }

  .s5-1-2-1 {
    border-radius: 0;
  }

  .s8-1 {
    gap: 20px;
  }

  .s8-1-item {
    grid-template-columns: repeat(1, 1fr);
  }

  .s8-1-2 {
    padding: 20px;
  }

  .s8-1-2-2 {
    margin-top: 15px;
  }

  .s8-1-2-3 {
    margin-top: 15px;
  }

  .s8-1-2-3 .btn-min,
  .s8-2 .btn-max {
    width: 100%;
    text-align: center;
    padding: 13px 0;
  }

  .s8-1-1 img {
    aspect-ratio: 1 / 1;
  }

  .s8-1-item--reverse .s8-1-1,
  .s8-1-item--reverse .s8-1-2 {
    order: initial;
  }

  .s8-1-item .s8-1-1,
  .s8-1-item .s8-1-2 {
    width: auto;
  }

  .s8-1-2-row:not(:first-child) {
    margin-top: 25px;
  }

  .s9 {
    position: relative;
    overflow: hidden;
  }

  .s9-1 {
    display: block;
  }

  .s9-1 .slick-slide {
    margin: 0 5px;
  }

  .s9-1 .slick-list {
    margin: 0 -5px;
    overflow: visible;
  }

  .s10-1 {
    gap: 5px;
  }

  .s10-2 iframe {
    width: 100%;
    height: 450px;
  }

  .s11-1 .card-4 {
    flex-basis: 100%;
    width: 100%;
  }

  .s13 {
    padding: 100px 0;
  }

  .s13-2 {
    margin-top: 25px;
  }

  .s14-1-5 {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .s14-1-5 a {
    display: block;
  }

  .s14-1-1 {
    margin-bottom: 15px;
  }

  .s15-1 {
    grid-template-columns: repeat(1, 1fr);
  }

  .s15-1-1-1 {
    margin-bottom: 15px;
  }

  .s15-1-1:not(:first-child):after {
    content: none;
  }

  .s15-1-1:not(:first-child) {
    padding-top: 35px;
    background-image: url(/wp-content/uploads/2025/11/Line-8.svg);
    background-position: top center;
    background-repeat: no-repeat;
  }

  .s16 {
    overflow: hidden;
    position: relative;
  }

  .s16 .slick-slide {
    margin: 0 5px;
  }

  .s16 .slick-list {
    margin: 0 -5px;
    overflow: visible;
  }

  .s17-1 {
    grid-template-columns: repeat(1, 1fr);
  }

  .s17-2 a {
    display: block;
    padding: 13px;
  }

  .s19 + .s14 {
    margin-top: 80px;
    margin-bottom: 80px;
  }

  .s20 {
    padding: 50px 0;
  }

  .s20-1 {
    padding: 30px 16px;
  }

  .s21 {
    padding: 50px 0;
  }

  .s21-1 {
    padding: 30px 10px;
  }

  .s22-1-3 {
    width: 100%;
  }

  .s24-1 .s24-1-1 {
    padding: 0 5px;
  }

  .s25-comment-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .s25-comment {
    padding: 25px 16px;
  }

  .s25-comment-response {
    margin-top: 5px;
  }
}

.page-404 .site-header.transparent {
  background-color: var(--c2);
}

.not-found {
  padding: 170px 0 140px;
  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(255, 255, 255, 0.4),
      transparent 35%
    ),
    linear-gradient(135deg, #f8f6f6 0%, #ffffff 45%, #f8f6f6 100%);
}

.not-found__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  padding: 72px 70px;
  border-radius: 32px;
  color: var(--c1);
  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 255, 255, 0.08),
      transparent 45%
    ),
    var(--c2);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.14);
  overflow: hidden;
}

.not-found__inner:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.08), transparent 40%),
    linear-gradient(300deg, rgba(255, 255, 255, 0.05), transparent 45%);
  pointer-events: none;
}

.not-found__info,
.not-found__panel {
  position: relative;
  z-index: 1;
}

.not-found__eyebrow {
  font-family: var(--fp-double);
  font-size: 82px;
  line-height: 0.9;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 2px;
}

.not-found__title {
  margin: 24px 0 20px;
  font-size: 46px;
  line-height: 1.05;
}

.not-found__text {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
}

.not-found__actions {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.not-found__panel {
  align-self: center;
  background: var(--c1);
  color: var(--c2);
  border-radius: 22px;
  padding: 28px 28px 14px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border: 1px solid #ececec;
}

.not-found__panel-title {
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.not-found__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.not-found__links li + li {
  border-top: 1px solid #f0f0f0;
}

.not-found__links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 4px;
  color: inherit;
  font-weight: 600;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.not-found__links a:hover {
  color: #7a7c79;
  transform: translateX(4px);
}

.not-found__link-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid #e5e5e5;
  font-weight: 700;
  font-size: 14px;
}

@media (max-width: 1199px) {
  .not-found__inner {
    grid-template-columns: 1fr;
    padding: 60px 45px;
  }

  .not-found__panel {
    margin-top: 10px;
  }
}

@media (max-width: 767px) {
  .not-found {
    padding: 130px 0 90px;
  }

  .not-found__inner {
    padding: 40px 28px;
    gap: 36px;
  }

  .not-found__eyebrow {
    font-size: 64px;
  }

  .not-found__title {
    font-size: 32px;
  }

  .not-found__text {
    font-size: 16px;
  }

  .not-found__actions {
    flex-direction: column;
  }

  .not-found__panel {
    padding: 24px;
  }
}

@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .sticky-footer .container {
    padding-bottom: env(safe-area-inset-bottom);
  }
}

.sitemap {
  padding: 170px 0 140px;
  background-color: var(--c1);
}

.sitemap__header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px;
}

.sitemap__title {
  font-size: 48px;
  margin-bottom: 16px;
}

.sitemap__subtitle {
  color: #4f4f4f;
  font-size: 18px;
}

.sitemap__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.sitemap__card {
  border: 1px solid #ececec;
  border-radius: 18px;
  padding: 28px 26px;
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.08);
}

.sitemap__card-title {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.sitemap__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sitemap__list a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--c2);
  font-weight: 600;
  transition:
    transform 0.2s ease,
    color 0.2s ease;
}

.sitemap__list a:before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #e0e0e0;
  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
}

.sitemap__list a:hover {
  color: #7a7c79;
  transform: translateX(4px);
}

.sitemap__list a:hover:before {
  background-color: #7a7c79;
  transform: scale(1.15);
}

.garage-specs__text strong {
  font-weight: 700;
}

.garage-specs__text ul li {
  list-style: disc;
  margin-left: 1.2em;
}

@media (max-width: 767px) {
  .sitemap {
    padding: 130px 0 90px;
  }

  .sitemap__title {
    font-size: 34px;
  }

  .sitemap__subtitle {
    font-size: 16px;
  }

  .garage-specs__text,
  .garage-specs__text--two {
    max-height: 60vh;
    overflow: auto;
  }
}

@media (min-width: 1025px) {
  .garage-specs__text--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
