@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

.navbar {
    position: fixed;
    top: 0;
    height: 70px;
    width: 100%;
    background: rgba(30, 39, 46, 1);
    z-index: 2;
}

label.logo {
    color: #FFF;
    font-size: 20px;
    line-height: 70px;
    padding: 0 100px;
}

.logo {
    color: #FFF;
}

.logo a {
    color: #FFF;
}

nav ul {
    float: right;
    margin-right: 20px;
}

nav ul li {
    display: inline-block;
    line-height: 80px;
    margin: 0 5px;
}

nav ul li a {
    color: white;
    font-size: 17px;
    padding: 7px 13px;
    border-radius: 3px;
    text-transform: uppercase;
}

a {
    text-decoration: none;
    list-style: none;
}

li {
    list-style: none;
}

.checkbtn {
    font-size: 30px;
    color: white;
    float: right;
    line-height: 80px;
    margin-right: 40px;
    cursor: pointer;
    display: none;
}

#check {
    display: none;
}


/*tamaño moviles*/

@media (max-width: 952px) {
    label.logo {
        font-size: 18px;
        padding-left: 50px;
    }
    nav ul li a {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .navbar {
        position: fixed;
        top: 0;
        height: 80px;
        width: 100%;
        background: rgba(30, 39, 46, 1);
        z-index: 100;
    }
    .navbar .checkbtn {
        display: block;
    }
    .navbar label.logo {
        color: #FFF;
        font-size: 10px;
        line-height: 70px;
        padding: 0 39px;
        line-height:10px;
    }
    .navbar ul {
        position: fixed;
        width: 100%;
        height: 100vh;
        background: rgba(30, 39, 46, 1.0);
        top: 80px;
        left: -100%;
        text-align: center;
        transition: all .5s;
        z-index: 100;
    }
    .navbar ul li {
        display: block;
        margin: 50px 0;
        line-height: 30px;
    }
    .navbar ul li a {
        font-size: 20px;
    }
    .navbar a:hover,
    .navbar a.active {
        background: none;
    }
    .navbar #check:checked~ul {
        left: 0;
    }
    .navbar .next {
        background: none;
        border-radius: 30px;
        width: 60%;
    }
    .navbar .before {
        background: none;
        border-radius: 30px;
        width: 60%;
        cursor: pointer;
    }
}

@media (max-width: 360px) {
    .navbar .checkbtn {
        display: block;
    }
    .navbar label.logo {
        font-size: 12px;
        padding-left: 30px;
    }
    .navbar ul {
        position: fixed;
        width: 100%;
        height: 100vh;
        background: rgba(30, 39, 46, 1);
        top: 80px;
        left: -100%;
        text-align: center;
        transition: all .5s;
        z-index: 100;
    }
    .navbar  ul li {
        display: block;
        margin: 50px 0;
        line-height: 30px;
    }
    .navbar  ul li a {
        font-size: 20px;
    }
    .navbar a:hover,
    .navbar a.active {
        background: none;
    }
    .navbar #check:checked~ul {
        left: 0;
    }
}