@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

*{
    margin:0;
    padding: 0;
    box-sizing: border-box;
}

:root{
    --colorPrimary: #FF0000;
    --colorSecondary: #000000;
    --colorNav: #222121;
    --colorActive:rgb(0, 0, 0);
}

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    border: none;
    border-radius:3em;
}
::-webkit-scrollbar-track { 
    background-image: radial-gradient(circle, rgba(206, 204, 204, 0.421) 0%, rgba(108, 106, 106, 0.344) 100%);
    background-size:contain;
    background-repeat:no-repeat;
    border-radius:3em;
}
::-webkit-scrollbar-thumb {
    background-size: contain;
    background-repeat: no-repeat;
    background-image: linear-gradient(90deg, rgba(220, 20, 60,1) 0%, rgba(220, 20, 60,1) 100%);
    border-radius: 3em;
}

body{
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
}

header{
    width: 100%;
    height:70px;
    position: fixed;
    overflow: hidden;
    color:#fff;
    text-align: center;
    z-index: 10;
}

header .textos{
    margin-top: 152px;
}

header .titulo{
    font-size: 85px;
    font-weight: 700;
}

header .subtitulo{
    font-size:42px;
    font-weight: 300;
    margin-bottom: 32px;
}

header .boton{
    display: inline-block;
    padding: 6px;
    width: 128px;
    border:1px solid #fff;
    color:#fff;
    font-size: 19px;
    text-align: center;
    text-decoration: none;
    border-radius:16px;
}

.nav{
    background-color:var(--colorNav);
    height: 70px;
    color: #fff;
    position: fixed;
    width: 100vw;
    z-index: 10;
    transition: width 0.3s;
    
}

.nav_bg{
    background: var(--colorNav);
}

.nav_container{
    display: flex;
    height: 100%;
    width: 90%;
    margin: 0 auto;
    justify-content: space-between;
    align-items: center;
}

.nav_menu{
    display: grid;
    grid-auto-flow: column;
    gap:3em;
}

.nav_item{
    color:#fff;
    text-decoration: none;
    --clippy: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
    font-size: 20px;
    font-weight: 400;
    
}

.nav_item::after{
    content: "";
    display: block;
    background: #fff;
    width:99%;
    margin-top:3px;
    height: 3px;
    clip-path: var(--clippy) ;
    transition: clip-path .4s;
}

.efectReduce{
    transform: scale(.5, .5);
}

.nav_item:hover{
    --clippy: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.nav_input:checked + .nav_menu{
    background-image: linear-gradient(to top, #00c6fb 0%, #005bea 100%);
}

#menuIcon{
    transition: all .5s ease;
}

.nav_label,
.nav_input{
    display: none;
}

.nav_logo{
    width: 100px;
    height: 45px;
    object-fit: cover;
}

.active{
    color: var(--colorActive);
}

.main{
    position: relative;
    height: 100vh;
    overflow: auto;
}

.container {
    position: relative;
    top:37px;
    width: 100vw;
    margin: 0 auto;
    padding: 50px;
    background-color: transparent;
    /* box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.06), 0 1px 0 0 rgba(0, 0, 0, 0.02); */
    height: 95vh;
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: column;
    gap:20px;
}
  
  .background {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
  }

  .container > .titulos{
    color: var(--colorSecondary);
    font-size: 2.0em;
    animation-name: titulos;
    animation-duration: 2s;
  }

  .container > .image{
    border-radius: 5px;
    width: 700px;
    height: 400px;
    box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
  }

  footer{
    position: absolute;
    bottom: 0;
    background: #414141;
    padding: 10px 0 5px 0;
    margin: auto;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100vw;
}

.content-foo{
    text-align: center;
    transition: 0.5s all;
    padding: 20px;
    text-decoration: none;
    /* animation-name: example;
    animation-duration: 5s;
    animation-timing-function: linear;
    animation-delay: 2s;
    animation-iteration-count: infinite;
    animation-direction: alternate; */
}

.titulo-patrocinadores {
    color:var(--colorPrimary);
    text-align: center;
    font-size: 1.8em;
    margin-top: 48px;
    margin-bottom: 64px;
}

  @keyframes titulos{
    from {
        position: relative;
        top:-50px
    }
    to { 
        position: relative;
        top:0px
    }
  }

@media screen and (max-width:1205px){
    .contenedor{
        padding:100px 20px;
    }

    .tabla{
        width: 29%;
    }
}

@media screen and (max-width:965px){

    .tabla{
        width: 40%;
    }
}

@media screen and (max-width:660px){

    .none{
        display: none;
    }

    .nav_label{
        display: block;
        cursor:pointer;
        align-items: center;
        padding-top:5px;
    }

    .nav_menu{
        position: fixed;
        top:70px;
        bottom:0;
        background-image: linear-gradient(to top, #fb4700 0%, #ff0000 100%);
        width: 100%;
        left: 0px;
        display: flex;
        justify-content: start;
        flex-direction: column;
        align-items: center;
        clip-path: circle(0 at center);
        transition: clip-path 0.5s;
        padding-top: 30px;
    }

    .nav_input:checked + .nav_menu{
        clip-path: circle(100% at center);
    }

    .nav_img{
        width: 30px;
        height: 30px;
    }

    .nav_imgBig{
        position: relative;
        top:10px;
        width: 50px;
        height: 50px;
    }

    .nav_logo{
        width: 75px;
        height: 35px;
        object-fit: cover;
    }

    .container{
        padding:150px 0px;
        align-items: center;
    }

    .container > .titulos{
        width: 100%;
        color: var(--colorSecondary);
        font-size: 1.1em;
        animation-name: titulos;
        animation-duration: 2s;
        text-align: center;
    }
    
    .container > .image{
        width: 90%;
        height: auto;
        box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
    }
}