/* Solitaire Kothrud — landing page styles */
*,
*::before,
*::after {
  box-sizing: border-box
}

:root {
  --ink: #111111;
  --ink-2: #2b2926;
  --muted: #67625b;
  --gold: #b69145;
  --gold-2: #e3c77d;
  --green: #272522;
  --green-2: #b6914514;
  --line: #e5e0d6;
  --bg: #f7f5f0;
  --white: #fff;
  --radius: 14px;
  --shadow: 0 18px 45px rgba(17, 17, 17, .12);
  --side: 30%;
}

html,
body {
  margin: 0;
  padding: 0;
  max-width: 100%;
  overflow-x: clip
}

body {
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 15px
}

img {
  max-width: 100%;
  display: block
}

a {
  color: inherit;
  text-decoration: none
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Playfair Display', Georgia, serif;
  margin: 0 0 .5rem;
  line-height: 1.2
}

.container {
  width: min(1280px, 100%);
  margin: 0 auto;
  padding: 0 18px
}

/* Buttons */
.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  border: 0;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .86rem;
  letter-spacing: .04em;
  padding: .86rem 1.45rem;
  border-radius: 6px;
  transition: transform .25s, box-shadow .25s, background .25s
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-120%) skewX(-20deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .42), transparent);
  transition: transform .65s
}

.btn:hover::after {
  transform: translateX(120%) skewX(-20deg)
}

.btn--gold {
  background: linear-gradient(120deg, #96732f, var(--gold-2), #b78d3a);
  color: #17130c;
  box-shadow: 0 10px 24px rgba(126, 94, 30, .28), inset 0 1px rgba(255, 255, 255, .45)
}

.btn--gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(126, 94, 30, .35)
}

.btn--ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .65)
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, .14)
}

.btn--ghost-light {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink)
}

.btn--block {
  width: 100%
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line)
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 68px
}

.brand {
  display: flex;
  align-items: center;
  gap: .6rem;
  flex: 0 0 auto
}

.brand__logo {
  width: 172px;
  height: 48px;
  object-fit: contain;
  object-position: left center
}

.brand__mark {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--green), #1c7a5c);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700
}

.brand__text strong {
  display: block;
  font-size: .95rem
}

.brand__text span {
  display: block;
  font-size: .7rem;
  color: var(--muted)
}

.nav {
  display: flex;
  gap: 1.1rem
}

.nav a {
  font-size: .83rem;
  font-weight: 500;
  color: var(--ink-2);
  padding: .3rem 0;
  border-bottom: 2px solid transparent
}

.nav a:hover {
  color: var(--gold);
  border-color: var(--gold)
}

.header__cta {
  display: flex;
  align-items: center;
  gap: .6rem
}

.header__phone {
  font-weight: 600;
  font-size: .85rem;
  color: var(--ink)
}

.burger {
  display: none;
  background: none;
  border: 0;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px
}

.burger span {
  width: 22px;
  height: 2px;
  background: var(--ink);
  display: block
}

/* Hero */
.hero {
  position: relative;
  color: #fff;
  isolation: isolate
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: url('./Solitaire-desktop-scaled.jpg') center/cover no-repeat;
  animation: ken 22s ease-in-out infinite alternate;
  z-index: -2
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(10, 10, 10, .94), rgba(10, 10, 10, .53));
  z-index: -1
}

@keyframes ken {
  from {
    transform: scale(1)
  }

  to {
    transform: scale(1.12)
  }
}

.hero__inner {
  padding: 64px 0 70px
}

.badge-live {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .3);
  padding: .32rem .8rem;
  border-radius: 999px;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase
}

.badge-live i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #41d67f;
  animation: pulse 1.6s infinite
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(65, 214, 127, .7)
  }

  70% {
    box-shadow: 0 0 0 9px rgba(65, 214, 127, 0)
  }
}

.hero h1 {
  font-size: clamp(1.9rem, 4.4vw, 3.2rem);
  margin: 1rem 0 .4rem
}

.hero h1 em {
  color: var(--gold-2);
  font-style: normal
}

.hero__sub {
  max-width: 640px;
  color: #dfe7e3;
  font-size: .98rem
}

.hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin: 1.3rem 0
}

.fact {
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 12px;
  padding: .6rem .9rem;
  min-width: 150px
}

.fact span {
  display: block;
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #bcd0c8
}

.fact strong {
  font-size: .95rem
}

.hero__price {
  display: inline-block;
  background: rgba(0, 0, 0, .35);
  border-left: 3px solid var(--gold);
  padding: .6rem 1rem;
  border-radius: 0 10px 10px 0;
  margin-bottom: 1.2rem
}

.hero__price small {
  display: block;
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #cbd8d2
}

.hero__price b {
  font-size: 1.35rem;
  color: var(--gold-2)
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem
}

/* 70/30 layout — sidebar RIGHT */
.layout {
  width: min(1280px, 100%);
  margin: 0 auto;
  padding: 0 18px;
  display: grid;
  grid-template-columns: minmax(0, 73%) minmax(0, 27%);
  gap: 26px;
  align-items: stretch
}
#overview{
  display: grid;
      grid-auto-flow: column;
    gap: 10px;
}
#overview .about_img img{
  height: 100%;
}
.main {
  min-width: 0;
  padding: 10px 0 30px
}

.aside {
  min-width: 0;
  align-self: stretch;
  position: relative
}

.side-fixed {
  position: sticky;
  top: 88px;
  display: grid;
  gap: 16px;
  height: max-content;
  max-height: calc(100vh - 104px);
  /* overflow-y: auto; */
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent
}

/* Sections */
.section {
  padding: 34px 0
}

.section--alt {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  margin: 14px 0
}

.section-head {
  margin-bottom: 1.1rem
}

.kicker {
  display: inline-block;
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600
}

.section-head h2 {
  font-size: clamp(1.4rem, 2.6vw, 2rem)
}

.section-head h2 em {
  font-style: normal;
  color: var(--green)
}

.rule {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 3px;
  margin-top: .4rem
}

.prose p {
  color: var(--muted);
  margin: 0 0 .85rem
}

.clamped {
  max-height: 150px;
  overflow: hidden;
  transition: max-height .4s ease
}

.clamped.open {
  max-height: 1400px
}

.link-more {
  display: inline-block;
  color: var(--green);
  font-weight: 600;
  font-size: .83rem;
  cursor: pointer;
  margin-bottom: 1rem
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin-top: 1rem
}

.usp {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: .9rem
}

.usp strong {
  display: block;
  font-size: .9rem
}

.usp span {
  font-size: .8rem;
  color: var(--muted)
}

/* Table */
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px
}

th,
td {
  padding: .85rem 1rem;
  text-align: left;
  font-size: .87rem;
  border-bottom: 1px solid var(--line)
}

th {
  background: var(--ink);
  color: #fff;
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase
}

tbody tr:last-child td {
  border-bottom: 0
}

tbody tr:hover {
  background: #f8faf9
}

td.price {
  color: var(--gold);
  font-weight: 600
}

.table-cta {
  background: none;
  border: 0;
  color: var(--green);
  font-weight: 600;
  cursor: pointer;
  font-size: .83rem
}

/* Cards / grids */
.grid {
  display: grid;
  gap: 14px
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr))
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden
}

.card__media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden
}

.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.card__media--blur img {
  filter: blur(7px) brightness(.8);
  transform: scale(1.08)
}

.card__overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(13, 27, 42, .35)
}

.card__body {
  padding: .8rem
}

.card__body strong {
  display: block
}

.card__body span {
  font-size: .8rem;
  color: var(--muted)
}

.amenity {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1rem .6rem;
  text-align: center;
  transition: .25s
}

.amenity:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--gold)
}

.amenity .ico {
  font-size: 1.7rem
}

.amenity p {
  margin: .4rem 0 0;
  font-size: .8rem;
  font-weight: 500
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px
}

.gallery-grid figure {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1/1
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .5s
}

.gallery-grid figure:hover img {
  transform: scale(1.08)
}

.loc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px
}

.loc-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .55rem
}

.loc-list li {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: 10px;
  padding: .6rem .8rem;
  font-size: .85rem;
  color: var(--muted)
}

.loc-list b {
  color: var(--ink);
  margin-right: .4rem
}

.map-frame {
  border-radius: 12px;
  overflow: hidden;
  min-height: 280px;
  border: 1px solid var(--line)
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 280px;
  border: 0;
  display: block
}

.tour {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  color: #fff;
  text-align: center;
  padding: 56px 20px;
  background: linear-gradient(rgba(8, 26, 20, .72), rgba(8, 26, 20, .72)), url('./Solitaire-desktop-scaled.jpg') center/cover
}

.tour h3 {
  font-size: 1.6rem;
  color: var(--gold-2)
}

.tour p {
  color: #dbe6e1;
  margin: .2rem 0 1rem
}

/* Forms */
.form-card {
  background: #fff;
  border: 1px solid #d9d2c4;
  border-radius: 8px;
  padding: 20px;
  box-shadow: var(--shadow);
  position: relative
}

.side-flag {
  position: absolute;
  top: -11px;
  right: 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #231c02;
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .25rem .65rem;
  border-radius: 999px
}

.form-card h3 {
  font-size: 1.15rem;
  margin-bottom: .15rem
}

.small {
  font-size: .76rem;
  color: var(--muted);
  margin: 0 0 .8rem
}

.field {
  margin-bottom: .6rem
}

.field input,
.field select {
  width: 100%;
  padding: .76rem .8rem;
  border: 1px solid var(--line);
  border-radius: 5px;
  font-family: inherit;
  font-size: .85rem;
  background: #fbfaf7;
  color: var(--ink)
}

.field input:focus,
.field select:focus {
  outline: 0;
  border-color: var(--green);
  background: #fff
}

.err {
  display: none;
  color: #d64545;
  font-size: .7rem;
  margin-top: .2rem
}

.field.invalid input,
.field.invalid select {
  border-color: #d64545
}

.field.invalid .err {
  display: block
}

.form-note {
  font-size: .66rem;
  color: var(--muted);
  margin: .6rem 0 0
}

.form-msg {
  font-size: .8rem;
  color: var(--green);
  font-weight: 600;
  margin: .5rem 0 0
}

.side-cta {
  background: linear-gradient(145deg, #171717, #302d29);
  color: #fff;
  border: 1px solid #4c4436;
  border-radius: 8px;
  padding: 18px;
  text-align: center;
  box-shadow: var(--shadow)
}

.side-cta p {
  margin: 0 0 .7rem;
  font-size: .85rem
}

.side-cta .btn--ghost-light {
  color: #fff;
  border-color: rgba(255, 255, 255, .7)
}

.promise {
  display: flex;
  gap: .4rem;
  flex-wrap: wrap;
  margin-top: .6rem
}

.promise span {
  flex: 1;
  min-width: 88px;
  text-align: center;
  background: #f5f1e8;
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: .4rem;
  font-size: .68rem;
  font-weight: 600;
  color: var(--ink)
}

/* Footer */
.footer {
  background: #111;
  color: #c9c4ba;
  margin-top: 26px;
  padding: 36px 0 0;
  font-size: .83rem;
  border-top: 3px solid var(--gold)
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px
}

.fbrand {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: #fff;
  letter-spacing: .06em;
  margin-bottom: .5rem
}

.footer h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: .6rem
}

.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .4rem
}

.footer a:hover {
  color: var(--gold-2)
}

.qr-box {
  display: flex;
  gap: .7rem;
  align-items: center;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 12px;
  padding: .7rem;
  margin-top: .9rem
}

.qr-box img {
  width: 84px;
  height: 84px;
  background: #fff;
  border-radius: 8px;
  padding: 4px
}

.qr-box b {
  display: block;
  color: var(--gold-2);
  font-size: .8rem
}

.qr-box small {
  display: block;
  font-size: .7rem;
  color: #9fb0bd
}

.disclaimer {
  border-top: 1px solid rgba(255, 255, 255, .12);
  margin-top: 26px;
  padding-top: 16px
}

.disclaimer h5 {
  color: #fff;
  font-size: .9rem;
  margin-bottom: .4rem
}

.disclaimer p {
  font-size: .72rem;
  color: #93a4b2;
  margin: 0 0 .6rem
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  margin-top: 16px;
  padding: 12px 0;
  text-align: center;
  font-size: .75rem
}

/* Quick actions — desktop */
.quick-desktop {
  position: fixed;
  right: 14px;
  bottom: 70px;
  display: grid;
  gap: 9px;
  z-index: 70;
  justify-items: end
}

.qbtn {
  width: 52px;
  height: 52px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .22);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .24);
  overflow: hidden;
  transition: width .3s, transform .25s, gap .3s, padding .3s
}

.qbtn:hover {
  width: 138px;
  justify-content: flex-start;
  gap: 10px;
  padding: 0 16px;
  transform: translateX(-2px)
}

.qbtn__icon {
  font-size: 1.28rem;
  line-height: 1;
  min-width: 20px;
  text-align: center
}

.qbtn__label {
  font-size: .74rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  max-width: 0;
  transition: opacity .2s, max-width .3s
}

.qbtn:hover .qbtn__label {
  opacity: 1;
  max-width: 90px
}

.qbtn--wa {
  background: linear-gradient(145deg, #168d50, #0f5f38);
  animation: bob 2.8s ease-in-out infinite
}

.qbtn--call {
  background: linear-gradient(145deg, #292929, #080808);
  animation: ring 3.2s ease-in-out infinite
}

.qbtn--mail {
  background: linear-gradient(145deg, #d2ad5b, #8b6623);
  animation: glow 2.8s ease-in-out infinite
}

@keyframes bob {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-7px)
  }
}

@keyframes ring {

  0%,
  100% {
    transform: rotate(0)
  }

  10% {
    transform: rotate(-14deg)
  }

  20% {
    transform: rotate(14deg)
  }

  30% {
    transform: rotate(-10deg)
  }

  40% {
    transform: rotate(10deg)
  }

  50% {
    transform: rotate(0)
  }
}

@keyframes glow {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(201, 162, 39, .65)
  }

  70% {
    box-shadow: 0 0 0 14px rgba(201, 162, 39, 0)
  }
}

/* Mobile bottom bar */
.mobile-bar {
  display: none;
  position: fixed;
  left: 8px;
  right: 8px;
  bottom: 8px;
  z-index: 80;
  background: rgba(15, 15, 15, .97);
  border: 1px solid #494035;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding: 5px;
  border-radius: 9px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, .35)
}

.mobile-bar a,
.mobile-bar button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .3rem;
  border: 0;
  border-radius: 10px;
  padding: .64rem .2rem;
  font-family: inherit;
  font-weight: 600;
  font-size: .74rem;
  cursor: pointer;
  color: #fff;
  background: transparent;
  letter-spacing: .02em
}

.mobile-bar span {
  font-size: 1rem
}

.mobile-bar a:nth-child(1) {
  animation: ring 3.2s ease-in-out infinite;
  /* animation: glow 2.8s ease-in-out infinite; */
       background: linear-gradient(145deg, rgba(255, 255, 255, .97), rgba(255, 255, 255, .97));
    color: #000;
}

.mobile-bar a:nth-child(2) {
  background: linear-gradient(145deg, #198f53, #11683d);
  animation: ring 3.2s ease-in-out infinite;
}

.mobile-bar button {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #1c170e;
  animation: ring 3.2s ease-in-out infinite;
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(8, 8, 8, .78);
  backdrop-filter: blur(6px)
}

.modal.open {
  display: flex
}

.modal__box {
  width: min(420px, 100%);
  max-height: 92vh;
  overflow-y: auto;
  animation: pop .35s ease
}

@keyframes pop {
  from {
    opacity: 0;
    transform: translateY(24px) scale(.96)
  }

  to {
    opacity: 1;
    transform: none
  }
}

.modal__close {
  position: absolute;
  top: 8px;
  right: 10px;
  background: none;
  border: 0;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  color: var(--muted);
  z-index: 2
}

.modal__perks {
  display: flex;
  gap: .35rem;
  margin-bottom: .7rem;
  flex-wrap: wrap
}

.modal__perks span {
  flex: 1;
  min-width: 90px;
  text-align: center;
  background: #f3f7f5;
  border-radius: 8px;
  padding: .32rem;
  font-size: .66rem;
  font-weight: 600;
  color: var(--green)
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: .6s ease
}

.reveal.in {
  opacity: 1;
  transform: none
}

/* Legal pages */
.legal {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  margin: 22px auto;
  width: min(1000px, 100%)
}

.legal h1 {
  font-size: 1.9rem
}

.legal h2 {
  font-size: 1.15rem;
  margin-top: 1.4rem
}

.legal p,
.legal li {
  color: var(--muted);
  font-size: .88rem
}

/* Responsive */
@media (max-width:1024px) {
  .nav {
    display: none
  }

  .nav.open {
    display: flex;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: #fff;
    padding: 12px 18px;
    border-bottom: 1px solid var(--line)
  }

  .burger {
    display: flex
  }

  .header__phone {
    display: none
  }

  .layout {
    grid-template-columns: 1fr
  }

  .side-fixed {
    position: static
  }

  .aside {
    order: 2
  }
}

@media (min-width:1025px) {
  .aside {
    min-height: 100%
  }
}

@media (max-width:768px) {
  body {
    font-size: 14.5px
  }

  .hero__inner {
    padding: 44px 0 50px
  }

  .quick-desktop {
    display: none
  }

  .mobile-bar {
    display: grid;
    gap:15px;
  }

  .footer {
    padding-bottom: 64px
  }

  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }

  .section--alt {
    padding: 18px
  }

  .brand__logo {
    width: 138px;
    height: 42px
  }

  .header__cta .btn {
    padding: .68rem .8rem;
    font-size: .72rem
  }
}

@media (max-width:420px) {
  #overview{
        grid-auto-flow: row;
  }
  .fact {
    min-width: 100%
  }
  .hero__facts{
        display: grid;
        grid-auto-flow: column;
  }

  .hero__actions .btn {
    width: 100%
  }
}