/* Primera fuente */
@font-face {
  font-family: 'Fuente1';
  src: url('../font/NeueMachina-Light.woff2') format('opentype'),
  url('../font//NeueMachina-Regular.otf') format('opentype'),
  url('../font/NeueMachina-Ultrabold.otf') format('opentype');
}

/* Segunda fuente */
@font-face {
  font-family: 'Fuente2';
  src: url('../font/PPTelegraf-Regular.otf') format('opentype'),
  url('../font/PPTelegraf-UltraBold.otf') format('opentype'),
  url('../font/PPTelegraf-UltraLight.otf') format('opentype');
}

*{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body{
  background-color:#dbdbdb;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.mainIn {
  background-color: transparent;
  width: 200vh;
  height: 95vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contInd{
  text-align: center;
}

.tit h1{
  font-family: 'Fuente1', sans-serif;
  font-size: 90px;
}

.subTit p{
  font-family: 'Fuente2', sans-serif;
}

.subTit{
  text-align: right;
}

.cta {
  position: relative;
  margin: auto;
  margin-top: 30px;
  padding: 12px 18px;
  transition: all 0.2s ease;
  border: none;
  background: none;
  cursor: pointer;
}

.cta:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  border-radius: 50px;
  background: #b0b0b0;
  width: 45px;
  height: 45px;
  transition: all 0.3s ease;
}

.cta span {
  position: relative;
  font-family: "Fuente2", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #000;
}

.cta svg {
  position: relative;
  top: 0;
  margin-left: 10px;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke: #000;
  stroke-width: 2;
  transform: translateX(-5px);
  transition: all 0.3s ease;
}

.cta:hover:before {
  width: 100%;
  background: #b0b0b0;
  backdrop-filter: brul(20px  );
}

.cta:hover svg {
  transform: translateX(0);
}

.cta:active {
  transform: scale(0.95);
}
