@import url('https://fonts.googleapis.com/css2?family=Racing+Sans+One&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;   
}

:root{
    --primary: #00c2de;
}

body {
    background: #000000;
    font-family: 'Roboto', sans-serif;
    color: #ffffff;
}

header{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 100px;
    z-index: 1000;
}

header::after {
    position: absolute;
    content: '';
    top: 50%;
    transform: translateY(-50%);
    left: 80px;
    height: 5px;
    width: 40%;
    background: linear-gradient(90deg, var(--primary),transparent);
}

.logo {
    font-size: 30px;
    color: #ffffff;
}

.logo img {
    max-width: 200px;
    filter: invert(1);
    align-content: center;
}



header .menu {
    position: relative;
    height: 30px;
    width: 30px;
    background: url(imagenes/menu-3-fill.png) no-repeat;
    background-size: 30px;
    background-position: center;
    filter: invert(1);
    cursor: pointer;
}

header .menu.active {
    position: relative;
    height: 30px;
    width: 30px;
    background: url(imagenes/close-line.png) no-repeat;
    background-size: 30px;
    background-position: center;
    filter: invert(1);
    cursor: pointer;
}

.nav {
    z-index: 200;
    position: absolute;
    right: 80px;
    top: 0;
    width: 30%;
    height: 15px;
    border-bottom: 5px solid;
    border-image: linear-gradient(
        90deg, 
        transparent, 
        var(--primary), 
        var(--primary)
        )
        30;
        background: transparent;
        box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(20px);
        display: flex;
        justify-content: center;
        align-items: center;
        transition: 1s;
        transform-origin: right;
}

.nav.active {
    top: 100px;
    width: 40%;
    height: 100px;
    border-top: 5px solid;
    border-image: linear-gradient(
        90deg, 
        transparent, 
        var(--primary), 
        var(--primary),
        transparent
        )
        30;
    border-bottom: none;
}

.nav li{
    position: relative;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100px);
    transition: 0.5s;
}

.nav.active li {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
}

.nav li a {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 200;
    letter-spacing: 1px;
    padding: 8px 20px;
    transition: 0.2s;
    cursor: pointer;
}

.nav li a:hover {
    box-shadow: inset 0 0 20px rgba(0, 194, 222, 0.5);
}



#menu{
    font-size: 42px;
    z-index: 10001;
    cursor: pointer;
    margin-left: 25px;
    display: none;
}

img:hover{
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1)
}

table{
    
    border-color: #00c2de;
    width: 95%;
    
}
th{
    background-color:#00c2de ;
    color: #0c0c0c;
   
}


th,td{
    padding: .8rem;
    border:1px solid #00c2de;
}


@media screen and(max-width: 600px){
thead{
    display: none;
}
tf{
    display: block;
}
nav.menu-nav a {
    font-size: 10px; 
    padding: 5px; 
  }
  .logo {
    width: 30%; 
    margin: 0 auto;
  }
}

footer{
    position: relative;
    width: 100%;
    background: #3586ff;
    min-height: 100px;
    padding: 20px 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column ;
}

footer .social_icon, 
footer .menu
{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
    flex-wrap: wrap;
}

  footer .social_icon li,
  footer .menu li{
 list-style: none;
  }

  footer .social_icon li a{
    font-size: 2em;
    color: #fff;
    margin: 0 10px;
    display:inline-block;
    transition: 0.5s;
  }

  footer .social_icon li a:hover{
    transform: translateY(-10px);
  }

  footer .menu li a{
    font-size: 1.2em;
    color: #fff;
    margin: 0 10px;
    display:inline-block;
    text-decoration: none;
    opacity: 0.75;
  }

  footer .menu li a:hover{
    opacity: 1;
  }

  footer p{
    color:#fff;
    text-align: center;
    margin-top: 15px;
    margin-bottom: 10px;
    font-size: 1.1em;
  }

  footer .wave{
  position: absolute;
  top:-100px;
  left: 0;
  width: 100%;
  height: 100px;
  background: url(imagenes/wave.png);
   background-size: 1000px 100px;
  }

  footer .wave#wave1{
    z-index: 1000;
    opacity: 1;
    bottom:0;
    animation: animateWave 4s linear infinite;
  }
  footer .wave#wave2{
    z-index: 999;
    opacity: 0.5;
    bottom:10px;
    animation: animateWave_02 4s linear infinite;
  }
  footer .wave#wave3{
    z-index: 1000;
    opacity: 0.2;
    bottom:15px;
    animation: animateWave 3s linear infinite;
  }
  footer .wave#wave4{
    z-index: 999;
    opacity: 0.7;
    bottom:20px;
    animation: animateWave_02 3s linear infinite;
  }

  @keyframes animateWave{
    0%{
        background-position-x: 1000px;
    }
    100%{
        background-position-x: 0px;
    }
  }
  @keyframes animateWave_02{
    0%{
        background-position-x: 0px;
    }
    100%{
        background-position-x: 1000px;
}
}


@media (max-width: 1200px) {
    header{
        padding: 20px 50px;
        flex-direction: column;
        flex-wrap: wrap;
        justify-content: center;
        gap: 5px;

    }
    header::after{
        left: 50%;
        top: 70%;
        transform: translate(-50%, -50%);
        background: var(--primary);
    }

    .logo {
        margin-top: 10px;
        
    }

    .nav {
        right: 0;
        width: 100%;
    }

    .nav.active {
        right: 0;
        top: 0;
        width: 100vw;
        height: 100vh;
        display: flex;
        flex-direction: column;
        border: none;
    }

    .banner {
        padding: 50px 30px 100px;
    }

     h1 {
        font-size: 15px;
     }

      .box img{
        width: 70%;
        height: 70%;
     }

     table {
        size-adjust: auto;
       
     }
     
     body {
        border: 0;
     }
}
