@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');
*
{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}



header
{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 40px 100px;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .logo
{
  color: rgb(0, 0, 0);
  text-transform: uppercase;
  cursor: pointer;
}
.toggle
{
  position: relative;
  width: 60px;
  height: 60px;
  transition: all ease 1s;
  background: url(https://cdn-icons-png.flaticon.com/512/6499/6499731.png);
  background-repeat: no-repeat;
  background-size: 50px;
  background-position: center;
  cursor: pointer;
}
.toggle.active
{
  background: url(https://static-00.iconduck.com/assets.00/x-close-icon-512x509-8xgordid.png);
  background-repeat: no-repeat;
  background-size: 35px;
  background-position: center;
  cursor: pointer;
  top: 0;
  transition: all ease 1s;
}
.showcase
{
  position: absolute;
  right: 0;
  width: 100%;
  min-height: 100vh;
  padding: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #111;
  transition: 0.5s;
  z-index: 2;
}
.case
{
  position:static;
  right: 0;
  width: 100%;
  min-height: 100vh;
  padding: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgb(255, 255, 255);
  transition: 0.5s;
  z-index: 2;
}
.showcase.active
{
  right: 300px;
}

.showcase video
{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}
.overlay
{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/7EBF9A09-6B07-4676-A29F-844DF046E15E.jpg);
  background-size: cover;
}

.text
{
  position: relative;
  z-index: 10;
}

.text h2
{
  font-size: 5em;
  font-weight: 800;
  color: #fff;
  line-height: 1em;
  text-transform: uppercase;
}
.text h3
{
  font-size: 4em;
  font-weight: 700;
  color: #fff;
  line-height: 1em;
  text-transform: uppercase;
}
.text p
{
  font-size: 1.1em;
  color: #fff;
  margin: 20px 0;
  font-weight: 400;
  max-width: 700px;
  text-shadow: 4px 4px #101010;
}
.text a
{
  display: inline-block;
  font-size: 1em;
  background: #fff;
  padding: 10px 30px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  margin-top: 10px;
  color: #111;
  letter-spacing: 2px;
  transition: 0.2s;
}
.text a:hover
{
  letter-spacing: 6px;
}
.social
{
  position: absolute;
  z-index: 10;
  bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.social li
{
  list-style: none;
}
.social li a
{
  display: inline-block;
  margin-right: 20px;
  filter: invert(1);
  transform: scale(0.5);
  transition: 0.5s;
}
.social li a:hover
{

  transform: scale(0.5) translateY(-15px);
}


.social .bi{
  width: 6em;
  height: auto;
  color: #000000;
  transition: 0.5s;
}

.social .bi:hover{
  color: hsl(38, 97%, 39%);
}

.menu
{
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.menu ul
{
  position: relative;
}
.menu ul li
{
  list-style: none;
}
.menu ul li a
{
  transition: 0.5s;
  text-decoration: none;
  font-size: 24px;
  color: #111;
}
.menu ul li a:hover
{
  color: #4d2e2e; 
  
}

/* Underline styles */
.menu a {
  display: block;
  position: relative;
 
}

/* Fade in */
.menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.1em;
  background: rgb(255,164,164);
  background: linear-gradient(90deg, rgba(255,164,164,1) 0%, rgba(24,150,172,1) 100%);
  
  opacity: 0;
  transition: opacity 900ms, transform 900ms;
}

/* Slide in */
.menu a {
  overflow: hidden;
}

.menu a::after {
  opacity: 1;
  transform: translate3d(-100%, 0, 0);
}

.menu a:hover::after,
.menu a:focus::after{
  transform: translate3d(0, 0, 0);
}






.bg-real{
  background-color: rgb(0, 52, 121); 
  transition: all 0.3s ease;
  color: white;
  
} 
  
.navbar img{
  width: 50px;
  height: auto;
  margin-left: 20px;
}


.navbar{
  transition: all 0.3s ease;
  background-color: #ffffff; 
  animation: navbar 6s;
}

.navbar a{
  color: rgb(92, 92, 92);
}

.navbar a:hover{
  color: rgb(168, 82, 82);
}



@keyframes navbar {
    from{
      top: -100%; 
    }
    to{
      top: 0;
    }
}



.bg-transparente{
  background-color: transparent;
  bottom: 110%;
  transition: all 0.3s ease;
  
}

.btn1{
  padding: 410px;
  font-size: 20px;
  color: #000000;
  background-color: rgb(255, 122, 122);
}













@media(max-width: 980px){
  .text
{
  position: relative;
  z-index: 10;
}

.text h2
{
  font-size: 6em;
  font-weight: 800;
  color: rgb(255, 255, 255);
  
}
.text h3
{
  font-size: 4em;
  font-weight: 700;
  color: rgb(255, 255, 255);
  
}
.text p
{
  font-size: 2.7em;
  color: rgb(255, 255, 255);
  text-shadow: 5px 5px #111;
  
}

.text a
{
  font-size: 2.7em;
  padding: 25px;
  
}

.text-v2
{
  position: relative;
  z-index: 10;
}

.text-v2 h2
{
  font-size: 6em;
  font-weight: 800;
  color: rgb(0, 0, 0);
  
}
.text-v2 h3
{
  font-size: 4em;
  font-weight: 700;
  color: rgb(0, 0, 0);
  
}
.text-v2 p
{
  font-size: 2.7em;
  color: rgb(0, 0, 0);
  
}


.social
{
  position: absolute;
  z-index: 10;
  bottom: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.social .bi{
  width: 10em;
  height: auto;
 
}


.menu
{
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.menu ul
{
  position: relative;
}

.menu ul li
{
  list-style: none;
}
.menu ul li a
{
  text-decoration: none;
  font-size: 54px;
  color: #111;
}
.menu ul li a:hover
{
  color: #376b83; 
}

.toggle
{
  position: relative;
  width: 80px;
  height: 160px;
  background: url(https://i.ibb.co/HrfVRcx/menu.png);
  background-repeat: no-repeat;
  background-size: 70px;
  background-position: center;
  cursor: pointer;
}

.toggle.active
{
  background: url(https://i.ibb.co/rt3HybH/close.png);
  background-repeat: no-repeat;
  background-size: 65px;
  background-position: center;
  cursor: pointer;
  top: 0;
  transition: all ease 1s;
}
.showcase.active
{
  right: 500px;
}

header h2{
  font-size: 3em;
}

.d-grid a{
  font-size: 2.7em;
  padding: 10px;
  border-radius: 25px;
  
}

.text-v2 img{
  width: 220px;
  height: auto;
}

.none{
  display: none;
}

.navbar{
  height: 200px;
  font-size: 40px;
}

.navbar img{
  width: 120px;
  height: auto;
  margin-left: 20px;
}

#text-cell a{
  font-size: 40px;
}

}

.adapcell button {
  font-size: 20px;
}

.adapcell .card-text{
  font-size: 20px;
}



.pc{
  margin-left: 25%;
  margin-right: 25%;
} 
.pc2{
  margin-left: 23%;
  margin-right: 15%;
} 


.whatsapp {
  position:fixed;
  width:60px;
  height: auto;
  bottom:40px;
  right:40px;
  
  color:#FFF;
  border-radius:50px;
  text-align:center;
  font-size:30px;
  z-index:100;
  transition: all 0.5s;
}

.whatsapp:hover{
  filter: brightness(80%);
}

.whatsapp-icon {
  margin-top:13px;
}

@media(max-width: 980px){

  .pc{
    
  margin-left: 7%;
  margin-right: 7%;
  }

  .whatsapp {
    position:fixed;
    width:160px;
    height: auto;
    bottom:40px;
    right:40px;
    
    color:#FFF;
    border-radius:50px;
    text-align:center;
    font-size:30px;

    
    z-index:100;
  } 

  .btn-outline-secondary{
    width: 260px;
    height: 100px;
    
  }
}

.btn-sm{
  font-size: 60px;
}

.text {
  position: relative; /* Asegura que los elementos hijos con posición absoluta se posicionen relativamente a este */
  padding: 20px;
}

.text h2, .text h3 {
  position: relative; /* Asegura que los elementos hijos con posición absoluta se posicionen relativamente a este */
  display: inline-block; /* Para que el contenedor ocupe solo el espacio necesario */
}

.text h2 span, .text h3 span {
  position: relative; /* Asegura que los elementos hijos con posición absoluta se posicionen relativamente a este */
  mix-blend-mode: difference; /* Aplica el modo de mezcla para invertir el color del texto */
}