* {
  box-sizing: border-box;
  user-select: none;
}

a {
  color: #fff;
  text-decoration: none;
}

body {
  margin: 0;
  padding: 0;
  height: 100vh;
  color: white;
  background: black;
  font-family: "Sofia Pro";
  text-transform: uppercase;
}

h2 {
  font-size: clamp(1rem, 5vw, 5rem);
  font-weight: 400;
  text-align: center;
  letter-spacing: 0.1em;
  margin-right: -0.5em;
  color: #ffffff;
  width: 90vw;
  max-width: 1200px;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /*padding: 0 5%;*/
  width: 100%;
  
  height: 7em;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(0.66rem, 2vw, 1rem);
  letter-spacing: 0.5em;
}
  /*
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  width: 100%;
  
  height: 7em;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(0.66rem, 2vw, 1rem);
  letter-spacing: 0.5em;
}*/

section {
  height: 100%;
  width: 100%;
  top: 0;
  position: fixed;
  visibility: hidden;
}
section .outer,
section .inner {
  width: 100%;
  height: 100%;
  overflow-y: hidden;
}
section .bg {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  background-size: cover;
  background-position: center;
}
section .bg h2 {
  z-index: 2;
}
.desliza{
  width: 100%;
  height: 90%;
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  font-family: 'Sofia Pro Light';
  z-index: -1;
  color: #bdbdbd;
}
.desliza-text::after{
  content: url(/imgs/SVG/arrow_down.svg);
  position: absolute;
  left: 49.5%;
  top: 100%;
  width: 1vw;
  -webkit-animation: ani-mouse 2.5s linear infinite;
  -moz-animation: ani-mouse 2.5s linear infinite;
  animation: ani-mouse 1.5s linear infinite;
  
}
@keyframes ani-mouse {
  0% {
      -webkit-transform: translateY(0);
      transform: translateY(0);
      opacity: 1;
  }
  100% {
      -webkit-transform: translateY(4vh);
      transform: translateY(4vh);
      opacity: .0;
  }
}
section .bg .clip-text {
  overflow: hidden;
}

.first .bg {
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%), url(/imgs/render_capital_center_1.JPG);
}

.second .bg {
  background-color: #ffffff;
  /*background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%),url(/imgs/5.jpg);*/
  color: #000;
}
.second .bg h2{
  color: #000;
}
.second .bg h3{
  color: #8b8b8b;
}

.third .bg {
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%), url(/imgs/render-capitalcenter.JPG);
}

.fourth .bg {
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%), url(/imgs/PLAZA\ BQ\ \(3\).JPG);
}


h2 * {
  will-change: transform;
}