@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:wght@100&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: rgb(38, 38, 38);
  }

header {
    z-index: 999;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 200px;
    transition: 0.5s ease;
    background-color: rgba(136, 136, 136, 0.427);
    backdrop-filter: blur(10px);
}

header .brand {
    color: #ffffff;
    font-size: 1.5em;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    display: flex;
    align-items: center;
}

header .navigation {
    position: relative;
}

header .navigation .navigation-items a {
    position: relative;
    color: #ffffff;
    font-size: 1.2em;
    font-weight: 500;
    text-decoration: none;
    margin-left: 30px;
    transition: 0.3s ease;
}


header .navigation .navigation-items a:before {
    content: '';
    position: absolute;
    background-color: #ffffff;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 0;
    transition: 0.3s ease;
}

header .navigation .navigation-items a:hover:before {
    width: 100%;
}

/* some features*/

.hidden {
    transform: scale(0.8);
    opacity: 0;
    transition: all 1.2s ease-out;
}

.show {
    transform: scale(1);
    opacity: 1;
}



/*Whatsapp button style*/

#whatsapp a{
    position: fixed;
    transform: all .5s ease;
    background: #25d366;
    display: block;
    text-align: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
    border-radius: 50px;
    border-right: none;
    color: #ffffff;
    font-weight: 700;
    font-size: 30px;
    bottom: 15px;
    right: 15px;
    border: 0;
    z-index: 999999;
    width: 50px;
    height: 50px;
    line-height: 50px;
}

#whatsapp .wtsapp:before {
    content: '';
    position: absolute;
    z-index: -1;
    right: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    -webkit-animation:pulse-border 1500ms ease-out infinite;
    animation: pulse-border 1500ms ease-out infinite;
}

.pulse {
    animation: pulse-animation 2s infinite;
  }
  
  @keyframes pulse-animation {
    0% {
      box-shadow: 0 0 0 0px rgba(0, 255, 26, 0.8);
    }
    100% {
      box-shadow: 0 0 0 20px rgba(12, 255, 20, 0);
    }
  }

@media (max-width: 1090px){
    header {
        padding: 12px 20px;
    }

    section {
        padding: 99px 20px;
    }

    .content-info {
        padding: 10px 40px;
    }

    .home .media-icons {
        right: 16px;
        }

        header .navigation {
            display: none; 
        }

        header .navigation.active {
            position: fixed;
            width: 100%;
            height: 100vh;
            top: 0;
            left: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            background: rgba(1,1,1,0.5); 
        }

        header .navigation .navigation-items a {
            color: #222;
            font-size: 1.2em;
            margin: 20px;
            text-shadow: none;
        }

        header .navigation .navigation-items a:before{
            background: #222;
            height: 5px;
        }

        header .navigation.active .navigation-items{
            background: #ffffff;
            width: 600px;
            max-width: 600px;
            margin: 20px;
            padding: 40px;
            display: flex;
            flex-direction: column;
            align-items: center;
            border-radius: 10px;
            box-shadow: 0 5px 25px rgba(1 1 1 / 20%);
        }

        .menu-btn {
            background: url(icons/menu.webp) no-repeat;
            background-size: 30px;
            background-position: center;
            width: 40px;
            height: 40px;
            cursor: pointer;
            transition: 0.3s ease;   
        }

        .menu-btn.active {
            z-index: 999;
            background: url(icons/close.webp) no-repeat;
            background-size: 25px;
            background-position: center;
            transition: 0.3s ease;
        }


        #sub3 .content-video video{
            width: 95%;
        }
        
        .text-box {
            display: flex;
            flex-direction: column;
        }

        .text-box1 {
            display: flex;
            justify-content: center;
            flex-direction: column;
        }

        .info-content {
            display: flex;
            justify-content: center;
            flex-direction: column;
        }

        footer {
            display: flex;
            flex-direction: column;
        }

        .paralax img#laptop {
            width: 1200px;
            top: -90px;
            left: -350px;
        }

        .paralax img#phone {
            width: 1000px;
            left: -250px;
        }

        .paralax img#spaceship {
            width: 1000px;
            top: -170px;
        }

        .paralax img#logo {
            width: 1700px;
            left: -700px;
            top: -290px;
        }

        
}


@media (max-width: 760px){

    .paralax img#logo {
        width: 1700px;
        left: -1150px;
        top: -290px;
    }

}

section {
    overflow: hidden;
}

.paralax {
    position: relative;
    width: 100%;
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #7fbbff;
    overflow: hidden;
    padding: 5px 250px;
}

.paralax img {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
}

.paralax img#city {
    transform: translateY(-20px);
}



#text {
    position: absolute;
    font-size: 5em;
    font-weight: 900;
    color: #fff600;
    text-transform: uppercase;
    letter-spacing: 5px;
    line-height: 85px;
    margin-bottom: 40px;
    text-shadow: rgb(42, 42, 42) 2px 0 10px;
    text-transform: uppercase;
    top: 15%;
    right: 10%;
    padding: 40px;
    text-align: center;
    
}


.text-box {
    display: flex;
}

.text-box1 {
    display: flex;
    justify-content: center;
}


.wrapper{
    width: 330px;
    padding: 2rem 1rem;
    margin: 50px auto;
    background-color: #001d54;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.1);
}

.wrapper h1{
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 1.2rem;
}

form input{
    width: 92%;
    outline: none;
    border: 1px solid #fff;
    padding: 12px;
    margin-bottom: 10px;
    border-radius: 20px;
    background: #f6f6f6;
}

button {
    font-size: 1rem;
    margin-top: 1.8rem;
    padding: 10px 0;
    border-radius: 20px;
    outline: none;
    border: none;
    width: 90%;
    background: #fb5a4c;
    color: #fff;
    cursor: pointer;
    font-weight: bold;
}

button:hover {
    background: #cd0000;
}

input:focus {
    border: 1px solid rgba(192, 192, 192)
}

.terms {
    margin-top: 0.2rem;
    color: #fff;
}

.terms input {
    height: 1em;
    width: 1em;
    vertical-align: middle;
    cursor: pointer;
}

.terms label{
    font-size: 0.7rem;
}

.terms a {
    color: rgb(255, 255, 255);
    text-decoration: none;
}


.info-content{
    display: flex;
    justify-content: center;
    align-items: center;
}

.quadrado {
   margin: -10px;
    animation: small 1.7s alternate infinite ease-in;
  }
  
  .quadrado2 {
    margin: -10px;
     animation: middle 1.5s alternate infinite ease-in;
   }

   .quadrado3 {
    margin: -10px;
     animation: big 1.9s alternate infinite ease-in;
   }

  @keyframes small {
    0%   {transform: scale(.4);}
    100% {transform: scale(1.2);}
  }

  @keyframes middle {
    0%   {transform: scale(.6);}
    100% {transform: scale(1.4);}
  }

  @keyframes big {
    0%   {transform: scale(.8);}
    100% {transform: scale(1.6);}
  }


footer {
    display: flex;
    padding: 20px;
    background-color: #f6f6f6;
    align-items: center;
    justify-content: space-between;
}

.text-leyCont{
    width: 300px;
    right: 0;
    flex: end;
}

footer .text-leyCont p {
    left: 0;
    font-size: 12px;
    text-align: right;
    color: #110e49;
}

section {
    padding: 20px 180px;
}

section .content-info {
    position: relative;
    color: #ffffff;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 250px;
    transition: 0.5s ease;
}

.content-info h2{
    text-align: center;
    margin: 15px;
}

.content-info p{
    text-align: center;
}

.cardsection {
    text-align: center;
    align-items: center;
    text-align: center;
}

.nav-button {
    width: 150px;
    height: 150px;
    color: #222;
    background-color: #eaeaea;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    margin: 5px;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
}

.button-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.button-content a {
    text-decoration: none;
    cursor: pointer;
}

.text-box {
    margin: 15px;
}

.logros {
    width: 250px;
    height: 300px;
    background-color: #eaeaea;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
    margin: 15px;
    border-radius: 15px;
}