/* CSS Document */
:root {
  --black: #000000;
  --gray-975: #050505;
  --gray-950: #0d0d0d;
  --gray-900: #1a1a1a;
  --gray-800: #333333;
  --gray-700: #4d4d4d;
  --gray-600: #666666;
  --gray-500: #808080;
  --gray-400: #999999;
  --gray-300: #b3b3b3;
  --gray-200: #cccccc;
  --gray-100: #e6e6e6;
  --gray-50: #f2f2f2;
  --gray-25: #f9f9f9;
  --gray-10: #fcfcfc;
  --gray-5: #fdfdfd;
  --white: #fff;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --slate-950: #020617;
  --slate-975: #010409;
  --blue-50: #eff6ff;
  --blue-100: #dbeafe;
  --blue-200: #bfdbfe;
  --blue-300: #93c5fd;
  --blue-400: #60a5fa;
  --blue-500: #3b82f6;
  --blue-600: #2563eb;
  --blue-700: #1d4ed8;
  --blue-800: #1e40af;
  --blue-900: #1e3a8a;
  --blue-950: #172554;
  --blue-975: #0f172a;
  --yellow-50: #fffbeb;
  --yellow-100: #fef3c7;
  --yellow-200: #fde68a;
  --yellow-300: #fcd34d;
  --yellow-400: #fbbf24;
  --yellow-500: #f59e0b;
  --yellow-600: #d97706;
  --yellow-700: #b45309;
  --yellow-800: #92400e;
  --yellow-900: #78350f;
  --yellow-950: #451a03;
  --yellow-975: #271a00;
  --red-50: #fef2f2;
  --red-100: #fee2e2;
  --red-200: #fecaca;
  --red-300: #fca5a1;
  --red-400: #f87171;
  --red-500: #ef4444;
  --red-600: #dc2626;
  --red-700: #b91c1c;
  --red-800: #991b1b;
  --red-900: #7f1d1d;
  --red-950: #450a0a;
  --red-975: #270505;
  --green-50: #f0fdf4;
  --green-100: #dcfce7;
  --green-200: #bbf7d0;
  --green-300: #86efac;
  --green-400: #4ade80;
  --green-500: #22c55e;
  --green-600: #16a34a;
  --green-700: #15803d;
  --green-800: #166534;
  --green-900: #14532d;
  --green-950: #052e16;
  --green-975: #031c11;
  --light-blue-50: #f0f9ff;
  --light-blue-100: #e0f2fe;
  --light-blue-200: #bae6fd;
  --light-blue-300: #7dd3fc;
  --light-blue-400: #38bdf8;
  --light-blue-500: #0ea5e9;
  --light-blue-600: #0284c7;
  --light-blue-700: #0369a1;
  --light-blue-800: #075985;
  --light-blue-900: #0c4a6e;
  --light-blue-950: #0b3f5c;
  --light-blue-975: #0a3a4d;
  --indigo-50: #eef2ff;
  --indigo-100: #e0e7ff;
  --indigo-200: #c7d2fe;
  --indigo-300: #a5b4fc;
  --indigo-400: #818cf8;
  --indigo-500: #6366f1;
  --indigo-600: #4f46e5;
  --indigo-700: #4338ca;
  --indigo-800: #3730a3;
  --indigo-900: #312e81;
  --indigo-950: #1e1b4b;
  --indigo-975: #0f172a;
  --purple-50: #faf5ff;
  --purple-100: #f3e8ff;
  --purple-200: #e9d5ff;
  --purple-300: #d8b4fe;
  --purple-400: #c084fc;
  --purple-500: #a855f7;
  --purple-600: #9333ea;
  --purple-700: #7e22ce;
  --purple-800: #6b21a8;
  --purple-900: #581c87;
  --purple-950: #3f1a6e;
  --purple-975: #1a0f3d;
  --orange-50: #fff7ed;
  --orange-100: #ffedd5;
  --orange-200: #fed7aa;
  --orange-300: #fdba74;
  --orange-400: #fb923c;
  --orange-500: #f97316;
  --orange-600: #ea580c;
  --orange-700: #c2410c;
  --orange-800: #9a3412;
  --orange-900: #7c2d12;
  --orange-950: #431407;
  --orange-975: #3b0e0c;
}

.text-center {
  text-align: center !important;
}

.text-end {
  text-align: right;
}

.text-start {
  text-align: left;
}

.fl-container {
  display: flex;
}

.fl-col {
  flex-direction: column;
}

.fl-col-rev {
  flex-direction: column-reverse;
}

.fl-row {
  flex-direction: row;
}

.fl-row-rev {
  flex-direction: row-reverse;
}

.fl-j-between {
  justify-content: space-between;
}

.fl-j-around {
  justify-content: space-between;
}

.fl-j-center {
  justify-content: center;
}

.fl-j-end {
  justify-content: flex-end;
}

.fl-j-start {
  justify-content: flex-start;
}

.fl-al-center {
  align-content: center;
}

.fl-al-between {
  align-content: space-between;
}

.fl-al-around {
  align-content: space-around;
}

.fl-al-stretch {
  align-content: stretch;
}

.fl-al-start {
  align-content: flex-start;
}

.fl-al-end {
  align-content: flex-end;
}

.fl-ai-center {
  align-items: center;
}

.fl-ai-stretch {
  align-items: stretch;
}

.fl-ai-start {
  align-items: flex-start;
}

.fl-ai-end {
  align-items: flex-end;
}

.fl-wrap {
  flex-wrap: wrap;
}

.fl-1 {
  flex: 1;
}

.ttu {
  text-transform: uppercase;
}

.tdn {
  text-decoration: none;
}

.fw-bold {
  font-weight: 700;
}

.fw-normal {
  font-weight: 400;
}

.fw-light {
  font-weight: 275;
}

.c-yellow {
  color: #F3C451;
}

.c-black {
  color: #000000;
}

.c-white {
  color: #FFFFFF;
}

.c-blue {
  color: #06274c;
}

.c-light-blue {
  color: #004c9a;
}

.bg-blue {
  background: #06274c;
}

.m-alpha {
  padding: 0 2.6041666667vw;
}

.m-bravo {
  padding: 0 4.9479166667vw;
}

.m-charlie {
  padding: 0 9.375vw;
}

.m-delta {
  padding: 0 14.0625vw;
}

.m-echo {
  padding: 0 15.625vw;
}

.fl-g-0 {
  gap: 0;
}

.fl-g-1 {
  gap: 0.5208333333vw;
}

.fl-g-2 {
  gap: 1.0416666667vw;
}

.fl-g-3 {
  gap: 1.5625vw;
}

.fl-g-4 {
  gap: 2.0833333333vw;
}

.fl-g-5 {
  gap: 2.6041666667vw;
}

.fl-order-1 {
  order: 1;
}

.fl-order-2 {
  order: 2;
}

.fl-order-3 {
  order: 3;
}

.fl-order-4 {
  order: 4;
}

.fl-order-5 {
  order: 5;
}

.fl-order-6 {
  order: 6;
}

.fl-1-2 {
  width: calc(50% - 25px);
}

.fl-1-3 {
  width: calc(33.3333333333% - 25px);
}

.fl-2-3 {
  width: calc(66.6666666667% - 25px);
}

.fl-1-4 {
  width: calc(25% - 25px);
}

.fl-3-4 {
  width: calc(75% - 25px);
}

.fl-1-5 {
  width: calc(20% - 25px);
}

.fl-2-5 {
  width: calc(40% - 25px);
}

.fl-3-5 {
  width: calc(60% - 25px);
}

.fl-4-5 {
  width: calc(80% - 25px);
}

.fl-1-6 {
  width: calc(16.6666666667% - 25px);
}

.fl-1-7 {
  width: calc(14.2857142857% - 25px);
}

.fl-1-8 {
  width: calc(12.5% - 25px);
}

.fl-3-8 {
  width: calc(37.5% - 25px);
}

.fl-5-8 {
  width: calc(62.5% - 25px);
}

.fl-7-8 {
  width: calc(87.5% - 25px);
}

.fl-1-9 {
  width: calc(11.1111111111% - 25px);
}

.fl-1-10 {
  width: calc(10% - 25px);
}

.fl-3-10 {
  width: calc(30% - 25px);
}

.fl-7-10 {
  width: calc(70% - 25px);
}

.fl-9-10 {
  width: calc(90% - 25px);
}

.fl-1-11 {
  width: calc(9.0909090909% - 25px);
}

.fl-1-12 {
  width: calc(8.3333333333% - 25px);
}

.fl-1-13 {
  width: calc(7.6923076923% - 25px);
}

.fl-1-14 {
  width: calc(7.1428571429% - 25px);
}

.fl-1-15 {
  width: calc(6.6666666667% - 25px);
}

.fl-1-16 {
  width: calc(6.25% - 25px);
}

.fl-1-17 {
  width: calc(5.8823529412% - 25px);
}

.fl-1-18 {
  width: calc(5.5555555556% - 25px);
}

.fl-1-19 {
  width: calc(5.2631578947% - 25px);
}

.fl-1-20 {
  width: calc(5% - 25px);
}

.fl-1-21 {
  width: calc(4.7619047619% - 25px);
}

.fl-1-22 {
  width: calc(4.5454545455% - 25px);
}

.fl-1-23 {
  width: calc(4.347826087% - 25px);
}

.fl-1-24 {
  width: calc(4.1666666667% - 25px);
}

.text-right {
  text-align: right;
}

.w-100 {
  width: 100% !important;
}

.w-98 {
  width: 98% !important;
}

.h-100 {
  height: 100% !important;
}

.fw-bold {
  font-weight: 700;
}

.text-left {
  text-align: left;
}

.kicked-off {
  position: absolute;
  left: -9999px;
}

.shadow-photo img {
  border: solid 1px #000000;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.67);
}

.border-photo img {
  border: solid 1px #000000;
}

.mx-1 {
  margin-left: 0.5208333333vw !important;
  margin-right: 0.5208333333vw !important;
}

.mx-2 {
  margin-left: 1.0416666667vw !important;
  margin-right: 1.0416666667vw !important;
}

.mx-3 {
  margin-left: 1.5625vw !important;
  margin-right: 1.5625vw !important;
}

.mx-4 {
  margin-left: 2.0833333333vw !important;
  margin-right: 2.0833333333vw !important;
}

.mb-4 {
  margin-bottom: 2.0833333333vw !important;
}

.mb-3 {
  margin-bottom: 1.5625vw !important;
}

.mb-2 {
  margin-bottom: 1.0416666667vw !important;
}

.p-0 {
  padding: 0 !important;
}

.p-1 {
  padding: 0.5208333333vw !important;
}

.p-2 {
  padding: 1.0416666667vw !important;
}

.p-3 {
  padding: 1.5625vw !important;
}

.p-4 {
  padding: 2.0833333333vw !important;
}

.p-5 {
  padding: 2.6041666667vw !important;
}

.px-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.px-1 {
  padding-left: 0.5208333333vw !important;
  padding-right: 0.5208333333vw !important;
}

.px-2 {
  padding-left: 1.0416666667vw !important;
  padding-right: 1.0416666667vw !important;
}

.px-3 {
  padding-left: 1.5625vw !important;
  padding-right: 1.5625vw !important;
}

.px-4 {
  padding-left: 2.0833333333vw !important;
  padding-right: 2.0833333333vw !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.py-1 {
  padding-top: 0.5208333333vw !important;
  padding-bottom: 0.5208333333vw !important;
}

.py-2 {
  padding-top: 1.0416666667vw !important;
  padding-bottom: 1.0416666667vw !important;
}

.py-3 {
  padding-top: 1.5625vw !important;
  padding-bottom: 1.5625vw !important;
}

.py-4 {
  padding-top: 2.0833333333vw !important;
  padding-bottom: 2.0833333333vw !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-1 {
  padding-bottom: 0.5208333333vw !important;
}

.pb-2 {
  padding-bottom: 1.0416666667vw !important;
}

.pb-3 {
  padding-bottom: 1.5625vw !important;
}

.pb-4 {
  padding-bottom: 2.0833333333vw !important;
}

.pb-5 {
  padding-bottom: 2.6041666667vw !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-1 {
  padding-top: 0.5208333333vw !important;
}

.pt-2 {
  padding-top: 1.0416666667vw !important;
}

.pt-3 {
  padding-top: 1.5625vw !important;
}

.pt-4 {
  padding-top: 2.0833333333vw !important;
}

.pt-5 {
  padding-top: 2.6041666667vw !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 0.5208333333vw !important;
}

.mb-2 {
  margin-bottom: 1.0416666667vw !important;
}

.mb-3 {
  margin-bottom: 1.5625vw !important;
}

.mb-4 {
  margin-bottom: 2.0833333333vw !important;
}

.mb-5 {
  margin-bottom: 2.6041666667vw !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: 0.5208333333vw !important;
}

.mt-2 {
  margin-top: 1.0416666667vw !important;
}

.mt-3 {
  margin-top: 1.5625vw !important;
}

.mt-4 {
  margin-top: 2.0833333333vw !important;
}

.mt-5 {
  margin-top: 2.6041666667vw !important;
}

.fl-offset-1 {
  margin-left: 4.1666666667%;
}

.fl-offset-2 {
  margin-left: 8.3333333333%;
}

.fl-offset-3 {
  margin-left: 12.5%;
}

.fl-offset-4 {
  margin-left: 16.6666666667%;
}

.fl-offset-5 {
  margin-left: 20.8333333333%;
}

.fl-offset-6 {
  margin-left: 25%;
}

.fl-offset-7 {
  margin-left: 29.1666666667%;
}

.fl-offset-8 {
  margin-left: 33.3333333333%;
}

.fl-offset-9 {
  margin-left: 37.5%;
}

.fl-offset-10 {
  margin-left: 41.6666666667%;
}

.fl-offset-11 {
  margin-left: 45.8333333333%;
}

.fl-offset-12 {
  margin-left: 50%;
}

.fl-offset-13 {
  margin-left: 54.1666666667%;
}

.fl-offset-14 {
  margin-left: 58.3333333333%;
}

.fl-offset-15 {
  margin-left: 62.5%;
}

.fl-offset-16 {
  margin-left: 66.6666666667%;
}

.fl-offset-17 {
  margin-left: 70.8333333333%;
}

.fl-offset-18 {
  margin-left: 75%;
}

.fl-offset-19 {
  margin-left: 79.1666666667%;
}

.fl-offset-20 {
  margin-left: 83.3333333333%;
}

.fl-offset-21 {
  margin-left: 87.5%;
}

.fl-offset-22 {
  margin-left: 91.6666666667%;
}

.fl-offset-23 {
  margin-left: 95.8333333333%;
}

.d-block {
  display: block !important;
}

.d-none {
  display: none !important;
}

.d-inline-block {
  display: inline-block !important;
}

@media screen and (min-width: 1281px) {
  header .top {
    height: 2.5rem;
    background: #06274c;
    padding: 0 2.6041666667vw;
  }
  header .top p {
    font-family: Inter, Arial, Helvetica, sans-serif;
    font-size: 1.25rem;
    line-height: 2.375rem;
    font-weight: 600;
    text-align: right;
    color: #FFFFFF;
  }
  header .bottom {
    padding-right: 2.6041666667vw;
  }
  header .bottom .logo {
    position: relative;
    width: 360px;
  }
  header .bottom .logo img {
    position: absolute;
    left: 6.25rem;
    z-index: 5;
  }
  header .bottom .menu ul {
    display: flex;
    justify-content: space-between;
  }
  header .bottom .menu ul li {
    font-family: Inter, Arial, Helvetica, sans-serif;
    font-weight: 600;
    font-size: 1.25rem;
    text-transform: uppercase;
  }
  header .bottom .menu ul li.menu-item-has-children {
    position: relative;
  }
  header .bottom .menu ul li.menu-item-has-children.menu-item-71 ul {
    right: 0;
  }
  header .bottom .menu ul li.menu-item-has-children ul {
    display: none;
    position: absolute;
    width: 15.1041666667vw;
    z-index: 7;
    flex-direction: column;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.67);
  }
  header .bottom .menu ul li.menu-item-has-children ul li {
    width: 100%;
  }
  header .bottom .menu ul li.menu-item-has-children ul li a {
    width: 100%;
    box-sizing: border-box;
    padding: 0.75rem 1rem;
  }
  header .bottom .menu ul li.menu-item-has-children ul li.menu-item-has-children ul {
    top: 0;
    left: 100%;
  }
  header .bottom .menu ul li a {
    color: #000000;
    text-decoration: none;
    display: inline-block;
    padding: 2rem 1.5rem;
    background: #FFFFFF;
    transition: 0.25s all ease-in-out;
  }
  header .bottom .menu ul li a:hover {
    background: #69350e;
    color: white;
    text-decoration: none;
    transition: 0.25s all ease-in-out;
  }
  section.hero {
    background: url(../images/2774.jpg) top center no-repeat;
    background-size: contain;
    aspect-ratio: 128/45;
    position: relative;
    z-index: 0;
  }
  section.hero .search-box {
    width: 75%;
    margin: 0 auto;
    padding-top: 16.6666666667vw;
  }
  section.hero .search-box h2 {
    text-align: center;
    font-family: Inter, Arial, Helvetica, sans-serif;
    font-size: 2.0833333333vw;
    color: #FFFFFF;
    text-shadow: rgba(0, 0, 0, 0.67) 0 0 10px;
    margin-bottom: 0.5208333333vw;
    font-weight: 600;
  }
  section.hero .search-box-form {
    background: #FFFFFF;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.67);
    border: solid 2px #B7B7B7;
    padding: 2.0833333333vw 2.6041666667vw;
  }
  section.hero .search-box-form .form-fields {
    -moz-column-gap: 1.0416666667vw;
         column-gap: 1.0416666667vw;
  }
  section.hero .search-box-form .form-fields .form-control {
    flex: 5;
  }
  section.hero .search-box-form .form-fields .form-control .clear-addr {
    visibility: hidden;
  }
  section.hero .search-box-form .form-fields .form-control select {
    width: 100%;
    font-family: Inter, Arial, Helvetica, sans-serif;
    font-size: 0.9375vw;
    font-weight: 300;
    color: #555555;
    padding: 0.625rem;
    border: solid 1px #555555;
  }
  section.hero .search-box-form .form-fields .form-control-submenu {
    position: absolute;
    display: none;
    z-index: 5;
    width: 100%;
    height: 130px;
    bottom: -130px;
    left: 0;
    background: #FFFFFF;
    border: solid 1px #B7B7B7;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.67);
    box-sizing: border-box;
    padding: 0.3645833333vw 0.78125vw;
  }
  section.hero .search-box-form .form-fields .form-control-submenu-radios {
    gap: 0.2604166667vw !important;
  }
  section.hero .search-box-form .form-fields .form-control-submenu-radios label {
    font-size: 0.5729166667vw !important;
    display: inline-block;
    border: solid 1px #06274c;
    background: #E7E7E7;
    color: #06274c;
    padding: 0.1041666667vw;
  }
  section.hero .search-box-form .form-fields .form-control-submenu-radios label:not(:last-child) {
    margin-right: 0.15625vw;
  }
  section.hero .search-box-form .form-fields .form-control-submenu-radios label.clicked {
    border: solid 1px #18181b;
    background: #06274c;
    color: #FFFFFF;
  }
  section.hero .search-box-form .form-fields .form-control-submenu-minmax {
    gap: 0.2604166667vw;
  }
  section.hero .search-box-form .form-fields .form-control-submenu-minmax select {
    font-size: 0.7291666667vw;
    width: 100%;
    font-family: Inter, Arial, Helvetica, sans-serif;
    color: #06274c;
    padding: 0.15625vw;
  }
  section.hero .search-box-form .form-fields .form-control-submenu-minmax-min {
    flex: 10;
  }
  section.hero .search-box-form .form-fields .form-control-submenu-minmax-max {
    flex: 10;
  }
  section.hero .search-box-form .form-fields .form-control-submenu-minmax-sep {
    flex: 1;
    text-align: center;
    align-content: center;
  }
  section.hero .search-box-form .form-fields .form-control-container {
    border: solid 1px #555555;
    position: relative;
    z-index: 0;
  }
  section.hero .search-box-form .form-fields .form-control-selected {
    font-size: 0.9375vw;
    border: none;
    font-family: Inter, Arial, Helvetica, sans-serif;
    font-weight: 300;
    color: #555555;
    width: 100%;
    padding: 0.3645833333vw;
    display: block;
  }
  section.hero .search-box-form .form-fields .form-control-button {
    padding: 0.3645833333vw;
  }
  section.hero .search-box-form .form-fields .form-control label {
    color: #06274c;
    font-family: Inter, Arial, Helvetica, sans-serif;
    font-weight: 300;
    font-size: 1.0416666667vw;
    margin-bottom: 0.15625vw;
    display: block;
  }
  section.hero .search-box-form .form-fields .form-control input[type=text] {
    padding: 0.3645833333vw;
    font-size: 0.9375vw;
    border: none;
    font-family: Inter, Arial, Helvetica, sans-serif;
    font-weight: 300;
    width: 100%;
  }
  section.hero .search-box-form .form-fields .form-control input[type=text]:focus {
    outline: none;
  }
  section.hero .search-box-form .form-fields .form-control.form-control-submit {
    flex: 3;
  }
  section.hero .search-box-form .form-fields .form-control.form-control-submit button[type=submit] {
    padding: 0.3645833333vw;
    width: 100%;
    display: block;
    font-family: Inter, Arial, Helvetica, sans-serif;
    background: #06274c;
    color: #FFFFFF;
    font-size: 0.9895833333vw;
    border: none;
    text-align: center;
    font-weight: 600;
    transition: 0.3s all ease-in-out;
    text-transform: uppercase;
  }
  section.hero .search-box-form .form-fields .form-control.form-control-submit button[type=submit]:hover {
    background: #B7B7B7;
    color: #06274c;
    transition: 0.3s all ease-in-out;
  }
  section.main {
    background: #FFFFFF;
    position: relative;
    z-index: 0;
  }
  section.main .guts {
    padding: 4.9479166667vw 9.375vw;
  }
  section.main .guts p {
    text-align: center;
    font-family: Inter, Arial, Helvetica, sans-serif;
    font-weight: 320;
    font-size: 1.875rem;
    line-height: 3rem;
    color: #000000;
    margin-bottom: 0;
  }
  section.featured {
    background: url("../images/bg_featured.jpg") top center no-repeat;
    min-height: 38.5rem;
    background-size: cover;
  }
  section.featured .guts {
    background: rgba(255, 255, 255, 0.75);
    padding: 2.6041666667vw 14.0625vw;
    height: 100%;
  }
  section.featured .guts h2 {
    text-transform: uppercase;
    font-family: Inter, Arial, Helvetica, sans-serif;
    font-weight: 600;
    text-align: center;
    font-size: 3rem;
    margin-bottom: 2rem;
  }
  section.featured .guts .props .prop {
    width: 22%;
    border: solid 1px #000000;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.67);
  }
  section.featured .guts .props .prop .photo img {
    width: 100%;
  }
  section.featured .guts .props .prop .details {
    padding: 1.25rem;
    background: #FFFFFF;
  }
  section.featured .guts .props .prop .details p {
    font-family: Inter, Arial, Helvetica, sans-serif;
    text-align: center;
    color: #000000;
  }
  section.featured .guts .props .prop .details p.address {
    font-size: 1.4375rem;
    margin-bottom: 1rem;
  }
  section.featured .guts .props .prop .details p.specs {
    font-size: 1.375rem;
    margin-bottom: 0;
  }
  section.featured .guts .props .prop .button {
    background: #FFFFFF;
  }
  section.featured .guts .props .prop .button a {
    display: block;
    text-align: center;
    padding: 0.625rem;
    font-family: Inter, Arial, Helvetica, sans-serif;
    font-size: 1.125rem;
    text-align: center;
    color: #FFFFFF;
    text-decoration: none;
    transition: 0.25s all ease-in-out;
    background: #69350e;
  }
  section.featured .guts .props .prop .button a:hover {
    color: #000000;
    background: #bc9d88;
    text-decoration: none;
    transition: 0.25s all ease-in-out;
  }
  section.tenant {
    padding: 2.6041666667vw 14.0625vw;
  }
  section.tenant h2 {
    text-transform: uppercase;
    font-family: Inter, Arial, Helvetica, sans-serif;
    font-weight: 600;
    text-align: center;
    font-size: 3rem;
    margin-bottom: 2rem;
  }
  section.tenant .guts .icon a {
    color: #FFFFFF;
    text-decoration: none;
  }
  section.tenant .guts .icon a:hover {
    color: #FFFFFF;
    text-decoration: none;
  }
  section.tenant .guts .icon {
    border: solid 1px #000000;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.67);
    width: 18.75rem;
  }
  section.tenant .guts .icon-guts-icon {
    padding: 0.625rem 1.25rem 0;
  }
  section.tenant .guts .icon-guts-text {
    width: 100%;
    height: 100%;
    background: #06274c;
    padding: 1.25rem;
    font-family: Inter, Arial, Helvetica, sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
  }
  section.inside {
    background: #E7E7E7;
  }
  section.inside .inside-guts {
    min-height: 20.8333333333vw;
    padding: 2.6041666667vw 18.2291666667vw;
  }
  section.inside .inside-guts.property-box {
    padding: 2.6041666667vw;
  }
  section.inside .inside-guts.property-box .property-row {
    background: #FFFFFF;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.17);
  }
  section.inside .inside-guts.property-box .property-row .read-more {
    font-family: Inter, Arial, Helvetica, sans-serif;
    font-size: 0.8333333333vw;
    color: #FFFFFF;
    background: #18181b;
    transition: 0.2s all ease-in-out;
  }
  section.inside .inside-guts.property-box .property-row .read-more:hover {
    text-decoration: none;
    background: #06274c;
    transition: 0.2s all ease-in-out;
  }
  section.inside .inside-guts.search-results {
    padding: 2.6041666667vw 0;
  }
  section.inside .inside-guts.search-results .results {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
  section.inside .inside-guts.search-results .results .map {
    flex: 5;
  }
  section.inside .inside-guts.search-results .results .property-listings {
    flex: 7;
    padding: 1.0416666667vw;
  }
  section.inside .inside-guts h1 {
    text-transform: uppercase;
    font-family: Inter, Arial, Helvetica, sans-serif;
    color: #000000;
    font-weight: 650;
    font-size: 2.5vw;
    margin-bottom: 2.0833333333vw;
    text-align: center;
  }
  section.inside .inside-guts h2 {
    font-family: Inter, Arial, Helvetica, sans-serif;
    color: #000000;
    font-weight: 600;
    font-size: 1.25vw;
    margin-bottom: 1.0416666667vw;
  }
  section.inside .inside-guts h3 {
    font-family: Inter, Arial, Helvetica, sans-serif;
    color: #000000;
    font-weight: 600;
    font-size: 1.0416666667vw;
    margin-bottom: 0.5208333333vw;
  }
  section.inside .inside-guts h4 {
    font-family: Inter, Arial, Helvetica, sans-serif;
    color: #000000;
    font-weight: 600;
    font-size: 0.9375vw;
    margin-bottom: 0.5208333333vw;
  }
  section.inside .inside-guts p {
    font-family: Inter, Arial, Helvetica, sans-serif;
    font-size: 0.9375vw;
    line-height: 143%;
    font-weight: 400;
    color: #000000;
  }
  section.inside .inside-guts p:not(:last-child) {
    margin-bottom: 1.0416666667vw;
  }
  section.inside .inside-guts p.property-address {
    font-size: 0.7291666667vw;
    line-height: 1.75;
    margin-bottom: 0.5208333333vw;
    color: var(--slate-500);
  }
  section.inside .inside-guts ul {
    padding-left: 1.0416666667vw;
    margin-bottom: 1.0416666667vw;
  }
  section.inside .inside-guts ul li {
    list-style-type: square;
    font-family: Inter, Arial, Helvetica, sans-serif;
    font-size: 0.9375vw;
    line-height: 143%;
    font-weight: 400;
    color: #000000;
  }
  section.inside .inside-guts ul li:not(:last-child) {
    margin-bottom: 0.5208333333vw;
  }
  section.inside .inside-guts a {
    color: var(--slate-800);
    text-decoration: none;
    font-weight: 600;
  }
  section.inside .inside-guts a:hover {
    color: #18181b;
    text-decoration: underline;
  }
  section.inside .inside-guts label, section.inside .inside-guts legend {
    font-family: Inter, Arial, Helvetica, sans-serif !important;
    font-size: 0.9375vw;
    color: #000000;
    font-weight: 300;
  }
  section.inside .inside-guts .google-map, section.inside .inside-guts .available-units {
    margin-bottom: 1.0416666667vw;
  }
  section.inside .inside-guts .photos {
    width: 35%;
  }
  section.inside .inside-guts .info:not(.full-width) {
    width: 62%;
  }
  section.inside .inside-guts input[type=text],
  section.inside .inside-guts input[type=email],
  section.inside .inside-guts input[type=tel],
  section.inside .inside-guts textarea {
    border: solid 1px #000000;
    font-family: Inter, Arial, Helvetica, sans-serif;
    font-size: 0.625vw;
    padding: 0.3125vw;
    font-weight: 300;
  }
  section.inside .inside-guts input[type=submit] {
    font-family: Inter, Arial, Helvetica, sans-serif;
    color: white;
    background: black;
    border: none;
    padding: 0.2604166667vw 0.5208333333vw 0.3125vw;
    font-size: 0.7291666667vw;
    text-align: center;
    font-weight: 600;
  }
  section.inside .inside-guts .data-table {
    width: 100%;
    border-collapse: collapse;
    border: solid 1px #000000;
  }
  section.inside .inside-guts .data-table th, section.inside .inside-guts .data-table td {
    padding: 0.2604166667vw;
    text-align: left;
    border: solid 1px #000000;
    font-family: Inter, Arial, Helvetica, sans-serif;
    font-size: 0.8333333333vw;
    color: #000000;
  }
  section.inside .inside-guts .data-table th {
    background-color: #000000;
    color: #FFFFFF;
    font-size: 0.8333333333vw;
    font-weight: 600;
  }
  section.inside .inside-guts .alignright {
    float: right;
    margin-left: 0.5208333333vw;
    margin-bottom: 0.5208333333vw;
  }
  footer .top {
    background-color: #18181b;
    color: #FFFFFF;
    padding: 2.5rem 2.6041666667vw;
  }
  footer .top .address {
    width: 17.1%;
  }
  footer .top .address .logo {
    position: relative;
    left: -1.5rem;
  }
  footer .top .address p {
    font-family: Inter, Arial, Helvetica, sans-serif;
    font-size: 1.25rem;
    line-height: 1.875rem;
    color: #FFFFFF;
  }
  footer .top .address p:first-child {
    margin-bottom: 1.25rem;
  }
  footer .top .address p a {
    font-weight: 600;
    color: #FFFFFF;
    text-decoration: none;
  }
  footer .top .address p a:hover {
    color: #FFFFFF;
    text-decoration: underline;
  }
  footer .top .map {
    padding-top: 4.6875rem;
    width: 22.54%;
  }
  footer .top .form {
    padding-top: 1.75rem;
    width: 21.55%;
  }
  footer .top .form h3 {
    text-align: center;
    font-family: Inter, Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    font-size: 1.625rem;
    margin-bottom: 1rem;
  }
  footer .top .form label {
    position: absolute;
    left: -9999px;
  }
  footer .top .form input[type=text],
  footer .top .form input[type=email],
  footer .top .form textarea {
    border: solid 1px #000000;
    font-family: Inter, Arial, Helvetica, sans-serif;
    font-size: 1.125rem;
    padding: 0.375rem;
  }
  footer .top .form input[type=submit] {
    font-family: Inter, Arial, Helvetica, sans-serif;
    color: white;
    background: transparent;
    border: none;
    text-transform: uppercase;
    font-size: 1.5rem;
    text-align: center;
    font-weight: 700;
  }
  footer .top > .menu {
    padding-top: 4.6875rem;
    width: 11.9%;
  }
  footer .top > .menu ul {
    margin-bottom: 3.75rem;
  }
  footer .top > .menu ul li {
    text-align: right;
    font-family: Inter, Arial, Helvetica, sans-serif;
    font-size: 1.5rem;
    line-height: 2.25rem;
    font-weight: 600;
  }
  footer .top > .menu ul li a {
    color: #FFFFFF;
    text-decoration: none;
  }
  footer .top > .menu ul li a:hover {
    color: #FFFFFF;
    text-decoration: underline;
  }
  footer .top > .menu p {
    font-family: Inter, Arial, Helvetica, sans-serif;
    text-align: right;
    font-size: 1.25rem;
    line-height: 1.875rem;
  }
  footer .bottom {
    background-color: #09090b;
    padding: 1.25rem;
  }
  footer .bottom p {
    text-align: center;
    font-family: Inter, Arial, Helvetica, sans-serif;
    font-size: 1rem;
    line-height: 142%;
    color: white;
  }
  footer .bottom p a {
    text-decoration: none;
    color: white;
    font-weight: 600;
  }
  footer .bottom p a:hover {
    text-decoration: underline;
    color: white;
  }
  footer.inside .top {
    padding: 0;
  }
  footer.inside .top > .menu {
    padding: 1.25rem;
    width: 100%;
  }
  footer.inside .top > .menu ul {
    display: flex;
    justify-content: center;
    -moz-column-gap: 2.0833333333vw;
         column-gap: 2.0833333333vw;
    margin-bottom: 0;
  }
  footer.inside .top > .menu ul li {
    font-family: Inter, Arial, Helvetica, sans-serif;
    font-size: 1.25rem;
    line-height: 2.25rem;
    text-transform: uppercase;
    font-weight: 600;
  }
  footer.inside .top > .menu ul li a {
    color: #FFFFFF;
    text-decoration: none;
  }
  footer.inside .top > .menu ul li a:hover {
    color: #FFFFFF;
    text-decoration: underline;
  }
  footer.inside .top > .menu p {
    font-family: Inter, Arial, Helvetica, sans-serif;
    text-align: right;
    font-size: 1.25rem;
    line-height: 1.875rem;
  }
}
@media screen and (min-width: 992px) and (max-width: 1920px) {
  header .top {
    height: 2.0833333333vw;
    background: #06274c;
    padding: 0 2.6041666667vw;
  }
  header .top p {
    font-family: Inter, Arial, Helvetica, sans-serif;
    font-size: 1.0416666667vw;
    line-height: 1.9791666667vw;
    font-weight: 600;
    text-align: right;
    color: #FFFFFF;
  }
}
/* Results Map Styles */
.map {
  height: 500px;
  margin-bottom: 2rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .map {
    height: 400px;
    border-radius: 4px;
  }
}

/* Custom marker styles */
.gm-style .gm-style-iw-c {
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.gm-style .gm-style-iw-d {
  overflow: auto !important;
}

/* Info window styles */
.property-info-window {
  padding: 10px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}
.property-info-window img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
  margin-bottom: 10px;
}
.property-info-window h4 {
  margin: 0 0 5px 0;
  font-size: 16px;
  font-weight: bold;
}
.property-info-window h4 a {
  color: #0066cc;
  text-decoration: none;
}
.property-info-window h4 a:hover {
  text-decoration: underline;
}
.property-info-window p {
  margin: 0 0 5px 0;
  font-size: 14px;
  color: #666;
}
.property-info-window .property-price {
  font-size: 18px;
  font-weight: bold;
  color: #0066cc;
  margin: 0 0 10px 0;
}
.property-info-window .property-details {
  margin-bottom: 10px;
  font-size: 14px;
  color: #666;
}
.property-info-window .property-details span {
  margin-right: 15px;
}
.property-info-window .property-excerpt {
  margin: 0 0 10px 0;
  font-size: 13px;
  color: #666;
  line-height: 1.4;
}
.property-info-window a.view-details {
  display: inline-block;
  padding: 8px 16px;
  background: #0066cc;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-size: 14px;
  transition: background 0.3s ease;
}
.property-info-window a.view-details:hover {
  background: #0052a3;
}

/* Property listings below map */
.property-listings {
  margin-top: 2rem;
}

.property-row {
  display: flex;
  margin-bottom: 2rem;
  align-items: flex-start;
  border-bottom: 1px solid #e0e0e0;
}
.property-row:last-child {
  border-bottom: none;
}
@media (max-width: 768px) {
  .property-row {
    flex-direction: column;
  }
}

.property-image {
  flex: 0 0 200px;
}
@media (max-width: 768px) {
  .property-image {
    flex: 0 0 auto;
    width: 100%;
    margin-right: 0;
    margin-bottom: 1rem;
  }
}
.property-image img {
  width: 100%;
  height: auto;
}

.property-content {
  flex: 1;
}
.property-content h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}
.property-content h3 a {
  color: #333;
  text-decoration: none;
}
.property-content h3 a:hover {
  color: #0066cc;
}
.property-content .property-address {
  color: #666;
  font-size: 14px;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}
.property-content .property-excerpt {
  margin-bottom: 1rem;
  color: #666;
  line-height: 1.6;
}
.property-content .read-more {
  color: #0066cc;
  text-decoration: none;
  font-weight: 500;
}
.property-content .read-more:hover {
  text-decoration: underline;
}

/* No results message */
.no-results {
  padding: 2rem;
  text-align: center;
  background: #f5f5f5;
  min-height: 100%;
  border-radius: 8px;
}
.no-results p {
  margin: 0;
  color: #666;
  font-size: 16px;
}

/* Map loading state */
.map.loading {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
}
.map.loading::after {
  content: "Loading map...";
  color: #666;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .property-image {
    flex: 0 0 180px;
  }
}
@media (max-width: 768px) {
  .map {
    height: 350px;
    margin-bottom: 1.5rem;
  }
  .property-row {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
  }
}
@media (max-width: 480px) {
  .map {
    height: 300px;
    border-radius: 0;
    margin-left: -15px;
    margin-right: -15px;
    width: calc(100% + 30px);
  }
}