
/*-----------------------------------*\
  #HERO
\*-----------------------------------*/
.hero-banner {display: none;}

.hero {
  position: relative;
  background-image: var(--gradient);
  color: var(--neutral-90);
  padding-block: 130px 60px;
  overflow: hidden;
  isolation: isolate;
}

.hero-title {color: var(--neutral-100);}

.hero-text {margin-block: 16px 32px;}

.hero .bg-pattern {
  position: absolute;
  top: 50%;
  min-height: 100%;
  min-width: 100%;
  right: 0;
  translate: 0 -50%;
  min-height: 100%;
  pointer-events: none;
  z-index: -2;
}



/*-----------------------------------*\
  #PROPERTY
\*-----------------------------------*/
.tabs-wrapper {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 5rem;
  align-items: center;
  justify-content: center;
  height: auto;
  width: 100%;
  cursor: pointer;
}

.tabs-wrapper .btn {
  margin: 1rem;
  align-items: center;
  justify-content: center;
  min-width: 20rem;
  max-width: fit-content;
}

.property-list {
  display: none;
}

.tabs-wrapper .btn.active {
  background-color: var(--primary-80);
  color: var(--neutral-100);
}

.property {padding-block-start: 60px;}

.property .section-text {
  margin-block: 8px 16px;
  color: var(--neutral-30);
}

.property-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}



/*-----------------------------------*\
  #MEDIA QUERIES
\*-----------------------------------*/

/* RESPONSIVE FOR LESSER  472PX SCREEN */
@media (max-width: 471px) {

  /* PROPERTY */
  .tabs-wrapper .btn {
    min-width: 100%;
    max-width: fit-content;
  }
 
}

/* RESPONSIVE FOR LARGER THAN 768PX SCREEN */
@media (min-width: 768px) {

   /* HERO */
   .hero {padding-block: 160px 100px;}

   /* PROPERTY */
   .property {padding-block-start: 80px;}

   .property .section-text {margin-block-end: 0;}
  
}



/* RESPONSIVE FOR LARGER THAN 992PX SCREEN */
@media (min-width: 992px) {

  /* HERO */
  .hero .container {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
  }

  .hero-content {grid-column: 1 / 7;}

  .hero-banner {
    display: block;
    position: absolute;
    bottom: 0;
    left: 40%;
    max-width: 720px;
    z-index: -1;
  }




  /* PROEPRTY */
  .property .section-text {max-width: 640px;}

}



/* RESPONSIVE FOR LARGER THAN 1440PX SCREEN */
@media (min-width: 1440px) {

 /* HERO */
 .hero .container {
  min-height: 580px;
  align-items: center;
}

.hero-content {grid-column: 1 / 6;}

.hero-banner {
  max-width: 820px;
  width: 100%;
  left: calc(50% - 108px);
}

}
