html {
    font-family: 'Open Sans', sans-serif;
    background-color: #fff;
}

.menu{
    background-color: #c8e8e8;
    padding: 15px 20px 8px;
    display: flex;
    align-items:flex-start;
}

.gasto {
    height: 15px;
    float:left;
    margin-left: 4px;
    margin-top: 1px;
}

header {
    margin: 0;
    background: linear-gradient(90deg, rgba(108, 190, 190, 0.6), rgba(158, 210, 212, 0.6));
    position: relative;
    overflow: hidden;
}

.logo {
    height: 90px;
    position: center;
    padding: 70px 0 56px;
}

.video-wrap {
    position: absolute;
    z-index: -1000;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
}

video {
    width: 150%;
}

/* C U E R P O */

body{
    text-align: center;
    margin: 0;
    padding: 0 0 0;
}

h1{
    font-weight: 700;
    font-size: 40px;
    color: #fff;
    margin: 0;
}

h2 {
    font-weight: 700;
    font-size: 25px;
    color: #6cbebe;
    padding: 15px 10px 0px;
}

p {
    font-size: 15px;
    color: #7d7f81;    /* #e76916; */
    padding: 10px 30px 10px;
    font-weight: 400;
}



.calcular a {
    background: linear-gradient(90deg, #f39222, #ffbd63);
    padding: 8px 30px 8px;
    font-size: 15px;
    font-weight: 600;
    color: white;
    border-radius: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 2px 3px 6px rgba(125, 127, 129, 0.49);
}

.calcular a:hover {
    background: #e76916;
    padding: 8px 30px 8px;
    font-size: 15px;
    font-weight: 600;
    color: white;
    border-radius: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
}

.tips a {
    background: linear-gradient(90deg, #6cbebe, #9ed2d4);
    padding: 8px 53px 8px;
    font-size: 15px;
    font-weight: 600;
    color: white;
    border-radius: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 2px 3px 6px rgba(125, 127, 129, 0.49);
}

.tips a:hover {
    background: #3e9f9b;
    padding: 8px 53px 8px;
    font-size: 15px;
    font-weight: 600;
    color: white;
    border-radius: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
}

.tips {
    margin: 27px 10px 10px;
}

.botones {
    margin: 30px 0 0;
}

/* N A V */

nav {
    padding: 0 0 8px;
}

.usuario {
    height: 60px;
    padding-bottom: 20px;
}

.nav-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: #c8e8e8;
    opacity: 0;
    transition: all 0.2s ease;
}

.nav-wrapper ul {
    position: absolute;
    top: 20%;
    width: 100%;
    padding: 0;
    margin: 0;
}

.nav-wrapper ul li {
    display: block;
    float: none;
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
}

.nav-wrapper ul li:not(:first-child) {
    margin-left: 0;
    padding: 8px 0 0;
}

.nav-wrapper ul li a {
    padding: 10px 0px;
    opacity: 0;
    color: #3e9f9b;        /**** MENU ****/
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.2s ease;
    text-decoration: none;
    text-transform: uppercase;
}

.nav-wrapper ul li a:hover {
    padding: 10px 0px;
    opacity: 0;
    color: #e76916;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.2s ease;
}

/* */

.linea {
    color: white;
    font-weight: 700;
    margin: 0;
    padding: 0px 0px 12px;
}

.nav-btn {
    position: fixed;
    right: 4px;
    top: 1px;
    display: block;
    width: 48px;
    height: 48px;
    cursor: pointer;
    z-index: 9999;
    border-radius: 50%;
}

.nav-btn i {
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    margin-left: 14px;
}

.nav-btn i:nth-child(1) {
    margin-top: 16px;
}

.nav-btn i:nth-child(2) {
    margin-top: 4px;
    opacity: 1;
}

.nav-btn i:nth-child(3) {
    margin-top: 4px;
}

#nav:checked + .nav-btn {
    transform: rotate(45deg);
}

#nav:checked + .nav-btn i {
    background: #fff;   /* COLOR CHECKED */
    transition: transform 0.2s ease;
}

#nav:checked + .nav-btn i:nth-child(1) {
    transform: translateY(6px) rotate(180deg);
}

#nav:checked + .nav-btn i:nth-child(2) {
    opacity: 0;
}

#nav:checked + .nav-btn i:nth-child(3) {
    transform: translateY(-6px) rotate(90deg);
}

#nav:checked ~ .nav-wrapper {
    z-index: 9990;
    opacity: 1;
}

#nav:checked ~ .nav-wrapper ul li a {
    opacity: 1;
    transform: translateX(0);
}

.hidden {
    display: none;
}