*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body{
    min-height: 100vh;
    /* background: #0c192c; */
    background: rgb(34,6,76);
background: linear-gradient(102deg, rgba(34,6,76,1) 0%, rgba(38,6,80,1) 40%, rgba(70,4,108,1) 73%, rgba(60,1,84,1) 100%);
}

.container{
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    color: #fff;
   
}

.logo-icono{
    top: 50px;
    left: 50px;
    position: absolute;
    z-index: 2;
}

.logo-icono img{
    width: 100%;
    max-width: 30%;
}

.text-mantenimiento{
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.text-mantenimiento h1{
    font-size: 80px;
    font-weight: 600;
}

.text-mantenimiento p{
    font-size: 30px;
    font-weight: 600;
}

.text-mantenimiento img {
    z-index:2;
}
.auto-type{
    color: #fff724;
}

.bubbles{
    position: relative;
    display: flex;
}

.bubbles span{
    position: relative;
    width: 30px;
    height: 30px;
    background: #4fc3dc;
    margin: 0 4px;
    border-radius: 50%;
    box-shadow:  0 0 0 10px #4fc3dc44,
    0 0 50px #4fc3dc,
    0 0 100px #4fc3dc;
    animation: animate 15s linear infinite;
    animation-duration: calc(125s / var(--i));
}

.bubbles span:nth-child(even){
    background: #F4D958;
    box-shadow:  0 0 0 10px #dfff2d44,
    0 0 50px #F4D958,
    0 0 100px #F4D958;

}

@keyframes animate {
    0%
    {
        transform: translateY(100vh) scale(0);
    }
    100%
    {
        transform: translateY(-10vh) scale(1);
    }
}

.btn-web{
    background: transparent;
    border: 1px solid #fff;
    padding: 5px 20px;
    font-size: 17px;
    text-decoration: none;
    color: #fff;
    border-radius: 20px;
    box-shadow:  0 0 0 10px #ab2dff44,
    0 0 50px #791AAB,
    0 0 100px #791AAB;
    margin-top: 30px;
    transition: background ease-in .3s;
    transition: box-shadow ease-in .2s;
}

.btn-web:hover{
    /* background: transparent; */
    border: 1px solid #fff;
    padding: 5px 20px;
    font-size: 17px;
    text-decoration: none;
    color: #0e0e0e;
    border-radius: 20px;
    background: #F4D958;
    box-shadow:  0 0 0 15px #dfff2d44,
    0 0 50px #F4D958,
    0 0 100px #F4D958;
    margin-top: 30px;
    cursor: pointer;
    font-weight: 500;
}

@media screen and (max-width: 900px) {
    .text-mantenimiento h1{
        font-size: 60px;
        font-weight: 600;
    }
    .text-mantenimiento p{
    font-size: 20px;
    font-weight: 600;
}
    .bubbles span{
        position: relative;
        width: 25px;
        height: 25px;
       
        margin: 0 2px;
        border-radius: 50%;
        box-shadow:  0 0 0 5px #4fc3dc44,
        0 0 20px #4fc3dc,
        0 0 40px #4fc3dc;
        animation: animate 15s linear infinite;
        animation-duration: calc(125s / var(--i));
    }
}

@media screen and (max-width: 500px) {
    .text-mantenimiento {
      /*display: flex;*/
      /*flex-direction: column;*/
      /*align-items: center;*/
      /*justify-content: center;*/
      
    }
    .text-mantenimiento h1{
        font-size: 40px;
        font-weight: 600;
        text-align: center;
    }
    .text-mantenimiento p{
    font-size: 17px;
    font-weight: 600;
}
    .bubbles span{
        position: relative;
        width: 15px;
        height: 15px;
       
        margin: 0 2px;
        border-radius: 50%;
        box-shadow:  0 0 0 5px #4fc3dc44,
        0 0 20px #4fc3dc,
        0 0 40px #4fc3dc;
        animation: animate 15s linear infinite;
        animation-duration: calc(125s / var(--i));
    }
    .bubbles span:nth-child(even){
        background: #F4D958;
        box-shadow:  0 0 0 5px #dfff2d44,
        0 0 20px #F4D958,
        0 0 40px #F4D958;
    
    }
  }