@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;500&family=Ubuntu:ital,wght@0,500;1,300&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    /*Menu*/
    
}
.max-width{
    max-width: 1300px;
    padding: 0 80px;
    margin: auto;
}
.navbar{
position: fixed;
width: 100%;
padding: 30px 0;
font-family: 'Ubuntu',sans-serif;
}
.navbar.sticky{
    padding: 30px 0;
    background: #010007dc;
}
/*
.navbar.sticky::before{
    -webkit-background-size:cover;
    background-size: cover;
    background-position: center center;
    height: 100vh;
    position: fixed;
    left: 0;
    right: 0;
    filter: blur(5px);
    -webkit-filter: blur(5px);
}*/
.navbar .max-width{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.navbar .logo a{
    color:#E7DFDD;
    font-size: 35px;
    font-weight: 300;
}
.navbar .logo span{
    color: #4717F6;
}
.navbar .menu li {
    list-style: none;
    display: inline-block;
}
.navbar .menu li a {
    color: #E7DFDD;
    font-size: 18px;
    font-weight: 500;
    margin-left: 25px;
    transition: color 0.3s ease;
}
.navbar .menu li a:hover{
    color: #4717F6;
}
.menu-btn{
    color: white;
    font-size: 23px;
    cursor: pointer;
    display: none;
}
/*inicio apartado css*/
.home{
    display: flex;
    /*background: url("../img/banner.jpg") center;*/
    background-color:black;
    height: 100vh;
    color: #E7DFDD;
    min-height: 500px;
    font-family: sans-serif;
}
.home .max-width{
    margin: auto 0 auto 40px;
}
.home .home-contenido .text-1{
    font-size: 27px;
    font-weight: 400;
}
.home .home-contenido .text-2{
    font-size: 75px;
    font-weight: 600;
    margin-left: -3px;
}
.home .home-contenido .text-3{
    font-size: 40px;
    margin: 5px 0;
}
.home .home-contenido .text-3 span{
    color:#4717F6;
    font-weight: 600;
}
.home .home-contenido a{
    display: inline-block;
    /*background: #4717F6;*/
    color: white;
    font-size: 30px;
    padding: 17px 36px;
    margin-top:20px;
    border-radius: 6px;
    font-weight: 600s;
    border:2px solid #4717F6;
    transition: all 0.3s ease;
}
 .home .home-contenido a:hover{
     color: #E7DFDD;
     background: #4717F6;
 }
 @media (max-width:1104px){
     .home .max-width{
         margin-left: 0px;
     }

}/*
 @media (max-width:991px){
     .home .max-width{


     }
  /*   
}
 /*Responsive*/
 @media (max-width:947px) {
    .max-width{
        padding: 0 50px;
       
    }
    .menu-btn{
        display: block;
        z-index: 999;
    }
     .navbar .menu{
        position:fixed;
        left:-100%;
        top: 0;
        height: 100vh;
        width: 100%;
        text-align: center;
        padding-top: 80px;
        background-color: rgb(14, 13, 13);
        transition: all 300ms ease;
    }
    .navbar .menu.active{
      left: 0;
    }
    .navbar .menu li{
        display: block;
    }
    .navbar .menu li a{
        display: inline-block;
        margin: 20px 0;
        font-size: 25px;
    }
    .menu-btn i.active::before{
        content: "\f00d";
    }
    }   
     .home .home-contenido .text-2{
        font-size: 70px;
        
}    
      .home .home-contenido .text-3{
        font-size: 35px;
}
  @media (max-width:690px){
      .max-width{
          padding: 0 23px;
      }
    .home .home-contenido .text-2{
        font-size: 60px;
        
}    
      .home .home-contenido .text-3{
        font-size: 32px;

  }
}
@media (max-width:600px){
  .home .home-contenido .text-2{
      font-size: 50px;
      
}    
    .home .home-contenido .text-3{
      font-size: 27px;

}
}