.wtfistbs {
  padding-left: 0px;
  padding-right: 0px;
  position: relative;
}

.wtfistbs--gravity {
  position: relative;
  pointer-events: all;
  top: 0px;
  overflow: hidden;
  bottom: 0px;
  height: calc(100vh - 45px);
}
.wtfistbs--gravity .container {
  position: relative;
  height: 100%;
  display: flex;
  align-items: flex-end;
}
.wtf-intro {
  max-width: 700px;
  padding: 0 2rem;
  padding-bottom: 80px;
  position: absolute;
  bottom: 0;
}
.wtfistbs--gravity span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
  height: 50px;
  background: white;
  border: 1px solid black;
  color: var(--texto);
  font-size: 1.25rem;
  line-height: 1.25rem;
  border-radius: 100px;
  opacity: 0.4;
}
.wtfistbs--gravity-item {
  position: absolute;
  user-select: none;
}
.wtfistbs--gravity h1 {
  font-size: 26px;
  line-height: 1.25;
/*  color: var(--primary);*/
  color: #fff;
  font-weight: normal;
  user-select: none;
  z-index: 1;
  position: relative;
  padding-top: 150px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 20px;
  text-align: left;
}
.wtfistbs--gravity-text {
  font-size: 22px;
  line-height: 1.25;
/*  color: var(--primary);*/
  color: white;
  font-weight: normal;
  user-select: none;
  z-index: 1;
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 20px;
  text-align: left;
}

/* Services Grid */
.wtfistbs--services {
/*  background: var(--primary);*/
background: #000;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 80px 30px;
  box-sizing: border-box;
}
.wtfistbs--services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  width: 100%;
}
.wtfistbs--services-item {
  color: white;
}
.wtfistbs--services-item h3 {
  margin: 0 0 0.25rem;
  font-size: 1.5rem;
  line-height: 1.3;
  font-weight: 600;
}
.wtfistbs--services-item p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.25;
  opacity: 0.85;
}

.wtfistbs--container {
  width: 100%;
  overflow: hidden;
  background: #ffffff;
  position: relative;
}
.wtfistbs--phrase {
  text-transform: uppercase;
  background: #ffffff;
  height: auto;
  position: relative;
  font-size: 190px;
  line-height: 190px;
  white-space: nowrap;
  font-weight: 700;
  -webkit-text-stroke: 2px;
  -webkit-text-stroke-color: var(--primary);
  color: transparent;
  left: 0;
}

.wtfistbs--reel {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 100vh;
  background: var(--primary);
}
.wtfistbs--reel iframe {
  aspect-ratio: 16 / 9;
  height: auto;
  width: 100%;
  max-width: 1200px;
  margin-bottom: 40px;
}

.wtfistbs--cards {
  position: relative;
  height: calc(100vh - 81px);
  width: 100%;
}
.wtfistbs--cards video {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wtfistbs--cards .card {
  position: absolute;
  width: 350px;
  background: var(--primary);
  color: white;
  padding: 70px 40px 40px;
  cursor: grab;
}
/* .wtfistbs--cards .card:not(.img) {
    box-shadow: 0px 0px 0px 10px rgba(0,0,0,0.1);
} */
.wtfistbs--cards .card p {
  font-size: 30px;
  line-height: 30px;
  margin: 0px 0 20px;
}
.wtfistbs--cards .card span:last-child {
  font-size: 24px;
  line-height: 24px;
  display: block;
  text-align: right;
}
.wtfistbs--cards .card.img {
  position: absolute;
  width: 300px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: white;
  padding: 0px;
  cursor: grab;
}
.wtfistbs--cards .card .close-btn {
  width: 40px;
  height: 40px;
  background: url("../img/close-white.svg") no-repeat center center;
  background-size: contain;
  transform: rotate(-45deg);
  position: absolute;
  top: 20px;
  right: 20px;
}
.wtfistbs--cards .card.img .close-btn {
  display: none;
}

@media (max-width: 1200px) {
  .wtfistbs--gravity span {
    padding: 0 24px;
    height: 40px;
    font-size: 1rem;
    line-height: 1.15rem;
    border-radius: 100px;
  }
}

@media (max-width: 992px) {
   .wtfistbs--gravity .container {
  	display: flex;
    flex-direction: column;
    justify-content: center;
	height: 100%;
  }
  span.wtfistbs--gravity-item {
    display: none;
  }
  .wtfistbs--gravity h1 {
    font-size: 28px;
    line-height: 28px;
  }
  .wtfistbs--gravity-text {
    font-size: 28px;
    line-height: 28px;
  }
  .wtfistbs--services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .wtfistbs--gravity::after {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background: rgba(255, 255, 255, 0.5);
  }
}

@media (max-width: 768px) {
  .wtfistbs > div:first-child {
    height: calc(100svh - 100px) !important;
  }
  .wtfistbs--gravity h1 {
    font-size: 20px;
    line-height: 1,25;
    padding-top: 120px;
    margin-bottom: 20px;
  }
  .wtfistbs--gravity-text {
    font-size: 24px;
    line-height: 24px;
    margin-bottom: 15px;
  }
  .wtfistbs--services-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .wtfistbs--services {
    padding: 60px 20px;
  }
}

@media (max-width: 480px) {
  .wtfistbs--gravity h1 {
    font-size: 18px;
    line-height: 18px;
  }
  .wtfistbs--gravity-text {
    font-size: 18px;
    line-height: 18px;
  }
}

@media (max-width: 320px) {
  .wtfistbs--gravity h1 {
    font-size: 16px;
    line-height: 16px;
  }
  .wtfistbs--gravity-text {
    font-size: 16px;
    line-height: 16px;
  }
}
