@import url("https://fonts.googleapis.com/css2?family=Nunito&family=Roboto+Slab:wght@900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Cedarville+Cursive&family=Kdam+Thmor+Pro&family=Roboto:wght@100;500;900&display=swap');


 @import url('https://fonts.googleapis.com/css2?family=Kdam+Thmor+Pro&display=swap');
 /* Importaciones de fuentes */
 

 @import url('https://fonts.googleapis.com/css2?family=Cedarville+Cursive&family=Kdam+Thmor+Pro&family=Roboto:wght@100;500;900&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Roboto", sans-serif;
   background: #000529;
}

/* Estilo para la primera sección con el video */
.video-section {
  position: relative;
  height: 100vh;
  overflow: hidden; /* Evita que el contenido posterior se superponga sobre el video */
}

 



#videoBkg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}


 

.text-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  text-align: left;
  color: white;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.7); /* Fondo semitransparente */
}

.text-only {
  flex: 1; /* Para ocupar el espacio restante */
  background-color: #ffffff; /* Color de fondo para el div de texto */
 }

.text-only h2 {
  font-size: 24px;
  margin-top: 0;
}

.hero-section {
  position: absolute;
  top: 50%;
  left: 15%;
  transform: translate(-50%, -50%);
  z-index: 10;
  text-align: left; /* Alinea el texto a la izquierda */
  color: white;
  margin-left: 10%;
}

 

 

 

/* Resto del CSS alineado a la izquierda */
.hero-section > * {
  transform: translateY(80px);
  opacity: 0;
  animation: fadeUp 3s ease-out forwards;
}

/* Estilo para cada <h1> en la primera sección */
.hero-section h1 {
  font-size: 4rem;
  transform: translateY(80px);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease; /* Transiciones suaves */
}

.hero-section h1:nth-child(2) {
  animation-delay: 0.2s;
}

.hero-section h1:nth-child(3) {
  animation-delay: 0.5s;
}

.hero-section h1:nth-child(4) {
  animation-delay: 0.8s;
}

.hero-section h1:nth-child(5) {
  animation-delay: 0.12s;
}
.hero-section p {
  font-size: 1.2rem;
  margin: 2em 0;
  line-height: 30px;
}

.hero-section p strong {
  color: var(--blue);
}

.hero-section button {
  border: 2px solid var(--primary);
  padding: 1em 1.2em;
  outline: none;
  background-color: transparent;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background-color 0.3s;
  color: white;
}

.hero-section button:hover {
  background-color: var(--blue);
  color: #ffffff;
  border: 2px solid var(--blue);
}

/* Estilo para la segunda sección debajo del video */
.content-section {
  padding: 0em; /* Espaciado para el contenido en la segunda sección */
  color: white;
}

.menu-section {
  position: fixed;
  width: 34%;
  top: 5%;
  left: 5%; /* Cambia la posición izquierda para alinear a la izquierda */
  z-index: 20;
  padding: 1em;
  display: flex;
  flex-direction: column; /* Cambia la dirección a columna para alinear elementos verticalmente */
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.menu-section li {
  margin-top: 20px; /* Cambia el margen superior para separar elementos verticalmente */
  cursor: pointer;
  transition: color 0.3s;
}

.menu-section li:hover {
  color: var(--blue);
}

.menu-section p {
  color: var(--blue);
}

.menu-section p span {
  color: var(--primary);
}

/* MEDIA QUERIES para video de fondo */
@media (min-aspect-ratio: 16/9) {
  #videoBkg {
    width: 100%;
    height: auto;
  }
}

@media (max-aspect-ratio: 16/9) {
  #videoBkg {
    width: auto;
    height: 100%;
  }
}

@keyframes fadeUp {
  0% {
    transform: translateY(80px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
#player-container {
  width: 100%;
  max-width: 100%;

  top: 50%;
  left: 50%;
  padding-top: 10%;
  margin-top: 10%;
   
}
#player-overlay {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2;
  cursor: default;
  transition: 0.3s;
  opacity: 0;
}
#player-overlay.visible {
  opacity: 1;
  cursor: pointer;
}

#player {
  width: 500px;
  height: 300px;
  will-change: width;
  box-shadow: 0 0 30px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), width 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), height 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 3;
  background: #fff;
  cursor: pointer;
  margin-top: 10%;
  margin-left: 50%;
}
#player #close {
  font-size: 40px;
  color: #000529;
  display: none;
  position: absolute;
  top: 20px;
  right: 35px;
  transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
#player #close::after {
  content: "";
  width: 50px;
  height: 50px;
  background: #f4f4f4;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(-30%) scale(0);
  z-index: -1;
  border-radius: 50%;
  transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
#player #close:hover {
  transform: scale(0.9);
}
#player #close:hover::after {
  transform: translateX(-30%) scale(1);
}
#player svg {
  width: 15%;
  z-index: -1;
}
#player svg .st0 {
  fill: #000529;
  box-shadow: 0 0 30px 10px rgba(0, 0, 0, 0.05);
}
#player svg .st1 {
  fill: #fff;
}
#player iframe {
  opacity: 0;
  transition: 0.4s 0s;
  position: absolute;
  pointer-events: none;
}
#player.opened {
  width: 850px;
  height: 500px;
}
#player.opened #close {
  display: block;
}
#player.opened svg {
  display: none;
}
#player.opened iframe {
  opacity: 1;
  transition: 0.2s 0.2s;
  pointer-events: all;
}

.video-text-1 {
  color:#000529; font-size: 5em; padding-top: 10%; text-align: center;
  font-weight: 900;
}

.video-text-2 {
  color:black; font-size: 2.5em; text-align: center;
  font-weight: 300;
 }
 .video-text-2 strong {
  color:black; font-size: 0.7em; text-align: center;
  font-weight:100;
 }


 .brands-container {
  width: 100%;
  max-width: 100%;
  background-color: #dadada14; 
  left: 50%;
   
}

.hero-strip-wrapper {
  .load-up;
  .text-align-center;
  padding: 4.4vh 10%;
  background: #eee;
  border-bottom: 1px solid #ddd;
  text-align: center;
  h3 {
      .inline-element;
      .black-color-font;
      .normal-font-weight;
      .medium-font-size;
      .no-margin;
      vertical-align: middle;
      margin-right: 2rem;
  }
}

.hero-strip-wrapper h2{
  font-size: 5em;
  font-weight: 900;
}

.btn {
  .transition;
  .inline-element;
  .white-color-font;
  .open-sans-font;
  .semibold-font-weight;
  outline: none;
  margin-top:3%;
  border: none;
  padding: .8rem 1.6rem;
  border-radius: 25%;
  text-transform: uppercase;
  background-image: linear-gradient(to right, #fff 32%, #fff 100%);
  vertical-align: middle;
  cursor: pointer;
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  
  box-shadow: 0 0 1rem -0.07rem transparent;
  &:hover {
      transform: scale(1.05);
      -webkit-transform: scale(1.05);
      -moz-transform: scale(1.05);
      -ms-transform: scale(1.05);
      -o-transform: scale(1.05);
      box-shadow: 0 0 1rem -0.07rem #9a9a9a;
  }
}







/* Estilo para el contenedor del fondo */
.hero-strip-wrapper {
  position: relative;
  width: 100%;
  height: 40vh;
  overflow: hidden;
 }
 

/* Estilo para el fondo degradado animado */
#animated-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #2e057b, #000529, #030364, #091534);
  background-size: 300% 300%;
  animation: gradientAnimation 10s ease infinite;
}
/* Estilo para el contenido */ 
.content-c2a {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff; /* Color del texto */
  padding: 20px;
}

/* Animación del fondo degradado */
@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.white-bg{
  background-color: white;
}


.gradient-h1 {
  background: linear-gradient(30deg, #2e057b, #091534, #091534);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradient 5s linear infinite;
  font-weight: 900;
  font-family: 'Kdam Thmor Pro', sans-serif;
}

@keyframes gradient {
  0% {
    background-position: 100%;
  }
  100% {
    background-position: -100%;
  }
}

.dna {
  max-width: 20%;
  width: 20%;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  
}
 

/* Aplicar filtro de escala de grises al elemento con la clase "imagen" */
.imagen-bn {
  filter: grayscale(100%); /* 100% para convertir completamente a blanco y negro */
}

.div-50 {
  flex: 1;
  background-image: url('img/fantasy_island.png');
  background-size: cover; /* Ajusta la imagen para que cubra el div */
  background-repeat: no-repeat; /* Evita la repetición de la imagen */
  background-position: center; /* Centra la imagen */
  height: 400px; /* Altura de los divs, ajusta según tu necesidad */
}

.div-25 {
  flex: 0 0 25%; /* 25% de ancho */
  background-image: url('img/tempoland.png');
  background-size: cover; /* Ajusta la imagen para que cubra el div */
  background-repeat: no-repeat; /* Evita la repetición de la imagen */
  background-position: center; /* Centra la imagen */
  height: 400px; /* Altura de los divs, ajusta según tu necesidad */
}

.div-25:last-child {
  background-image: url('img/cna_3.png');
  background-size: cover; /* Ajusta la imagen para que cubra el div */
  background-repeat: no-repeat; /* Evita la repetición de la imagen */
  background-position: center; /* Centra la imagen */
  height: 400px; /* Altura de los divs, ajusta según tu necesidad */
}


.cont-div {
  display: flex;
  width: 100%;
  padding-bottom: 5%;
}



.div {
  flex: 1;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  overflow: hidden; /* Oculta el ::before fuera del div */
}

/* Estilos para el ::before en todos los divs */
.div::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(15px); /* Agrega el efecto de desenfoque */
  background: linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)); /* Fondo de degradado transparente */
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  opacity: 0; /* Inicialmente transparente */
  transition: opacity 0.3s ease; /* Agrega transición de opacidad */
}

/* Estilos para el div 1 */
.div-1::before {
  content: "eCommerce";
  font-size: 3em;
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  white-space: pre;
}

.div-1::before .second-line {
  font-size: 1.5em; /* Estilo diferente para la segunda línea */
  font-weight: 400;
 }


 .div-2::before {
  content: "Blockchain";
  font-size: 3em;
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  white-space: pre;
}

.div-2::before .second-line {
  font-size: 1.5em; /* Estilo diferente para la segunda línea */
  font-weight: 400;
 }

 .div-3::before {
  content: "Portal";
  font-size: 3em;
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  white-space: pre;
}

.div-3::before .second-line {
  font-size: 1.5em; /* Estilo diferente para la segunda línea */
  font-weight: 400;
 }


/* Mostrar el ::before al pasar el puntero */
.div:hover::before {
  opacity: 1; /* Hace visible el ::before */
}


.latest-label {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #ff6a00; /* Color de fondo del etiqueta */
  color: #fff; /* Color de texto del etiqueta */
  font-size: 1em; /* Tamaño de fuente */
  font-weight: bold; /* Peso de fuente */
  padding: 0.2em 0.5em; /* Espaciado interno del etiqueta */
  transform: rotate(-5deg); /* Inclinación de -45 grados */
  transform-origin: top left; /* Punto de origen de la inclinación */
}

.pin {
  position: fixed;
  top: 0%;
  left: 90%;
  width: 10%;
  height: 28vh;
  box-sizing: border-box;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.80); /* Fondo blanco con opacidad */
  box-shadow: 0 1rem 5rem -2rem rgba(0, 0, 0, 0.5);
  transition: transform 200ms linear;
  backdrop-filter: blur(5px); /* Aplica el efecto de vidrio desenfocado */
  z-index: 999999999;
}


.pin p {
  font-size: 3vmin;
  font-family: "Roboto", sans-serif;
  line-height: 1.25;
  font-weight: 600;
  color: black;
  position: relative;
  top: 50%;
  transform: translatey(-50%);
}

.pin a {
  /* Estilos para los enlaces */
  text-decoration: none !important; /* Elimina la decoración de los enlaces */
  color: black !important; /* Color negro para los enlaces */
  transition: transform 0.2s ease-in-out; /* Agrega una transición suave al efecto de zoom */
}

/* Estilo para el hover (mouse sobre el enlace) */
.pin a:hover {
  transform: scale(1.2) !important; /* Zoom leve al pasar el mouse */
}




.negativo {
  filter: invert(100%);
  filter: grayscale(100%);
}


.cont-div-2 {
  display: flex;
  width: 100%;
  padding-bottom: 5%;
  margin-top:10%;
}


.div-50-2 {
  flex: 1;
  background-image: url('img/nft-sr.jpg');
  background-size: cover; /* Ajusta la imagen para que cubra el div */
  background-repeat: no-repeat; /* Evita la repetición de la imagen */
  background-position: center; /* Centra la imagen */
  height: 600px; /* Altura de los divs, ajusta según tu necesidad */
}

.div-50-3 {
  flex: 0 0 50%; /* 25% de ancho */
   background-size: cover; /* Ajusta la imagen para que cubra el div */
  background-repeat: no-repeat; /* Evita la repetición de la imagen */
  background-position: center; /* Centra la imagen */
  height: 600px; /* Altura de los divs, ajusta según tu necesidad */
  height: 600px;}


.div-50-3 h2 {

  color:#000529;
  font-size: 5em;
  font-weight: 900;
  display: flex;
  

}

.nft-txt {

  justify-content: center; /* Centrar horizontalmente */
  align-items: center; /* Centrar verticalmente */
  margin-top:10%;
  padding-left: 5%;
  padding-right: 5%;
}


.div-50-3 h3 {

  color:#000529;
  font-size: 3em;
  font-weight: 300;
  display: flex;
  padding-left: 5%;
  padding-right: 5%;
  

}

/*..................*/

#footer {
    bottom:0;
   margin-bottom: 1.5em;
  color: #fff;
  padding: 0 50px 0;
  width:100%;
  
  

}
#footer small {
    font-size: 16px;
  padding-right:50px;
  font-weight:600;
}
#footer small-2 {
    font-size: 16px;
  padding-right:50px;
  font-weight:700;
}

#footer img {
  width:14%;
    height:auto;
}


.text-right {
    text-align: right !important;
}
.text-left {
    text-align: left !important;
}
.text-center {
    text-align: center !important;
}


/*............Social..........*/

.social-icons {
  position: absolute;
  z-index: 999;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .social-icons {
  left: 3.5rem;
    bottom:2rem;
 }
}
.social-icons ul {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}
.social-icons ul li {
  position: relative;
  display: block;
  padding: 1rem 0;
   animation-name: fadeInUp;
    animation-fill-mode: both;
    animation-duration: 1.5s;
    animation-delay: 1.5s;
  height:100%;
  opacity:1;
}
.social-icons ul a {
  display: block;
  width: 2rem;
  height: 2rem;
}
.social-icons ul a  {
  color: #F95F51;
  display: block;
  width: 100%;
  height: 100%;
}
.mc {
position: absolute;
    bottom: 0;
    right: 0;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    z-index: 3;
}

.mc a {
  color: #131530;
  text-decoration: none;

  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}
.mc a:hover {
  color: #f95f51;
  text-decoration: none;
}
.footer-social a {
  margin-right: 40px;
  display: inline-block;
  margin-top: 4px;
      height: 26px;
    font-size: 18px;
  
}

 
/* Estilos para la etiqueta pegajosa */
.sticky-label {
  position: sticky;
  top: 0;
  padding: 10px;
  text-align: center;
  z-index: 999999998;
  backdrop-filter: blur(10px); /* Ajusta el valor para controlar el nivel de desenfoque */
  background-color: rgba(255, 255, 255, 0.3); /* Fondo semitransparente */
}

.fat {
  font-weight: 900;
}


.video-section-2 {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  width: 100%;
  max-width: 100%;
  height: 100vh;
  
}

.video-container {
  flex: 1;
  position: relative;
  width: 100%;
}

#videoBkg-2 {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

 

.text-only {
  padding-top: 3em;
  flex: 1;
  background-color: #fff;
  color:#000529;
  font-weight: 100;
  position: relative;
  top: 50%;
  transform: translateY(-25%);

   
}

.text-only h2 {
  font-size: 3em;
  font-weight: 900;
  margin-top: 0;
  color:#000529;
}


.hero-section-2 {
  position: absolute;
  top: 50%;
  left: 40%;
   transform: translate(-50%, -50%);
  z-index: 10;
  text-align: left; /* Alinea el texto a la izquierda */
  color: #ffffff;
 
}



/* Resto del CSS alineado a la izquierda */
.hero-section-2 > * {
  transform: translateY(80px);
  opacity: 0;
  animation: fadeUp 3s ease-out forwards;
}

/* Estilo para cada <h1> en la primera sección */
.hero-section-2 h1 {
  font-size: 4rem;
  transform: translateY(80px);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease; /* Transiciones suaves */
}

.hero-section-2 h1:nth-child(2) {
  animation-delay: 0.2s;
}

.hero-section-2 h1:nth-child(3) {
  animation-delay: 0.5s;
}

.hero-section-2 h1:nth-child(4) {
  animation-delay: 0.8s;
}

.hero-section-2 h1:nth-child(5) {
  animation-delay: 0.12s;
}
.hero-section-2 p {
  font-size: 1.2rem;
  margin: 2em 0;
  line-height: 30px;
}

.hero-section-2 p strong {
  color: var(--blue);
}

.half-space {

  width: 70%;
  padding-left: 5%;
}

.hello{
  font-size: 2rem;
  font-weight: 100;
}


:root {
   --loader-color: #bbc1e9;
  --back-color: #000529;
  --time: 20s;
  --size: 3px;
}

.loader {
 	overflow: hidden;
  width: 100%;
  height: 100%;
   top: 0; left: 0;
  display: flex;
  align-items: center;
  align-content: center; 
  justify-content: flex-start;  
	z-index: 100000;
  padding-top: 1em;
  padding-bottom: 1em;
}

.loader__element {
	height: var(--size);
	width: 100%;
	background: var(--back-color);

}

.loader__element:before {
	content: '';
	display: block;
	background-color: var(--loader-color);
	height: var(--size);
	width: 0;
  animation: getWidth var(--time) ease-in infinite;
}

@keyframes getWidth {
	100% { width: 100%; }
}


.div-50-wwd {
  flex: 1;
  background-image: url('img/us.jpg');
  background-size: cover; /* Ajusta la imagen para que cubra el div */
  background-repeat: no-repeat; /* Evita la repetición de la imagen */
  background-position: center; /* Centra la imagen */
  height: 600px; /* Altura de los divs, ajusta según tu necesidad */
}


.cont-div-3 {
  display: flex;
  width: 100%;
  padding-bottom: 5%;
}





.player-about {
  width: 80%;
    margin: auto;
   
  .video-about {
    width: 100%;
     z-index: 1;
     overflow: hidden;
     
  }
  
}



.column-container {
  display: flex;
  justify-content: space-between;
  max-width: 80%; /* Ancho máximo del 80% de la pantalla */
  margin: 0 auto; /* Centra el contenedor horizontalmente */
}


.column-container h4 {
 padding-top: 5%;
 padding-bottom: 5%;
}

.column {
  flex: 1;
  padding: 10px;
  text-align: center;
  font-weight: 100;
  color: #000529;
}

 


.div-50-service {
  flex: 1;
  background-image: url('img/wwd.jpg');
  background-size: cover; /* Ajusta la imagen para que cubra el div */
  background-repeat: no-repeat; /* Evita la repetición de la imagen */
  background-position: center; /* Centra la imagen */
  height: 600px; /* Altura de los divs, ajusta según tu necesidad */
  
}


.cont-div-service {
  display: flex;
  width: 100%;
  padding-bottom: 5%;
}


 



.column-section {
  text-align: center; /* Alinea el contenido en el centro horizontalmente */
  max-width: 80%;
  margin: 0 auto; /* Centra todo el bloque horizontalmente */
}

.column-section h1{
  font-weight: 300;
}

.column-top {
  margin-bottom: 20px; /* Espacio entre el div superior y el inferior */
}

.column-bottom {
  text-align: center; /* Alinea el texto a la izquierda */
}


.cont-div-service {
  display: flex;
  align-items: center; /* Centra verticalmente el contenido */
  max-width: 100%;
  margin: 0 auto; /* Centra horizontalmente el contenido */
  height: 800px;
}

.div-50-3 {
  width: 50%;
  text-align: right; /* Alinea el texto a la izquierda */
  padding: 20px; /* Agrega espaciado alrededor del texto */
  background-color: rgba(255, 255, 255, 0.7); /* Fondo semitransparente para el texto */
}


.div-50-3-left {
  width: 50%;
  text-align: left; /* Alinea el texto a la izquierda */
  padding: 20px; /* Agrega espaciado alrededor del texto */
  background-color: rgba(255, 255, 255, 0.7); /* Fondo semitransparente para el texto */
}

.nft-txt {
  color: #333; /* Color del texto */
}

.div-50-service {
  width: 50%;
  height: 100%; /* Altura de la imagen de fondo */
  /* Los estilos de la imagen de fondo se aplican inline en el HTML */
}



.text-only-2 {
  padding-top: 3em;
  flex: 1;
  background-color: #fff;
  color:#000529;
  font-weight: 100;
  position: relative;
   transform: translateY(-25%);
   top:100px;
   margin-top:25%;

   
}

.div-50-talk {
  flex: 1;
  background-image: url('img/talk.jpg');
  background-size: cover; /* Ajusta la imagen para que cubra el div */
  background-repeat: no-repeat; /* Evita la repetición de la imagen */
  background-position: center; /* Centra la imagen */
  height: 600px; /* Altura de los divs, ajusta según tu necesidad */
  
}



.hero-section-mobile {
  position: absolute;
  top: 50%;
   transform: translate(-50%, -50%);
  z-index: 10;
  text-align: left; /* Alinea el texto a la izquierda */
  color: white;
 }


 .video-section-mobile {
  position: relative;
  height: 100vh;
  overflow: hidden; /* Evita que el contenido posterior se superponga sobre el video */
}

 



#videoBkg-mobile {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}





.video-2 {
  flex: 1;
  background-color: #000;
  background-image: url('img/im.png');
  background-size: cover; /* Ajusta la imagen para que cubra el div */
  background-repeat: no-repeat; /* Evita la repetición de la imagen */
  background-position: center; /* Centra la imagen */
  height: 80%; /* Altura de los divs, ajusta según tu necesidad */
   
}

#target-content #target-inner {
  position: absolute;
  display: block;
  padding: 48px;
  line-height: 1.8;
  top: 50%;
  left: 50%;
  background-color: white;
  width:1200px;
  transform: translateX(-50%) translateY(-50%);
  color: #000529;
}

#target-content {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 200ms;
    z-index: 999999999999999999999999999;
}
#target-content:target {
  pointer-events: all;
  opacity: 1;
}
#target-content #target-inner {
  position: absolute;
  display: block;
  padding: 48px;
  line-height: 1.8;
   top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
    color: #000529;
}
#target-content #target-inner h2 {
  margin-top: 0;
}
#target-content #target-inner code {
  font-weight: bold;
}
#target-content a.close {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 5, 41, 0.5); /* Cambiamos el color y ajustamos la opacidad */
  opacity: 1; /* Cambiamos la opacidad */
  transition: opacity 100ms;
  backdrop-filter: blur(10px); /* Aplicamos el desenfoque */
 }

 
#target-content a.close:hover {
  background-color: rgba(0, 5, 41, 0.5); /* Cambiamos el color y ajustamos la opacidad */
  opacity: 1; /* Cambiamos la opacidad */
  transition: opacity 100ms;
 
  backdrop-filter: blur(10px); /* Aplicamos el desenfoque */
}

  /* Estilos generales para el formulario */
  form {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
    background-color: #ffffff;
 }

/* Estilo para los campos de entrada de texto */
input[type="text"],
input[type="email"],
select,
textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 3px;
    font-size: 16px;
}

/* Estilo para las etiquetas de los campos */
label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

/* Estilo para el botón de enviar */
button[type="submit"] {
    background-color: #007BFF;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 3px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

button[type="submit"]:hover {
    background-color: #0056b3;
}

/* Estilo para los mensajes de error */
.error-message {
    color: #ff0000;
    font-size: 14px;
}

/* Estilo para el mensaje de éxito */
.success-message {
    color: #4caf50;
    font-size: 16px;
    margin-top: 10px;
    display: none;
}

/* Estilos para el div izquierdo con la imagen */
.left-div {
  width: 30%; /* Ajusta el ancho según tus preferencias */
  float: left;
}

.left-div img {
  max-width: 100%;
  height: auto;
}

/* Estilos para el div derecho con el contenido del formulario */
.right-div {
  width: 70%; /* Ajusta el ancho según tus preferencias */
  float: left;
  padding: 20px;
  margin-top: 20px;
  padding-bottom: 20px;

}
