:root {
  /* Backgrounds */
  --bg: #ffffff;
  --surface: #f5f7fa;
  --card: #ffffff;

  /* Text */
  --text: #464646;
  --muted: #667085;

  /* Lines & borders */
  --line: rgba(0, 0, 0, .06);

  /* Accent (Urban Space orange) */
  --accent: #E75524;
  --accent-2: #E35205;
  --accent-soft: rgba(231, 85, 36, .10);
  --accent-border: rgba(231, 85, 36, .25);
  --accent-glow: rgba(231, 85, 36, .22);

  /* Alias */
  --primary: var(--accent);

  /* Radius */
  --radius: 14px;
  --radius-lg: 18px;

  /* Shadows */
  --shadow: 0 8px 24px rgba(0, 0, 0, .06);

  /* Layout */
  --max: 1280px;
}

/* =========================
   2) Reset + Base Typography
========================= */
* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial !important;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial !important;
  color: #464646 !important;
}

.white {
  color: #ffffff !important;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
}

.muted {
  color: var(--muted);
}

.lead {
  font-size: 18px;
  color: var(--muted);
  max-width: 52ch;
}

.h1 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.08;
  margin: 12px 0;
}

.h2 {
  font-size: clamp(24px, 3vw, 32px);
  margin: 0;
}

.h4 {
  font-size: 16px;
  margin: 10px 0 6px;
}

/* =========================
   3) Layout helpers
========================= */
.section {
  padding: 64px 0;
}

.section--alt {
  background: rgba(0, 0, 0, .02);
  border-top: 1px solid rgba(0, 0, 0, .04);
  border-bottom: 1px solid rgba(0, 0, 0, .04);
}

.section__head {
  margin-bottom: 22px;
}

.section__head--row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

/* =========================
   4) Components
========================= */
.card {
  background: var(--card);
  border: 1px solid var(--line) !important;
  border-radius: var(--radius-lg) !important;
  box-shadow: var(--shadow);
}

.pill {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(231, 85, 36, .05);
  border: 1px solid rgba(231, 85, 36, .15);
  font-size: 12px;
  color: var(--muted);
}

.btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  padding: 12px 14px !important;
  border-radius: 12px !important;
  border: 1px solid var(--line) !important;
  background: rgba(255, 255, 255, .04) !important;
  color: var(--text) !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: background .2s, color .2s, border-color .2s !important;
}

.btn--primary {
  border-color: transparent;
  background: var(--accent) !important;
  color: #ffffff !important;
}

.btn--primary:hover {
  background: var(--accent-2);
}

.btn--ghost {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(231, 85, 36, .15)
}

.btn--block {
  width: 100%;
}

/* =========================
   5) Sections (match HTML order)
========================= */

/* --- Hero --- */
.hero {
  padding: 56px 0 28px;
  background:
    linear-gradient(to bottom right, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.8)),
    url('img/DSC0453-HDR-1-scaled.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--text);
}

.hero .breadcrumb-container ul li,
.hero .breadcrumb-container ul li span,
.hero .breadcrumb-container ul li a {
  color: var(--text) !important;
}

.hero .breadcrumb-container ul li a:hover {
  color: var(--accent) !important;
}

/* Banner / Hero Styles from HTML */
.banner_caption {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2), transparent);
  padding: 40px;
  border-radius: 12px;
}

.breadcrumb-container,
.breadcrumb-container ul li,
.breadcrumb-container ul li span,
.breadcrumb-container ul li a {
  color: #ffffff !important;
  font-size: 14px;
}


.breadcrumb-container ul li span>span {
  color: #8B8B8B !important;
}

.breadcrumb-container ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 10px;
}

/* Footer styles */
.footer-wrapper,
.ftbox {
  color: #ffffff !important;
  font-size: 18px !important;
}

.footer-wrapper .size-30,
.ftbox .size-30 {
  font-size: 22px !important;
  margin-bottom: 24px !important;
  font-weight: 700 !important;
}

.footer-wrapper .size-25,
.ftbox .size-25 {
  font-size: 18px !important;
}

.footer-wrapper a,
.ftbox a {
  color: rgba(255, 255, 255, 0.9) !important;
  transition: color 0.2s;
  font-size: 18px !important;
}

.footer-wrapper a:hover,
.ftbox a:hover {
  color: #ffffff !important;
  text-decoration: underline;
}

.contact-list li {
  margin-bottom: 10px !important;
  line-height: 1.4 !important;
}

.contact-list li i {
  color: #ffffff !important;
  margin-right: 12px !important;
  width: 16px;
  text-align: center;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr minmax(520px, 560px);
  gap: 0;
  align-items: start;
  position: relative;
  z-index: 1;
}

/* Mobile / reduced screens */
@media (max-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 18px 0;
}

.hero__highlights {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.highlight {
  position: relative;
  padding: 12px 14px 12px 18px;
  border-radius: 0;
  /* ← makes it a rectangle */
  border: 1px solid rgba(231, 85, 36, .15);
  background: rgba(231, 85, 36, .05);
  color: #464646;
  font-size: 15px;
}

.highlight::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 60%;
  border-radius: 0;
  /* ← square accent */
  background: var(--primary);
  opacity: .6;
}

@media (max-width: 480px) {
  .hero__highlights {
    flex-direction: column;
    /* 3 rows */
    flex-wrap: nowrap;
    width: 100%;
  }

  .highlight {
    width: 100%;
    /* fill width */
    font-size: 15px;
    /* increase font */
    padding: 12px 14px;
    /* optional: a bit more touch-friendly */
    box-sizing: border-box;
    text-align: center;
  }

  .hero__ctas {
    width: 100%;
  }

  .hero__ctas .btn {
    width: 100%;
    display: flex;
    /* keeps text centered */
    justify-content: center;
    align-items: center;
    padding: 14px 16px;
    /* match highlight height */
  }
}

/* Zoho embed */
.zoho-embed {
  width: 100%;
  overflow: visible;
}

.zoho-embed iframe {
  width: 100% !important;
  display: block;
  border: 0;
}

/* --- Unit Sizes / Pricing --- */
.price-card {
  padding: 16px;
  display: grid;
  gap: 10px;
}

.price-card__box {
  width: 100%;
  padding: 16px;
  border-radius: 18px;
  border: 1px dashed rgba(0, 0, 0, .12);
  background: rgba(231, 85, 36, .03);
  display: flex;
  align-items: center;
  justify-content: center;
}

.price-card__box img {
  width: 100%;
  height: auto;
  max-height: 260px;
  object-fit: contain;
  display: block;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.price {
  font-size: 22px;
  font-weight: 800;
  color: var(--accent);
}

/* Carousel layout */
.sizes-carousel {
  position: relative;
}

.sizes-carousel__track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 6px 2px 10px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.sizes-carousel__slide {
  scroll-snap-align: start;
  flex: 0 0 100%;
}

@media (min-width: 700px) {
  .sizes-carousel__slide {
    flex-basis: 48%;
  }
}

@media (min-width: 1024px) {
  .sizes-carousel__slide {
    flex-basis: 32%;
  }
}

.sizes-carousel__track::-webkit-scrollbar {
  display: none;
}

/* Controls */
.carousel__controls {
  display: flex;
  gap: 10px;
  align-items: center;
}

.carousel__btn {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, .12);
  background: #fff;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
}

.carousel__btn:active {
  transform: translateY(1px);
}

/* --- Two-page flipbook --- */
.book__page--image {
  padding: 18px;
}

.book__img {
  width: 100%;
  height: 100%;
  max-height: 260px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.book {
  position: relative;
  display: grid;
  place-items: center;
  margin-top: 14px;
}

.book__frame {
  width: min(980px, 100%);
  background: #FAFAFA;
  border-radius: 18px;
  padding: 18px;
  position: relative;
  overflow: hidden;
}

.book__spread {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.book__spine {
  position: absolute;
  left: 50%;
  top: 18px;
  bottom: 18px;
  width: 2px;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, .08);
  border-radius: 999px;
  z-index: 2;
}

.book__page {
  background: #fff;
  min-height: 240px;
  padding: 26px 22px;
  display: grid;
  align-content: center;
  text-align: center;
  position: relative;
}

.book__page--left {
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
}

.book__page--right {
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
}

.book__badge {
  display: inline-flex;
  justify-self: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(231, 85, 36, .08);
  border: 1px solid rgba(231, 85, 36, .18);
  color: #222;
  font-weight: 800;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.book__title {
  margin: 0 0 10px;
  line-height: 1.25;
  font-size: 1.25rem;
  font-weight: 800;
}

.book__desc {
  margin: 0;
  line-height: 1.65;
  opacity: .9;
}

/* arrows */
.book__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, .16);
  background: rgba(255, 255, 255, .65);
  backdrop-filter: blur(6px);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 22px;
  line-height: 1;
  z-index: 3;
}

.book__arrow:hover {
  background: rgba(255, 255, 255, .85);
}

.book__arrow:disabled {
  opacity: .45;
  cursor: not-allowed;
}

.book__arrow--left {
  left: 2px;
}

.book__arrow--right {
  right: 2px;
}

/* flip animation */
.book__spread.is-flipping-next .book__page--right,
.book__spread.is-flipping-prev .book__page--left {
  animation: pageFlip 320ms ease;
  transform-origin: center;
}

@keyframes pageFlip {
  from {
    opacity: 0;
    transform: translateX(10px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

  .book__spine {
    display: none;
  }

  .book__page--left {
    border-radius: 12px 12px 0 0;
  }

  .book__page--right {
    border-radius: 0 0 12px 12px;
  }

  .book__page {
    min-height: 200px;
  }
}

/* --- Location --- */
.location {
  display: grid;
  gap: 14px;
}

.map {
  padding: 0;
  overflow: hidden;
}

.map iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

.location-row {
  padding: 18px;
  display: flex;
  flex-direction: row !important;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.location-row__title {
  font-weight: 800;
  margin-bottom: 6px;
  font-size: 16px;
  color: #464646 !important;
}

.location-row__address {
  line-height: 1.4;
  font-size: 16px;
}

.location-row__right {
  display: grid;
  justify-items: end;
  gap: 8px;
  flex: 0 0 auto;
}

.location-row__hint {
  font-size: 12px;
}

/* --- Reviews (centered slider) --- */
.reviews {
  background: #ffffff;
}

.review-slider {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  gap: 18px;
  position: relative;
}

/* Fix Slick Arrows */
.slick-arrow {
  background: #fef9f8 !important;
  color: #e35205 !important;
  border: none !important;
  width: 44px !important;
  height: 44px !important;
  border-radius: 10px !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 22px !important;
  transition: background 0.2s !important;
  z-index: 10 !important;
}

.slick-arrow:hover {
  background: #D8CDC9 !important;
}

.slick-arrow i {
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900 !important;
}

.review-slider__card {
  text-align: center;
  padding: 26px 18px 18px;
  border-radius: 18px;
  background: transparent;
}

.review-slider__avatar {
  width: 86px;
  height: 86px;
  margin: 0 auto 10px;
  border-radius: 999px;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, .9);
  box-shadow: 0 10px 22px rgba(0, 0, 0, .10);
}

.review-slider__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.review-slider__name {
  font-weight: 800;
  letter-spacing: .06em;
  font-size: 12px;
  text-transform: uppercase;
  color: #464646;
  margin-top: 6px;
}

.review-slider__role {
  font-size: 13px;
  opacity: .65;
  margin-top: 2px;
}

.review-slider__text {
  max-width: 68ch;
  margin: 14px auto 0;
  line-height: 1.75;
  opacity: .85;
}

.review-slider__quote {
  margin-top: 14px;
  font-size: 80px;
  line-height: 1;
  color: #D8CDC9;
}

.review-slider__nav {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 0;
  background: #fef9f8;
  color: #e35205;
  cursor: pointer;
  font-size: 22px;
  display: grid;
  place-items: center;
}

.review-slider__nav:hover {
  background: #D8CDC9;
}

.review-slider__nav:disabled {
  opacity: .35;
  cursor: not-allowed;
}

@media (max-width: 640px) {
  .review-slider {
    grid-template-columns: 40px 1fr 40px;
    gap: 10px;
  }

  .review-slider__text {
    margin-top: 12px;
  }
}

/* --- Final CTA band --- */
.cta-band {
  padding: 40px 0;
  border-top: 1px solid rgba(0, 0, 0, .06);
  background:
    radial-gradient(1200px 500px at 20% 0%,
      rgba(231, 85, 36, 0.04) 0%,
      rgba(231, 85, 36, 0.08) 35%,
      rgba(231, 85, 36, 0.14) 65%,
      rgba(231, 85, 36, 0.20) 100%),
    #faf7f5;

}

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

.cta-band__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.section--quote {
  background: #fefaf8;
}

.banner.inner-banner {
  max-width: 1180px !important;
  margin: 0 auto;
}

#pageHeaderWrapper {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.margin-container {
  margin-top: 80px !important;
}

@media(max-width: 574px) {
  .margin-container {
    margin-top: 40px !important;
  }
}

@media(min-width: 575px) and (max-width: 1399px) {
  .margin-container {
    margin-top: 60px !important;
  }
}

.fullcontainer.BannerSection {
  margin-top: 0 !important;
  margin-bottom: 15px !important;
}

.banner_caption {
  /* padding-top: 15px !important; Removed as container margin is now handled */
}

.banner_caption .container {
  max-width: 1024px !important;
}

.inner-banner-image {
  border-radius: 15px !important;
}

/* =========================
   6) Responsive
========================= */
@media (min-width: 1200px) {
  .container {
    max-width: 1240px !important;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1600px !important;
  }

  .header-container {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 20px !important;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }

  .main-menu {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 15px !important;
  }

  .main-menu>li>a {
    font-size: 15px !important;
    white-space: nowrap !important;
  }

  .hero__grid {
    grid-template-columns: 1fr 580px;
    gap: 60px;
    align-items: center;
  }

  .h1 {
    font-size: 64px !important;
    margin-bottom: 24px;
  }

  .lead {
    font-size: 20px;
    margin-bottom: 32px;
  }

  .section {
    padding: 100px 0;
  }

  .book__frame {
    width: min(1120px, 100%);
    padding: 32px;
  }

  .book__page {
    min-height: 320px;
    padding: 40px;
  }

  .book__title {
    font-size: 1.75rem;
  }

  .book__desc {
    font-size: 1.1rem;
  }

  .banner.inner-banner {
    max-width: 1550px !important;
  }

  .banner_caption .container {
    max-width: 1280px !important;
  }
}

@media (max-width: 720px) {
  .cta-band__inner {
    flex-direction: column;
    align-items: stretch;
  }

  #form iframe {
    min-height: 910px;
  }

  .price-card__box img {
    max-height: 320px;
  }

  .location-row {
    flex-direction: row;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 12px;
  }

  .location-row__left {
    flex: 1 1 auto;
  }

  .location-row__right {
    flex: 0 0 auto;
    justify-items: end;
  }

  #detailed-form .zoho-embed iframe {
    height: 85vh !important;
    height: 85svh !important;
    /* better on mobile browsers */
    overflow: auto !important;

    scrollbar-width: none;
    /* Firefox: hide scrollbar */
  }

  #detailed-form .zoho-embed iframe::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari: hide scrollbar */
  }
}

/* --- Styles moved from landingfinal.html --- */
.us-page-title h1,
.us-page-title h2,
.us-page-title h3,
.us-page-title h4,
.us-page-title h5,
.us-page-title h6 {
  font-size: 40px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  text-transform: uppercase !important;
}
.intro-section .us-page-title h2{
    font-size: clamp(24px, 4vw, 32px) !important;
}
.border-title {
  margin-bottom: 25px !important;
}

.border-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  background-color: var(--accent);
  margin: 30px auto 0;
}


@media screen and (max-width: 991px) {

  .us-page-title h1,
  .us-page-title h2,
  .us-page-title h3,
  .us-page-title h4,
  .us-page-title h5,
  .us-page-title h6 {
    font-size: 36px !important;
  }
}

@media screen and (max-width: 575.98px) {

  .us-page-title h1,
  .us-page-title h2,
  .us-page-title h3,
  .us-page-title h4,
  .us-page-title h5,
  .us-page-title h6 {
    font-size: 32px !important;
  }
}

.bannerForm-data {
  color: #000;
  background: rgba(255, 255, 255, 0.9)
}

[data-wpr-lazyrender] {
  content-visibility: inherit !important;
}

.homeSection6 .homeClient-box {
  height: 320px !important;
  padding: 30px 25px 40px !important;
  position: relative !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
}

.homeSection6 .review-slider {
  max-height: 400px;
}

.homeSection6 .overflow-y-auto {
  margin-top: 15px !important;
  padding-right: 10px !important;
}

.homeSection6 .overflow-y-auto::-webkit-scrollbar {
  width: 4px;
}

.homeSection6 .overflow-y-auto::-webkit-scrollbar-thumb {
  background: #E75524;
  border-radius: 10px;
}

.page-id-954 .homeSection4 .homeTab-box .img-holder {
  padding-bottom: 70%;
}

.breadcrumb-container ul li span,
.breadcrumb-container ul li {
  font-size: 16px !important;
}

/* faq styles */

.acf-faq {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 20px;
}

.faq-title {
  margin-bottom: 24px;
  text-align: center;
}

.faq-item {
  border-bottom: 1px solid #ddd;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.2rem;
  padding-bottom: 0 !important;
}
@media(max-width: 767px){
    .faq-question h3 {
  font-size: 1.1rem;
}
.faq-answer p{
      font-size: 16px !important;
}
}
.faq-icon {
  font-size: 24px;
  transition: transform 0.35s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: 0.35s ease-in-out;
}

.faq-answer-inner {
  padding: 0 0 20px;
}


.faq-answer p {
  margin: 0 0 16px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* Custom Banner Styles */
.custom-banner-item {
  position: relative;
  min-height: 700px;
}

.custom-banner-image {
  width: 100%;
  height: 700px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.custom-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.custom-banner-caption {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.custom-banner-info {
  display: flex;
  justify-content: center;
  flex-flow: column;
  width: 42%;
  margin-left: auto;
}

.page-id-954 h1 {
  color: #E85A1C !important;
}

.page-id-1084 .banner-info {
  max-width: 650px !important;
}

.page-id-1158 .banner-info {
  max-width: 850px !important;
}

.cus-icon-card-image {
  width: 80px;
  padding-bottom: 150px;
}

.cus-card-stock-image {
  width: 250px;
  padding-bottom: 150px;
  margin-bottom: 25px;
}

.why-col {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  margin-bottom: 60px;
  background-color: #ffffff;
}

.why-big-img,
.why-big-img figure {
  height: 100%;
}

.why-col:nth-child(even) .why-order1 {
  order: 2;
}

.why-col:nth-child(even) .why-order2 {
  order: 1;
}

.why-col:last-child {
  margin-bottom: 0px !important;
}

.why-big-img figure img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center center;
  min-height: 450px;
}

.why-text-col {
  padding: 60px;
}

@media (max-width: 767px) {
  .custom-banner-img {
    display: none;
  }

  .page-id-954 .custom-banner-content>div>div {
    font-size: 32px !important;
  }

  .custom-banner-item {
    min-height: 520px;
  }

  .custom-banner-image {
    height: 520px;
  }

  .page-id-954 .homeSection6 .homeClient-box,
  .page-id-1084 .homeSection6 .homeClient-box {
    height: 340px !important;
  }

  .page-id-1084 .inner-banner-image {
    min-height: 400px;
  }

  .page-id-1158 .inner-banner-image {
    min-height: 650px;
  }

  .page-id-1163 .inner-banner-image {
    min-height: 620px;
  }

  .why-text-col {
    padding: 30px 20px;
  }

  .why-col:nth-child(even) .why-order1 {
    order: 1;
  }

  .why-col:nth-child(even) .why-order2 {
    order: 2;
  }

  .why-big-img figure img {
    min-height: unset;
  }

}

/* self storage styles */
.self-storage-card-img {
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
}

/* homeSection3 images styles */
.page-id-1084 .homeSection3 .img-holder,
.page-id-1158 .homeSection3 .img-holder,
.page-id-954 .homeSection3 .img-holder,
.page-id-1408 .homeSection3 .img-holder {
  width: unset !important;
  border-radius: 10px !important;
  padding-bottom: 100% !important;
  background: none !important;
}

.page-id-1084 .homeSection3 .img-holder figure,
.page-id-1158 .homeSection3 .img-holder figure,
.page-id-954 .homeSection3 .img-holder figure,
.page-id-1408 .homeSection3 .img-holder figure {
  padding: 0px !important;
}

.page-id-1344 .us-page-title,
.page-id-1344 .custom-banner-content,
.page-id-1354 .us-page-title {
  display: none !important;
}

.page-id-1344 .custom-banner-image {
  height: auto !important;
}

.page-id-1344 .custom-banner-item {
  min-height: auto !important;
}

.page-id-1354 .inner-banner-image {
  min-height: 550px !important;
}

@media (max-width: 767px) {
  .page-id-1344 .custom-banner-image {
    height: 140px !important;
  }

  .page-id-1344 .custom-banner-item {
    min-height: 140px !important;
  }

  .page-id-1354 .inner-banner-image {
    min-height: 160px !important;
  }

}

@media (min-width: 1920px) {
  .page-id-1354 .inner-banner-image {
    min-height: 750px !important;
  }
}

/* list read more */

.read-more-list {
  margin-bottom: 0px !important;
}

.read-more-list li:not(:first-child) {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}

.read-more-list.expanded li:not(:first-child) {
  max-height: 200px;
  overflow: unset;
  opacity: 1;
}

.read-more-toggle {
  background: none;
  border: none;
  color: #E75524;
  cursor: pointer;
  font-size: 15px;
  padding: 4px 0;
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
}

.read-more-toggle:hover {
  color: #FB9517;
}

/* homeSection3 button only display */
.page-id-1388 .homeSection3 .us-page-title,
.page-id-1388 .homeSection3 .selfStorage-subText,
.page-id-1388 .homeSection3 .cost-listing {
  display: none !important;
}

.page-id-1388 .homeSection3 .inner-padding-50,
.page-id-1388 .homeSection3 .pt50 {
  padding-top: 0 !important;
}

.page-id-1388 .homeSection3 .pt50 {
  padding-bottom: 100px !important;
}

.page-id-1507 .homeSection3 .us-page-title,
.page-id-1507 .homeSection3 .selfStorage-subText,
.page-id-1507 .homeSection3 .cost-listing {
  display: none !important;
}

.page-id-1507 .homeSection3 .inner-padding-50,
.page-id-1507 .homeSection3 .pt50 {
  padding-top: 0 !important;
}

.page-id-1507 .homeSection3 .pt50 {
  padding-bottom: 100px !important;
}

h2 {
  font-size: clamp(24px, 3vw, 32px) !important;
  margin: 0 !important;
}

/*fulfillment hub + self-storage + */
/*.page-id-1408 .why-section .selfStorage-subText, .page-id-1408 .why-section .why-text-col .item-description.size-18
{
	font-size: 30px!important;
}*/

/*fulfillment hub types grid*/
.page-id-1408 .cost-listing .col-lg-3 {
  width: 33% !important;
}

@media (max-width:576px) {
  .page-id-1408 .inner-banner-image {
    min-height: 400px;
  }

  .page-id-1388 .inner-banner-image {
    min-height: 450px;
  }

  .page-id-1408 .inner-banner-image.img-holder figure img {
    object-position: 75% 0%;
  }

  .page-id-1404 .inner-banner-image {
    min-height: 450px;
  }
}

/* Fulfilmment Hub Tabs */
/* Desktop */
@media (min-width: 992px) {
  .page-id-1408 .tab-nav-holder .nav-tabs {
    display: flex;
    flex-wrap: nowrap;
  }

  .page-id-1408 .tab-nav-holder .nav-tabs .nav-item {
    flex: 1;
  }
}

/* Mobile */
@media (max-width: 991px) {
  .page-id-1408 .tab-nav-holder .nav-tabs {
    display: flex;
    flex-wrap: wrap;
  }
}

.page-id-1408 .homeTab-box .row {
  display: flex;
  align-items: center;
  /* vertically centers content */
}

.page-id-1408 .homeTab-box .row .img-holder img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.page-id-1408 .homeSection4 .homeTab-box .img-holder {
  padding-bottom: 100%;
}

p {
  font-size: 18px !important;
  line-height: 1.5 !important;
}
section:nth-child(2) > div > div > div.pageTitle{
    display: none !important;
}
@media(min-width: 1300px) and (max-width: 1399px){
    .review-slider .slick-prev {
        left: -50px !important;
    }
    .review-slider .slick-next {
        right: -50px !important;
    }
}