:root{
    --gris: rgb(111, 111, 111);
    --tipo-titular:'Playfair Display', serif;
    --tipo-principal: 'sans-serif;';
}

*{
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
    vertical-align: baseline;

}

img, figure{
    max-width: 100%;
    width: 100%;
    display: flex;
    object-fit: cover;
    object-position: center center;
}

a{
    display: block;
    text-decoration:none;
    color: inherit;

}

video{
    max-width: 100%;
    width: 100%;
    display: flex;
    object-fit: cover;
    object-position: center center;

}

form, button,
input,
textarea,
select{
    font-family: inherit;
    font-size: inherit;
    -webkit-hyphens: auto;
    hyphens: auto;
    background-color: transparent;
    display: flex;
    color: inherit;
}

body{
    font-family: var(--tipo-principal);
    font-size: 100%;
    min-height: 100vh;
    background-color: rgb(0, 0, 0);
    color: white;
    font-smooth: always;
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
}


.circulos{
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    filter: blur(40px);
    animation:circulo1 100s linear infinite both;
}
.circulos .circulo{
    position: absolute;
    width: 50%;
    height: 50%;
    animation:circulo1 100s linear infinite both;

}
.circulos .circulo1{
    top: 0%;
    left: 0%;
    
}

.circulos .circulo1 .path{
    fill: rgb(153, 24, 218);
    
}
.circulos .circulo2{
    top: 0%;
    right: 0%;
    
}
.circulos .circulo2 .path{
    fill: rgb(235, 232, 21);
    
}
.circulos .circulo3{
    bottom: 0%;
    left: 0%;
    
}
.circulos .circulo3 .path{
    fill: rgb(0, 255, 81)
    
}
.circulos .circulo4{
    bottom: 0%;
    right: 0%;
    
}
.circulos .circulo4 .path{
    fill: rgb(0, 55, 255);
    
}


.header{
    width: 100%;
    min-width: 5em;


    padding: 1em 2em;

    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;

    display: none;
}
.header .h1{

}
.header .h1 .a{}
.header .nav{

}
.header .ul{
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;

}
.header .li{
    margin: 0 1em;
}
.header .li .a{}

.main{
    background-color: rgba(0, 0, 0, 0.7);
margin:  0 0 1em;
text-align: center;
position: relative;
z-index: 2;

}
.seccion{
    width: 100%;
    min-height: 80vh;
    /*margin: 1em 0;*/
    padding: 2em;

    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;
}
.seccion .info{
    font-size: 1em;
    animation: aparecer1 2s ease 1 both ;

}

.seccion .ul{
    margin: 2em 0 0;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;

}
.seccion .ul .li{
    list-style:none;
    margin: 0 1em;

}
.seccion .ul .a{
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 50%;
    padding: 1em 1em 1em;
    text-transform: uppercase;
    font-weight: 600;
    transition: all .5s ease;
    animation: aparecer1 2s ease 1 backwards ;
}

.seccion .ul>:nth-child(2) .a{
    animation-delay: .2s;
}

.seccion .ul .a:hover{
    border-color: white;
}
.seccion .h2{
    font-family: var(--tipo-titular);
    font-weight: 550;
    font-size: 5em;
    line-height: 1em;
    color: white;


}
.seccion .h3{
    font-family: var(--tipo-titular);
    font-size: 3em;
    font-style:normal;
}

.seccion .p{}
.seccion .grid{
    width: 100%;
    max-width: 40em;
    margin: 1em 0;

    display: grid;
    grid-template-columns: repeat( auto-fit , minmax(10rem , 1fr));
    gap: 1em;
}
.seccion .article{
    width: 100%;
    min-height: 40vh;

    color: white;

    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items:flex-start;

    position: relative;
    overflow: hidden;
    

}
.seccion .a{

}
.seccion .figure{
    width: 100%;
    background-color: red;
}
.seccion .img{
    width: 100%;

}
.seccion .h4{
    width: 100%;
    height: 100%;
    background-color: rgba(255, 0, 251, 0.223);
    backdrop-filter: blur(1rem);
    position: absolute;
    bottom: 0;
    left: 0;


    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;

    color: white;
    font-size: 1.8em;
    font-family: var(--tipo-titular);
    font-style: italic;
    opacity: 0;
    transform: translateZ(1) scale(1.5);
    transition: all .5s ease;
}
.seccion .article:hover .h4{
    opacity: 1;
    transform: translateZ(1) scale(1);
    
}
.works{

    color: white;

}

.works h2{
    margin: 0 0 1rem;
    color: inherit;
}

.about{}
.about .h2{
    margin: 0 0 1rem;
}
.about .p{
    max-width: 40rem;
    margin: 0 0 2em;
    font-size: 1.2em;
    text-align: left;
}
.about .rrss{
    width: 100%;

    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;

}
.about .li{
    margin: 0 1em;
    list-style:none;

}
.about .li .a{
    
}
.about .svg{
    width: 3em;
    height: 3em;


}

.footer{
    padding: 2em 0;
    text-align: center;
    color: white;
    position: relative;
    z-index: 2;
    
}

.footer .span{
    

}


@keyframes circulo1{
    form{
        transform: rotate(0deg) scale(2);
    }
    to{
        transform: rotate(360deg) scale(2);
    }
}

@keyframes aparecer1  {
    from{
        opacity: 0;
        transform: translateY(50%);
    }
    to{
        opacity: 1;
        transform: translateY(0%);
    }
    
}