/* -------------------------------- 
----
---- HOME STYLES
----
-------------------------------- */
 

.section-home {
  --secHeight: 100vh;
  --color:var(--wp--preset--color--light);
  overflow: clip;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  height: var(--secHeight);
  padding-bottom: var(--wp--preset--spacing--xxl);
}

 

.fullscreen {
  position: absolute;
  top:0;
  height: var(--secHeight);
  width:  100%;
  background-color: var(--wp--preset--color--verde);
  background-color: #212121;
}

.fullscreen video,
.fullscreen img {
  position: sticky;
  position: absolute;
  inset:0;
  object-fit: cover;
  height: var(--secHeight);
  width:  100%;
/*  -webkit-mask: linear-gradient(180deg, black 50%, transparent 100%);*/
  filter:brightness(.75);
}  


.points-grid {
  --gridSize:200px;
  --imgSize:48px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(var(--gridSize), 100%), 1fr));
  gap:var(--gap);
  margin-top:    var(--wp--preset--spacing--xl);
  margin-bottom: var(--wp--preset--spacing--xxl);
}

.card-points img {
  display: block;
  height: var(--imgSize);
  width: auto;
}



 
 